
html,
body {
    overflow-x: clip;
}

.ah2r-page {
    --ah2r-ink: #17141f;
    --ah2r-ink-soft: #292332;
    --ah2r-paper: #f8f4ef;
    --ah2r-white: #ffffff;
    --ah2r-muted: #6d6872;
    --ah2r-line: rgba(23, 20, 31, 0.12);
    --ah2r-pink: #f91962;
    --ah2r-plum: #8e1c78;
    --ah2r-lilac: #e9dff0;
    --ah2r-font-display: "Open Sauce Two Black", "Raleway", sans-serif;
    --ah2r-client-radius: 32px;
    --ah2r-client-radius-mobile: 24px;
    --ah2r-duration-short: 220ms;
    --ah2r-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    overflow-x: clip;
    background: var(--ah2r-paper);
    color: var(--ah2r-ink);
}

.ah2r-page *,
.ah2r-page *::before,
.ah2r-page *::after {
    box-sizing: border-box;
}

.ah2r-page h2,
.ah2r-page h3,
.ah2r-page p {
    margin-top: 0;
}

.ah2r-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--ah2r-plum);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ah2r-eyebrow::before {
    width: 30px;
    height: 2px;
    background: currentColor;
    content: "";
}

.ah2r-eyebrow--light {
    color: #f3a9ca;
}

.ah2r-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 25px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ah2r-button:hover {
    transform: translateY(-2px);
}

.ah2r-button--primary {
    background: linear-gradient(135deg, var(--ah2r-pink), var(--ah2r-plum));
    color: #fff;
    box-shadow: 0 14px 30px rgba(142, 28, 120, 0.22);
}

.ah2r-button--primary:hover {
    color: #fff;
    box-shadow: 0 18px 38px rgba(142, 28, 120, 0.3);
}

.ah2r-button--light {
    background: #fff;
    color: var(--ah2r-ink);
}

.ah2r-button--light:hover {
    color: var(--ah2r-plum);
}

.ah2r-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid currentColor;
    color: var(--ah2r-ink);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.ah2r-text-link:hover {
    color: var(--ah2r-pink);
}

/* INTRO */

.ah2r-intro {
    position: relative;
    padding: 130px 0 118px;
    background:
        radial-gradient(circle at 92% 20%, rgba(233, 223, 240, 0.8), transparent 30%),
        var(--ah2r-paper);
}

.ah2r-intro::before {
    position: absolute;
    top: 55px;
    left: max(20px, calc((100vw - 1240px) / 2));
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ah2r-pink);
    box-shadow: 18px 0 0 rgba(249, 25, 98, 0.25);
    content: "";
}

.ah2r-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 100px;
    align-items: center;
}

.ah2r-intro-copy h2 {
    max-width: 760px;
    margin-bottom: 28px;
    color: var(--ah2r-ink);
    font-family: "Open Sauce Two Black", "Raleway", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.ah2r-intro-copy h2 em,
.ah2r-manifesto-card h2 em {
    color: var(--ah2r-pink);
    font-family: Georgia, serif;
    font-weight: 400;
}

.ah2r-intro-copy > p {
    max-width: 610px;
    margin-bottom: 35px;
    color: var(--ah2r-muted);
    font-size: 18px;
    line-height: 1.75;
}

.ah2r-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ah2r-value-panel {
    position: relative;
    padding: 42px 42px 26px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 28px 80px rgba(55, 37, 65, 0.12);
    backdrop-filter: blur(14px);
}

.ah2r-value-number {
    position: absolute;
    top: -38px;
    right: 30px;
    color: rgba(142, 28, 120, 0.08);
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: 1;
}

.ah2r-value-item {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--ah2r-line);
}

.ah2r-value-item:last-child {
    border-bottom: 0;
}

.ah2r-value-item > i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--ah2r-lilac);
    color: var(--ah2r-plum);
    font-size: 17px;
}

.ah2r-value-item strong,
.ah2r-value-item span {
    display: block;
}

.ah2r-value-item strong {
    margin: 3px 0 7px;
    color: var(--ah2r-ink);
    font-size: 15px;
    font-weight: 900;
}

