/* =====================================================
   Drop Zone — bento edition
   Blue + white only. No cream, no rhythm sections.
   ===================================================== */

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

:root {
    --bg: #f4f6fa;            /* soft blue-tinted off-white — the "page" */
    --tile: #ffffff;          /* pure white tiles sit on the page */
    --tile-2: #eef2f8;        /* secondary tile bg if needed */
    --ink: #0b1f3a;           /* deep navy primary */
    --ink-2: #2b3f5b;
    --ink-3: #6b7a8b;
    --line: rgba(11,31,58,0.08);
    --line-strong: rgba(11,31,58,0.16);
    --accent: #2563eb;        /* blue 600 */
    --accent-2: #1d4ed8;      /* blue 700 — hover */
    --accent-soft: #dbe7ff;   /* blue 100 — for tints */
    --dark-bg: #0b1f3a;
    --dark-ink: #ffffff;
    --dark-ink-2: rgba(255,255,255,0.66);
    --dark-line: rgba(255,255,255,0.10);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --pad-x: clamp(20px, 5vw, 96px);
    --max-w: 1280px;

    --shadow-sm: 0 1px 2px rgba(11,31,58,0.04), 0 0 0 1px rgba(11,31,58,0.05);
    --shadow-md: 0 4px 12px rgba(11,31,58,0.06), 0 0 0 1px rgba(11,31,58,0.05);
    --shadow-lg: 0 24px 48px rgba(11,31,58,0.08), 0 0 0 1px rgba(11,31,58,0.05);

    --ease-out: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; overflow-x: clip; }
html, body { margin: 0; padding: 0; }

/* Default: hide elements flagged as mobile-only. They get re-shown
   inside the @media (max-width: 480px) block at the bottom of the file. */
.mobile-only { display: none; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: clip;
    text-rendering: optimizeLegibility;
    width: 100%;
}
@supports (font-variation-settings: normal) {
    body { font-family: 'Inter var', -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Reveal on scroll — subtle */
.reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
    filter: blur(6px);
    transition:
        opacity 1s var(--ease-out),
        transform 1.25s var(--ease-out),
        filter 1s var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}
.reveal.in {
    opacity: 1;
    transform: none;
    filter: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; filter: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* =====================================================
   Typography
   ===================================================== */

.display {
    font-weight: 600;
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--ink);
}

.lede {
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.55;
    color: var(--ink-2);
    margin: 24px 0 0;
    max-width: 60ch;
    font-weight: 400;
}

/* =====================================================
   Buttons + text links
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: background 0.4s var(--ease-out), color 0.3s, border-color 0.3s, transform 0.4s var(--ease-out);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }

.btn-quiet {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn-quiet:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Text link with arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: gap 0.4s var(--ease-out), color 0.3s;
    cursor: pointer;
}
.link-arrow span { transition: transform 0.4s var(--ease-out); display: inline-block; }
.link-arrow:hover { color: var(--accent-2); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow-light { color: rgba(255,255,255,0.95); }
.link-arrow-light:hover { color: #fff; }

/* =====================================================
   Nav (sticky, glass on scroll)
   ===================================================== */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.5s var(--ease-out), backdrop-filter 0.5s, border-color 0.5s;
    border-bottom: 1px solid transparent;
    background: rgba(244,246,250,0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav-logo {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.18);
}
.nav-links {
    display: flex;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
    background: var(--ink);
    color: #fff;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.3s, transform 0.3s var(--ease-out);
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav.scrolled { border-bottom-color: var(--line); }

@media (max-width: 880px) {
    .nav-links { display: none; }
}

/* =====================================================
   Hero — typographic only, no photo
   ===================================================== */

.hero {
    position: relative;
    min-height: 92vh;
    min-height: 92svh;
    display: flex;
    align-items: center;
    padding: 140px var(--pad-x) 64px;
    overflow: hidden;
    isolation: isolate;
}
.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    margin: 0 0 36px;
    padding: 8px 14px 8px 12px;
    background: var(--tile);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    animation: live-pulse 2.4s infinite;
}
@keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0.05); }
}

