/*
 * Sigma Panels & Paint - Public Stylesheet
 * Phase 9 - Hand-written recreation of the Stitch "Digital Showroom" design.
 */

/* ============================================================
   1. Design Tokens
   ============================================================ */
:root {
    --primary:            #b3291f;
    --coral:              #F95C4B;  /* primary-container / accent */
    --coral-soft:         rgba(249, 92, 75, 0.10);
    --background:         #F6F4F1;
    --on-surface:         #111111;
    --on-surface-variant: #5a413d;
    --outline-variant:    #e2beb9;
    --white:              #ffffff;
    --surface-low:        #fff0ee;
    --surface-container:  #E4DED2;
    --surface-high:       #fde2de;

    --container-max: 1440px;
    --gutter: 24px;
    --section-pad: 120px;
    --section-pad-mobile: 64px;

    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px -12px rgba(0,0,0,0.12);
    --shadow-xl: 0 32px 64px -16px rgba(0,0,0,0.15);

    --font: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
}

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

html { scroll-behavior: smooth; }

.site-body {
    font-family: var(--font);
    background: var(--background);
    color: var(--on-surface);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
}

::selection { background: var(--coral); color: #fff; }

/* Layout helpers */
.container,
.nav-container,
.footer-container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: var(--section-pad) 0; position: relative; }
.section-sm { padding: 80px 0; position: relative; }

.label-caps {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    display: inline-block;
}

.eyebrow { letter-spacing: 0.3em; }

.headline-lg { font-size: 48px; line-height: 1.15; letter-spacing: -0.01em; font-weight: 700; }
.headline-md { font-size: 32px; line-height: 1.3; font-weight: 600; }
.display-xl  { font-size: 80px; line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; }
.body-lg     { font-size: 18px; line-height: 1.6; }

.text-coral { color: var(--coral); }
.muted { color: rgba(17,17,17,0.6); }
.center { text-align: center; }

/* ============================================================
   3. Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    font-family: var(--font);
}
.btn-pill { border-radius: var(--radius-full); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { transform: scale(1.05); box-shadow: 0 20px 40px rgba(249,92,75,0.30); }
.btn-coral:active { transform: scale(0.96); }
.btn-outline { background: transparent; color: var(--on-surface); border: 1px solid rgba(17,17,17,0.2); }
.btn-outline:hover { background: var(--on-surface); color: #fff; }
.btn-lg { padding: 18px 40px; }
.btn-block { width: 100%; }

/* ============================================================
   4. Header / Navigation
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 50;
    padding: 24px 0;
    transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
    padding: 14px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.brand { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--on-surface); }
.brand img { max-height: 44px; width: auto; }

.main-nav { display: flex; gap: 32px; align-items: center; }
.nav-link {
    position: relative;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--on-surface-variant);
    padding: 8px 0;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--coral);
    transition: width 0.35s ease;
}
.nav-link:hover { color: var(--coral); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--coral); }
.nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--on-surface); }
.nav-toggle .material-symbols-outlined { font-size: 30px; }

/* Mobile drawer */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px var(--gutter) 28px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-link {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--on-surface-variant);
    padding: 14px 4px;
    border-bottom: 1px solid rgba(17,17,17,0.06);
}
.mobile-link.active, .mobile-link:hover { color: var(--coral); }
.mobile-menu .btn { margin-top: 16px; }

/* ============================================================
   5. Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: 20%; right: -10%;
    width: 50vw; height: 50vw;
    background: var(--coral-soft);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.hero-ghost {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
    overflow: hidden;
}
.hero-ghost span {
    font-size: 20vw;
    font-weight: 800;
    white-space: nowrap;
    transform: rotate(-5deg);
    -webkit-text-stroke: 1px rgba(249,92,75,0.4);
    color: transparent;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}
.hero-content { display: flex; flex-direction: column; gap: 40px; }
.hero-flag { display: flex; align-items: center; gap: 16px; }
.hero-flag span.rule { width: 48px; height: 1px; background: var(--coral); display: inline-block; }
.hero h1 { font-size: 72px; line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; }
.hero p { font-size: 18px; color: rgba(17,17,17,0.7); max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; }

.hero-visual { position: relative; }
.hero-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4 / 3;
    background: var(--surface-container);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s ease; }
.hero-visual:hover .hero-image img { transform: scale(1.05); }

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    z-index: 4;
}
.float-card .icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--coral-soft);
    color: var(--coral);
    display: flex; align-items: center; justify-content: center;
}
.float-card .fc-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }
.float-card .fc-value { font-weight: 700; font-size: 14px; }
.float-card.top-left { top: -32px; left: -24px; }
.float-card.mid-right { top: 50%; right: -24px; transform: translateY(-50%); }

.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 1;
}
.scroll-indicator .label { font-size: 10px; letter-spacing: 0.2em; color: rgba(17,17,17,0.4); }
.scroll-track { width: 1px; height: 64px; background: rgba(17,17,17,0.1); position: relative; overflow: hidden; }
.scroll-track::after {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 50%; background: var(--coral); border-radius: 999px;
    animation: scroll-dot 2s infinite;
}

/* ============================================================
   6. Section header (shared)
   ============================================================ */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.section-head .titles { max-width: 40rem; display: flex; flex-direction: column; gap: 12px; }