.ah2r-value-item span {
    color: var(--ah2r-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* PROCESS */

.ah2r-page .ah2-how-it-works {
    min-height: 0;
    padding: 112px 0 125px;
    background: #fff;
}

.ah2r-section-heading {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}

.ah2r-section-heading h2 {
    margin-bottom: 0;
    color: var(--ah2r-ink);
    font-family: "Open Sauce Two Black", "Raleway", sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.03;
}

.ah2r-section-heading > p {
    max-width: 440px;
    margin-bottom: 6px;
    color: var(--ah2r-muted);
    font-size: 16px;
    line-height: 1.7;
}

.ah2r-page .ah2-how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ah2r-page .ah2-how-step {
    min-height: 355px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 34px 32px;
    border: 1px solid var(--ah2r-line);
    border-radius: 28px;
    background: #fff;
    text-align: left;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.ah2r-page .ah2-how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(23, 20, 31, 0.1);
}

.ah2r-page .ah2-how-step::before,
.ah2r-page .ah2-how-step::after {
    display: none;
}

.ah2r-step-number {
    align-self: flex-end;
    color: #aca6af;
    font-family: Georgia, serif;
    font-size: 14px;
}

.ah2r-page .ah2-how-icon {
    width: 62px;
    height: 62px;
    margin: 22px 0 28px;
    border: 0;
    border-radius: 19px;
    background: var(--ah2r-paper);
    color: var(--ah2r-plum);
    font-size: 21px;
}

.ah2r-page .ah2-how-step:hover .ah2-how-icon {
    transform: none;
    background: var(--ah2r-lilac);
    color: var(--ah2r-plum);
    box-shadow: none;
}

.ah2r-page .ah2-how-step h3 {
    margin-bottom: 13px;
    color: var(--ah2r-ink);
    font-size: 21px;
    font-weight: 900;
}

.ah2r-page .ah2-how-step p {
    max-width: 315px;
    margin: 0;
    color: var(--ah2r-muted);
    font-size: 14px;
    line-height: 1.65;
}

.ah2r-step-line {
    width: 100%;
    height: 3px;
    margin-top: auto;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--ah2r-pink) 35%, #ece8ed 35%);
}

.ah2r-page .ah2-how-step--accent {
    border-color: var(--ah2r-ink);
    background: var(--ah2r-ink);
}

.ah2r-page .ah2-how-step--accent .ah2r-step-number,
.ah2r-page .ah2-how-step--accent p {
    color: #bdb7c3;
}

.ah2r-page .ah2-how-step--accent h3 {
    color: #fff;
}

/* CLIENTS */

.ah2r-clients {
    padding: 112px 0 120px;
    background: var(--ah2r-paper);
}

.ah2r-clients-inner {
    display: block;
}

.ah2r-clients-heading {
    max-width: 760px;
    min-width: 0;
    margin-bottom: 48px;
}

.ah2r-clients-heading h2 {
    margin: 0 0 20px;
    color: var(--ah2r-ink);
    font-family: var(--ah2r-font-display);
    font-size: clamp(38px, 4vw, 58px);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.ah2r-clients-heading p {
    max-width: 580px;
    margin: 0;
    color: var(--ah2r-muted);
    font-size: 16px;
    line-height: 1.65;
}

.ah2r-clients-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ah2r-line);
    border-radius: var(--ah2r-client-radius);
    background: var(--ah2r-white);
}

.ah2r-clients-showcase::before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 40px;
    width: 72px;
    height: 3px;
    background: var(--ah2r-pink);
    content: "";
}

.ah2r-clients-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--ah2r-line);
}

.ah2r-client-arrow {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--ah2r-line);
    border-radius: 50%;
    background: transparent;
    color: var(--ah2r-ink);
    cursor: pointer;
    line-height: 1;
    transition:
        color var(--ah2r-duration-short) var(--ah2r-ease-out),
        background-color var(--ah2r-duration-short) var(--ah2r-ease-out),
        transform var(--ah2r-duration-short) var(--ah2r-ease-out);
}

.ah2r-client-arrow:hover {
    background: var(--ah2r-ink);
    color: var(--ah2r-paper);
}

.ah2r-client-arrow:focus-visible {
    outline: 2px solid var(--ah2r-pink);
    outline-offset: 3px;
}

.ah2r-client-arrow:active {
    transform: translateY(1px);
}

.ah2r-client-arrow.slick-disabled,
.ah2r-client-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.ah2r-clients-carousel {
    min-width: 0;
}

.ah2r-client-slide {
    min-width: 0;
}

.ah2r-client-logo {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 420px;
    margin: 0;
    padding: 48px;
    transform: translateY(0);
    transition: transform var(--ah2r-duration-short) var(--ah2r-ease-out);
}

