/* ============================================
   Premium Selling Landing Page — styles.css
   ============================================ */

:root {
    /* Colors */
    --bg: #ffffff;
    --bg2: #f8fafc;
    --bg3: #f1f5f9;
    --text: #0f172a;
    --text2: #1e293b;
    --muted: #64748b;
    --line: #e2e8f0;
    --card: #ffffff;

    --primary: #2563eb;
    --primary2: #1d4ed8;
    --primary3: #3b82f6;
    --soft: #eff6ff;
    --accent: #0ea5e9;

    --dark: #0f172a;
    --dark2: #1e293b;

    /* Layout */
    --r: 20px;
    --r-sm: 14px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,.05), 0 10px 15px -3px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,.08), 0 20px 50px -12px rgba(0,0,0,.12);
    --shadow-primary: 0 10px 30px -5px rgba(37,99,235,.25);

    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden }
html, body { margin: 0; padding: 0 }
body { overflow-x: hidden }

body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none }
img { display: block; max-width: 100%; height: auto }
button { font-family: inherit }

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* ---- Reveal animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   TOPBAR
   ============================== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px) saturate(1.8);
    -webkit-backdrop-filter: blur(16px) saturate(1.8);
    border-bottom: 1px solid rgba(226,232,240,.6);
    transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.topbar.scrolled {
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 6px 16px rgba(0,0,0,.04);
}
.topbar.topbar--hidden {
    transform: translateY(-100%);
}

.topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 12px }
.brand__mark {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 4px 12px rgba(37,99,235,.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; gap: 1px }
.brand__name { font-weight: 800; font-size: 15px; letter-spacing: -.2px }
.brand__sub { font-size: 12px; color: var(--muted); font-weight: 500 }

/* Nav */
.nav { display: flex; gap: 4px; align-items: center }
.nav a {
    font-weight: 600; font-size: 14px; color: var(--muted);
    padding: 8px 14px; border-radius: 10px;
    transition: background .2s, color .2s;
}
.nav a:hover { background: var(--bg2); color: var(--text) }

.topbar__actions { display: flex; gap: 10px; align-items: center }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--r-sm);
    border: 1px solid var(--line); background: var(--card);
    font-weight: 700; font-size: 15px;
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.3;
}
.btn svg { flex-shrink: 0 }
.btn--sm { padding: 9px 16px; font-size: 14px; border-radius: 12px }
.btn--lg { padding: 16px 28px; font-size: 16px; border-radius: 16px }
.btn--full { width: 100% }

.btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px -5px rgba(37,99,235,.35);
    filter: brightness(1.05);
}
.btn--primary:active { transform: translateY(0) }

.btn--ghost { background: #fff }
.btn--ghost:hover {
    background: var(--bg2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.btn--white {
    background: #fff;
    color: var(--primary);
    border-color: transparent;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ---- Burger + mobile nav ---- */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    border: 1px solid var(--line); background: #fff;
    border-radius: 12px; padding: 0; cursor: pointer;
    align-items: center;
    transition: background .2s;
}
.burger:hover { background: var(--bg2) }
.burger span {
    display: block; width: 22px; height: 2.5px;
    background: var(--text); border-radius: 2px;
    transition: all .3s var(--ease);
}

.mobileNav {
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
}
.mobileNav__row { padding: 16px 0; display: grid; gap: 8px }
.mobileNav__row a {
    font-weight: 700; color: var(--text);
    padding: 14px 16px; border-radius: var(--r-sm);
    border: 1px solid var(--line); background: #fff;
    transition: background .2s;
}
.mobileNav__row a:hover { background: var(--bg2) }

/* ==============================
   HERO
   ============================== */
.hero {
    padding: 40px 0 24px;
    background:
        radial-gradient(ellipse 1200px 600px at 10% -15%, rgba(239,246,255,.8) 0%, transparent 60%),
        radial-gradient(ellipse 900px 500px at 95% -5%, rgba(224,242,254,.6) 0%, transparent 60%),
        var(--bg);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
    align-items: start;
}

.heroCard, .sideCard {
    background: rgba(255,255,255,.9);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}
.heroCard { padding: 28px 28px 24px }
.sideCard {
    padding: 24px;
    position: sticky;
    top: 80px;
}

/* Badge */
.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px;
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(14,165,233,.08));
    border: 1px solid rgba(37,99,235,.15);
    color: var(--primary); font-weight: 700; font-size: 13px;
}

h1 {
    margin: 18px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.5px;
    color: var(--text);
}

.hero__subtitle {
    margin: 8px 0 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -.2px;
}

.lead {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}
.lead strong { color: var(--text2); font-weight: 700 }

/* Chips */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px }
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; padding: 10px 14px; border-radius: 12px;
    border: 1px solid var(--line); background: #fff;
    color: var(--text2); font-weight: 600;
    transition: border-color .2s, box-shadow .2s;
}
.chip svg { color: var(--primary); flex-shrink: 0 }
.chip:hover {
    border-color: rgba(37,99,235,.3);
    box-shadow: 0 2px 8px rgba(37,99,235,.08);
}