.section-link {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--on-surface); position: relative; padding: 8px 0;
}
.section-link .material-symbols-outlined { color: var(--coral); transition: transform 0.3s ease; }
.section-link:hover .material-symbols-outlined { transform: translateX(6px); }

/* Page hero (interior pages) */
.page-hero { padding: 180px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero .hero-glow { top: -20%; }
.page-hero h1 { font-size: 56px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; margin: 12px 0; }
.page-hero p { font-size: 18px; color: rgba(17,17,17,0.65); max-width: 40rem; margin: 0 auto; }

/* ============================================================
   7. Service cards
   ============================================================ */
.bg-white { background: var(--white); }
.bg-dark { background: var(--on-surface); color: var(--background); }
.bg-stone { background: rgba(228,222,210,0.3); }
.bg-background { background: var(--background); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card { cursor: pointer; transition: transform 0.5s ease; display: block; }
.service-card:hover { transform: translateY(-16px); }
.service-card .media {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin-bottom: 28px;
    background: var(--surface-low);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.5s ease;
}
.service-card:hover .media { box-shadow: var(--shadow-xl); }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.service-card:hover .media img { transform: scale(1.1); }
.service-card .icon-badge {
    position: absolute; bottom: 16px; left: 16px;
    width: 40px; height: 40px; border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; color: var(--coral);
    opacity: 0; transform: translateY(16px); transition: all 0.5s ease;
}
.service-card:hover .icon-badge { opacity: 1; transform: translateY(0); }
.service-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; transition: color 0.3s ease; }
.service-card:hover h3 { color: var(--coral); }
.service-card p { color: rgba(17,17,17,0.6); }
.service-card .underline { width: 0; height: 2px; background: var(--coral); margin-top: 12px; transition: width 0.5s ease; }
.service-card:hover .underline { width: 64px; }

/* ============================================================
   8. Process cards (dark section)
   ============================================================ */
.process-hero-img {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: var(--shadow-xl);
}
.process-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.process-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: var(--radius-2xl);
    transition: background 0.5s ease;
}
.process-card:hover { background: rgba(255,255,255,0.1); }
.process-card .num { font-size: 40px; font-weight: 800; opacity: 0.2; display: block; margin-bottom: 32px; }
.process-card .p-icon {
    width: 56px; height: 56px; border-radius: var(--radius-xl);
    background: rgba(249,92,75,0.2); color: var(--coral);
    display: flex; align-items: center; justify-content: center; margin-bottom: 32px;
    transition: background 0.4s ease, color 0.4s ease;
}
.process-card:hover .p-icon { background: var(--coral); color: #fff; }
.process-card h4 { font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.process-card p { font-size: 14px; color: rgba(246,244,241,0.5); }

/* ============================================================
   9. Gallery
   ============================================================ */
.filter-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
    padding: 8px 24px; border-radius: var(--radius-full);
    background: var(--surface-container); color: rgba(17,17,17,0.6);
    font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    border: none; cursor: pointer; transition: all 0.3s ease;
}
.chip:hover { background: var(--on-surface); color: #fff; transform: scale(1.05); }
.chip.active { background: var(--coral); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gallery-item {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--surface-container);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
    opacity: 0; transition: opacity 0.5s ease;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .caption {
    position: absolute; bottom: 0; left: 0; padding: 32px;
    transform: translateY(24px); opacity: 0; transition: all 0.5s ease; z-index: 2;
}
.gallery-item:hover .caption { transform: translateY(0); opacity: 1; }
.gallery-item .caption .cat { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); }
.gallery-item .caption h4 { color: #fff; font-size: 22px; font-weight: 700; margin-top: 6px; }

/* ============================================================
   10. Feature / trust / about
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.trust-item { text-align: center; }
.trust-item .t-icon {
    width: 80px; height: 80px; border-radius: var(--radius-2xl);
    background: var(--background); box-shadow: var(--shadow-lg);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
    color: var(--coral); transition: transform 0.5s ease;
}
.trust-item:hover .t-icon { transform: scale(1.1); }
.trust-item .t-icon .material-symbols-outlined { font-size: 36px; }
.trust-item h4 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.trust-item p { font-size: 14px; color: rgba(17,17,17,0.6); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--surface-container); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body { display: flex; flex-direction: column; gap: 20px; }
.split-body h2 { font-size: 40px; line-height: 1.2; font-weight: 700; }
.split-body p { color: rgba(17,17,17,0.7); }

/* ============================================================
   11. CTA band
   ============================================================ */
.cta-band { position: relative; padding: 160px 0; text-align: center; overflow: hidden; }
.cta-band h2 { font-size: 64px; line-height: 1.05; font-weight: 800; max-width: 56rem; margin: 0 auto 24px; }
.cta-band p { font-size: 20px; color: rgba(246,244,241,0.6); max-width: 40rem; margin: 0 auto 40px; }

/* ============================================================
   12. FAQ accordion
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--radius-xl); overflow: hidden; }
.faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 24px 28px; font-size: 18px; font-weight: 700; color: var(--on-surface);
    display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font);
}
.faq-q .material-symbols-outlined { color: var(--coral); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q .material-symbols-outlined { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 28px 24px; color: rgba(17,17,17,0.7); }

/* ============================================================
   13. Forms
   ============================================================ */
.form-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-surface-variant); }
.field input, .field select, .field textarea {
    width: 100%; padding: 14px 16px;
    border: 1px solid var(--outline-variant); border-radius: var(--radius-lg);
    font-size: 16px; font-family: var(--font); background: var(--background); color: var(--on-surface);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-soft);
}
.field textarea { resize: vertical; min-height: 140px; }
.field .err-msg { color: var(--primary); font-size: 13px; font-weight: 600; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--primary); }
.field.has-error .err-msg { display: block; }