.hero-title {
    font-weight: 600;
    font-size: clamp(56px, 11vw, 168px);
    line-height: 0.94;
    letter-spacing: -0.045em;
    margin: 0;
    color: var(--ink);
    max-width: 14ch;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
}
.hero-sub {
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: var(--ink-2);
    margin: 36px 0 0;
    max-width: 50ch;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* Subtle blue gradient sphere in the bg of the hero */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 800px 600px at 90% 100%, rgba(37,99,235,0.10), transparent 60%),
        radial-gradient(ellipse 600px 500px at 0% 0%, rgba(37,99,235,0.05), transparent 60%);
    pointer-events: none;
}

/* =====================================================
   Bento grid — the heart of the page
   ===================================================== */

.bento {
    padding: clamp(32px, 4vh, 64px) var(--pad-x) clamp(80px, 12vh, 140px);
}
.bento-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 14px;
    grid-template-areas:
        "space    space    pricing  pricing"
        "space    space    location access"
        "outdoor  outdoor  outdoor  wifi"
        "amen     amen     conf     conf";
}

.tile {
    position: relative;
    background: var(--tile);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    color: var(--ink);
}
a.tile { cursor: pointer; }
.tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.tile-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}
.tile-label-light { color: rgba(255,255,255,0.7); }

.tile-headline {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    color: var(--ink);
}
.tile-text {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-3);
    margin: 0;
}

/* --- Photo tiles --- */
.tile-photo { padding: 0; }
.tile-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 8s var(--ease-out);
}
.tile-space img {
    object-position: center 88%;
    transform: scale(1.10);
    transform-origin: center bottom;
}
.tile-space:hover img { transform: scale(1.14); }
.tile-outdoor img { object-position: center 45.5%; }
.tile-photo:hover img { transform: scale(1.04); }
.tile-photo-overlay {
    position: relative;
    margin-top: auto;
    padding: 36px 32px;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.78) 100%);
}
.tile-photo .tile-label { color: rgba(255,255,255,0.75); }
.tile-photo .tile-headline { color: #fff; }
.tile-photo .tile-text { color: rgba(255,255,255,0.85); max-width: 36ch; }

/* --- Tile types positioning --- */
.tile-space     { grid-area: space; min-height: 460px; }
.tile-pricing   { grid-area: pricing; }
.tile-location  { grid-area: location; }
.tile-access    { grid-area: access; }
.tile-outdoor   { grid-area: outdoor; min-height: 380px; }
.tile-wifi      { grid-area: wifi; }
.tile-amenities { grid-area: amen; }
.tile-conference {
    grid-area: conf;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--tile) 75%);
}
.tile-conference .tile-label { color: var(--accent); }
.tile-conference .link-arrow { color: var(--accent); }
.tile-conference:hover { background: linear-gradient(135deg, var(--accent-soft) 0%, var(--tile) 60%); }

