:root {
    --black: #0a0a0a;
    --black-deep: #000000;
    --panel: #141414;
    --panel-2: #1c1c1c;
    --cream: #f2f1ee;
    --cream-dim: #a4a29d;
    --gold: #e7e7e4;
    --gold-bright: #ffffff;
    --ember: #8f8f8c;
    --chrome: #9a9a97;
    --silver-deep: #5c5c59;
    --line: rgba(242,241,238,0.13);
    --dot-silver: #c4c4c1;
    --rail-w: 26px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Inter',sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    padding-left: var(--rail-w);
    padding-right: var(--rail-w);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--gold);
    color: var(--black-deep);
}

h1, h2, h3, .eyebrow, .btn, nav a, .svc-name, .logo-word {
    font-family: 'Oswald',sans-serif;
}

.display {
    font-family: 'Anton',sans-serif;
}

.script {
    font-family: 'Petit Formal Script',cursive;
}

/* ---------- Film sprocket rails, fixed both edges ---------- */
.rail {
    position: fixed;
    top: 0;
    bottom: 0;
    width: var(--rail-w);
    background: var(--black-deep);
    z-index: 500;
    background-image: repeating-linear-gradient( to bottom, transparent 0, transparent 10px, rgba(237,231,218,0.07) 10px, rgba(237,231,218,0.07) 11px );
}

    .rail::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient( to bottom, transparent 0px, transparent 18px, var(--panel-2) 18px, var(--panel-2) 34px );
        -webkit-mask-image: radial-gradient(ellipse 5px 8px at 13px 26px, #000 99%, transparent 100%);
        mask-image: radial-gradient(ellipse 5px 8px at 13px 26px, #000 99%, transparent 100%);
        -webkit-mask-repeat: repeat-y;
        mask-repeat: repeat-y;
        -webkit-mask-size: 100% 34px;
        mask-size: 100% 34px;
        background: var(--dot-silver);
        opacity: 0.85;
        box-shadow: 0 0 6px rgba(196,196,193,0.55);
    }

    .rail.left {
        left: 0;
        border-right: 1px solid var(--line);
    }

    .rail.right {
        right: 0;
        border-left: 1px solid var(--line);
    }

/* ---------- Grain overlay ---------- */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 400;
    opacity: 0.05;
    mix-blend-mode: overlay;
}

/* ---------- Countdown leader intro ---------- */
.leader {
    position: fixed;
    inset: 0;
    background: var(--black-deep);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease;
}

    .leader.hide {
        opacity: 0;
        pointer-events: none;
    }

.leader-circle {
    width: min(38vw,220px);
    height: min(38vw,220px);
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .leader-circle::before, .leader-circle::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        background: var(--gold);
        opacity: 0.7;
    }

    .leader-circle::before {
        width: 1px;
        height: 150%;
        transform: translate(-50%,-50%);
    }

    .leader-circle::after {
        height: 1px;
        width: 150%;
        transform: translate(-50%,-50%);
    }

.leader-num {
    font-family: 'Anton',sans-serif;
    font-size: clamp(2.6rem,7vw,4.5rem);
    color: var(--cream);
}

.leader-label {
    position: absolute;
    bottom: 14%;
    font-family: 'Oswald',sans-serif;
    letter-spacing: .35em;
    font-size: .65rem;
    color: var(--gold);
    text-transform: uppercase;
}

/* ---------- Nav ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: var(--black-deep);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    height: 30px;
    width: auto;
    flex: none;
}

.logo-word {
    font-size: 1.15rem;
    letter-spacing: .06em;
    font-weight: 600;
    color: var(--cream);
}

    .logo-word span {
        color: var(--gold);
    }

.brand-mark {
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.8));
}

nav ul {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

nav a {
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream-dim);
    padding: 6px 2px;
    border-bottom: 1px solid transparent;
    transition: .25s;
    text-shadow: 0 2px 8px rgba(0,0,0,.85);
}

    nav a:hover, nav a:focus-visible {
        color: var(--gold-bright);
        border-color: var(--gold);
    }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    color: var(--cream);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.85);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    z-index: -4;
    background-size: cover;
    background-position: center 30%;
    filter: saturate(1.4) contrast(1.12) brightness(.68);
    opacity: 0;
    animation: slideshow 25s infinite;
}

    .hero-bg-slide:nth-child(1) {
        animation-delay: 0s;
    }

    .hero-bg-slide:nth-child(2) {
        animation-delay: 5s;
    }

    .hero-bg-slide:nth-child(3) {
        animation-delay: 10s;
    }

    .hero-bg-slide:nth-child(4) {
        animation-delay: 15s;
    }

    .hero-bg-slide:nth-child(5) {
        animation-delay: 20s;
    }

@keyframes slideshow {
    0% {
        opacity: 0;
        transform: scale(1.04);
    }

    3% {
        opacity: 1;
    }

    18% {
        opacity: 1;
        transform: scale(1.16);
    }

    22% {
        opacity: 0;
        transform: scale(1.16);
    }

    100% {
        opacity: 0;
    }
}

.hero::before { /* vignette */
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.86) 78%), linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 30%, rgba(0,0,0,.35) 70%, rgba(0,0,0,.92) 100%);
}