.alert { padding: 16px 20px; border-radius: var(--radius-lg); margin-bottom: 24px; font-weight: 600; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* Contact info panel */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-list { display: flex; flex-direction: column; gap: 28px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-item .i-icon {
    width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-xl);
    background: var(--coral-soft); color: var(--coral);
    display: flex; align-items: center; justify-content: center;
}
.info-item .i-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(17,17,17,0.5); }
.info-item .i-value { font-size: 17px; font-weight: 600; }
.map-embed { margin-top: 40px; border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Legal / prose */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 28px; font-weight: 700; margin: 40px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.prose p { color: rgba(17,17,17,0.75); margin-bottom: 16px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; color: rgba(17,17,17,0.75); }
.prose li { margin-bottom: 8px; }

/* Service detail */
.detail-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.detail-media { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4/3; background: var(--surface-container); }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-body { display: flex; flex-direction: column; gap: 20px; }
.detail-body h1 { font-size: 48px; font-weight: 800; line-height: 1.1; }
.related-strip { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   14. Footer
   ============================================================ */
.site-footer { background: var(--white); border-top: 1px solid rgba(17,17,17,0.05); padding: 96px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-wordmark { font-size: 36px; font-weight: 800; color: var(--on-surface); display: block; margin-bottom: 24px; }
.footer-blurb { color: rgba(17,17,17,0.5); font-size: 14px; margin-bottom: 24px; }
.footer-social {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(17,17,17,0.1);
    display: inline-flex; align-items: center; justify-content: center; color: var(--on-surface);
    transition: all 0.3s ease;
}
.footer-social:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); margin-bottom: 24px; }
.footer-col p { font-size: 14px; color: rgba(17,17,17,0.75); margin-bottom: 12px; }
.footer-col a { color: rgba(17,17,17,0.75); transition: color 0.3s ease; }
.footer-col a:hover { color: var(--coral); }
.footer-phone a { font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-size: 14px; color: rgba(17,17,17,0.6); }
.footer-links a:hover { color: var(--coral); }
.footer-bottom {
    padding-top: 40px; border-top: 1px solid rgba(17,17,17,0.05);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(17,17,17,0.4); }

/* ============================================================
   15. Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 56px; }
    .display-xl { font-size: 60px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4, .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-band h2 { font-size: 48px; }
}

@media (max-width: 768px) {
    :root { --section-pad: var(--section-pad-mobile); }
    .main-nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-actions .btn-pill { display: none; }
    .hero { min-height: auto; padding: 140px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero h1 { font-size: 44px; }
    .float-card { display: none; }
    .scroll-indicator { display: none; }
    .section-head { margin-bottom: 48px; }
    .card-grid, .card-grid-2, .card-grid-4, .gallery-grid, .trust-grid { grid-template-columns: 1fr; }
    .split, .split.reverse .split-media, .contact-split, .detail-hero { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 28px; }
    .page-hero h1 { font-size: 40px; }
    .headline-lg { font-size: 34px; }
    .cta-band h2 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   16. Phase 12 - Card & CTA motion polish
   (uses the `translate` property so hover lift composes with the
   reveal system's transform reset instead of being overridden)
   ============================================================ */
.service-card { transition: translate 0.6s cubic-bezier(.2,.8,.2,1), box-shadow 0.6s cubic-bezier(.2,.8,.2,1); }
.service-card:hover { transform: none; translate: 0 -16px; }
.service-card .media { transition: box-shadow 0.6s cubic-bezier(.2,.8,.2,1); }
.service-card .underline { transition: width 0.6s cubic-bezier(.2,.8,.2,1); }
.service-card h3 { display: inline-block; }
.service-card h3::after {
    content: '\2192'; color: var(--coral); margin-left: 8px; display: inline-block;
    opacity: 0; translate: -6px 0; transition: opacity 0.5s cubic-bezier(.2,.8,.2,1), translate 0.5s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover h3::after { opacity: 1; translate: 0 0; }

.gallery-item { transition: translate 0.5s ease, box-shadow 0.5s ease; }
.gallery-item:hover { translate: 0 -8px; box-shadow: var(--shadow-xl); }
.gallery-item:hover .caption .cat { letter-spacing: 0.15em; }

@media (prefers-reduced-motion: reduce) {
    .service-card, .gallery-item { transition: none !important; }
    .service-card:hover, .gallery-item:hover { translate: none !important; transform: none !important; }
    .service-card:hover .media img, .gallery-item:hover img, .hero-visual:hover .hero-image img { transform: none !important; }
}

/* ============================================================
   17. Phase 13 - branded image containers (premium empty state /
   fallback backdrop behind every DB/placeholder image)
   ============================================================ */
.hero-image, .service-card .media, .split-media, .detail-media, .gallery-item {
    background-color: #14120f;
    background-image:
        radial-gradient(circle at 78% 82%, rgba(249,92,75,0.16), transparent 55%),
        radial-gradient(circle at 26% 22%, rgba(255,255,255,0.06), transparent 45%);
}

/* ============================================================
   18. Phase 18 - Premium "Digital Showroom" landing hero
   ============================================================ */
.sigma-lux-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 90px;
    overflow: hidden;
    /* Cream on the left (text) blending to white on the right so the car
       photo's white studio background dissolves into the hero - no grey box. */
    background: linear-gradient(90deg, #f2efe9 0%, #f2efe9 35%, #ffffff 52%, #ffffff 100%);
}
/* The old stone split is intentionally neutralised so the white blend shows. */
.lux-split { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: transparent; }

.lux-hero-shell {
    position: relative; z-index: 2;
    max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter);
    display: grid; grid-template-columns: 43% 57%; align-items: center;
    min-height: calc(100vh - 300px);
}

/* Left copy */
.lux-copy { position: relative; z-index: 3; padding-right: 40px; display: flex; flex-direction: column; gap: 26px; }
.lux-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: var(--coral); }
.lux-headline { font-size: 70px; line-height: 1.03; letter-spacing: -0.02em; font-weight: 800; color: var(--on-surface); }
.lux-lead { font-size: 17px; line-height: 1.7; color: rgba(17,17,17,0.58); max-width: 30rem; }
.lux-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.lux-watch { display: inline-flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-surface); }
.lux-watch-icon { width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(17,17,17,0.25); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.lux-watch:hover .lux-watch-icon { background: var(--coral); border-color: var(--coral); color: #fff; }

/* Right visual */
.lux-hero-visual { position: relative; z-index: 2; height: 100%; min-height: 520px; }
.lux-hero-visual::before { content: '2024'; position: absolute; top: 0; right: 5%; z-index: 0; pointer-events: none;
    font-size: 12vw; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(17,17,17,0.08); }
.lux-ghost { position: absolute; left: -6%; bottom: -6%; z-index: 0; pointer-events: none; }
.lux-ghost span { font-size: 15vw; font-weight: 800; letter-spacing: 0.02em; color: transparent; -webkit-text-stroke: 1px rgba(17,17,17,0.06); }
.lux-car-stage { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; }
.lux-car-img { width: 112%; max-width: none; margin-left: -4%; object-fit: contain; filter: drop-shadow(0 40px 60px rgba(0,0,0,0.22)); }
.lux-car-stage .hero-paint-demo { position: relative; inset: auto; width: 100%; max-width: 560px; aspect-ratio: 4 / 3; border-radius: 22px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.35); }

/* Floating feature card */
.lux-feature-card { position: absolute; right: 0; bottom: 10%; z-index: 4; width: 320px;
    background: rgba(255,255,255,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.6); border-radius: 16px; box-shadow: 0 24px 50px -18px rgba(0,0,0,0.22); padding: 6px; }
.lux-feature-row { display: flex; align-items: center; gap: 14px; padding: 15px 16px; }
.lux-feature-row + .lux-feature-row { border-top: 1px solid rgba(17,17,17,0.07); }
.lux-feature-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: rgba(249,92,75,0.1); color: var(--coral); display: flex; align-items: center; justify-content: center; }
.lf-title { font-weight: 700; font-size: 14px; }
.lf-sub { font-size: 12px; color: rgba(17,17,17,0.55); }