.ah2r-client-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.ah2r-clients-carousel[data-client-count="1"] .ah2r-client-logo img {
    --ah2r-client-travel-start: -32px;
    --ah2r-client-travel-end: 32px;
    animation: ah2r-client-carousel-single 5.5s var(--ah2r-ease-out) infinite alternate;
}

@keyframes ah2r-client-carousel-single {
    from {
        transform: translateX(var(--ah2r-client-travel-start));
    }

    to {
        transform: translateX(var(--ah2r-client-travel-end));
    }
}

@media (hover: hover) and (pointer: fine) {
    .ah2r-client-logo:hover {
        transform: translateY(-8px);
    }
}

.ah2r-page .ah2-how-step--accent .ah2-how-icon,
.ah2r-page .ah2-how-step--accent:hover .ah2-how-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.ah2r-page .ah2-how-step--accent a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: #f3a9ca;
    font-size: 13px;
    font-weight: 800;
}

/* NEARBY */

.ah2r-page .ah2-nearby-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 90% 0%, rgba(190, 74, 163, 0.3), transparent 34%),
        #100e12;
    color: #fff;
    contain-intrinsic-size: 720px;
}

.ah2r-page .ah2-nearby-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 34px 34px;
    content: "";
    pointer-events: none;
}

.ah2r-page .ah2-nearby-section .ah2-container {
    position: relative;
    z-index: 1;
}

.ah2r-page .ah2-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.ah2r-nearby-title h2 {
    margin-bottom: 14px;
    color: #fff;
    font-family: "Open Sauce Two Black", "Raleway", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.ah2r-nearby-title p {
    max-width: 570px;
    margin-bottom: 0;
    color: #c2bdc7;
    font-size: 15px;
    line-height: 1.65;
}

.ah2r-page .ah2-see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.ah2r-page .ah2-nearby-stage {
    min-height: 375px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.05);
}

.ah2r-page .ah2-nearby-skeleton {
    top: 22px;
    width: calc(100% - 44px);
    gap: 18px;
}

.ah2r-page .ah2-nearby-skeleton-card {
    height: 330px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
}

.ah2r-page .ah2-nearby-action::before {
    background: rgba(48, 41, 54, 0.7);
    backdrop-filter: blur(5px);
}

.ah2r-location-prompt {
    position: relative;
    z-index: 1;
    max-width: 410px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
}

.ah2r-location-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(249, 25, 98, 0.18);
    color: #ff719e;
    font-size: 22px;
}

.ah2r-location-prompt strong {
    margin-bottom: 9px;
    font-size: 22px;
    font-weight: 900;
}

.ah2r-location-prompt > span:not(.ah2r-location-icon) {
    margin-bottom: 22px;
    color: #c2bdc7;
    font-size: 13px;
    line-height: 1.55;
}

.ah2r-page .ah2-location-btn {
    min-height: 50px;
    padding: 0 22px;
    background: #fff;
    color: var(--ah2r-ink);
    box-shadow: none;
}

.ah2r-page .ah2-nearby-carousel {
    width: min(1440px, calc(100vw - 50px));
    margin-top: 10px;
}

.ah2r-page .ah2-nearby-message {
    color: #d4cfd8;
}

/* FEATURED */

.ah2r-page .ah2-featured {
    padding: 120px 0 110px;
    background: var(--ah2r-paper);
}

.ah2r-featured-head {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 70px;
    align-items: end;
    margin-bottom: 54px;
}

.ah2r-featured-head h2 {
    margin-bottom: 15px;
    color: var(--ah2r-ink);
    font-family: "Open Sauce Two Black", "Raleway", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.ah2r-featured-head p {
    max-width: 580px;
    margin-bottom: 0;
    color: var(--ah2r-muted);
    line-height: 1.65;
}

.ah2r-page .ah2-featured-filter {
    max-width: none;
    margin: 0;
}

.ah2r-page .ah2-featured-filter label {
    display: block;
    margin-bottom: 9px;
    color: var(--ah2r-ink);
    font-size: 12px;
    font-weight: 800;
}

.ah2r-page .ah2-featured-filter .ah2-select {
    height: 54px;
    border-color: var(--ah2r-line);
    border-radius: 15px;
    background: #fff;
}

.ah2r-page .ah2-featured-carousel {
    min-height: 355px;
    padding: 0 max(20px, calc((100vw - 1480px) / 2));
}

.ah2r-page .ah2-featured-carousel .slick-slide {
    padding: 0 11px;
}

.ah2r-page .ah2-featured .listing-item-container {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(23, 20, 31, 0.08);
}

.ah2r-page .ah2-featured .listing-item {
    border-radius: 24px;
}

.ah2r-page .ah2-featured .listing-item img {
    transition: transform 400ms ease;
}

.ah2r-page .ah2-featured .listing-item:hover img {
    transform: scale(1.04);
}

.ah2r-featured-cta {
    margin-top: 25px;
    text-align: center;
}

/* MANIFESTO */

.ah2r-manifesto {
    padding: 110px 0;
    background: var(--ah2r-paper);
}

.ah2r-manifesto-card {
    position: relative;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 70px 30px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 80%, rgba(249, 25, 98, 0.35), transparent 28%),
        radial-gradient(circle at 85% 0%, rgba(142, 28, 120, 0.42), transparent 35%),
        var(--ah2r-ink);
    color: #fff;
    text-align: center;
}

