
/* =========================================================
   WHERE — LOCAL LANDING PAGE
========================================================= */

body.where-page {
    overflow-x: clip;
    overflow-y: auto;
    background: #050505;
}

.where-page .nav-dropdown a[aria-current="page"],
.where-page .mobile-subnav a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.where-main {
    min-width: 0;
    overflow: clip;
}

.where-shell {
    width: min(calc(100% - 64px), 1380px);
    margin-inline: auto;
}

.where-kicker {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.where-section {
    position: relative;
    padding: clamp(96px, 10vw, 156px) 0;
}

.where-heading {
    max-width: 910px;
    margin-bottom: clamp(46px, 6vw, 76px);
}

.where-heading h2,
.where-area-copy h2,
.where-final-inner h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(2.8rem, 5.5vw, 6.1rem);
    font-weight: 560;
    line-height: 0.95;
    letter-spacing: -0.058em;
    text-wrap: balance;
}

.where-heading > p:not(.where-kicker),
.where-area-copy > p:not(.where-kicker),
.where-final-inner > p:not(.where-kicker) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.75;
}

/* HERO */

.where-hero {
    position: relative;
    min-height: min(960px, 100svh);
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    padding: 150px 0 72px;
    background: #050505;
}

.where-hero-media,
.where-hero-overlay {
    position: absolute;
    inset: 0;
}

.where-hero-media {
    z-index: -3;
}

.where-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    transform: scale(1.03);
    animation: whereHeroZoom 22s ease-out both;
}

.where-hero-overlay {
    z-index: -2;
    background:
        radial-gradient(circle at 75% 28%, rgba(192, 27, 27, 0.26), transparent 35%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 46%, rgba(0, 0, 0, 0.26) 76%, rgba(0, 0, 0, 0.55) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.16) 65%);
}

.where-hero-inner {
    position: relative;
    z-index: 2;
}

.where-hero h1 {
    max-width: 1020px;
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(3.3rem, 7vw, 7.6rem);
    font-weight: 570;
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.where-hero-copy {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1.04rem, 1.45vw, 1.24rem);
    line-height: 1.72;
}

.where-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.where-address-card {
    width: min(100%, 820px);
    margin-top: 62px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    background: rgba(8, 8, 8, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.where-address-index {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.where-address-card small,
.where-address-card strong,
.where-address-card div > span {
    display: block;
}

.where-address-card small {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.where-address-card strong {
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1.15;
}

.where-address-card div > span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.94rem;
}

.where-address-card > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes whereHeroZoom {
    from { transform: scale(1.03); }
    to { transform: scale(1.08); }
}

/* FACTS */

.where-facts {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.where-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.where-facts article {
    padding: 42px clamp(18px, 3vw, 40px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.where-facts article:first-child {
    padding-left: 0;
}

.where-facts article:last-child {
    padding-right: 0;
    border-right: 0;
}

.where-facts strong,
.where-facts span {
    display: block;
}

.where-facts strong {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 620;
    line-height: 1;
    letter-spacing: -0.045em;
}

.where-facts span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.84rem;
}

/* MAP */

.where-map-section {
    background:
        radial-gradient(circle at 88% 12%, rgba(231, 76, 60, 0.07), transparent 30%),
        #050505;
}

.where-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.5fr);
    gap: 22px;
    align-items: stretch;
}

.where-map-frame {
    min-height: 680px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 28px;
}

.where-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 680px;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(0.88);
}

.where-route-card {
    padding: clamp(30px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
}

.where-route-label {
    margin-bottom: 28px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.where-route-card h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 570;
    line-height: 1.02;
    letter-spacing: -0.048em;
}

.where-route-card > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.98rem;
    line-height: 1.7;
}

.where-route-list {
    margin: 38px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.where-route-list > div {
    min-height: 84px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.where-route-list span {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.where-route-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    line-height: 1.55;
}

.where-route-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ARRIVAL */

.where-arrival {
    background: #0a0a0a;
}

.where-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: end;
}

.where-heading-split > p {
    padding-bottom: 10px;
}

.where-arrival-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.where-info-card {
    position: relative;
    min-height: 330px;
    padding: clamp(28px, 4vw, 46px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 100% 0%, rgba(231, 76, 60, 0.1), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
}

.where-info-card-large {
    grid-row: span 2;
    min-height: 678px;
}

.where-card-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.where-card-icon {
    width: 74px;
    height: 74px;
    margin-bottom: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.27);
    border-radius: 20px;
}

.where-card-icon svg {
    width: 37px;
    height: 37px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.where-info-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.55rem, 2.5vw, 2.8rem);
    font-weight: 570;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.where-info-card p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.96rem;
    line-height: 1.68;
}

/* AREA */

.where-area {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(231, 76, 60, 0.05), transparent 52%),
        #050505;
}

.where-area-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: center;
}

