.w75-location-page {
    --w75-navy: #082c4c;
    --w75-blue: #0c5f96;
    --w75-sky: #eaf5fb;
    --w75-gold: #d6a43a;
    --w75-ink: #183247;
    --w75-muted: #63798a;
    --w75-line: #dce7ed;
    --w75-white: #ffffff;
    color: var(--w75-ink);
    background: #f5f8fa;
    font-family: inherit;
    line-height: 1.6;
}

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

.w75-location-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.w75-location-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 108px) 0;
    color: var(--w75-white);
    background:
        radial-gradient(circle at 88% 20%, rgba(214, 164, 58, .22), transparent 23%),
        linear-gradient(135deg, #061f38 0%, #08395f 58%, #0c5f96 100%);
}

.w75-location-hero::after {
    content: "W75";
    position: absolute;
    right: clamp(20px, 8vw, 120px);
    bottom: -72px;
    color: rgba(255,255,255,.055);
    font-size: clamp(150px, 25vw, 360px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.08em;
    pointer-events: none;
}

.w75-location-hero .w75-location-shell {
    position: relative;
    z-index: 1;
}

.w75-location-eyebrow,
.w75-kicker {
    margin: 0 0 10px;
    color: var(--w75-gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.w75-location-hero h1 {
    max-width: 800px;
    margin: 0;
    color: var(--w75-white);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.w75-location-lead {
    max-width: 760px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.88);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.w75-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.w75-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.w75-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
}

.w75-btn-primary {
    color: #fff !important;
    background: var(--w75-blue);
}

.w75-location-hero .w75-btn-primary {
    color: var(--w75-navy) !important;
    background: var(--w75-gold);
}

.w75-btn-light {
    color: #fff !important;
    border-color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}

.w75-location-content {
    padding-top: 0;
    padding-bottom: 72px;
}

.w75-location-summary {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: -32px;
    overflow: hidden;
    border: 1px solid var(--w75-line);
    border-radius: 14px;
    background: var(--w75-line);
    box-shadow: 0 18px 45px rgba(8, 44, 76, .12);
}

.w75-summary-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 112px;
    padding: 24px 20px;
    background: #fff;
}

.w75-summary-icon {
    display: grid;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: var(--w75-blue);
    background: var(--w75-sky);
    font-weight: 900;
}

.w75-summary-label {
    display: block;
    margin-bottom: 4px;
    color: var(--w75-muted);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.w75-summary-card strong {
    display: block;
    font-size: .94rem;
    line-height: 1.45;
}

.w75-summary-card a {
    color: inherit;
    text-decoration: none;
}

.w75-location-grid {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.w75-location-grid-map {
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
}

.w75-location-grid-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.w75-panel {
    overflow: hidden;
    border: 1px solid var(--w75-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(8, 44, 76, .075);
}

.w75-panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px 20px;
}

.w75-panel-heading h2,
.w75-directions-card h2,
.w75-area-feature h2 {
    margin: 0;
    color: var(--w75-navy);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.w75-panel-heading a {
    flex: 0 0 auto;
    color: var(--w75-blue);
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
}

.w75-map-frame {
    height: 500px;
    border-top: 1px solid var(--w75-line);
}

.w75-map-frame iframe,
.w75-section-live iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.w75-directions-card {
    padding: 28px 26px;
}

.w75-directions-card > h2 {
    margin-bottom: 18px;
}

.w75-route-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid var(--w75-line);
}

.w75-route-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 28px;
    border-radius: 999px;
    color: var(--w75-blue);
    background: var(--w75-sky);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.w75-route-item h3 {
    margin: 0 0 6px;
    color: var(--w75-navy);
    font-size: 1rem;
}

.w75-route-item p {
    margin: 0;
    color: var(--w75-muted);
    font-size: .92rem;
}

.w75-image-frame {
    margin: 0;
}

.w75-image-frame img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-top: 1px solid var(--w75-line);
}

.w75-image-frame figcaption {
    padding: 14px 20px 18px;
    color: var(--w75-muted);
    font-size: .82rem;
}

.w75-section-frame {
    height: 430px;
    overflow: hidden;
    border-top: 1px solid var(--w75-line);
    background: #e9eef0;
}

.w75-section-frame img {
    height: 100%;
    object-fit: cover;
}

.w75-section-placeholder {
    display: flex;
    height: 430px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid var(--w75-line);
    background:
        linear-gradient(rgba(255,255,255,.65), rgba(255,255,255,.65)),
        repeating-linear-gradient(45deg, #e7edf0 0, #e7edf0 12px, #f4f7f8 12px, #f4f7f8 24px);
}

.w75-section-placeholder strong {
    color: var(--w75-navy);
    font-size: 3.2rem;
    line-height: 1;
}

.w75-section-placeholder span {
    margin-bottom: 12px;
    color: var(--w75-muted);
    font-weight: 700;
}

.w75-coordinate-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--w75-line);
}

.w75-coordinate-strip > div {
    padding: 16px 20px;
}

.w75-coordinate-strip > div + div {
    border-left: 1px solid var(--w75-line);
}

.w75-coordinate-strip span {
    display: block;
    color: var(--w75-muted);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.w75-coordinate-strip strong {
    color: var(--w75-navy);
    font-size: .92rem;
}

.w75-area-feature {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: clamp(30px, 6vw, 80px);
    margin-top: 40px;
    padding: clamp(34px, 6vw, 64px);
    border-radius: 14px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(214,164,58,.2), transparent 25%),
        var(--w75-navy);
}

.w75-location-page .w75-area-feature h2 {
    color: var(--w75-gold) !important;
}

.w75-area-feature > p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 1.04rem;
}

.w75-pilot-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 20px 22px;
    border: 1px solid #efdcae;
    border-radius: 10px;
    background: #fff9ea;
}

.w75-pilot-note > span {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--w75-gold);
    font-weight: 900;
}

.w75-pilot-note p {
    margin: 1px 0 0;
    color: #6d5b2e;
    font-size: .88rem;
}

@media (max-width: 980px) {
    .w75-location-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .w75-location-grid-map,
    .w75-location-grid-visuals {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .w75-location-shell {
        width: min(100% - 24px, 1180px);
    }

    .w75-location-hero {
        padding: 58px 0 78px;
    }

    .w75-location-actions,
    .w75-location-actions .w75-btn {
        width: 100%;
    }

    .w75-location-summary {
        grid-template-columns: 1fr;
        margin-top: -24px;
    }

    .w75-summary-card {
        min-height: auto;
    }

    .w75-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .w75-map-frame,
    .w75-section-frame,
    .w75-section-placeholder,
    .w75-image-frame img {
        height: 340px;
    }

    .w75-coordinate-strip {
        grid-template-columns: 1fr;
    }

    .w75-coordinate-strip > div + div {
        border-top: 1px solid var(--w75-line);
        border-left: 0;
    }
}