/* Hero actions */
.heroActions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px }

/* ---- HERO MEDIA ---- */
.heroMedia {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 10px;
}
.heroMedia__main {
    position: relative; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--line); background: var(--bg2);
    box-shadow: var(--shadow);
    transition: transform .3s var(--ease), box-shadow .3s;
}
.heroMedia__main:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-lg);
}
.heroMedia__main img {
    width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10;
    transition: transform .4s var(--ease);
}
.heroMedia__main:hover img { transform: scale(1.03) }

.heroMedia__label {
    position: absolute; left: 12px; bottom: 12px;
    background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
    border: 1px solid rgba(226,232,240,.6);
    padding: 6px 14px; border-radius: 999px;
    font-weight: 800; font-size: 13px;
}

.heroMedia__side { display: grid; gap: 10px }
.heroMedia__thumb {
    position: relative; border-radius: 14px; overflow: hidden;
    border: 1px solid var(--line); background: var(--bg2);
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
    transition: transform .3s var(--ease), box-shadow .3s;
}
.heroMedia__thumb:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}
.heroMedia__thumb img {
    width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10;
    transition: transform .4s var(--ease);
}
.heroMedia__thumb:hover img { transform: scale(1.05) }
.heroMedia__thumb span {
    position: absolute; left: 10px; bottom: 10px;
    background: rgba(255,255,255,.95); backdrop-filter: blur(4px);
    border: 1px solid rgba(226,232,240,.6);
    padding: 5px 10px; border-radius: 999px;
    font-weight: 800; font-size: 12px;
}

.heroMedia__video {
    border-radius: 14px; border: 1px solid var(--line);
    background: #fff; padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.heroMedia__videoHead {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; margin-bottom: 10px;
}
.heroMedia__videoTitle {
    font-weight: 800; font-size: 14px;
    display: flex; align-items: center; gap: 8px;
}
.heroMedia__videoTitle svg { color: var(--primary) }
.heroMedia__videoTag {
    width: 100%; border-radius: 12px; border: 1px solid var(--line);
    background: #000;
}

/* ---- Price box ---- */
.priceBox {
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(14,165,233,.08));
    border: 1px solid rgba(37,99,235,.12);
    padding: 20px;
}
.priceBox__label { font-weight: 700; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .5px }
.priceBox__value {
    font-weight: 900; font-size: clamp(24px, 3vw, 32px);
    margin-top: 6px; letter-spacing: -.5px;
}
.priceBox__value span { color: var(--muted); font-weight: 700 }
.priceBox__hint { color: var(--muted); font-size: 14px; line-height: 1.5; margin-top: 8px }

/* ---- Form ---- */
.form { margin-top: 16px; display: grid; gap: 12px }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
.field { display: grid; gap: 6px }

label {
    font-size: 13px; color: var(--muted); font-weight: 700;
    text-transform: uppercase; letter-spacing: .3px;
}