/* Scroll rail */
.scroll-rail { position: absolute; left: 26px; top: 36%; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.scroll-rail span { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(17,17,17,0.4); }
.scroll-rail .rail-line { width: 1px; height: 120px; background: rgba(17,17,17,0.22); }
.scroll-rail .rail-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

/* Overlapping service dock */
.lux-dock-wrap { position: relative; z-index: 6; max-width: var(--container-max); margin: -60px auto 0; padding: 0 var(--gutter) 40px; }
.lux-service-dock { display: grid; grid-template-columns: repeat(4, 1fr) 1.3fr; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.28); background: #fff; }
.lux-service-tile { position: relative; min-height: 250px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; color: var(--on-surface); border-right: 1px solid rgba(17,17,17,0.06); background: linear-gradient(180deg, #fbfaf8, #ece7de); overflow: hidden; transition: transform 0.4s ease; }
.lux-service-tile::after { content: ''; position: absolute; right: -25%; bottom: -25%; width: 85%; height: 85%; background: radial-gradient(closest-side, rgba(17,17,17,0.07), transparent 70%); pointer-events: none; }
.lux-service-tile:hover { transform: translateY(-6px); }
.lst-body h3 { font-size: 19px; font-weight: 700; }
.lst-body p { font-size: 13px; color: rgba(17,17,17,0.55); margin-top: 6px; max-width: 15rem; }
.lst-arrow { font-size: 22px; color: var(--on-surface); transition: color 0.3s ease, transform 0.3s ease; }
.lux-service-tile:hover .lst-arrow { color: var(--coral); transform: translateX(4px); }
.lux-dark-cta { position: relative; min-height: 250px; padding: 30px; background: #141210; color: #f6f4f1; display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; }
.ldc-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--coral); }
.lux-dark-cta h3 { font-size: 26px; font-weight: 800; margin: 6px 0 10px; }
.lux-dark-cta p { font-size: 13px; color: rgba(246,244,241,0.6); max-width: 20rem; }
.ldc-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); }