.ah2r-manifesto-card::before,
.ah2r-manifesto-card::after {
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.ah2r-manifesto-card::before {
    top: -130px;
    left: -90px;
}

.ah2r-manifesto-card::after {
    right: -100px;
    bottom: -160px;
}

.ah2r-manifesto-kicker {
    margin-bottom: 35px;
    color: #f3a9ca;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ah2r-manifesto-card p {
    margin-bottom: 2px;
    color: #bdb7c3;
    font-size: clamp(18px, 2vw, 25px);
}

.ah2r-manifesto-card h2 {
    max-width: 850px;
    margin-bottom: 38px;
    color: #fff;
    font-family: "Open Sauce Two Black", "Raleway", sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

/* CONTACT */

.ah2r-page .ah2-contact {
    padding: 120px 0 100px;
    background: #fff;
}

.ah2r-contact-heading {
    max-width: 740px;
    margin-bottom: 58px;
}

.ah2r-contact-heading h2 {
    margin-bottom: 20px;
    color: var(--ah2r-ink);
    font-family: "Open Sauce Two Black", "Raleway", sans-serif;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
}

.ah2r-contact-heading p {
    max-width: 570px;
    margin-bottom: 0;
    color: var(--ah2r-muted);
    font-size: 16px;
    line-height: 1.7;
}

.ah2r-page .ah2-contact-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.75fr);
    gap: 30px;
    align-items: stretch;
}

.ah2r-page .ah2-contact-form {
    min-height: 500px;
    padding: 30px;
    border: 1px solid var(--ah2r-line);
    border-radius: 28px;
    background: var(--ah2r-paper);
}

.ah2r-page .ah2-contact-card {
    display: flex;
    flex-direction: column;
    padding: 42px 38px;
    border-radius: 28px;
    background: #100e12;
    color: #fff;
    box-shadow: none;
}

.ah2r-contact-card-label {
    margin-bottom: 25px;
    color: #f3a9ca;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ah2r-page .ah2-contact-card h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
}

.ah2r-contact-card-intro {
    margin-bottom: 32px !important;
    color: #aaa4b0 !important;
    font-size: 13px;
    line-height: 1.6;
}

.ah2r-contact-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: center;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    text-decoration: none;
}

.ah2r-contact-row > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border: 1px solid rgba(255, 92, 145, 0.48);
    border-radius: 13px;
    background: rgba(249, 25, 98, 0.2);
    color: #ff5c91 !important;
    font-size: 18px;
    box-shadow: 0 7px 18px rgba(249, 25, 98, 0.16);
}

.ah2r-contact-row span {
    overflow-wrap: anywhere;
    font-size: 13px;
    line-height: 1.45;
}

.ah2r-contact-row small {
    display: block;
    margin-bottom: 3px;
    color: #8f8995;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ah2r-socials {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
}

.ah2r-socials a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 10, 18, 0.18);
}

.ah2r-socials a i,
.ah2r-socials a i::before {
    display: block;
    margin: 0;
    color: #fff !important;
    font-size: 19px;
    line-height: 1;
    opacity: 1;
}

.ah2r-socials a:hover {
    border-color: var(--ah2r-pink);
    background: var(--ah2r-pink);
}

/* MAP + FINAL CTA */

.ah2r-page .ah2-map-section {
    padding: 95px 0 110px;
    background: #fff;
}

.ah2r-map-heading {
    margin-bottom: 36px;
}

.ah2r-map-heading h2 {
    margin-bottom: 0;
    color: var(--ah2r-ink);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.ah2r-page .ah2-map-box {
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(23, 20, 31, 0.12);
}

.ah2r-page .ah2-map-box #singleListingMap-container {
    height: 470px;
}