input, select, textarea {
    width: 100%; padding: 14px 16px; border-radius: 12px;
    border: 1.5px solid var(--line); background: var(--bg2);
    outline: none; font-weight: 600; color: var(--text);
    font-size: 15px; font-family: inherit;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
input::placeholder, textarea::placeholder { color: #94a3b8; font-weight: 500 }
textarea { min-height: 90px; resize: vertical }
input:focus, select:focus, textarea:focus {
    border-color: var(--primary3);
    box-shadow: 0 0 0 4px rgba(37,99,235,.1);
    background: #fff;
}

.formActions { display: flex; gap: 10px; flex-wrap: wrap }
.formNote { color: var(--muted); font-size: 12px; line-height: 1.5 }

.status { margin-top: 8px; font-weight: 700; font-size: 14px }
.status--ok { color: #16a34a }
.status--err { color: #dc2626 }

/* ==============================
   STATS
   ============================== */
.stats {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(600px 300px at 20% 50%, rgba(37,99,235,.15) 0%, transparent 70%),
        radial-gradient(500px 300px at 80% 50%, rgba(14,165,233,.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.stat { text-align: center; color: #fff }
.stat__value {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat__unit {
    font-size: 16px; font-weight: 700; margin-top: 4px;
    color: rgba(255,255,255,.7);
}
.stat__label {
    font-size: 14px; margin-top: 8px;
    color: rgba(255,255,255,.5); font-weight: 500;
}

/* ==============================
   SECTIONS
   ============================== */
.section { padding: 64px 0 }
.section--alt {
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.sectionHead { margin-bottom: 32px }
.sectionHead__label {
    display: inline-flex; align-items: center;
    padding: 6px 14px; border-radius: 999px;
    background: var(--soft); color: var(--primary);
    font-weight: 700; font-size: 13px;
    margin-bottom: 12px;
    border: 1px solid rgba(37,99,235,.1);
}
.sectionHead h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: -.3px;
    line-height: 1.15;
}
.sectionHead p { margin: 8px 0 0; color: var(--muted); font-size: 16px; max-width: 600px }

/* Light variant (on dark bg) */
.sectionHead--light h2, .sectionHead--light p { color: #fff }
.sectionHead--light p { color: rgba(255,255,255,.6) }
.sectionHead__label--light {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    border-color: rgba(255,255,255,.1);
}

/* Cards */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px }
.cards2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px }

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    transition: transform .3s var(--ease), box-shadow .3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card__icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--soft); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    transition: background .2s;
}
.card__icon--accent {
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(14,165,233,.1));
}
.card:hover .card__icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 800 }
.card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 14px }
.card strong { color: var(--text2); font-weight: 700 }

/* ==============================
   ADVANTAGES (dark section)
   ============================== */
.section--dark {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.section--dark::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(800px 400px at 10% 100%, rgba(37,99,235,.12) 0%, transparent 70%),
        radial-gradient(600px 400px at 90% 0%, rgba(14,165,233,.08) 0%, transparent 70%);
    pointer-events: none;
}

.advGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
}

.adv {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r);
    padding: 28px 24px;
    transition: background .3s, border-color .3s, transform .3s;
}
.adv:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
    transform: translateY(-4px);
}

.adv__num {
    font-size: 32px; font-weight: 900;
    background: linear-gradient(135deg, var(--primary3), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.adv h3 { margin: 0 0 8px; color: #fff; font-size: 17px; font-weight: 800 }
.adv p { margin: 0; color: rgba(255,255,255,.55); line-height: 1.6; font-size: 14px }

/* ==============================
   CTA BANNER
   ============================== */
.ctaBanner {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary2));
    position: relative;
    overflow: hidden;
}
.ctaBanner::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(600px 300px at 0% 100%, rgba(14,165,233,.3) 0%, transparent 70%),
        radial-gradient(400px 300px at 100% 0%, rgba(99,102,241,.2) 0%, transparent 70%);
    pointer-events: none;
}