canvas#flicker {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .4;
    mix-blend-mode: screen;
    pointer-events: none;
}

.scanlines {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .35;
    background-image: repeating-linear-gradient(to bottom, rgba(0,0,0,0.35) 0px, rgba(0,0,0,0.35) 1px, transparent 2px, transparent 4px);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 76vh;
    padding-bottom: 6vh;
}

.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .5em;
    color: var(--gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(3rem,10vw,7.2rem);
    line-height: .92;
    color: var(--cream);
    text-shadow: 0 6px 40px rgba(0,0,0,.6);
}

    .hero-title .accent {
        color: var(--gold-bright);
    }

.hero-logo-wrap {
    position: relative;
    display: inline-block;
    max-width: min(88vw,780px);
    overflow: hidden;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 50px rgba(0,0,0,.65));
}

.hero-logo-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -60%;
    width: 35%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55) 45%, transparent 90%);
    transform: skewX(-18deg);
    animation: shine-sweep 6.5s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes shine-sweep {
    0% {
        left: -60%;
    }

    28% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

.hero-rule {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg,transparent,var(--gold),transparent);
    margin: 26px auto;
}

.hero-tag {
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.05rem,2vw,1.4rem);
    color: var(--cream-dim);
    max-width: 560px;
    margin: 0 auto 36px;
}

.hero-ctas {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--cream);
    border-radius: 2px;
    transition: .25s;
    position: relative;
    overflow: hidden;
}

    .btn.primary {
        background: linear-gradient(120deg,#c9c9c6 0%,#f7f7f5 28%,#8f8f8c 52%,#f2f2f0 76%,#c4c4c1 100%);
        background-size: 220% 100%;
        background-position: 0% 0%;
        color: var(--black-deep);
        font-weight: 600;
        border-color: #eaeae7;
        transition: background-position .6s ease, transform .25s ease;
    }

        .btn.primary:hover {
            background-position: 100% 0%;
            border-color: #fff;
            transform: translateY(-2px);
        }

    .btn.ghost:hover {
        background: rgba(255,255,255,0.07);
        transform: translateY(-2px);
    }

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cream-dim);
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
}

    .scroll-cue .line {
        width: 1px;
        height: 34px;
        background: var(--cream-dim);
        position: relative;
        overflow: hidden;
    }

        .scroll-cue .line::after {
            content: "";
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold);
            animation: reel 2.2s ease-in-out infinite;
        }

@keyframes reel {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ---------- Section shells ---------- */
section {
    position: relative;
    padding: 120px 0;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

.eyebrow {
    font-size: .72rem;
    letter-spacing: .42em;
    color: var(--gold);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

    .eyebrow::before {
        content: "";
        width: 34px;
        height: 1px;
        background: var(--gold);
    }

.sec-title {
    font-size: clamp(2.2rem,4.6vw,3.6rem);
    line-height: 1.05;
    color: var(--cream);
    max-width: 820px;
    font-weight: 600;
}

.sec-lede {
    color: var(--cream-dim);
    max-width: 640px;
    margin-top: 22px;
    font-size: 1.02rem;
}

/* ---------- Light banner (below hero) ---------- */
.light-banner {
    position: relative;
    max-width: none;
    margin: 0;
    padding: 0;
    height: 46vh;
    min-height: 320px;
    overflow: hidden;
    isolation: isolate;
}

    .light-banner img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 55%;
        filter: saturate(1.25) contrast(1.08) brightness(.92);
    }

    .light-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.05) 65%, rgba(0,0,0,.6) 100%);
    }

    .light-banner::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: -45%;
        width: 30%;
        z-index: 2;
        background: linear-gradient(100deg, transparent, rgba(255,255,255,0.65) 45%, transparent 90%);
        transform: skewX(-18deg);
        animation: light-sweep 5.5s ease-in-out infinite;
        mix-blend-mode: screen;
        pointer-events: none;
    }