.ah2r-page .ah2-map-box #ah2-google-map {
    width: 100%;
    height: 100%;
}

.ah2r-page .ah2-map-box #ah2-google-map .gm-style {
    font-family: "Open Sans", sans-serif;
}

.ah2r-final-cta {
    padding: 85px 0;
    background: linear-gradient(115deg, var(--ah2r-pink), var(--ah2r-plum));
}

.ah2r-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.ah2r-final-cta-inner span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
}

.ah2r-final-cta-inner h2 {
    margin-bottom: 0;
    color: #fff;
    font-family: "Open Sauce Two Black", "Raleway", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .ah2r-intro {
        padding: 95px 0;
    }

    .ah2r-intro-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ah2r-intro-copy,
    .ah2r-section-heading,
    .ah2r-clients-heading,
    .ah2r-featured-head,
    .ah2r-contact-heading,
    .ah2r-map-heading {
        text-align: center;
    }

    .ah2r-eyebrow {
        justify-content: center;
    }

    .ah2r-intro-copy > p,
    .ah2r-section-heading > p,
    .ah2r-clients-heading p,
    .ah2r-featured-head p,
    .ah2r-contact-heading p,
    .ah2r-nearby-title p {
        margin-left: auto;
        margin-right: auto;
    }

    .ah2r-actions {
        justify-content: center;
    }

    .ah2r-value-panel {
        max-width: 650px;
        margin-right: auto;
        margin-left: auto;
    }

    .ah2r-value-item {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .ah2r-section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ah2r-clients-heading {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }

    .ah2r-page .ah2-how-grid {
        grid-template-columns: 1fr;
    }

    .ah2r-page .ah2-how-step {
        min-height: 300px;
        align-items: center;
        text-align: center;
    }

    .ah2r-page .ah2-how-step p {
        margin-right: auto;
        margin-left: auto;
    }

    .ah2r-step-number {
        align-self: center;
    }

    .ah2r-page .ah2-section-header {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .ah2r-featured-head {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ah2r-page .ah2-featured-filter {
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .ah2r-page .ah2-contact-grid {
        grid-template-columns: 1fr;
    }

    .ah2r-contact-heading {
        margin-right: auto;
        margin-left: auto;
    }

    .ah2r-page .ah2-contact-card {
        align-items: center;
        text-align: center;
    }

    .ah2r-contact-row {
        width: 100%;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .ah2r-socials {
        width: 100%;
        justify-content: center;
    }

    .ah2r-final-cta-inner {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ah2r-intro,
    .ah2r-page .ah2-how-it-works,
    .ah2r-clients,
    .ah2r-page .ah2-nearby-section,
    .ah2r-page .ah2-featured,
    .ah2r-page .ah2-contact {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .ah2r-intro-copy h2 {
        font-size: 46px;
    }

    .ah2r-actions {
        align-items: center;
        flex-direction: column;
        gap: 18px;
    }

    .ah2r-value-panel {
        padding: 30px 25px 15px;
        border-radius: 25px;
    }

    .ah2r-page .ah2-section-header {
        align-items: center;
        flex-direction: column;
    }

    .ah2r-page .ah2-nearby-skeleton {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ah2r-page .ah2-nearby-skeleton-card:nth-child(n+3) {
        display: none;
    }

    .ah2r-manifesto {
        padding: 80px 0;
    }

    .ah2r-manifesto-card {
        min-height: 420px;
        padding: 60px 22px;
        border-radius: 28px;
    }

    .ah2r-page .ah2-contact-form,
    .ah2r-page .ah2-contact-card {
        padding: 25px 20px;
    }

    .ah2r-page .ah2-map-section {
        padding: 75px 0;
    }

    .ah2r-final-cta {
        padding: 65px 0;
    }

    .ah2r-final-cta-inner {
        align-items: center;
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .ah2r-intro-copy h2 {
        font-size: 39px;
    }

    .ah2r-intro-copy > p {
        font-size: 16px;
    }

    .ah2r-value-item {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .ah2r-value-item > i {
        width: 42px;
        height: 42px;
    }

    .ah2r-section-heading h2,
    .ah2r-clients-heading h2,
    .ah2r-nearby-title h2,
    .ah2r-featured-head h2,
    .ah2r-contact-heading h2 {
        font-size: 36px;
    }

    .ah2r-clients-heading {
        margin-bottom: 36px;
    }

    .ah2r-client-logo {
        min-height: 320px;
        padding: 32px 24px;
    }

    .ah2r-client-logo img {
        max-height: 240px;
    }

    .ah2r-clients-carousel[data-client-count="1"] .ah2r-client-logo img {
        --ah2r-client-travel-start: -12px;
        --ah2r-client-travel-end: 12px;
    }

    .ah2r-clients-showcase {
        border-radius: var(--ah2r-client-radius-mobile);
    }

    .ah2r-clients-showcase::before {
        left: 24px;
        width: 56px;
    }

    .ah2r-clients-controls {
        padding: 16px 20px;
    }

    .ah2r-page .ah2-how-step {
        min-height: 315px;
        padding: 30px 25px;
    }

    .ah2r-page .ah2-nearby-stage {
        min-height: 400px;
        border-radius: 25px;
    }

    .ah2r-location-prompt {
        padding: 0 18px;
    }

    .ah2r-page .ah2-nearby-skeleton {
        grid-template-columns: 1fr;
    }

    .ah2r-page .ah2-nearby-skeleton-card:nth-child(n+2) {
        display: none;
    }

    .ah2r-page .ah2-featured-filter {
        max-width: none;
    }

    .ah2r-manifesto-card h2 {
        font-size: 38px;
    }

    .ah2r-page .ah2-map-box #singleListingMap-container {
        height: 350px;
    }
}

@media (max-width: 48rem) {
    .ah2-hero,
    .ah2-hero .ah2-search-box,
    .ah2-hero .ah2-types-carousel,
    .ah2-hero .ah2-type-card {
        box-sizing: border-box;
    }

    .ah2-hero {
        min-height: clamp(52rem, 205vw, 56.25rem);
        min-height: max(clamp(52rem, 205vw, 56.25rem), 100svh);
        padding-bottom: 4rem;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .ah2-hero .ah2-hero-title {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .ah2-hero .ah2-search-box,
    .ah2-hero .ah2-types-carousel {
        width: clamp(272px, 84%, 400px);
        max-width: calc(100% - 32px);
    }

    .ah2-hero .ah2-search-box {
        gap: 8px;
        padding: 16px;
        margin-top: clamp(115px, calc(25vw + 11px), 131px);
        margin-bottom: 12px;
        border-radius: 20px;
    }

    .ah2-hero .ah2-search-field {
        min-width: 0;
        padding-inline: 0;
    }

    .ah2-hero .ah2-search-field label {
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 1.25;
    }

    .ah2-hero .ah2-select {
        height: 44px;
        margin-bottom: 0;
        padding-inline: 12px 36px;
        overflow: hidden;
        font-size: 14px;
        line-height: normal;
        white-space: nowrap;
        text-overflow: ellipsis;
        outline: 2px solid transparent;
        outline-offset: 1px;
    }

    .ah2-hero .ah2-select option {
        font: inherit;
        line-height: 1.5;
    }

    .ah2-hero .ah2-select:focus-visible {
        outline-color: currentColor;
        box-shadow: none;
    }

    .ah2-hero .ah2-select:disabled {
        opacity: 0.55;
        cursor: not-allowed;
    }

    .ah2-hero .ah2-search-btn {
        height: 44px;
        font-size: 15px;
        white-space: nowrap;
    }

    .ah2-hero .ah2-types-carousel {
        min-height: 224px;
        padding: 8px 0 12px;
    }

    .ah2-hero .ah2-types-carousel:not(.slick-initialized) {
        max-height: 224px;
    }

    .ah2-hero .ah2-types-carousel .slick-list {
        min-height: 212px;
        padding: 4px 0 8px !important;
    }

    .ah2-hero .ah2-types-carousel .slick-slide {
        padding-inline: 4px !important;
    }

    .ah2-hero .ah2-type-card {
        min-height: 196px;
        padding: 8px;
        border-radius: 16px;
    }

    .ah2-hero .ah2-type-img-box,
    .ah2-hero .ah2-type-img-box img {
        height: 128px;
        border-radius: 12px;
    }

    .ah2-hero .ah2-type-info {
        padding: 10px 4px 4px;
    }

    .ah2-hero .ah2-type-info .ah2-type-title {
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 1.25;
    }

    .ah2-hero .ah2-type-info span {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ah2r-clients-carousel[data-client-count="1"] .ah2r-client-logo img {
        animation: none;
        transform: none;
    }

    .ah2r-page *,
    .ah2r-page *::before,
    .ah2r-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