/* Header brand two-line + nav spacing tweaks for the lux look */
.brand img { max-height: 46px; }

/* No hero car uploaded/enabled: keep the visual column tidy so the hero text
   stays balanced and there is no giant blank right-hand gap. Drop the empty
   decorative texts; centre the feature card so it reads as an intentional
   info panel on desktop (it already stacks normally on mobile). */
.sigma-lux-hero.no-hero-car .lux-ghost,
.sigma-lux-hero.no-hero-car .lux-hero-visual::before { display: none; }
@media (min-width: 1025px) {
    .sigma-lux-hero.no-hero-car .lux-feature-card { top: 50%; bottom: auto; transform: translateY(-50%); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .lux-hero-shell { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
    .lux-copy { padding-right: 0; }
    .lux-headline { font-size: 56px; }
    .lux-hero-visual { min-height: 420px; }
    .lux-hero-visual::before { font-size: 18vw; }
    .lux-ghost span { font-size: 22vw; }
    .lux-feature-card { position: relative; bottom: auto; right: auto; width: 100%; max-width: 380px; margin-top: 24px; }
    .scroll-rail { display: none; }
    .lux-service-dock { grid-template-columns: repeat(2, 1fr); }
    .lux-dark-cta { grid-column: 1 / -1; }
    .lux-dock-wrap { margin-top: -70px; }
}
@media (max-width: 560px) {
    .sigma-lux-hero { padding: 120px 0 60px; }
    .lux-headline { font-size: 42px; }
    .lux-car-img { width: 118%; }
    .lux-service-dock { grid-template-columns: 1fr; }
    .lux-dock-wrap { margin-top: -40px; }
}

/* ============================================================
   18b. Reference-match corrections
   ============================================================ */
/* Text wordmark logo (SIGMA / Panels & Paint) */
.brand.ref-logo { display: flex; flex-direction: column; line-height: 1; }
.ref-logo-word { font-size: 30px; font-weight: 800; letter-spacing: 0.14em; color: var(--on-surface); }
.ref-logo-word .accent { color: var(--coral); }
.ref-logo-sub { font-size: 10px; font-weight: 700; letter-spacing: 0.42em; color: var(--on-surface-variant); margin-top: 5px; }

/* (Hero car visual is the single static .hero-top-car img defined in
   animations.css - transparent-background cutout PNG, no box, no shadow/filter.) */

/* Slide counter under the CTAs */
.lux-count { display: flex; align-items: center; gap: 16px; margin-top: 26px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: rgba(17,17,17,0.55); }
.lux-count span:last-child { color: rgba(17,17,17,0.3); }
.lux-count i { width: 120px; height: 1px; background: rgba(17,17,17,0.2); display: inline-block; }

/* Dark circular menu icon on the right (matches reference) */
.nav-toggle { width: 46px; height: 46px; border-radius: 50%; background: #141210; color: #fff; align-items: center; justify-content: center; border: none; cursor: pointer; }
.nav-toggle .material-symbols-outlined { font-size: 22px; color: #fff; }
/* Desktop shows a single top nav only: never show the mobile drawer or hamburger */
@media (min-width: 769px) {
    .mobile-menu { display: none !important; }
    .nav-toggle { display: none !important; }
}

/* Feature card mid-right over the car, clear of the dock */
.lux-feature-card { bottom: 16%; }

@media (max-width: 1024px) {
    /* Stacked layout: text on top, car below - blend cream (top) into white
       (behind the car) vertically so the white photo has no box. */
    .sigma-lux-hero { background: linear-gradient(180deg, #f2efe9 0%, #f2efe9 40%, #ffffff 68%, #ffffff 100%); }
    /* Stacked: car flows normally, centred, complete - no absolute offset. */
    .hero-top-car {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: min(100%, 600px);
        margin: 20px auto 0;
    }
    .lux-count { display: none; }
}

/* ============================================================
   18c. Scale correction for normal 100% browser zoom
   ============================================================ */
.sigma-lux-hero { padding-top: 106px; padding-bottom: 80px; }
.lux-hero-shell { padding-left: clamp(24px, 4vw, 72px); padding-right: clamp(24px, 4vw, 72px); min-height: calc(100vh - 280px); }
.lux-copy { max-width: 600px; padding-right: 32px; gap: 22px; }
.lux-headline { font-size: clamp(2.4rem, 4vw, 4.1rem); line-height: 1.0; }
.lux-lead { font-size: clamp(1.02rem, 1.1vw, 1.14rem); line-height: 1.7; max-width: 520px; }

/* Header: premium but not tall */
.site-header { padding: 16px 0; }
.site-header.scrolled { padding: 12px 0; }
.ref-logo-word { font-size: 27px; }
.ref-logo-sub { font-size: 9.5px; letter-spacing: 0.4em; }
.nav-actions .btn-pill { padding: 16px 26px; }
.nav-toggle { width: 54px; height: 54px; }

/* Right car visual: large but not cropped */
.lux-hero-visual { min-height: 460px; }
.lux-hero-visual::before { font-size: 9.5vw; }

/* Feature card clear of the front wheel */
.lux-feature-card { bottom: 18%; width: 300px; }

/* Dock tiles consistent height */
.lux-service-tile, .lux-dark-cta { min-height: 250px; }

/* Scroll rail: nudged left, hidden on narrower screens */
.scroll-rail { left: 14px; top: 40%; }
@media (max-width: 1280px) { .scroll-rail { display: none; } }
@media (max-width: 1024px) { .lux-hero-shell { min-height: 0; } }

/* ============================================================
   Paint booth video (#paint-process) - admin-managed real video.
   Replaces the old fake scroll-driven booth SVG sequence. Clean,
   premium video block: dark background, centred heading, 16:9 frame.
   No sticky/fixed positioning, no pinning.
   ============================================================ */
.paint-video-section {
    position: relative;
    background: #16181c;
    color: #f4f2ee;
    padding: 96px 0;
}

.paint-video-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    padding: 0 24px;
    text-align: center;
}
.paint-video-heading .eyebrow {
    color: var(--coral, #F95C4B);
    font-size: 12px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
    margin: 0;
}
.paint-video-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em;
    margin: 12px 0 0; line-height: 1.05;
}
.paint-video-heading p {
    margin-top: 16px;
    font-size: clamp(1rem, 1.1vw, 1.12rem); line-height: 1.7;
    color: rgba(244,242,238,0.66);
}

.paint-video-frame {
    position: relative;
    max-width: 1100px;
    margin-inline: auto;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    background: #0f1013;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.paint-booth-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Play button - only shown when autoplay is unavailable / reduced motion */
.paint-video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex; align-items: center; justify-content: center;
    width: 68px; height: 68px;
    border: none; border-radius: 50%;
    background: var(--coral, #F95C4B);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
    transition: transform 0.2s ease, background 0.2s ease;
}
.paint-video-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.paint-video-play:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.paint-video-play[hidden] { display: none; }
.paint-video-play .material-symbols-outlined { font-size: 38px; line-height: 1; }

/* Mobile: tighter padding, keep 16:9, no overflow */
@media (max-width: 767px) {
    .paint-video-section { padding: 56px 0; }
    .paint-video-heading { margin-bottom: 28px; }
    .paint-video-frame { border-radius: 16px; }
    .paint-video-play { width: 58px; height: 58px; }
    .paint-video-play .material-symbols-outlined { font-size: 32px; }
}

/* Reduced motion: never autoplay; poster/first frame + play button (JS-driven) */
@media (prefers-reduced-motion: reduce) {
    .paint-video-play { transition: none; }
    .paint-video-play:hover { transform: translate(-50%, -50%); }
}

/* (Removed: Precision Colour Matching feature - section deleted from the homepage.) */

/* ============================================================
   Global paint-gun cursor (public pages, desktop only).
   The element stays display:none (native cursor shown) until
   paint-cursor.js verifies (pointer:fine)+(hover:hover)+>=1024px+
   no reduced-motion and adds html.paint-cursor-enabled. If JS never
   runs or fails, the normal cursor remains and nothing is visible.
   Only transform + opacity animate; no infinite animation, no blur.
   ============================================================ */
.paint-cursor { display: none; }

html.paint-cursor-enabled .paint-cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0);
    transform-origin: 4px 12px;   /* nozzle tip */
    will-change: transform, opacity;
    transition: opacity 140ms ease;
    --pc-accent: #F95C4B;
}

html.paint-cursor-enabled .paint-cursor .paint-cursor-inner {
    display: block;
    width: 36px;
    height: 36px;
    transform: scale(1) rotate(0deg);
    transform-origin: 4px 12px;   /* nozzle tip */
    transition: transform 140ms ease;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.35));
}
html.paint-cursor-enabled .paint-cursor svg { display: block; width: 36px; height: 36px; }

/* Interactive hover: subtle grow, slight tilt, brighter coral accent */
html.paint-cursor-enabled .paint-cursor.is-hover { --pc-accent: #ff7a68; }
html.paint-cursor-enabled .paint-cursor.is-hover .paint-cursor-inner { transform: scale(1.08) rotate(-6deg); }

/* Press feedback */
html.paint-cursor-enabled .paint-cursor.is-down .paint-cursor-inner { transform: scale(0.92) rotate(0deg); }
html.paint-cursor-enabled .paint-cursor.is-hover.is-down .paint-cursor-inner { transform: scale(0.92) rotate(-6deg); }

/* Over text-entry controls: nudge the gun off the caret */
html.paint-cursor-enabled .paint-cursor.is-text .paint-cursor-inner { transform: translate(12px, 12px) scale(0.9); }

/* Hide the native cursor only while active; keep a usable caret in text fields */
html.paint-cursor-enabled,
html.paint-cursor-enabled * { cursor: none !important; }
html.paint-cursor-enabled input:not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
html.paint-cursor-enabled textarea,
html.paint-cursor-enabled [contenteditable="true"] { cursor: text !important; }

/* Belt-and-suspenders: never show under reduced motion even if a class lingers */
@media (prefers-reduced-motion: reduce) {
    .paint-cursor { display: none !important; }
}

/* ============================================================
   18. Phase 20 - Mobile hero layout fix (<= 767px only)
   Single natural-height column in the correct order:
   eyebrow -> heading -> description -> Get a Quote -> Watch Our Story
   -> car -> feature card. Nothing absolute except decorations.
   Fixes: forced 100vh height / empty white space, absolutely-positioned
   car stage, tiny + pushed-down car (the desktop .hero-top-car rule lives
   in animations.css which loads AFTER this file, so these mobile rules are
   scoped under .sigma-lux-hero to out-specify it), and the feature card
   overlapping the hero controls. Desktop (>= 768px) is left untouched.
   ============================================================ */
@media (max-width: 767px) {
    /* Section: natural height, no forced 100vh gap. Top padding clears the
       fixed (transparent) header so the heading is never hidden. */
    .sigma-lux-hero {
        min-height: auto;
        height: auto;
        padding: 88px 20px 40px;
        overflow: hidden;
    }

    /* Single column, tight, no min-height, no inner gutter. */
    .sigma-lux-hero .lux-hero-shell {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 24px;
        padding: 0;
    }
    .sigma-lux-hero .lux-copy { padding-right: 0; }

    /* Visual column flows normally - no min-height, no absolute stage. */
    .sigma-lux-hero .lux-hero-visual { min-height: 0; height: auto; }
    .sigma-lux-hero .lux-car-stage { position: relative; inset: auto; display: block; }

    /* Car (order 6): large, centred, in normal flow. Scoped to beat the
       desktop .hero-top-car absolute rule defined in animations.css. */
    .sigma-lux-hero .hero-top-car {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: min(100%, 560px);
        margin: 20px auto 0;
        z-index: 1;
    }
    .sigma-lux-hero .hero-top-car img { width: 100%; height: auto; display: block; object-fit: contain; }

    /* Feature card (order 7): relative, below the car, compact. */
    .sigma-lux-hero .lux-feature-card {
        position: relative;
        right: auto;
        bottom: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin: 18px auto 0;
        z-index: 2;
        padding: 8px;
    }
    .sigma-lux-hero .lux-feature-row { padding: 12px 14px; gap: 12px; }
    .sigma-lux-hero .lux-feature-icon { width: 34px; height: 34px; }

    /* Hide decorative clutter that would add hero height on mobile. */
    .sigma-lux-hero .lux-ghost,
    .sigma-lux-hero .lux-hero-visual::before,
    .sigma-lux-hero .lux-count,
    .sigma-lux-hero .scroll-rail { display: none; }
}

/* Stack the two hero actions on the smallest screens. */
@media (max-width: 480px) {
    .sigma-lux-hero .lux-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .sigma-lux-hero .lux-actions .btn-coral { width: 100%; justify-content: center; }
}


/* ============================================================
   19. Phase 21 - Large-desktop hero refinement (>= 1601px only)
   On very wide monitors the hero was too airy: content spanned wide,
   the section was forced to 100vh, and the car sat too low/far. This
   caps the content width, limits the height, enlarges + lifts the car,
   and pulls the text and car closer. Standard desktop, tablet, and
   mobile (<= 1600px) are left completely untouched. Scoped under
   .sigma-lux-hero so the .hero-top-car rule out-specifies the desktop
   rule in animations.css (which loads after this file).
   ============================================================ */
@media (min-width: 1601px) {
    /* Keep the hero from becoming excessively tall. */
    .sigma-lux-hero {
        min-height: min(820px, calc(100vh - 90px));
    }
    /* Cap + centre the hero content; stop the inner grid forcing height. */
    .sigma-lux-hero .lux-hero-shell {
        max-width: 1500px;
        margin-inline: auto;
        min-height: min(700px, calc(100vh - 200px));
    }
    /* Text column stays a comfortable 520-620px and closer to the car. */
    .sigma-lux-hero .lux-copy {
        max-width: 600px;
    }
    /* Car: slightly larger, lifted and pulled inward. Position/transform
       (absolute + translateY(-50%)) are inherited from animations.css. */
    .sigma-lux-hero .hero-top-car {
        width: min(720px, 43vw);
        right: 6%;
        top: 50%;
    }
}