.where-area-copy h2 {
    max-width: 820px;
}

.where-area-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.where-area-visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(231, 76, 60, 0.13), transparent 18%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.035), transparent 52%),
        #080808;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.where-area-visual::before,
.where-area-visual::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
}

.where-area-visual::before {
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
}

.where-area-visual::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
}

.where-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.where-orbit-one {
    width: 72%;
    height: 72%;
}

.where-orbit-two {
    width: 48%;
    height: 48%;
}

.where-orbit-three {
    width: 24%;
    height: 24%;
    border-color: rgba(231, 76, 60, 0.34);
}

.where-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border: 9px solid rgba(231, 76, 60, 0.17);
    border-radius: 50% 50% 50% 10%;
    transform: translate(-50%, -70%) rotate(-45deg);
    box-shadow: 0 20px 55px rgba(231, 76, 60, 0.28);
}

.where-pin span {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
}

.where-location-label {
    position: absolute;
    right: 8%;
    bottom: 10%;
    z-index: 3;
    padding: 20px 24px;
    background: rgba(8, 8, 8, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    backdrop-filter: blur(16px);
}

.where-location-label small,
.where-location-label strong,
.where-location-label span {
    display: block;
}

.where-location-label small {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.where-location-label strong {
    color: #fff;
    font-size: 1.2rem;
}

.where-location-label span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
}

/* FAQ */

.where-faq {
    background: #0a0a0a;
}

.where-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1.52fr);
    gap: clamp(52px, 8vw, 120px);
    align-items: start;
}

.where-faq-heading {
    position: sticky;
    top: 118px;
}

.where-faq-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.8rem, 4.5vw, 5.1rem);
    font-weight: 560;
    line-height: 0.98;
    letter-spacing: -0.052em;
}

.where-faq-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.where-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.where-faq summary {
    position: relative;
    min-height: 104px;
    padding: 28px 56px 28px 0;
    display: flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
    list-style: none;
    font-size: clamp(1.05rem, 1.6vw, 1.34rem);
    font-weight: 620;
    line-height: 1.35;
}

.where-faq summary::-webkit-details-marker {
    display: none;
}

.where-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.7rem;
    font-weight: 300;
    transition: transform 220ms ease;
}

.where-faq details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.where-faq details p {
    max-width: 760px;
    margin: 0;
    padding: 0 56px 30px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.96rem;
    line-height: 1.72;
}

/* FINAL CTA */

.where-final-cta {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    padding: 120px 0 90px;
}

.where-final-media,
.where-final-overlay {
    position: absolute;
    inset: 0;
}

.where-final-media {
    z-index: -3;
}

.where-final-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.where-final-overlay {
    z-index: -2;
    background:
        radial-gradient(circle at 76% 24%, rgba(231, 76, 60, 0.16), transparent 34%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.24) 72%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.3));
}

.where-final-inner {
    position: relative;
    z-index: 2;
}

.where-final-inner h2 {
    max-width: 880px;
}

.where-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

/* TABLET */

