/* Bright Light Holiday Company — design system for the builder-rendered site.
 *
 * Ported from the design the team preferred, with two deliberate changes:
 *  1. The existing BLHC logo is kept (a wide ~2.3:1 SVG), so the nav is sized
 *     for a wide mark rather than the tall one the new design assumed.
 *  2. Section styles are keyed off widget class names (.w-hero, .w-story, …)
 *     rather than page-position selectors, because the builder lets an editor
 *     put any widget in any order on any page.
 */

:root {
    --ink: #090b09;
    --ink2: #111410;
    --cream: #f1eee6;
    --gold: #d2ad59;
    --gold2: #efd58d;
    --ruby: #b63a51;
    --green: #248967;
    --line: rgba(255, 255, 255, .13);
    --serif: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }

body {
    margin: 0;
    background: var(--ink);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; text-decoration: none }
button, input, textarea, select { font: inherit }

.section {
    padding-left: clamp(24px, 7vw, 112px);
    padding-right: clamp(24px, 7vw, 112px);
}

/* ── Ribbon ─────────────────────────────────────────────────────────────── */
.ribbon {
    height: 3px;
    position: fixed;
    z-index: 101;
    top: 0; left: 0; right: 0;
    background: linear-gradient(90deg, var(--ruby), var(--gold2), var(--green), var(--gold2), var(--ruby));
    background-size: 250% auto;
    animation: ribbon 8s linear infinite;
}
@keyframes ribbon { to { background-position: 250% center } }

