/* ==========================================================================
   GETS Prop Shop — Stylesheet
   Brand: theatrical dark + gold. Type: Cinzel (display) + Open Sans (body).
   Design system borrowed from the Chaparral build (tokens, elevation, spring
   motion, component library) and re-skinned to GETS's black + gold identity.

   NOTE: the original inline CSS variable names (--primary-gold, --bg-dark,
   --text-secondary, --border-color, …) are kept verbatim so the inline
   style="…" attributes still sprinkled through the pages keep working.
   ========================================================================== */

:root {
    /* ---- Legacy tokens (kept so existing inline styles don't break) ---- */
    --primary-gold:       #d4a84b;
    --primary-gold-dark:  #b8922f;
    --primary-gold-light: #e8c678;
    --accent-red:         #c42b2b;
    --bg-dark:            #0a0a0a;
    --bg-card:            #1a1a1a;
    --bg-card-hover:      #252525;
    --text-primary:       #ffffff;
    --text-secondary:     #a8a8b0;
    --text-muted:         #6c6c72;
    --border-color:       #333333;
    --success-color:      #4caf50;
    --warning-color:      #ff9800;
    --error-color:        #f44336;

    /* ---- New tokens borrowed from the modern system ---- */
    --gold:        var(--primary-gold);
    --gold-dark:   var(--primary-gold-dark);
    --gold-light:  var(--primary-gold-light);
    --gold-soft:   rgba(212, 168, 75, 0.12);   /* icon wells, tonal chips */
    --gold-line:   rgba(212, 168, 75, 0.32);
    --bg:          #0a0a0a;
    --bg-1:        #101012;   /* faintly lifted page bands */
    --surface:     #1a1a1a;   /* cards */
    --surface-2:   #202023;   /* nested / hover surfaces */
    --line:        #2a2a2e;   /* hairline borders on dark */

    /* Dark-UI elevation: subtle black drop shadow at rest, gold glow on hover */
    --shadow:      0 2px 6px rgba(0,0,0,0.45), 0 20px 44px rgba(0,0,0,0.55);
    --shadow-sm:   0 1px 2px rgba(0,0,0,0.40), 0 8px 22px rgba(0,0,0,0.45);
    --glow:        0 0 0 1px rgba(212,168,75,0.45), 0 12px 32px rgba(212,168,75,0.18);
    --glow-sm:     0 0 0 1px rgba(212,168,75,0.40), 0 8px 20px rgba(212,168,75,0.15);

    --radius:      16px;
    --radius-sm:   10px;
    --radius-lg:   26px;
    --max:         1200px;

    --head:        'Cinzel', Georgia, 'Times New Roman', serif;
    --body:        'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition:  all 0.25s ease;
    --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);   /* gentle overshoot */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.65;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2 { font-family: var(--head); font-weight: 700; color: var(--text-primary); line-height: 1.14; letter-spacing: 0.5px; }
h3, h4 { font-family: var(--body); font-weight: 700; color: var(--text-primary); line-height: 1.25; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
a  { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
strong { font-weight: 700; color: var(--text-primary); }

/* ---------- Material Symbols Rounded (variable icon font) ----------
   Both the legacy `.material-icons` class (still used throughout the markup)
   and the new `.material-symbols-rounded` are pointed at the Symbols font, so
   existing icon spans modernize without touching every template. */
.material-icons,
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal; font-style: normal; font-size: 24px; line-height: 1;
    letter-spacing: normal; text-transform: none; white-space: nowrap;
    word-wrap: normal; direction: ltr; display: inline-block;
    -webkit-font-smoothing: antialiased; vertical-align: middle;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.ms-inline { font-size: 1.05em; vertical-align: -0.18em; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 24px; max-width: var(--max); margin: 0 auto; }
.section-tint { background: var(--bg-1); }
.text-center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--text-secondary); max-width: 680px; }
.section-head { margin-bottom: 44px; }
.section-head.text-center { text-align: center; }
.section-head.text-center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
    font-family: var(--head); text-transform: uppercase; letter-spacing: 3px;
    font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 12px;
    display: block;
}

