/* ============================================================
   LV TRADE SHOW RENTALS — SHARED SITE SYSTEM
   Used by all NEW pages (gallery, about, what-we-do, contact,
   labor request). Matches the existing home (booth) / trade-show-labor.html
   chrome exactly, and adds premium components + motion utilities.
   No external dependencies. System font stack (matches existing pages).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --primary-dark: #0f1419;
    --primary-bg: #1a2332;
    --surface: #202b3d;
    --surface-2: #252d3d;
    --accent-teal: #2d9cca;
    --accent-teal-bright: #48b6e4;
    --accent-gold: #b8a573;
    --accent-gold-bright: #d4c08a;
    --text-primary: #f0eff4;
    --text-secondary: #a8acb1;
    --border-subtle: #2a3442;
    --success: #4a9d6f;
    --maxw: 1200px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-teal: 0 20px 60px rgba(45, 156, 202, 0.18);
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

::selection { background: rgba(45, 156, 202, 0.35); color: #fff; }

/* ---------- Navigation (matches existing pages) ---------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: 0;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.navbar.scrolled {
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar-container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-brand h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
}

.navbar-phone {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

.navbar-phone a {
    background: transparent;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid var(--accent-gold);
    border-radius: 2px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.navbar-phone a:hover {
    background: rgba(184, 165, 115, 0.1);
    box-shadow: 0 0 20px rgba(184, 165, 115, 0.3);
    transform: translateY(-1px);
}

.navbar-menu {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.navbar-menu a:hover { color: var(--accent-teal); }

.navbar-menu a.active { color: var(--accent-teal); }

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent-teal);
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.menu-overlay.active { display: block; opacity: 1; }

/* ---------- Buttons (matches existing pages) ---------- */
.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--accent-teal);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(45, 156, 202, 0.25);
    margin: 10px;
}
.cta-button:hover {
    background: #249ab8;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(45, 156, 202, 0.35);
}
.cta-button:active { transform: translateY(0); }
.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: none;
}
.cta-button.secondary:hover {
    background: rgba(184, 165, 115, 0.08);
    box-shadow: 0 0 20px rgba(184, 165, 115, 0.3);
}
.cta-button.ghost {
    background: transparent;
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    box-shadow: none;
}
.cta-button.ghost:hover { background: rgba(45, 156, 202, 0.1); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 20px; position: relative; }
.section.alt { background: var(--primary-bg); }
.section.white { background: #ffffff; color: #1a2332; }
.narrow { max-width: 820px; margin-left: auto; margin-right: auto; }

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-teal);
    margin-bottom: 18px;
}
.eyebrow.gold { color: var(--accent-gold); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.section-head p { color: var(--text-secondary); font-size: 1.15rem; }
.section.white .section-head h2 { color: #16324a; }
.section.white .section-head p { color: #4a5568; }

h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; }

.text-teal { color: var(--accent-teal); }
.text-gold { color: var(--accent-gold); }

/* ---------- Interior page hero ---------- */
.page-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 20px 90px;
    background: var(--primary-dark);
}
.page-hero-media {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.05);
    animation: kenburns 18s ease-out infinite alternate;
}
@keyframes kenburns {
    from { transform: scale(1.05) translate(0, 0); }
    to { transform: scale(1.16) translate(-1.5%, -1.5%); }
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 35, 50, 0.78) 60%, rgba(15, 20, 25, 0.7) 100%);
    z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.page-hero h1 {
    font-size: clamp(2.5rem, 6.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.page-hero p.lead {
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.breadcrumb { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 26px; letter-spacing: 0.5px; }
.breadcrumb a:hover { color: var(--accent-teal); }
.breadcrumb span { color: var(--accent-gold); margin: 0 8px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 30px; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
    background: linear-gradient(135deg, var(--surface-2) 0%, #2a3442 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 36px 30px;
    transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
    border-color: var(--accent-teal);
    box-shadow: var(--shadow-teal);
    transform: translateY(-8px);
}
.card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; color: #fff; }
.card p { color: var(--text-secondary); line-height: 1.8; }
.card .card-icon { font-size: 2rem; margin-bottom: 18px; display: block; }

/* Media card (image on top) */
.media-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s ease;
}
.media-card:hover { transform: translateY(-8px); border-color: var(--accent-teal); box-shadow: var(--shadow-teal); }
.media-card .media { position: relative; height: 230px; overflow: hidden; }
.media-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.media-card:hover .media img { transform: scale(1.08); }
.media-card .media-body { padding: 28px 26px; }
.media-card h3 { color: var(--accent-teal); font-size: 1.4rem; margin-bottom: 12px; }
.media-card p { color: var(--text-secondary); line-height: 1.7; }
.badge-pill {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: rgba(45, 156, 202, 0.92);
    color: #fff; padding: 6px 14px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}

/* ---------- 3D tilt (driven by site.js) ---------- */
.tilt { transform-style: preserve-3d; will-change: transform; transition: transform 0.25s var(--ease); }
.tilt-inner { transform: translateZ(40px); transform-style: preserve-3d; }
.tilt .tilt-glare {
    position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
    background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,0.16), transparent 45%);
    opacity: 0; transition: opacity 0.3s ease; z-index: 3;
}
.tilt:hover .tilt-glare { opacity: 1; }

/* ---------- Split feature row ---------- */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    max-width: var(--maxw);
}
.feature-row + .feature-row { margin-top: 90px; }
.feature-row .feature-media { position: relative; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-row .feature-media img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.feature-row .feature-body h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 20px; }
.feature-row .feature-body p { color: var(--text-secondary); font-size: 1.08rem; margin-bottom: 18px; }
.feature-row.reverse .feature-media { order: 2; }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.stat-box { text-align: center; }
.stat-num { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 900; color: var(--accent-teal); line-height: 1; margin-bottom: 12px; }
.stat-label { font-size: 0.95rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* ---------- Logo marquee ---------- */
.event-logos { overflow: hidden; position: relative; width: 100%; padding: 30px 0; background: #fff; border-radius: 8px; margin: 0 auto; max-width: 90%; }
.event-logos::before, .event-logos::after { content: ''; position: absolute; top: 0; width: 90px; height: 100%; z-index: 2; pointer-events: none; }
.event-logos::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.event-logos::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.event-logos-track { display: flex; align-items: center; gap: 60px; width: max-content; animation: marquee 35s linear infinite; }
.event-logos:hover .event-logos-track { animation-play-state: paused; }
.logo-item { flex-shrink: 0; padding: 15px 20px; display: flex; align-items: center; justify-content: center; }
.event-logo { height: 55px; width: auto; max-width: 150px; object-fit: contain; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Gallery + lightbox ---------- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
    background: transparent; border: 1px solid var(--border-subtle); color: var(--text-secondary);
    padding: 10px 22px; border-radius: 40px; cursor: pointer; font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.5px; transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--accent-teal); color: var(--text-primary); }
.filter-btn.active { background: var(--accent-teal); border-color: var(--accent-teal); color: #fff; }

.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-item {
    break-inside: avoid; margin-bottom: 18px; position: relative; border-radius: 6px; overflow: hidden;
    cursor: pointer; border: 1px solid var(--border-subtle); background: var(--surface);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.35s ease;
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.gallery-item:hover { box-shadow: var(--shadow-teal); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-cap {
    position: absolute; inset: auto 0 0 0; padding: 22px 18px 16px;
    background: linear-gradient(to top, rgba(10,14,20,0.92), transparent);
    transform: translateY(8px); opacity: 0; transition: all 0.35s ease; z-index: 2;
}
.gallery-item:hover .gallery-cap { transform: translateY(0); opacity: 1; }
.gallery-cap h4 { font-size: 1.05rem; color: #fff; margin-bottom: 3px; }
.gallery-cap span { font-size: 0.82rem; color: var(--accent-teal); font-weight: 600; letter-spacing: 0.5px; }
.gallery-item.is-hidden { display: none; }

.lightbox {
    position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
    background: rgba(6, 9, 13, 0.94); opacity: 0; visibility: hidden; transition: opacity 0.35s ease;
    padding: 30px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #fff; font-size: 0.95rem; }
.lightbox-cap span { color: var(--accent-teal); }
.lb-btn {
    position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff;
    width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: background 0.25s ease; user-select: none;
}
.lb-btn:hover { background: rgba(45, 156, 202, 0.5); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Forms ---------- */
.form-wrap { background: var(--surface); border: 1px solid var(--border-subtle); border-radius: 6px; padding: 40px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; letter-spacing: 0.4px; }
.field label .req { color: var(--accent-teal); }
.field input, .field select, .field textarea {
    background: var(--primary-dark); border: 1px solid var(--border-subtle); border-radius: 3px;
    padding: 14px 16px; color: var(--text-primary); font-size: 1rem; font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent-teal); box-shadow: 0 0 0 3px rgba(45, 156, 202, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: #6b7280; }
.form-note { font-size: 0.85rem; color: var(--text-secondary); margin-top: 8px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-success { display: none; text-align: center; padding: 30px; color: var(--success); font-weight: 600; }

/* Contact info list */
.info-list { list-style: none; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border-subtle); }
.info-list .info-ic { font-size: 1.4rem; flex-shrink: 0; }
.info-list h4 { font-size: 1rem; color: #fff; margin-bottom: 4px; }
.info-list a, .info-list p { color: var(--text-secondary); }
.info-list a:hover { color: var(--accent-teal); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding: 100px 20px; overflow: hidden; border-top: 2px solid var(--accent-teal); }
.cta-band .cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.cta-band .cta-ov { position: absolute; inset: 0; background: rgba(15, 20, 25, 0.86); z-index: 1; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 18px; color: #fff; }
.cta-band p { color: var(--text-primary); font-size: 1.15rem; max-width: 640px; margin: 0 auto 36px; }
.cta-group { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.urgency-text { font-size: 1rem; color: var(--accent-gold); font-weight: 600; margin-top: 28px; }

/* ---------- Footer (shared, elevated) ---------- */
.site-footer { background: var(--primary-dark); border-top: 1px solid var(--border-subtle); padding: 60px 20px 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h3 { color: #fff; font-size: 1.2rem; margin-bottom: 14px; }
.footer-col h4 { color: var(--accent-teal); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 12px; line-height: 1.7; }
.footer-col a { display: block; color: var(--text-secondary); margin: 9px 0; font-size: 0.95rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--accent-teal); }
.footer-col .phone-link { color: var(--accent-gold); font-size: 1.4rem; font-weight: 700; margin: 8px 0; }
.footer-col .phone-link:hover { color: var(--accent-gold-bright); }
.footer-col.cta .cta-button { margin: 6px 0 0; }
.footer-loc { color: var(--accent-teal) !important; font-weight: 600; }
.footer-bottom { max-width: var(--maxw); margin: 44px auto 0; padding-top: 24px; border-top: 1px solid var(--border-subtle); text-align: center; color: var(--text-secondary); font-size: 0.9rem; }

/* ---------- Scroll reveal utilities (driven by site.js) ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal="left"] { transform: translateX(-42px); }
[data-reveal="right"] { transform: translateX(42px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].revealed { opacity: 1; transform: none; }

.reveal-group > * { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-group.revealed > * { opacity: 1; transform: none; }
.reveal-group.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group.revealed > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group.revealed > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group.revealed > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-group.revealed > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-group.revealed > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-group.revealed > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-group.revealed > *:nth-child(8) { transition-delay: 0.75s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) and (min-width: 769px) {
    .navbar-phone a { font-size: 0.8rem; padding: 7px 14px; }
    .navbar-phone { margin-right: 20px; }
    .navbar-menu { gap: 15px; }
    .navbar-menu a { font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .navbar-phone { margin-right: 12px; margin-left: auto; }
    .navbar-phone a { font-size: 0.7rem; padding: 6px 10px; letter-spacing: 0.5px; }
    .navbar-menu {
        position: fixed; top: 0; right: -280px; width: 280px; height: 100vh;
        background: var(--accent-teal); backdrop-filter: blur(10px);
        flex-direction: column; gap: 0; align-items: stretch; overflow-y: auto;
        transition: right 0.3s ease; border-left: 1px solid rgba(255,255,255,0.1);
        padding-top: 80px; z-index: 1000;
    }
    .navbar-menu.active { right: 0; box-shadow: -5px 0 20px rgba(0,0,0,0.3); }
    .navbar-menu a { padding: 18px 25px; border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; font-weight: 600; }
    .navbar-menu a:hover, .navbar-menu a.active { background: rgba(255,255,255,0.12); color: #fff; }
    .navbar-menu a.active::after { display: none; }

    .section { padding: 60px 20px; }
    .page-hero { min-height: 52vh; padding: 120px 20px 70px; }
    .feature-row { grid-template-columns: 1fr; gap: 32px; }
    .feature-row.reverse .feature-media { order: 0; }
    .feature-row + .feature-row { margin-top: 56px; }
    .gallery-grid { columns: 2; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wrap { padding: 26px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .cta-group { flex-direction: column; align-items: center; }
    .cta-group .cta-button { width: 100%; max-width: 380px; }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
}

@media (max-width: 480px) {
    .gallery-grid { columns: 1; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .page-hero-media { animation: none; }
    [data-reveal], .reveal-group > * { opacity: 1 !important; transform: none !important; }
    .tilt { transform: none !important; }
}
