/*
Theme Name:  NextGen Golf
Theme URI:   https://nextgengolf.co.za
Author:      NextGen Golf
Description: Custom theme for the NextGen Golf indoor simulator website — Paarl, South Africa.
Version:     1.0.0
Text Domain: nextgengolf
*/

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: #0A0A0A;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --bg:      #0A0A0A;
    --dark:    #103122;
    --mid:     #1a1a1a;
    --card:    #161616;
    --lime:    #B8D719;
    --lime-h:  #C8E628;
    --gold:    #CDAA67;
    --ink:     #ffffff;
    --ink-60:  rgba(255,255,255,0.60);
    --ink-35:  rgba(255,255,255,0.35);
    --ink-10:  rgba(255,255,255,0.10);
    --r:       4px;
}

/* ── Utility ─────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Admin bar offset ────────────────────────────────────── */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar .nav { top: 46px; }
}

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-svg { width: 52px; height: 52px; }
.logo-img { height: 42px; width: auto; }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-top { font-size: 17px; font-weight: 900; letter-spacing: 2px; color: #ffffff; }
.logo-top span { color: var(--lime); }
.logo-sub {
    font-size: 8px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--lime);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.logo-sub::before, .logo-sub::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lime);
    opacity: 0.45;
}
.logo-sep {
    width: 1px;
    height: 36px;
    background: var(--lime);
    opacity: 0.35;
    align-self: center;
    flex-shrink: 0;
}
.logo-tm {
    font-size: 9px;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
    margin-left: 1px;
}