.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: var(--surface); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 2000; border: 1px solid var(--gold); }

/* ---------- Section title (kept, refined) ---------- */
.section-title {
    font-family: var(--head);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--primary-gold); margin: 0.85rem auto 0; border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.55rem; justify-content: center;
    padding: 0.8rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
    font-family: var(--body); font-weight: 700; font-size: 0.98rem; letter-spacing: 0.3px;
    text-decoration: none; cursor: pointer; white-space: nowrap;
    transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease, transform .4s var(--spring);
}
.btn .material-icons, .btn .material-symbols-rounded { font-size: 1.2em; }
/* One interaction for every button: flat at rest, lift + gold glow on hover. */
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--gold); color: #1a1306; }
.btn-primary:hover { background: var(--gold-light); color: #1a1306; box-shadow: var(--glow); }

.btn-secondary { background: var(--surface-2); color: var(--text-primary); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); box-shadow: var(--glow-sm); }

.btn-outline { background: transparent; color: var(--gold-light); border-color: var(--gold-line); }
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold); color: var(--gold-light); box-shadow: var(--glow-sm); }

.btn-large, .btn-lg { padding: 1rem 2.1rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Keyboard focus (accessibility) ---------- */
a:focus-visible,
.btn:focus-visible,
button:focus-visible,
.mobile-menu-btn:focus-visible,
.service-card:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 8px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(12, 12, 14, 0.82);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease;
}
.header-container {
    max-width: var(--max); margin: 0 auto; padding: 0.9rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; transition: var(--transition); }
.logo:hover { opacity: 0.9; }
.logo-icon { font-size: 2rem; color: var(--primary-gold); }
.logo-text { font-family: 'Cinzel', serif; font-size: 1.45rem; font-weight: 700; color: var(--text-primary); letter-spacing: 1px; }
.logo-text span { color: var(--primary-gold); }

.main-nav { display: flex; gap: 2rem; align-items: center; }
.main-nav a {
    color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 0.93rem;
    letter-spacing: 0.3px; position: relative; transition: color 0.2s;
}
.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta).active { color: var(--gold-light); }
.main-nav a:not(.nav-cta).active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px;
    background: var(--gold); border-radius: 2px;
}
.nav-cta {
    background: var(--gold); color: #1a1306 !important; padding: 0.55rem 1.3rem;
    border-radius: 999px; font-weight: 700; transition: background .2s ease, box-shadow .25s ease, transform .4s var(--spring);
}
.nav-cta:hover { background: var(--gold-light); color: #1a1306 !important; transform: translateY(-2px); box-shadow: var(--glow-sm); }

.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn .material-icons, .mobile-menu-btn .material-symbols-rounded { font-size: 28px; }

.main-content { min-height: calc(100vh - 200px); }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(1100px 500px at 50% -10%, rgba(212,168,75,0.10), transparent 60%),
        linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 70%);
    padding: 5rem 2rem; text-align: center; border-bottom: 1px solid var(--line);
}
.hero-container { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero h1 { font-family: 'Cinzel', serif; margin-bottom: 1rem; color: var(--primary-gold); text-shadow: 0 2px 26px rgba(0,0,0,0.5); }
.hero p { font-size: 1.18rem; color: var(--text-secondary); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text-secondary); letter-spacing: 0.3px; }
.hero-badge .material-icons, .hero-badge .material-symbols-rounded { color: var(--gold); font-size: 1.2rem; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
    position: relative; text-align: center; padding: 4rem 2rem 3.4rem;
    background:
        radial-gradient(900px 380px at 50% -20%, rgba(212,168,75,0.10), transparent 60%),
        linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 75%);
    border-bottom: 1px solid var(--line);
}
.page-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--gold); }
.page-hero h1 { font-family: 'Cinzel', serif; color: var(--primary-gold); }
.page-hero p { color: var(--text-secondary); max-width: 640px; margin: 0.9rem auto 0; }