/* --- Featured pricing tile (navy) --- */
.tile-featured {
    background: var(--ink);
    color: var(--dark-ink);
    box-shadow: 0 1px 2px rgba(11,31,58,0.10), 0 0 0 1px rgba(11,31,58,0.05);
}
.tile-featured .tile-label { color: rgba(255,255,255,0.7); }
.tile-featured .tile-headline { color: #fff; }
.tile-featured .tile-text { color: rgba(255,255,255,0.7); }

/* Mini price list inside featured tile */
.price-mini {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    margin-top: 4px;
}
.price-mini li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.price-mini li:last-child { border-bottom: none; padding-bottom: 0; }
.price-mini span {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.price-mini strong {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* --- Stat tiles --- */
.tile-stat-num {
    font-size: clamp(48px, 4.6vw, 72px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin: auto 0;
    color: var(--ink);
    font-feature-settings: 'tnum' 1, 'ss03' 1;
    white-space: nowrap;
}
.tile-stat-num .slash { color: var(--accent); margin: 0 -2px; font-weight: 400; opacity: 0.85; }

/* Wifi tile: down + up rows with arrow + number + unit, blue download */
.speed-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: auto 0;
    flex: 1;
    justify-content: center;
}
.speed-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.speed-arrow {
    font-size: 22px;
    line-height: 1;
    color: var(--accent);
    font-weight: 400;
    align-self: center;
}
.speed-row.up .speed-arrow { color: var(--ink-3); }
.speed-num {
    font-size: clamp(40px, 3.8vw, 54px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--accent);
    font-feature-settings: 'tnum' 1, 'ss03' 1;
}
.speed-row.up .speed-num { color: var(--ink-2); }
.speed-unit {
    font-size: 13px;
    color: var(--ink-3);
    font-weight: 500;
    letter-spacing: 0.005em;
    align-self: center;
    margin-left: auto;
}

/* --- Amenities mini list --- */
.amenity-mini {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    flex: 1;
}
.amenity-mini li {
    font-size: 14px;
    color: var(--ink-2);
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}
.amenity-mini li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.85;
}

/* --- Tile location, conference, etc. (link-style tiles) --- */
.tile-location:hover .link-arrow,
.tile-conference:hover .link-arrow { color: var(--accent-2); }
.tile-location:hover .link-arrow span,
.tile-conference:hover .link-arrow span { transform: translateX(4px); }

.tile .link-arrow { margin-top: auto; }

/* Bento responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "space    space"
            "pricing  pricing"
            "location access"
            "outdoor  outdoor"
            "wifi     amen"
            "conf     conf";
    }
    .tile-space { min-height: 380px; }
    .tile-outdoor { min-height: 320px; }
}
@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "space"
            "pricing"
            "location"
            "access"
            "outdoor"
            "wifi"
            "amen"
            "conf";
    }
    .tile { padding: 24px; }
    .tile-space, .tile-outdoor { min-height: 280px; }
}

/* =====================================================
   Membership detail
   ===================================================== */

.membership {
    padding: clamp(96px, 14vh, 160px) var(--pad-x);
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.section-head {
    max-width: 720px;
    margin: 0 auto clamp(56px, 8vh, 88px);
    text-align: center;
}
.section-head .lede { margin-left: auto; margin-right: auto; }
.section-head .display { letter-spacing: -0.035em; }

.price-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.price-card {
    background: var(--tile);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card.featured {
    background: var(--ink);
    color: var(--dark-ink);
    box-shadow: 0 1px 2px rgba(11,31,58,0.12), 0 0 0 1px rgba(11,31,58,0.05);
}
.price-card.featured h3,
.price-card.featured .price-num,
.price-card.featured .price-per { color: #fff; }
.price-card.featured .price-desc,
.price-card.featured .price-feats li,
.price-card.featured .price-sub { color: rgba(255,255,255,0.72); }
.price-card.featured .price-sub strong { color: #fff; }
.price-card.featured .btn-primary { background: #fff; color: var(--ink); }
.price-card.featured .btn-primary:hover { background: rgba(255,255,255,0.92); }

.price-card h3 {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    text-transform: uppercase;
}
.price-card.featured h3 { color: rgba(255,255,255,0.7); }

.price-tag {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.price-num {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
}
.price-per {
    font-size: 14px;
    color: var(--ink-3);
    font-weight: 400;
}
.price-sub {
    font-size: 13px;
    color: var(--ink-3);
    margin: -8px 0 0;
    line-height: 1.5;
}
.price-sub strong { color: var(--ink); font-weight: 500; }
.price-desc {
    color: var(--ink-3);
    font-size: 15px;
    margin: 0;
    line-height: 1.55;
}
.price-feats {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    border-top: 1px solid var(--line);
}
.price-card.featured .price-feats { border-top-color: rgba(255,255,255,0.12); }
.price-feats li {
    font-size: 14px;
    color: var(--ink-2);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.price-feats li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 11px;
    height: 6px;
    border-left: 1.5px solid var(--accent);
    border-bottom: 1.5px solid var(--accent);
    transform: rotate(-45deg);
}
.price-card.featured .price-feats li::before { border-color: rgba(255,255,255,0.55); }

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

/* "Members also get" divider inside a price card */
.feat-label {
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.price-card.featured .feat-label {
    border-top-color: rgba(255,255,255,0.12);
    color: #fff;
}
.feat-label + .price-feats {
    border-top: none;
    padding-top: 12px;
}

.price-note {
    text-align: center;
    margin: 56px auto 0;
    color: var(--ink-3);
    font-size: 14px;
    max-width: 640px;
    line-height: 1.6;
}
.price-note strong { color: var(--ink); font-weight: 500; }
.price-note a { color: var(--accent); transition: color 0.3s; }
.price-note a:hover { color: var(--accent-2); }

@media (max-width: 880px) {
    .price-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   Location strip — text + key/value card
   ===================================================== */

.location {
    padding: clamp(96px, 14vh, 160px) var(--pad-x);
    background: var(--bg);
}
.location-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
}
.location-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 20px;
}
.location-text .display { letter-spacing: -0.03em; }
.location-text .link-arrow { margin-top: 32px; }

.location-card {
    background: var(--tile);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.card-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
.card-row:last-child { border-bottom: none; padding-bottom: 0; }
.card-row:first-child { padding-top: 0; }
.card-key {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.6;
}
.card-val {
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.5;
}
.card-val a { color: var(--accent); transition: color 0.3s; }
.card-val a:hover { color: var(--accent-2); }

@media (max-width: 880px) {
    .location-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* =====================================================
   FAQ
   ===================================================== */

.faq {
    padding: clamp(96px, 14vh, 160px) var(--pad-x);
    background: var(--bg);
}
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    background: var(--tile);
    border-radius: var(--radius-xl);
    padding: 0 36px;
    box-shadow: var(--shadow-sm);
}
.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
}
.faq-list details:last-child { border-bottom: none; }
.faq-list summary {
    list-style: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--ink);
    transition: color 0.3s;
}
.faq-list summary:hover { color: var(--accent); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--ink-3);
    transition: transform 0.4s var(--ease-out);
    line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-list details p {
    margin: 16px 0 4px;
    color: var(--ink-3);
    font-size: 15px;
    line-height: 1.65;
    max-width: 60ch;
}
.faq-list details p a { color: var(--accent); }

.faq-footer {
    max-width: 780px;
    margin: 32px auto 0;
    text-align: center;
    color: var(--ink-3);
    font-size: 14px;
}
.faq-footer a {
    color: var(--accent);
    transition: color 0.3s;
}
.faq-footer a:hover { color: var(--accent-2); }

@media (max-width: 640px) {
    .faq-list { padding: 0 24px; }
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
    background: var(--dark-bg);
    color: var(--dark-ink);
    padding: 72px var(--pad-x) 28px;
    margin-top: clamp(56px, 8vh, 96px);
}
.footer-top {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--dark-line);
}
.footer-brand p { margin: 0; }
.footer-logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--dark-ink);
    margin: 0 0 8px !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-tag {
    color: var(--dark-ink-2);
    font-size: 13px;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-links p { margin: 0; font-size: 14px; line-height: 1.7; color: var(--dark-ink-2); }
.footer-links a { color: var(--dark-ink-2); transition: color 0.3s; }
.footer-links a:hover { color: var(--dark-ink); }
.footer-h {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--dark-ink) !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 14px !important;
}
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--dark-ink-2);
}
.footer-bottom p { margin: 0; }

@media (max-width: 880px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   Details ("guide") page
   Sub-hero · navy intro · fluid blob grids
   ===================================================== */

.subhero {
    padding: 150px var(--pad-x) clamp(28px, 4vh, 48px);
    background: var(--bg);
}
.subhero-inner { max-width: var(--max-w); margin: 0 auto; }
.subhero .location-label { margin: 0 0 18px; }
.subhero .display { letter-spacing: -0.035em; max-width: 16ch; }
.subhero .lede { margin-top: 20px; }

/* "What's DZC?" — navy intro card */
.intro { padding: 0 var(--pad-x) clamp(40px, 6vh, 72px); background: var(--bg); }
.intro-card {
    max-width: var(--max-w);
    margin: 0 auto;
    background: var(--ink);
    color: var(--dark-ink);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 64px);
    box-shadow: var(--shadow-sm);
}
.intro-card .tile-label { color: rgba(255,255,255,0.7); margin: 0 0 16px; }
.intro-card p {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    margin: 0;
    max-width: 72ch;
}
.intro-card p + p { margin-top: 16px; }
.intro-card a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.intro-card a:hover { color: rgba(255,255,255,0.85); }

/* Section group heading on the guide page (left-aligned, smaller than the centered .section-head) */
.guide-head {
    max-width: var(--max-w);
    margin: 0 auto clamp(20px, 3vh, 32px);
}
.guide-head .display { font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.03em; }
.guide-head p { margin: 12px 0 0; color: var(--ink-3); font-size: 15px; max-width: 56ch; }

/* Fluid grid of info "blobs" — auto-fit so rows always fill, no empty cells, no overlap */
.info { padding: clamp(8px, 2vh, 20px) var(--pad-x) clamp(56px, 8vh, 96px); background: var(--bg); }
.info:last-of-type { padding-bottom: clamp(80px, 12vh, 140px); }
.info-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}
.info-grid .tile { gap: 12px; }
.info-grid .tile .tile-text { color: var(--ink-2); }

/* Accent (blue) blob — same look as the homepage conference tile but WITHOUT
   the bento grid-area, which would otherwise scramble this fluid grid. */
.tile-feature {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--tile) 75%);
}
.tile-feature .tile-label { color: var(--accent); }
.tile-feature .link-arrow { color: var(--accent); }
.tile-feature:hover { background: linear-gradient(135deg, var(--accent-soft) 0%, var(--tile) 60%); }
.tile-feature:hover .link-arrow { color: var(--accent-2); }
.tile-feature:hover .link-arrow span { transform: translateX(4px); }