.ctaBanner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}
.ctaBanner__text h2 { margin: 0; color: #fff; font-size: clamp(22px, 3vw, 30px); font-weight: 900 }
.ctaBanner__text p { margin: 8px 0 0; color: rgba(255,255,255,.75); font-size: 16px; max-width: 520px }

/* ==============================
   GALLERY
   ============================== */
.galleryGroups { display: grid; gap: 32px }

.gBlock { overflow: hidden }

.gHead { margin-bottom: 12px }
.gHead h3 { margin: 0; font-size: 18px; font-weight: 800 }
.gHead p { margin: 4px 0 0; color: var(--muted); font-size: 14px }

.galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.galleryGrid .shotLink {
    position: relative; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--line); background: var(--bg2);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: transform .3s var(--ease), box-shadow .3s;
}
.galleryGrid .shotLink:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.galleryGrid .shotLink img {
    width: 100%; height: 100%; object-fit: cover;
    aspect-ratio: 16/10; display: block;
    transition: transform .4s var(--ease);
}
.galleryGrid .shotLink:hover img { transform: scale(1.05) }

.galleryGrid .shotLink span {
    position: absolute; left: 10px; bottom: 10px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
    border: 1px solid rgba(226,232,240,.6);
    padding: 5px 10px; border-radius: 999px;
    font-weight: 800; font-size: 12px;
    transition: background .2s;
}

/* ==============================
   LOCATION
   ============================== */
.locGrid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
    align-items: stretch;
}

.mapCard {
    border-radius: var(--r); overflow: hidden;
    border: 1px solid var(--line); background: var(--bg2);
    box-shadow: var(--shadow);
}
.mapCard iframe { width: 100%; height: 440px; border: 0 }

.locCard { display: flex; flex-direction: column; gap: 12px }
.locBadge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 999px;
    background: var(--bg2); border: 1px solid var(--line);
    font-weight: 700; font-size: 13px; color: var(--muted);
    width: fit-content;
}
.locBadge svg { color: var(--primary) }
.locAddr { font-weight: 900; font-size: 18px; letter-spacing: -.2px }
.locHint { color: var(--muted); font-size: 14px; line-height: 1.5 }
.locActions { display: flex; gap: 10px; flex-wrap: wrap }
.locMeta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    color: var(--muted); font-size: 14px;
    padding: 16px; border-radius: 14px;
    background: var(--bg2); border: 1px solid var(--line);
}
.locMeta strong { color: var(--text) }

/* ==============================
   FAQ
   ============================== */
.faq { display: grid; gap: 10px; max-width: 800px }

.faqItem {
    background: #fff; border: 1px solid var(--line);
    border-radius: 16px; padding: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.03);
    transition: border-color .2s;
}
.faqItem:hover { border-color: rgba(37,99,235,.2) }
.faqItem[open] { border-color: rgba(37,99,235,.25) }

.faqItem summary {
    cursor: pointer; font-weight: 800; font-size: 16px;
    padding: 18px 22px;
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
}
.faqItem summary::-webkit-details-marker { display: none }
.faqItem summary::after {
    content: '+'; font-size: 22px; font-weight: 300;
    color: var(--muted); transition: transform .3s;
    flex-shrink: 0; margin-left: 12px;
}
.faqItem[open] summary::after { content: '-'; transform: rotate(180deg) }

.faqItem p {
    margin: 0; padding: 0 22px 18px;
    color: var(--muted); line-height: 1.65; font-size: 15px;
}

/* Final CTA */
.finalCta {
    margin-top: 32px;
    background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(14,165,233,.06));
    border: 1px solid rgba(37,99,235,.12);
    border-radius: var(--r);
    padding: 28px 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.finalCta h3 { margin: 0; font-size: 20px; font-weight: 900 }
.finalCta p { margin: 8px 0 0; color: var(--muted); line-height: 1.5; font-size: 15px }

/* ==============================
   FOOTER
   ============================== */
.footer {
    border-top: 1px solid var(--line);
    padding: 24px 0 40px;
    background: var(--bg2);
}
.footer__row {
    display: flex; justify-content: space-between;
    gap: 16px; flex-wrap: wrap; align-items: center;
}
.footer__title { font-weight: 800; font-size: 15px }
.footer__small { color: var(--muted); font-size: 13px }

/* ==============================
   MOBILE STICKY CTA
   ============================== */