/* ---------- Stat / trust band ---------- */
.stat-band { background: linear-gradient(90deg, var(--primary-gold-dark), var(--primary-gold)); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: 0 auto; }
.stat-item { text-align: center; padding: 1.7rem 1.1rem; color: #1a1306; border-right: 1px solid rgba(26,19,6,0.18); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: var(--head); font-size: 2.1rem; font-weight: 700; line-height: 1; }
.stat-item .lbl { font-size: 0.9rem; margin-top: 0.45rem; font-weight: 600; letter-spacing: 0.3px; }

/* ---------- Mosaic banner (kept) ---------- */
.mosaic-banner { padding: 0; overflow: hidden; background: var(--bg-dark); }
.mosaic-grid { display: grid; gap: 3px; max-width: var(--max); margin: 0 auto; }
.mosaic-cell { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-card); }
.mosaic-cell img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 1s ease-in-out; }
.mosaic-cell img.fade-out { opacity: 0; }

/* ---------- Cards (kept class, upgraded) ---------- */
.card {
    background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .4s var(--spring), border-color .2s, box-shadow .25s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--gold-line); box-shadow: var(--shadow); }
.card-body { padding: 1.5rem; }

/* ---------- Service cards (What We Create) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2rem; }
.service-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem 1.8rem; text-align: center; box-shadow: var(--shadow-sm);
    transition: transform .4s var(--spring), border-color .2s, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-line); box-shadow: var(--glow); }
.service-icon {
    width: 62px; height: 62px; margin: 0 auto 1.1rem; border-radius: 16px;
    background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.service-icon .material-icons, .service-icon .material-symbols-rounded { font-size: 32px; font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 40; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--text-secondary); font-size: 0.97rem; }

/* ---------- Show cards ---------- */
.shows-wrap { max-width: 820px; margin: 0 auto; }
.show-card { margin-bottom: 1rem; }
.show-card .card-body { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.show-card.is-active { border-color: var(--gold); box-shadow: var(--glow-sm); }
.show-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.show-head h3 { font-size: 1.2rem; }
.show-pill {
    padding: 0.25rem 0.8rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.show-pill.now { background: var(--gold); color: #1a1306; }
.show-pill.soon { background: var(--warning-color); color: #1a1306; }
.show-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; color: var(--text-secondary); font-size: 0.93rem; }
.show-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.show-meta .material-icons, .show-meta .material-symbols-rounded { font-size: 18px; color: var(--gold); }
.show-link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.75rem; color: var(--gold); font-size: 0.9rem; }
.show-link .material-icons, .show-link .material-symbols-rounded { font-size: 16px; }

/* ---------- "Currently at show" banner ---------- */
.live-banner { background: linear-gradient(90deg, var(--primary-gold-dark), var(--primary-gold)); padding: 1rem 2rem; }
.live-banner-inner { max-width: var(--max); margin: 0 auto; text-align: center; color: #1a1306; }
.live-banner .material-icons, .live-banner .material-symbols-rounded { vertical-align: middle; margin-right: 0.5rem; }

/* ---------- Before / After slider ---------- */
.ba-slider { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: none; }
.ba-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; width: 50%; border-right: 3px solid var(--gold); }
.ba-label { position: absolute; bottom: 16px; z-index: 4; background: rgba(10,10,10,0.78); color: #fff; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%); z-index: 3; cursor: ew-resize; display: flex; align-items: center; justify-content: center; }
.ba-handle::before { content: ''; position: absolute; top: 0; bottom: 0; width: 3px; background: var(--gold); box-shadow: 0 0 12px rgba(0,0,0,0.5); }
.ba-knob { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; color: #1a1306; position: relative; z-index: 1; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; background-size: cover; background-position: center; background-color: var(--surface); box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--glow); }
.gallery-item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: #fff; font-size: 0.85rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover .cap { opacity: 1; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
    display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.92rem;
    letter-spacing: 0.3px; color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.85rem 1rem; background: var(--bg-dark);
    border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text-primary);
    font-size: 1rem; font-family: inherit; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-group select {
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    padding-right: 2.5rem;
    background: var(--bg-dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23a0a0a0' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 10px 6px; cursor: pointer; text-overflow: ellipsis;
}
.form-group select::-ms-expand { display: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--gold);
    background: #0d0d0f;
    box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-group select:focus {
    background: #0d0d0f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23d4a84b' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 10px 6px;
}
.form-group select option { background: var(--bg-dark); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-divider { border: none; border-top: 1px solid var(--line); margin: 2rem 0; }
.form-legend { margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.5rem; font-family: var(--body); font-size: 1.15rem; }
.form-legend .material-icons, .form-legend .material-symbols-rounded { color: var(--primary-gold); }

/* ---------- Flash / alerts ---------- */
.flash { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 1.6rem; font-size: 0.97rem; display: flex; gap: 0.7rem; align-items: flex-start; }
.flash .material-icons, .flash .material-symbols-rounded { flex: none; }
.flash p { margin: 0.15rem 0; }
.flash-success { background: rgba(76,175,80,0.10); border: 1px solid rgba(76,175,80,0.5); color: #cdebcf; }
.flash-success .material-icons, .flash-success .material-symbols-rounded { color: var(--success-color); }
.flash-error { background: rgba(244,67,54,0.10); border: 1px solid rgba(244,67,54,0.5); color: #f3cccc; }
.flash-error .material-icons, .flash-error .material-symbols-rounded { color: var(--error-color); }

/* ---------- Prose (legal pages) ---------- */
.prose { line-height: 1.85; }
.prose h2 { font-family: var(--body); font-size: 1.3rem; color: var(--primary-gold); margin: 2rem 0 0.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-secondary); margin-bottom: 0.8rem; }
.prose ul { margin: 0.9rem 0; padding-left: 1.5rem; color: var(--text-secondary); }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band {
    background:
        radial-gradient(800px 300px at 50% 120%, rgba(212,168,75,0.12), transparent 60%),
        linear-gradient(120deg, var(--bg-card), var(--bg-dark));
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 3.4rem 2rem; text-align: center;
}
.cta-band h2 { font-family: 'Cinzel', serif; color: var(--primary-gold); margin-bottom: 0.6rem; }
.cta-band p { color: var(--text-secondary); max-width: 560px; margin: 0 auto 1.6rem; font-size: 1.08rem; }

/* ---------- Footer (kept classes, upgraded to multi-column) ---------- */
.site-footer { background: var(--bg-card); border-top: 1px solid var(--line); padding: 3rem 2rem 1.6rem; }
.footer-content { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 2.4rem; margin-bottom: 2.2rem; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--primary-gold); margin-bottom: 0.6rem; }
.footer-text { color: var(--text-muted); font-size: 0.9rem; }
.site-footer h4 { color: var(--text-primary); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 0.6rem; text-decoration: none; }
.footer-col a:hover { color: var(--gold-light); }
.social-icons { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.07); color: #fff; transition: var(--transition); }
.social-icon:hover { background: var(--gold); color: #1a1306; transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.footer-links { display: flex; justify-content: center; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.4rem; text-align: center; }

/* ---------- Utility classes (kept) ---------- */
.text-gold { color: var(--primary-gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }

/* ---------- Reveal-on-scroll (JS adds inline transition; this is the rest state) ---------- */
[data-reveal] { will-change: opacity, transform; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-container { padding: 0.9rem 1rem; }
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-card); flex-direction: column; align-items: stretch;
        padding: 0.5rem 1rem 1rem; gap: 0; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .main-nav.active { display: flex; }
    .main-nav a { padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--line); }
    .main-nav a:not(.nav-cta).active::after { display: none; }
    .main-nav a:last-child { border-bottom: none; }
    .nav-cta { margin-top: 0.6rem; text-align: center; border-radius: var(--radius-sm); }
    .mobile-menu-btn { display: block; }
    .hero { padding: 3.4rem 1rem; }
    .section { padding: 3rem 1rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .services-grid, .gallery-grid, .stat-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(26,19,6,0.18); }
    .stat-item:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
    .hero-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
}