/* ── Nav ────────────────────────────────────────────────────────────────── */
/* Sized for BLHC's existing wide logo, not the tall mark in the new comp. */
.nav-shell {
    height: 118px;
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 5vw, 78px);
    background: linear-gradient(180deg, rgba(6,7,6,.72) 0%, rgba(6,7,6,.5) 45%, rgba(6,7,6,.18) 78%, transparent 100%);
}
/* Inner pages have no hero photo behind the nav, so it needs its own ground. */
.nav-shell.is-solid {
    position: relative;
    background: #0b0d0a;
    border-bottom: 1px solid rgba(210, 173, 89, .22);
}
.logo { display: flex; align-items: center }
.logo-mark {
    height: 72px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .45));
}
.desktop-nav {
    display: flex;
    gap: 34px;
    color: #bbbdb7;
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.desktop-nav a { padding: 8px 0; border-bottom: 1px solid transparent }
.desktop-nav a:hover, .desktop-nav a.is-current { color: #fff; border-color: var(--gold) }

.nav-cta, .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    padding: 15px 19px;
    border: 1px solid rgba(210, 173, 89, .6);
    transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.nav-cta { color: var(--gold2) }
.menu-btn, .mobile-nav { display: none }
.mobile-nav[hidden] { display: none !important }

/* ── Shared type ────────────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border: 1px solid rgba(210, 173, 89, .44);
    border-radius: 999px;
    color: var(--gold2);
    background: rgba(10, 10, 9, .34);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .23em;
}
.badge i { width: 6px; height: 6px; border-radius: 50%; box-shadow: 0 0 10px currentColor }
.ruby-dot { background: #ed6077; color: #ed6077 }
.green-dot { background: #4bd5a5; color: #4bd5a5 }
.gold-dot { background: var(--gold2); color: var(--gold2) }

.kicker {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin: 35px 0 12px;
}

.w-hero h1, .w-story h2, .center-heading h2, .w-panel h2,
.w-process h2, .w-faq h2, .w-contact h2, .w-richtext h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.045em;
}

.dazzle {
    background: linear-gradient(100deg, #d2ad59 0%, #efd58d 18%, #4bd5a5 36%, #efd58d 54%, #ed6077 72%, #efd58d 88%, #d2ad59 100%);
    background-size: 300% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 9s ease-in-out infinite;
}
.w-hero h1 em {
    font-style: normal;
    background: linear-gradient(100deg, #ae8332, #f6dda0, #fff7d8, #d6a84a);
    background-size: 230% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 7s ease-in-out infinite;
}
@keyframes shine { 50% { background-position: 100% center } }

.gold-button { background: var(--gold); color: #11130f; border-color: var(--gold); min-width: 225px }
.gold-button:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px) }
.outline-button { border-color: rgba(255, 255, 255, .4); color: #fff; min-width: 180px }
.outline-button:hover { border-color: var(--gold2); color: var(--gold2) }

.under-link {
    display: inline-flex;
    gap: 30px;
    color: var(--gold2);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gold);
    margin-top: 20px;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.w-hero {
    min-height: 700px;
    height: 92vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.hero-photo {
    position: absolute; inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,7,6,.68), rgba(6,7,6,.42) 48%, rgba(6,7,6,.88)),
                linear-gradient(90deg, rgba(6,7,6,.7), transparent 63%);
}
.hero-glow {
    position: absolute;
    width: 530px; height: 530px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .18;
    animation: pulse 8s ease-in-out infinite;
}
.glow-ruby { background: var(--ruby); top: -160px; left: -180px }
.glow-green { background: var(--green); bottom: -240px; right: -140px; animation-delay: 3s }
@keyframes pulse { 50% { transform: scale(1.2); opacity: .28 } }

.hero-twinkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden }
.twinkle { position: absolute; width: 5px; height: 5px; border-radius: 50%; animation: twinkle ease-in-out infinite }
@keyframes twinkle {
    0%, 100% { opacity: .2; transform: scale(.6) }
    50% { opacity: 1; transform: scale(1.8) }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1080px;
    padding: 150px 24px 40px;
    animation: heroUp 1.1s ease .1s both;
}
@keyframes heroUp { from { opacity: 0; transform: translateY(22px) } to { opacity: 1; transform: translateY(0) } }
.w-hero h1 {
    font-size: clamp(52px, 7vw, 104px);
    line-height: .92;
    margin: 28px 0 25px;
    text-shadow: 0 8px 45px rgba(0, 0, 0, .5);
}
.hero-content > p {
    font-family: var(--serif);
    font-style: italic;
    color: #ddd8cc;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
    max-width: 760px;
    margin: 0 auto;
}
.hero-buttons { display: flex; gap: 13px; justify-content: center; margin-top: 38px; flex-wrap: wrap }

/* Compact hero for interior pages. */
.w-hero.is-compact { min-height: 380px; height: auto }
.w-hero.is-compact .hero-content { padding: 170px 24px 70px }
.w-hero.is-compact h1 { font-size: clamp(40px, 5vw, 68px) }

/* ── Stats bar ──────────────────────────────────────────────────────────── */
.w-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 40px clamp(24px, 7vw, 112px);
    background: radial-gradient(circle at 5% 50%, rgba(182,58,81,.16), transparent 35%),
                radial-gradient(circle at 95% 50%, rgba(36,137,103,.16), transparent 35%), #13150f;
    border-top: 1px solid rgba(210, 173, 89, .25);
    border-bottom: 1px solid rgba(210, 173, 89, .2);
}
.w-stats div { text-align: center; border-right: 1px solid rgba(255, 255, 255, .1) }
.w-stats div:last-child { border: 0 }
.w-stats b { display: block; font-family: var(--serif); color: var(--gold2); font-size: 35px; font-weight: 400 }
.w-stats span { display: block; margin-top: 6px; color: #797c75; font-size: 8px; text-transform: uppercase; letter-spacing: .16em }

/* ── Quote band ─────────────────────────────────────────────────────────── */
.w-quote {
    padding: 70px clamp(24px, 7vw, 112px);
    background: #0b0d0a;
    text-align: center;
    border-bottom: 1px solid var(--line);
}
.w-quote blockquote {
    font-family: var(--serif);
    font-size: clamp(19px, 2.2vw, 27px);
    line-height: 1.5;
    color: #ddd8cc;
    margin: 0 auto;
    max-width: 900px;
    font-style: italic;
}
.w-quote cite {
    display: block;
    margin-top: 22px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-style: normal;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

/* ── Story / split ──────────────────────────────────────────────────────── */
.w-story {
    padding-top: 120px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 0 0, rgba(36,137,103,.19), transparent 42%), #0d1712;
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: clamp(60px, 8vw, 130px);
    align-items: center;
}
.w-story.is-reversed .story-media { order: -1 }
.w-story h2 { font-size: clamp(42px, 5vw, 70px); line-height: 1.01; margin: 0 0 32px }
.story-copy > p:not(.kicker) { color: #a7aaa2; font-family: var(--serif); font-size: 17px; line-height: 1.7 }
.story-media { position: relative; padding: 10px; border: 1px solid rgba(210, 173, 89, .35) }
.story-media img { width: 100%; height: 560px; display: block; object-fit: cover }
.story-media > span {
    position: absolute; left: 24px; bottom: 22px;
    background: rgba(8, 9, 7, .76);
    padding: 10px 13px;
    color: #ddd9cc;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .17em;
}

/* ── Services ───────────────────────────────────────────────────────────── */
.w-services {
    padding-top: 115px;
    padding-bottom: 125px;
    background: radial-gradient(circle at 100% 0, rgba(182,58,81,.17), transparent 45%), #160c0e;
}
.center-heading { text-align: center; max-width: 760px; margin: 0 auto 70px }
.center-heading h2 { font-size: clamp(42px, 5.2vw, 72px); margin: 0 0 18px }
.center-heading > p:last-child { font-family: var(--serif); color: #9b9e97; font-size: 17px; line-height: 1.6 }

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.service-list article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    transition: background .3s ease;
}
.service-list article:hover { background: rgba(255, 255, 255, .025) }
.service-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    border: 1px solid;
    background: radial-gradient(circle, rgba(255,255,255,.05), transparent 70%);
    flex-shrink: 0;
    transition: transform .35s ease;
    animation: iconPulse 3.6s ease-in-out infinite;
}
article:hover .service-icon { transform: scale(1.15) }
@keyframes iconPulse {
    0%, 100% { filter: brightness(1) saturate(1) }
    50% { filter: brightness(1.5) saturate(1.3) }
}
.icon-ruby { border-color: rgba(182,58,81,.55); color: #ed6077; box-shadow: 0 0 16px -6px rgba(182,58,81,.7) inset, 0 0 14px rgba(182,58,81,.28) }
.icon-green { border-color: rgba(36,137,103,.55); color: #4bd5a5; box-shadow: 0 0 16px -6px rgba(36,137,103,.7) inset, 0 0 14px rgba(36,137,103,.28) }
.icon-gold { border-color: rgba(210,173,89,.55); color: var(--gold2); box-shadow: 0 0 16px -6px rgba(210,173,89,.7) inset, 0 0 14px rgba(210,173,89,.28) }
.service-list h3 { font-family: var(--serif); font-size: 19px; font-weight: 400; margin: 2px 0 6px }
.service-list p { color: #7e817a; font-size: 13px; line-height: 1.6; margin: 0 }

/* ── Feature panel ──────────────────────────────────────────────────────── */
.w-panel { height: 620px; position: relative; overflow: hidden; background: #0b0d0a }
.w-panel img { position: absolute; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease }
.w-panel:hover img { transform: scale(1.035) }
.w-panel:after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(5,6,5,.94), rgba(5,6,5,.06) 68%);
}
.w-panel > div { position: absolute; z-index: 2; left: clamp(26px, 4vw, 60px); right: 30px; bottom: 50px }
.w-panel div > span { font-size: 9px; text-transform: uppercase; letter-spacing: .2em; color: var(--gold2) }
.w-panel h2 { font-size: clamp(38px, 4.2vw, 60px); line-height: .98; margin: 17px 0 18px }
.w-panel p { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: #bbbdb6 }
.w-panel a {
    display: inline-flex; align-items: center; gap: 35px;
    margin-top: 13px; color: #fff;
    font-size: 9px; text-transform: uppercase; letter-spacing: .15em;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    padding-bottom: 8px;
}

/* ── Process ────────────────────────────────────────────────────────────── */
.w-process {
    padding-top: 120px;
    padding-bottom: 130px;
    background: radial-gradient(circle at 100% 0, rgba(36,137,103,.17), transparent 40%), #0c1310;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(60px, 9vw, 150px);
}
.w-process h2 { font-size: clamp(42px, 4.8vw, 66px); line-height: 1.02; margin: 0 }
.w-process ol { list-style: none; padding: 0; margin: 0; position: relative }
.process-line { position: absolute; top: 6px; bottom: 6px; left: 32px; width: 2px; background: rgba(255,255,255,.13) }
.process-line-fill {
    position: absolute; top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(180deg, var(--ruby), var(--gold2), var(--green));
    box-shadow: 0 0 12px rgba(239, 213, 141, .5);
    transition: height 1s cubic-bezier(.22, .61, .36, 1);
}
.w-process li {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 65px 1fr; gap: 25px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}
.w-process li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .14) }
.w-process li > b {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 65px; height: 65px;
    border-radius: 50%;
    background: #0e130f;
    border: 1px solid rgba(255, 255, 255, .18);
    font-family: var(--serif); font-size: 20px; color: var(--gold); font-weight: 400;
    transition: transform .45s ease, box-shadow .45s ease, background .45s ease, border-color .45s ease, color .45s ease;
}
.w-process li:nth-of-type(2) > b { color: var(--green) }
.w-process li:nth-of-type(3) > b { color: #ed6077 }
.w-process li.lit > b { transform: scale(1.06) }
.w-process li.lit:nth-of-type(1) > b { border-color: #ed6077; color: #1a0d0f; background: #ed6077; box-shadow: 0 0 26px 5px rgba(237,96,119,.55), 0 0 60px 16px rgba(237,96,119,.2) }
.w-process li.lit:nth-of-type(2) > b { border-color: var(--gold2); color: #1c1206; background: var(--gold2); box-shadow: 0 0 26px 5px rgba(239,213,141,.55), 0 0 60px 16px rgba(239,213,141,.2) }
.w-process li.lit:nth-of-type(3) > b { border-color: #4bd5a5; color: #06140f; background: #4bd5a5; box-shadow: 0 0 26px 5px rgba(75,213,165,.55), 0 0 60px 16px rgba(75,213,165,.2) }
.w-process h3 { font-family: var(--serif); font-weight: 400; font-size: 25px; margin: 0 0 9px }
.w-process li p { color: #7f827a; font-size: 13px; line-height: 1.65; margin: 0 }

/* ── Gallery ────────────────────────────────────────────────────────────── */
.w-gallery {
    padding-top: 120px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 0 100%, rgba(182,58,81,.18), transparent 42%), #150b0e;
}
.gallery-nav { display: flex; justify-content: center; gap: 10px; margin: -8px 0 22px }
.gallery-nav button {
    width: 42px; height: 42px;
    border: 1px solid rgba(210, 173, 89, .4);
    background: rgba(255, 255, 255, .03);
    color: var(--gold2);
    cursor: pointer;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
}
.gallery-nav button:hover { border-color: var(--gold2); background: rgba(210, 173, 89, .12) }
.gallery-track {
    display: flex; align-items: center; gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 30px 0 34px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(210, 173, 89, .5) transparent;
}
.gallery-track::-webkit-scrollbar { height: 6px }
.gallery-track::-webkit-scrollbar-thumb { background: rgba(210, 173, 89, .45) }
.gallery-track::before, .gallery-track::after { content: ''; flex: 0 0 auto; width: 32vw }
.gallery-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    height: 280px;
    position: relative;
    padding: 0; border: 0;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    opacity: .5;
    filter: brightness(.68) saturate(.85);
    transform: scale(.86);
    transition: transform .5s cubic-bezier(.22,.61,.36,1), opacity .5s ease, filter .5s ease;
}
.gallery-item img { height: 100%; width: auto; max-width: none; display: block }
.gallery-item.is-active { opacity: 1; filter: brightness(1) saturate(1); transform: scale(1.32); z-index: 5 }
.gallery-item span {
    position: absolute; right: 18px; bottom: 18px;
    padding: 9px 12px;
    background: rgba(5, 6, 5, .72);
    font-size: 8px; text-transform: uppercase; letter-spacing: .14em;
    opacity: 0; transition: opacity .3s;
}
.gallery-item:hover span { opacity: 1 }

/* ── Rich text ──────────────────────────────────────────────────────────── */
.w-richtext { padding-top: 100px; padding-bottom: 100px; background: #0d1410 }
.w-richtext .rt-inner { max-width: 780px; margin: 0 auto }
.w-richtext.is-wide .rt-inner { max-width: 1100px }
.w-richtext h2 { font-size: clamp(36px, 4vw, 56px); margin: 0 0 26px }
.w-richtext h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 38px 0 12px }
.w-richtext p, .w-richtext li { color: #a7aaa2; font-family: var(--serif); font-size: 17px; line-height: 1.75 }
.w-richtext a { color: var(--gold2); border-bottom: 1px solid rgba(210, 173, 89, .5) }
.w-richtext ul { padding-left: 20px }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.w-faq {
    padding-top: 115px;
    padding-bottom: 120px;
    background: #0d1410;
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 90px;
}
.w-faq h2 { font-size: clamp(42px, 4.8vw, 64px); margin: 0 }
.faq-list article { border-top: 1px solid rgba(255, 255, 255, .14) }
.faq-list article:last-child { border-bottom: 1px solid rgba(255, 255, 255, .14) }
.faq-list button {
    width: 100%; border: 0; background: none; color: #fff;
    display: flex; justify-content: space-between; align-items: center;
    text-align: left; padding: 23px 0; cursor: pointer;
}
.faq-list button span { font-family: var(--serif); font-size: 19px; transition: color .3s ease }
.faq-list button:hover span { color: var(--gold2) }
.faq-list button b {
    color: var(--gold); font-size: 21px; font-weight: 400;
    display: inline-block;
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), color .35s ease;
}
.faq-list button[aria-expanded="true"] b { transform: rotate(45deg); color: var(--gold2); text-shadow: 0 0 12px rgba(239,213,141,.7) }
.faq-list article:nth-of-type(3n+2) button b { color: var(--green) }
.faq-list article:nth-of-type(3n+3) button b { color: #ed6077 }
.faq-list article > p {
    color: #92958e; line-height: 1.7; font-size: 14px;
    margin: 0; padding: 0 45px 24px 0;
    animation: answer .3s ease;
}
@keyframes answer { from { opacity: 0; transform: translateY(-6px) } }

/* ── Contact ────────────────────────────────────────────────────────────── */
.w-contact {
    position: relative; overflow: hidden;
    padding-top: 120px; padding-bottom: 120px;
    background: radial-gradient(circle at 10% 0, rgba(210,173,89,.17), transparent 38%),
                radial-gradient(circle at 100% 100%, rgba(36,137,103,.14), transparent 38%), #14110b;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(55px, 8vw, 130px);
}
.contact-twinkles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden }
.contact-intro, .form-wrap { position: relative; z-index: 1 }
.w-contact h2 { font-size: clamp(44px, 5.2vw, 72px); line-height: .98; margin: 0 0 28px }
.contact-intro > p:not(.kicker) { font-family: var(--serif); color: #a4a69f; font-size: 17px; line-height: 1.65 }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 50px }
.contact-details a { font-family: var(--serif); font-size: 18px }
.contact-details small {
    display: block; color: #696c65;
    font-family: Arial, sans-serif; font-size: 8px;
    text-transform: uppercase; letter-spacing: .16em; margin-bottom: 6px;
}
.form-wrap {
    border: 1px solid rgba(210, 173, 89, .22);
    padding: clamp(25px, 4vw, 52px);
    background: rgba(8, 9, 7, .45);
    animation: formGlow 4.5s ease-in-out infinite;
}
@keyframes formGlow {
    0%, 100% { box-shadow: 0 0 0 rgba(210, 173, 89, 0) }
    50% { box-shadow: 0 0 34px -6px rgba(210, 173, 89, .35) }
}
form { display: flex; flex-direction: column; gap: 22px }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px }
form label {
    display: flex; flex-direction: column; gap: 9px;
    color: #777b73; font-size: 8px;
    text-transform: uppercase; letter-spacing: .15em;
}
input, textarea, select {
    width: 100%;
    background: #1d1e19;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 15px 16px;
    outline: none;
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    border-radius: 0;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 20px rgba(210, 173, 89, .09) }
textarea { resize: vertical }
.form-wrap .button { width: 100%; min-height: 52px; cursor: pointer }
.form-wrap .button:disabled { opacity: .6 }
.form-status { font-size: 12px; margin: 0 }
.form-status.ok { color: #4bd5a5 }
.form-status.err { color: #e88b99 }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
    padding-top: 70px; padding-bottom: 30px;
    background: #080a08;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.site-footer > p { font-family: var(--serif); color: #9a9d96; line-height: 1.6; margin: 0 }
.footer-links {
    display: flex; flex-direction: column; gap: 12px;
    color: #898c85; font-size: 9px;
    text-transform: uppercase; letter-spacing: .14em;
}
.copyright {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 24px; margin-top: 25px;
    color: #555851; font-size: 8px;
    text-transform: uppercase; letter-spacing: .14em;
}

/* ── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox[hidden] { display: none !important }
.lightbox {
    position: fixed; z-index: 500; inset: 0;
    background: rgba(0, 0, 0, .94);
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
}
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain }
.lightbox button {
    position: absolute;
    border: 1px solid rgba(210, 173, 89, .4);
    background: rgba(0, 0, 0, .45);
    color: var(--gold2);
    width: 48px; height: 48px;
    font-size: 25px; cursor: pointer;
}
.lightbox .close { top: 20px; right: 20px }
.lightbox .prev { left: 20px; top: 50% }
.lightbox .next { right: 20px; top: 50% }

/* ── Reveal ─────────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease }
.reveal.visible { opacity: 1; transform: translateY(0) }
.reveal-d1 { transition-delay: .08s }
.reveal-d2 { transition-delay: .16s }
.reveal-d3 { transition-delay: .24s }
.reveal-d4 { transition-delay: .32s }
.reveal-d5 { transition-delay: .4s }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .desktop-nav, .nav-cta { display: none }
    .menu-btn { display: flex; border: 0; background: none; flex-direction: column; gap: 5px; padding: 8px }
    .menu-btn i { display: block; width: 23px; height: 1px; background: #fff }
    .mobile-nav {
        display: flex; position: absolute; top: 118px; left: 0; right: 0;
        background: #0b0d0b;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        padding: 25px; flex-direction: column; gap: 20px;
        color: #ccc; font-size: 11px; text-transform: uppercase; letter-spacing: .15em;
        z-index: 99;
    }
    .w-story, .w-process, .w-faq, .w-contact { grid-template-columns: 1fr }
    .w-story.is-reversed .story-media { order: 0 }
    .w-panel { height: 520px }
    .gallery-item { height: 220px }
    .gallery-track::before, .gallery-track::after { width: 18vw }
    .story-media img { height: 480px }
    .site-footer { grid-template-columns: 1fr 1fr }
    .footer-links { grid-column: 2 }
    .copyright { grid-column: 1 / -1 }
}

@media (max-width: 560px) {
    .nav-shell { height: 96px }
    .logo-mark { height: 56px }
    .mobile-nav { top: 96px }
    .w-hero { min-height: 640px }
    .w-hero h1 { font-size: 46px }
    .hero-buttons { flex-direction: column; align-items: stretch }
    .hero-buttons .button { width: 100% }
    .w-stats { padding-top: 32px; padding-bottom: 32px }
    .w-stats b { font-size: 29px }
    .w-story, .w-services, .w-process, .w-gallery, .w-faq, .w-contact, .w-richtext {
        padding-top: 80px; padding-bottom: 85px;
    }
    .story-media img { height: 360px }
    .service-list { grid-template-columns: 1fr }
    .w-panel { height: 440px }
    .gallery-item { height: 170px }
    .gallery-track::before, .gallery-track::after { width: 8vw }
    .field-row { grid-template-columns: 1fr }
    .form-wrap { padding: 24px }
    .w-faq { gap: 45px }
    .site-footer { grid-template-columns: 1fr }
    .footer-links, .copyright { grid-column: 1 }
    .lightbox { padding: 60px 15px }
    .lightbox .prev { left: 8px }
    .lightbox .next { right: 8px }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto }
    *, *:before, *:after { animation: none !important; transition: none !important }
}