@keyframes light-sweep {
    0% {
        left: -45%;
    }

    55% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

.light-banner-cap {
    position: absolute;
    left: 28px;
    bottom: 26px;
    z-index: 3;
}

    .light-banner-cap .eyebrow {
        margin-bottom: 0;
    }

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: start;
    margin-top: 64px;
}

.about-copy p {
    color: var(--cream-dim);
    margin-bottom: 18px;
    max-width: 52ch;
}

.about-copy strong {
    color: var(--cream);
    font-weight: 600;
}

.quote-pull {
    border-left: 2px solid var(--gold);
    padding: 6px 0 6px 26px;
    margin: 34px 0;
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-bright);
    letter-spacing: .005em;
    font-weight: 500;
}

.about-photo {
    position: relative;
}

    .about-photo img {
        width: 100%;
        filter: grayscale(1) contrast(1.05);
        border: 1px solid var(--line);
    }

    .about-photo .frame-label {
        position: absolute;
        bottom: -1px;
        left: -1px;
        background: var(--gold);
        color: var(--black-deep);
        font-family: 'Oswald',sans-serif;
        font-size: .65rem;
        letter-spacing: .18em;
        padding: 6px 12px;
        text-transform: uppercase;
        font-weight: 600;
    }

.stat-row {
    display: flex;
    gap: 46px;
    margin-top: 46px;
    flex-wrap: wrap;
}

.stat b {
    display: block;
    font-family: 'Anton',sans-serif;
    font-size: 2.4rem;
    color: var(--gold-bright);
}

.stat span {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

/* ---------- Crew ---------- */
.crew-strip {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.crew-row {
    display: grid;
    grid-template-columns: 150px 1fr 1.4fr;
    gap: 34px;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.crew-strip .crew-row:last-child {
    border-bottom: 1px solid var(--line);
}

.crew-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--line);
    position: relative;
    flex: none;
}

    .crew-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(1);
        transition: filter .4s,transform .4s;
    }

.crew-row:hover .crew-photo img {
    filter: grayscale(0);
    transform: scale(1.04);
}

.crew-name {
    font-size: 2rem;
    color: var(--cream);
    line-height: 1;
}

.crew-role {
    font-family: 'Oswald',sans-serif;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 10px;
    display: block;
}

.crew-bio {
    color: var(--cream-dim);
    font-size: .92rem;
    max-width: 60ch;
}

.crew-works {
    margin-top: 10px;
    font-size: .8rem;
    color: var(--chrome);
}

    .crew-works b {
        color: var(--cream-dim);
        font-weight: 600;
    }

/* ---------- Services ---------- */
.svc-list {
    margin-top: 60px;
}

.svc-row {
    display: grid;
    grid-template-columns: 70px 1.1fr 1.5fr 200px;
    gap: 30px;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    cursor: default;
    position: relative;
    transition: background .3s;
}

.svc-list .svc-row:last-child {
    border-bottom: 1px solid var(--line);
}

.svc-row:hover {
    background: rgba(201,162,75,0.045);
}

.svc-num {
    font-family: 'Anton',sans-serif;
    color: var(--chrome);
    font-size: 1.1rem;
    opacity: .7;
}

.svc-name {
    font-size: 1.5rem;
    letter-spacing: .01em;
    color: var(--cream);
    text-transform: uppercase;
}

.svc-desc {
    color: var(--cream-dim);
    font-size: .92rem;
}

.svc-tag {
    font-size: .72rem;
    color: var(--gold);
    letter-spacing: .06em;
    text-align: right;
    justify-self: end;
}

/* ---------- Gallery ---------- */
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.filter-btn {
    font-family: 'Oswald',sans-serif;
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--cream-dim);
    background: transparent;
    cursor: pointer;
    transition: .25s;
}

    .filter-btn:hover {
        border-color: var(--gold);
        color: var(--cream);
    }

    .filter-btn.active {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--black-deep);
        font-weight: 600;
    }

.gallery {
    margin-top: 34px;
    columns: 3 260px;
    column-gap: 14px;
}

.g-item {
    break-inside: avoid;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}

    .g-item img {
        width: 100%;
        display: block;
        filter: grayscale(1) contrast(1.05);
        transition: transform .6s ease, filter .6s ease;
    }

    .g-item:hover img {
        filter: grayscale(0);
        transform: scale(1.045);
    }