/* Key/value fact list inside a blob */
.fact-list {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.fact-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-size: 14px;
    color: var(--ink-2);
    padding-bottom: 11px;
    border-bottom: 1px solid var(--line);
}
.fact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fact-list strong {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Plain checklist inside a blob */
.note-list {
    list-style: none;
    margin: 2px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.note-list li {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}
.note-list li strong { color: var(--ink); font-weight: 600; }
.note-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.85;
}

@media (max-width: 480px) {
    .subhero { padding-top: 116px; }
    .intro-card { padding: 26px 22px; }
    .info-grid { gap: 12px; }
}

/* =====================================================
   Mobile-only refinements (≤480px)
   Targets phones; desktop layout above is untouched.
   ===================================================== */
@media (max-width: 480px) {
    /* Re-show mobile-only flagged elements */
    p.mobile-only        { display: block; }
    li.mobile-only       { display: list-item; }
    span.mobile-only     { display: inline; }
    .mobile-only         { display: revert; }

    /* Drop the pricing summary tile and the outdoor photo tile on phone —
       pricing is repeated below in detail and outdoor info is now in the
       included list */
    .tile-pricing { display: none; }
    .tile-outdoor { display: none; }

    /* Reflow the bento grid without those two tiles, no empty rows */
    .bento-grid {
        grid-template-areas:
            "space"
            "location"
            "access"
            "wifi"
            "amen"
            "conf";
    }

    /* Hero — was overflowing on narrow screens */
    .hero {
        padding: 112px var(--pad-x) 56px;
        min-height: 86vh;
        min-height: 86svh;
    }
    .hero-title {
        font-size: clamp(44px, 13vw, 60px);
        line-height: 0.96;
        letter-spacing: -0.038em;
        max-width: 100%;
    }
    .hero-sub {
        font-size: 16px;
        margin-top: 24px;
    }
    .hero-meta {
        font-size: 12px;
        padding: 7px 12px 7px 10px;
        margin-bottom: 28px;
    }

    /* Bento — tighter padding so tiles don't bleed off */
    .bento { padding: 32px var(--pad-x) 64px; }
    .bento-grid { gap: 12px; }
    .tile { padding: 22px; border-radius: 22px; }
    .tile-headline { font-size: clamp(20px, 5.5vw, 24px); }
    .tile-text { font-size: 14px; }

    /* Stat tiles — let numbers wrap rather than push the tile wider */
    .tile-stat-num {
        font-size: clamp(44px, 13vw, 56px);
        white-space: normal;
    }

    /* Wifi rows — let the unit wrap below the number on tight screens */
    .speed-row { gap: 10px; flex-wrap: wrap; }
    .speed-num { font-size: clamp(40px, 12vw, 52px); }
    .speed-unit { margin-left: 0; flex-basis: 100%; padding-left: 32px; }

    /* Price-mini list inside the navy tile — wrap, don't stretch */
    .price-mini li { gap: 12px; }
    .price-mini span { font-size: 13.5px; }
    .price-mini strong {
        font-size: 15.5px;
        white-space: normal;
        text-align: right;
    }

    /* Detailed pricing cards — compacted so close to all three fit on one screen */
    .membership { padding: 56px var(--pad-x); }
    .section-head { margin-bottom: 32px; }
    .section-head .display { font-size: clamp(28px, 7.5vw, 38px); }
    .section-head .lede { font-size: 14px; }
    .price-grid { gap: 10px; }
    .price-card { padding: 22px 20px; gap: 12px; }
    .price-card h3 { font-size: 11px; letter-spacing: 0.1em; }
    .price-num { font-size: 32px; }
    .price-per { font-size: 12.5px; }
    .price-sub { font-size: 12px; margin-top: -4px; }
    .price-desc { font-size: 13px; line-height: 1.45; }
    .price-feats { padding-top: 14px; gap: 7px; }
    .price-feats li { font-size: 12.5px; padding-left: 18px; line-height: 1.4; }
    .price-feats li::before { top: 5px; width: 9px; height: 5px; }
    .price-card .btn { padding: 10px 16px; font-size: 13px; }
    .price-note { margin-top: 32px; font-size: 12.5px; line-height: 1.55; }

    /* Section headlines */
    .display { font-size: clamp(32px, 8.4vw, 48px); }

    /* Location card */
    .location { padding: 80px var(--pad-x); }
    .location-inner { gap: 32px; }
    .location-card { padding: 24px; }
    .card-row { grid-template-columns: 92px 1fr; gap: 14px; padding: 14px 0; }
    .card-key { font-size: 11px; letter-spacing: 0.08em; }
    .card-val { font-size: 13.5px; }

    /* FAQ */
    .faq { padding: 80px var(--pad-x); }
    .faq-list { padding: 0 22px; }
    .faq-list summary { font-size: 16px; gap: 14px; }

    /* Footer */
    .footer { padding: 56px var(--pad-x) 28px; }
    .footer-top { gap: 32px; padding-bottom: 32px; }
    .footer-links { gap: 24px; }

    /* Nav cta a touch smaller so it doesn't crowd the logo */
    .nav-cta { padding: 8px 14px; font-size: 12.5px; }
}

/* Even tighter for very small screens (e.g., iPhone SE landscape edge cases) */
@media (max-width: 360px) {
    .hero-title { font-size: 40px; }
    .tile { padding: 20px; }
    .price-mini strong { font-size: 14.5px; }
    .nav-links { display: none; }
}