.mobileCta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 12px 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,.06);
    transform: translateY(100%);
    transition: transform .3s var(--ease);
}
.mobileCta.is-visible { transform: translateY(0) }
.mobileCta__row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.mobileCta__text { font-weight: 600; font-size: 14px; line-height: 1.3; color: var(--dark) }

/* ==============================
   LIGHTBOX
   ============================== */
.lightbox {
    position: fixed; inset: 0; z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.lightbox.is-open { display: flex; align-items: center; justify-content: center; opacity: 1 }

.lightbox__backdrop {
    position: absolute; inset: 0;
    background: rgba(15,23,42,.75);
    backdrop-filter: blur(8px);
}
.lightbox__panel {
    position: relative;
    width: min(980px, calc(100% - 24px));
    max-height: calc(100vh - 40px);
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 25px 80px rgba(0,0,0,.3);
    overflow: hidden;
}
.lightbox__figure { margin: 0; position: relative }
.lightbox__figure img { width: 100%; height: auto; display: block; background: #0b1220 }
.lightbox__caption {
    padding: 14px 18px; border-top: 1px solid var(--line);
    color: var(--muted); font-weight: 700; font-size: 14px;
}
.lightbox__close {
    position: absolute; right: 12px; top: 12px; z-index: 10;
    border: none; background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
    border-radius: 12px; padding: 8px 14px;
    cursor: pointer; font-weight: 800; font-size: 18px;
    transition: background .2s;
}
.lightbox__close:hover { background: #fff }
.lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 48px; height: 48px; border-radius: 999px;
    border: none; background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
    cursor: pointer; font-size: 28px; font-weight: 300;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
    color: var(--text);
}
.lightbox__nav:hover { background: #fff; transform: translateY(-50%) scale(1.05) }
.lightbox__nav--prev { left: 12px }
.lightbox__nav--next { right: 12px }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .nav { display: none }
    .burger {
        display: inline-flex; align-items: center; justify-content: center;
    }
    .hero__grid { grid-template-columns: 1fr }
    .sideCard { position: static }
    .locGrid { grid-template-columns: 1fr }
    .cards3 { grid-template-columns: 1fr 1fr }
    .advGrid { grid-template-columns: 1fr 1fr }
    .heroMedia { grid-template-columns: 1fr }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px }

    /* Hide brand subtitle on tablet/mobile */
    .hide-mobile { display: none }

    /* Swipeable gallery on mobile */
    .galleryGrid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 8px;
        scrollbar-width: none;
        min-width: 0;
        max-width: 100%;
    }
    .galleryGrid::-webkit-scrollbar { display: none }
    .galleryGrid .shotLink {
        flex: 0 0 260px;
        min-width: 0;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .container { width: calc(100% - 32px) }
    .section { padding: 48px 0 }
    .section--dark { padding: 56px 0 }

    h1 { font-size: 28px }
    .heroCard { padding: 20px }
    .sideCard { padding: 20px }

    .cards3 { grid-template-columns: 1fr }
    .cards2 { grid-template-columns: 1fr }
    .advGrid { grid-template-columns: 1fr }
    .row { grid-template-columns: 1fr }

    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px }
    .stat__value { font-size: 32px }

    .ctaBanner__inner { flex-direction: column; text-align: center; align-items: center }

    .finalCta { flex-direction: column; align-items: flex-start; padding: 24px }

    .locMeta { grid-template-columns: 1fr }

    .galleryGrid .shotLink { flex: 0 0 220px }

    /* Show mobile CTA */
    .mobileCta { display: block }
    body { padding-bottom: 70px }

    .lightbox__nav { width: 40px; height: 40px }
}

@media (max-width: 480px) {
    .container { width: calc(100% - 24px) }
    .heroCard { padding: 18px 16px }
    .sideCard { padding: 16px }
    .chips { gap: 6px }
    .chip { padding: 8px 10px; font-size: 12px }
    .galleryGrid .shotLink { flex: 0 0 75vw }
    .stats__grid { gap: 12px }
    .stat__value { font-size: 28px }
    .adv { padding: 22px 18px }
}