.g-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 14px 12px;
    background: linear-gradient(0deg, rgba(0,0,0,.88), transparent);
    opacity: 0;
    transform: translateY(6px);
    transition: .3s;
}

.g-item:hover .g-cap {
    opacity: 1;
    transform: translateY(0);
}

.g-cap b {
    display: block;
    font-family: 'Oswald',sans-serif;
    font-size: .78rem;
    letter-spacing: .05em;
    color: var(--cream);
}

.g-cap span {
    font-size: .68rem;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ---------- Quote break ---------- */
.quote-break {
    position: relative;
    padding: 0;
    max-width: none;
    margin: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    overflow: hidden;
}

    .quote-break img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(1);
        z-index: -2;
    }

    .quote-break::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(6,6,6,0.72);
        z-index: -1;
    }

.quote-break-inner {
    text-align: center;
    max-width: 900px;
    padding: 0 30px;
}

.quote-break .eyebrow {
    justify-content: center;
}

    .quote-break .eyebrow::before {
        display: none;
    }

.quote-break blockquote {
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.7rem,4.4vw,3.2rem);
    line-height: 1.3;
    color: var(--cream);
    letter-spacing: .005em;
}

.quote-break cite {
    display: block;
    margin-top: 26px;
    font-style: normal;
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .3em;
    text-transform: uppercase;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    margin-top: 60px;
}

.contact-info-row {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.contact-info-list .contact-info-row:last-child {
    border-bottom: 1px solid var(--line);
}

.contact-info-row b {
    display: block;
    font-family: 'Oswald',sans-serif;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.contact-info-row span {
    color: var(--cream-dim);
    font-size: .95rem;
}

.contact-note {
    margin-top: 26px;
    font-size: .82rem;
    color: var(--chrome);
    border: 1px dashed var(--line);
    padding: 14px 16px;
    border-radius: 3px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    display: block;
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
    font-family: 'Inter',sans-serif;
    font-size: 1rem;
    padding: 10px 2px;
}

    select option {
        background: var(--panel);
    }

    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: var(--gold);
    }

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.form-note {
    font-size: .75rem;
    color: var(--chrome);
}

/* ---------- Footer ---------- */
footer {
    border-top: 1px solid var(--line);
    padding: 44px 28px;
    max-width: 1320px;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-inner .brand-mark {
        height: 22px;
        width: auto;
    }

.foot-links {
    display: flex;
    gap: 26px;
    list-style: none;
}

    .foot-links a {
        font-size: .72rem;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: var(--cream-dim);
    }

        .foot-links a:hover {
            color: var(--gold);
        }

.copyright {
    font-size: .72rem;
    color: var(--chrome);
    letter-spacing: .05em;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

@media (max-width:980px) {
    :root {
        --rail-w: 14px;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .crew-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .crew-photo {
        width: 110px;
        height: 110px;
    }

    .svc-row {
        grid-template-columns: 40px 1fr;
        row-gap: 8px;
    }

    .svc-desc {
        grid-column: 2/3;
    }

    .svc-tag {
        grid-column: 2/3;
        justify-self: start;
        text-align: left;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-slide {
        animation: none;
        opacity: 0;
        transform: none;
    }

        .hero-bg-slide:first-child {
            opacity: 1;
        }

    html {
        scroll-behavior: auto;
    }

    .scroll-cue .line::after {
        animation: none;
    }

    .hero-logo-wrap::after {
        animation: none;
        display: none;
    }

    .light-banner::after {
        animation: none;
        display: none;
    }
}

/* ===== Floating contact widget (WhatsApp + Email) ===== */
.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}

    .float-btn:hover {
        transform: translateY(-3px) scale(1.06);
        box-shadow: 0 10px 24px rgba(0,0,0,0.45);
    }

    .float-btn svg {
        width: 30px;
        height: 30px;
    }

.float-whatsapp {
    background: transparent;
}

    .float-whatsapp svg {
        width: 56px;
        height: 56px;
    }

.float-email {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    color: #e6c377;
    border: 1px solid rgba(237,231,218,0.25);
}

    .float-email svg {
        width: 24px;
        height: 24px;
    }

@media (max-width:600px) {
    .floating-contact {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .float-whatsapp svg {
        width: 48px;
        height: 48px;
    }

    .float-email {
        width: 44px;
        height: 44px;
    }
}