/* WP nav menu output */
.nav-links { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links li { position: relative; }
.nav-links a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    padding: 8px 14px;
    display: block;
    border-bottom: 2px solid transparent;
    transition: color .18s, border-color .18s;
    text-decoration: none;
    white-space: nowrap;
}
.nav-links a:hover { color: #fff; border-color: rgba(184,215,25,0.5); }
.nav-links .current-menu-item > a,
.nav-links .current-page-item > a { color: #fff; border-color: var(--lime); }
/* Hide WP sub-menus */
.nav-links .sub-menu { display: none; }

.nav-book {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--lime);
    color: #103122;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 3px;
    transition: background .18s, opacity .18s;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
    border: 1.5px solid var(--lime);
}
.nav-book:hover { opacity: 0.85; }
.nav-book svg { width: 14px; height: 14px; }

/* Hamburger button */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.nav-burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.97);
    z-index: 299;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner {
    padding: 32px 28px 48px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav-links { list-style: none; margin: 0; padding: 0; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color .18s;
}
.mobile-nav-links a:hover,
.mobile-nav-links .current-menu-item > a { color: var(--lime); }
.mobile-nav-book {
    display: block;
    margin-top: 28px;
    text-align: center;
    background: var(--lime);
    color: #103122;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px;
    border-radius: 3px;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
    min-height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #103122;
}
/* Simulator room visual (right side) — real venue photo */
.hero-room {
    position: absolute;
    right: 0;
    top: 0;
    width: 62%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-data-panel {
    position: absolute;
    right: 6%;
    top: 18%;
    background: rgba(0,0,0,0.78);
    border: 1px solid rgba(184,215,25,0.25);
    border-radius: 4px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    backdrop-filter: blur(4px);
}
.hero-data-panel .dp-label {
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-top: 4px;
}
.hero-data-panel .dp-label:first-child { margin-top: 0; }
.hero-data-panel .dp-val {
    font-size: 24px;
    font-weight: 900;
    color: var(--lime);
    line-height: 1;
}
.hero-data-panel .dp-val span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}
.hero-gradient-left {
    position: absolute;
    left: 0; top: 0;
    width: 40%; height: 100%;
    background: linear-gradient(to right, #103122, transparent);
    z-index: 2;
    pointer-events: none;
}
.hero-gradient-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 25%;
    background: linear-gradient(to top, #103122, transparent);
    z-index: 2;
    pointer-events: none;
}
.hero-ng-watermark {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}
.hero-ng-watermark svg { width: 160px; height: 160px; opacity: .15; }

/* Hero text (left) */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}
.hero-left { padding: 60px 0; max-width: 520px; }
.hero-hed {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-hed .line-lime  { color: var(--lime); display: block; }
.hero-hed .line-white { color: var(--ink);  display: block; }
.hero-sub {
    font-size: 15px;
    color: var(--ink-60);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 400px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: #103122;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 3px;
    transition: background .18s, transform .15s;
    text-decoration: none;
}
.btn-fill:hover { background: var(--lime-h); transform: translateY(-2px); }
.btn-fill svg { width: 14px; height: 14px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 22px;
    border-radius: 3px;
    transition: border-color .18s, color .18s;
    text-decoration: none;
}
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

.hero-pills { display: flex; gap: 32px; flex-wrap: wrap; }
.pill { display: flex; align-items: center; gap: 10px; }
.pill-ico { color: var(--lime); width: 20px; height: 20px; flex-shrink: 0; }
.pill-text strong {
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lime);
}
.pill-text span { display: block; font-size: 11px; color: var(--ink-60); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════════════════════════ */
.strip {
    background: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.strip-grid { display: grid; grid-template-columns: repeat(6,1fr); }
.strip-cell {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.strip-cell:last-child { border-right: none; }
.strip-ico { color: var(--lime); width: 28px; height: 28px; margin-bottom: 12px; }
.strip-h {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 6px;
}
.strip-p { font-size: 11px; color: var(--ink-60); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   EXPERIENCE
═══════════════════════════════════════════════════════════ */
.exp { background: #0d2018; padding: 80px 0; }
.exp-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
}
.exp-eyebrow {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 16px;
}
.exp-left h2 {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}
.exp-left h2 span { color: var(--lime); display: block; }
.exp-left p { font-size: 13px; color: var(--ink-60); line-height: 1.7; margin-bottom: 28px; }
.learn-more {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lime);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .18s;
    text-decoration: none;
}
.learn-more:hover { gap: 10px; }
.exp-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.exp-card { position: relative; overflow: hidden; border-radius: 3px; }
.exp-card-img { height: 260px; position: relative; overflow: hidden; }
.exp-card:nth-child(1) .exp-card-img {
    background: linear-gradient(160deg, #0d4a2d 0%, #1a7a50 30%, #2d9a6a 50%, #4dbb8a 65%, #2d7a55 80%, #0d4a30 100%);
}
.exp-card:nth-child(2) .exp-card-img {
    background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 40%, #3d3d3d 70%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.exp-card:nth-child(2) .exp-card-img::before {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, #e0e0e0 40%, #b0b0b0 70%, #808080 100%);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.exp-card:nth-child(3) .exp-card-img {
    background: linear-gradient(160deg, #1a1510 0%, #2d2218 30%, #3a2d20 55%, #2a1e14 80%, #111008 100%);
}
.exp-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.exp-card-num { font-size: 42px; font-weight: 900; color: var(--lime); line-height: 1; margin-bottom: 2px; }
.exp-card-h {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
}
.exp-card-p { font-size: 11px; color: var(--ink-60); margin-top: 5px; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════════════════════ */
.video-sec {
    background: #0d0d0d;
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.video-header {
    text-align: center;
    margin-bottom: 40px;
}
.video-header .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
}
.video-header h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.video-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}
.video-embed {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.07);
}
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pricing-sec { background: #0A0A0A; padding: 80px 0; }
.pricing-header { text-align: center; margin-bottom: 52px; }
.pricing-header .eyebrow {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
}
.pricing-header h2 {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.pricing-header p {
    font-size: 14px;
    color: var(--ink-60);
    margin-top: 14px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.p-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 36px;
    display: flex;
    flex-direction: column;
}
.p-card.featured { border: 2px solid var(--lime); position: relative; overflow: hidden; }
.p-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 14px; right: -26px;
    background: var(--lime);
    color: #103122;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 4px 34px;
    transform: rotate(40deg);
}
.p-tier {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-60);
    margin-bottom: 14px;
}
.p-price { font-size: 42px; font-weight: 900; color: var(--lime); line-height: 1; font-variant-numeric: tabular-nums; }
.p-price small { font-size: 14px; color: var(--ink-60); font-weight: 400; }
.p-desc { font-size: 13px; color: var(--ink-60); margin: 14px 0 24px; line-height: 1.6; flex: 1; }
.p-features { display: flex; flex-direction: column; }
.p-features li {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    padding: 9px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    gap: 8px;
}
.p-features li::before { content: '✓'; color: var(--lime); font-weight: 900; font-size: 12px; }
.p-btn {
    margin-top: 26px;
    padding: 13px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    transition: .18s;
    text-decoration: none;
}
.p-btn-outline { border: 1.5px solid rgba(255,255,255,0.2); color: var(--ink); }
.p-btn-outline:hover { border-color: var(--lime); color: var(--lime); }
.p-btn-lime { background: var(--lime); color: #103122; border: 2px solid var(--lime); }
.p-btn-lime:hover { background: var(--lime-h); border-color: var(--lime-h); }
.credits-note {
    margin-top: 24px;
    padding: 20px 28px;
    background: rgba(184,215,25,0.08);
    border: 1px solid rgba(184,215,25,0.2);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.credits-note-ico { color: var(--lime); font-size: 20px; }
.credits-note-text { flex: 1; font-size: 13px; color: var(--ink-60); }
.credits-note-text strong { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, #0c1e10 0%, #103122 40%, #0c1e10 100%);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 52px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-left h2 {
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--lime);
    line-height: 1;
}
.cta-left p { font-size: 14px; color: var(--ink-60); margin-top: 8px; }
.cta-mid { display: flex; gap: 40px; flex: 1; justify-content: center; flex-wrap: wrap; }
.cta-feat { display: flex; align-items: center; gap: 12px; }
.cta-feat-ico { color: var(--lime); width: 28px; height: 28px; flex-shrink: 0; }
.cta-feat-h {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
}
.cta-feat-p { font-size: 11px; color: var(--ink-60); margin-top: 2px; }
.cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.cta-tel { font-size: 12px; color: var(--ink-60); }
.cta-tel strong { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 60px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 0.8fr;
    gap: 40px;
    margin-bottom: 48px;
}
.f-logo-area { display: flex; flex-direction: column; }
.f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.f-tagline {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-60);
    margin-top: 6px;
    line-height: 1.6;
}
.f-tagline span { color: var(--lime); }
.f-head {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-60);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.f-links { display: flex; flex-direction: column; gap: 9px; }
.f-links a { font-size: 13px; color: var(--ink-60); transition: color .18s; text-decoration: none; }
.f-links a:hover { color: var(--lime); }
.f-contact { display: flex; flex-direction: column; gap: 10px; }
.f-contact-row { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--ink-60); }
.f-contact-row svg { width: 14px; height: 14px; color: var(--lime); flex-shrink: 0; margin-top: 2px; }
.f-social { display: flex; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.f-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .18s, color .18s;
    color: var(--ink-60);
    text-decoration: none;
}
.f-social a:hover { border-color: var(--lime); color: var(--lime); }
.f-social svg { width: 16px; height: 16px; }
.footer-base {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    color: var(--ink-35);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--ink-35); transition: color .18s; text-decoration: none; }
.footer-legal a:hover { color: var(--lime); }

/* ═══════════════════════════════════════════════════════════
   IN ACTION PHOTO BREAK
═══════════════════════════════════════════════════════════ */
.action-break-wrap {
    padding: 48px 40px;
    background: var(--bg);
}
.action-break {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 6px;
}
.action-break-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    filter: brightness(0.72);
}
.action-break-overlay {
    position: absolute;
    top: 32px;
    right: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}
.action-break-stat {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-align: right;
}
.action-break-stat span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lime);
    margin-top: 3px;
}
.action-break-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 48px 28px;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 100%);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-book { display: none; }
    .nav-burger { display: flex; }
    .mobile-nav { display: block; }
    .hero-room { display: none; }
    .hero-left { padding: 60px 0; max-width: 100%; }
    .strip-grid { grid-template-columns: repeat(3,1fr); }
    .strip-cell { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .exp-inner { grid-template-columns: 1fr; }
    .exp-cards { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .wrap { padding: 0 20px; }
    .hero-pills { flex-direction: column; gap: 16px; }
    .strip-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ── Inner Pages (FAQ, T&Cs, Privacy, etc.) ─────────────── */
.inner-page {
    padding: 100px 0 80px;
    min-height: 70vh;
    background: var(--bg);
}
.page-title {
    font-size: 38px;
    font-weight: 900;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(184,215,25,0.2);
}
.page-body {
    max-width: 800px;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    font-size: 16px;
}
.page-body h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    margin: 40px 0 12px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.page-body h3 {
    font-size: 18px;
    color: var(--lime);
    font-weight: 700;
    margin: 32px 0 8px;
}
.page-body p { margin-bottom: 16px; }
.page-body a { color: var(--lime); text-decoration: underline; }
.page-body ul, .page-body ol { padding-left: 20px; margin-bottom: 16px; }
.page-body li { margin-bottom: 8px; }
.page-body strong { color: #fff; font-weight: 700; }