@media (max-width: 1120px) {
    .where-shell {
        width: min(calc(100% - 48px), 1380px);
    }

    .where-map-layout {
        grid-template-columns: 1fr;
    }

    .where-map-frame,
    .where-map-frame iframe {
        min-height: 560px;
    }

    .where-route-card {
        min-height: 520px;
    }

    .where-area-grid {
        grid-template-columns: 1fr;
    }

    .where-area-visual {
        width: min(100%, 680px);
        min-height: 620px;
        margin-inline: auto;
    }
}

/* MOBILE */

@media (max-width: 820px) {
    .where-shell {
        width: min(calc(100% - 40px), 1380px);
    }

    .where-main {
        overflow: hidden;
    }

    .where-section {
        padding: 88px 0;
    }

    .where-heading h2,
    .where-area-copy h2,
    .where-final-inner h2 {
        font-size: clamp(2.5rem, 11vw, 4rem);
        line-height: 0.98;
    }

    .where-hero {
        min-height: auto;
        padding: 118px 0 54px;
    }

    .where-hero-media img {
        object-position: 62% center;
    }

    .where-hero-overlay {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.76) 68%, rgba(0, 0, 0, 0.34) 100%);
    }

    .where-hero h1 {
        font-size: clamp(2.75rem, 13vw, 4.45rem);
        line-height: 0.94;
    }

    .where-hero-actions {
        margin-top: 34px;
    }

    .where-hero-actions .btn {
        width: 100%;
    }

    .where-address-card {
        margin-top: 42px;
        padding: 20px;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 16px;
        border-radius: 20px;
    }

    .where-address-index {
        width: 42px;
        height: 42px;
    }

    .where-address-card > a {
        grid-column: 1 / -1;
        min-height: 46px;
        justify-content: center;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .where-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .where-facts article,
    .where-facts article:first-child,
    .where-facts article:last-child {
        padding: 28px 18px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .where-facts article:nth-child(2n) {
        border-right: 0;
    }

    .where-facts article:nth-child(n + 3) {
        border-bottom: 0;
    }

    .where-map-frame,
    .where-map-frame iframe {
        min-height: 470px;
    }

    .where-map-frame,
    .where-route-card {
        border-radius: 22px;
    }

    .where-route-card {
        min-height: auto;
        padding: 28px 22px;
    }

    .where-route-card h3 {
        font-size: 2.35rem;
    }

    .where-heading-split {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .where-arrival-grid {
        grid-template-columns: 1fr;
    }

    .where-info-card,
    .where-info-card-large {
        min-height: 330px;
        grid-row: auto;
        border-radius: 22px;
    }

    .where-area-actions .btn {
        width: 100%;
    }

    .where-area-visual {
        min-height: auto;
        aspect-ratio: 1 / 1;
    }

    .where-location-label {
        right: 5%;
        bottom: 7%;
        padding: 16px 18px;
    }

    .where-faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .where-faq-heading {
        position: static;
    }

    .where-faq summary {
        min-height: 0;
        padding: 25px 44px 25px 0;
        font-size: 1rem;
    }

    .where-faq details p {
        padding: 0 44px 27px 0;
        font-size: 0.92rem;
    }

    .where-final-cta {
        min-height: auto;
        padding: 110px 0 70px;
    }

    .where-final-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .where-shell {
        width: min(calc(100% - 32px), 1380px);
    }

    .where-hero {
        padding-top: 108px;
    }

    .where-facts article,
    .where-facts article:first-child,
    .where-facts article:last-child {
        padding: 24px 12px;
    }

    .where-facts strong {
        font-size: 1.7rem;
    }

    .where-facts span {
        font-size: 0.72rem;
    }

    .where-map-frame,
    .where-map-frame iframe {
        min-height: 420px;
    }

    .where-area-visual {
        min-width: 0;
    }

    .where-pin {
        width: 60px;
        height: 60px;
    }

    .where-location-label {
        max-width: 175px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .where-hero-media img {
        animation: none;
    }
}
