@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Italiana&display=swap');

:root {
  --ink: #090908;
  --ink-2: #11110f;
  --ink-3: #181611;
  --paper: #f1ebdd;
  --paper-2: #d7cfbf;
  --gold: #bf9150;
  --gold-light: #e2bd7d;
  --line: rgba(241, 235, 221, .16);
  --line-dark: rgba(9, 9, 8, .16);
  --muted: rgba(241, 235, 221, .67);
  --page-pad: clamp(1.1rem, 4vw, 4.6rem);
  --display: 'Italiana', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; scroll-padding-top: 5.6rem; }
body { margin: 0; min-width: 280px; overflow-x: clip; background: var(--ink); color: var(--paper); font-family: var(--sans); }
body.menu-open { overflow: hidden; }
::selection { background: var(--gold); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(1440px, calc(100% - (var(--page-pad) * 2))); margin-inline: auto; }
.section-space { position: relative; padding-block: clamp(6.5rem, 10vw, 11.2rem); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: -6rem; left: 1rem; border-radius: 999px; background: var(--paper); color: var(--ink); padding: .8rem 1rem; transition: top .2s ease; }
.skip-link:focus { top: 1rem; }
.noise { position: fixed; z-index: 160; inset: 0; pointer-events: none; opacity: .04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }

/* Header */
.site-header { position: fixed; z-index: 180; top: 0; left: 0; width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: .9rem var(--page-pad); border-bottom: 1px solid transparent; transition: background .35s, border-color .35s, padding .35s; }
.site-header::before { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(5, 5, 4, .7), transparent); pointer-events: none; }
.site-header.scrolled { padding-block: .58rem; border-color: var(--line); background: rgba(9, 9, 8, .84); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.site-header.scrolled::before { opacity: 0; }
.brand { display: inline-flex; width: fit-content; align-items: center; gap: .75rem; }
.brand img { width: 48px; height: 48px; border: 1px solid rgba(226, 189, 125, .35); border-radius: 50%; object-fit: cover; box-shadow: 0 8px 26px rgba(0,0,0,.24); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: .92rem; letter-spacing: .18em; }
.brand-copy small { margin-top: .34rem; color: var(--muted); font-size: .61rem; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: clamp(1.5rem, 3vw, 3.4rem); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; bottom: -.45rem; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-call { justify-self: end; display: inline-flex; align-items: center; gap: .8rem; font-size: .72rem; letter-spacing: .08em; }
.header-call i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; }
.menu-toggle { display: none; justify-self: end; position: relative; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(9,9,8,.35); cursor: pointer; }
.menu-toggle span { position: absolute; left: 12px; width: 18px; height: 1px; background: currentColor; transition: top .3s, transform .3s; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:nth-child(2) { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 170; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: space-between; padding: 7.5rem var(--page-pad) 2rem; opacity: 0; background: var(--ink); clip-path: inset(0 0 100% 0); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: .35rem 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(3rem, 14vw, 5rem); }
.mobile-menu-meta { display: flex; justify-content: space-between; gap: 2rem; color: var(--muted); font-size: .8rem; }
.mobile-menu-meta a { color: var(--gold-light); }

/* Shared */
.eyebrow, .section-index { display: flex; align-items: center; gap: .75rem; color: var(--gold-light); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 44px; height: 1px; background: currentColor; }
h2 { margin: 1.1rem 0 0; font-family: var(--display); font-size: clamp(3.2rem, 6.25vw, 7rem); font-weight: 400; line-height: .94; letter-spacing: -.035em; }
h2 em { color: var(--gold-light); font-weight: 400; }
.section-head, .motion-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .72fr); align-items: end; gap: clamp(3rem, 9vw, 9rem); margin-bottom: clamp(3rem, 6vw, 5.2rem); }
.section-head > p, .motion-heading > p, .transform-copy > p, .contact-main > p, .gallery-side > p { max-width: 32rem; margin: 0; color: var(--muted); line-height: 1.75; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 2.2rem; padding: .32rem .34rem .32rem 1.2rem; border: 1px solid var(--line); border-radius: 999px; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.button i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; }
.button-primary { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.button-primary i { border-color: rgba(9,9,8,.15); background: var(--ink); color: var(--paper); }
.button-ghost { background: rgba(9,9,8,.18); backdrop-filter: blur(10px); }

/* Hero */
.hero { position: relative; min-height: max(760px, 100svh); isolation: isolate; overflow: hidden; background: #050505; }
.hero-video-wrap { position: absolute; z-index: -4; inset: 0; overflow: hidden; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: contrast(1.06) brightness(.82); }
.hero-video-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.93) 0%, rgba(5,5,5,.72) 34%, rgba(5,5,5,.17) 67%, rgba(5,5,5,.33) 100%), linear-gradient(180deg, rgba(5,5,5,.56) 0%, transparent 28%, transparent 64%, rgba(5,5,5,.82) 100%); }
#three-canvas { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .28; mix-blend-mode: screen; }
.hero-grid { position: relative; display: grid; min-height: max(700px, calc(100svh - 1px)); grid-template-columns: minmax(0, 1fr) minmax(210px, 285px); align-items: end; gap: clamp(2rem, 6vw, 7rem); padding-top: 8.5rem; padding-bottom: 9.5rem; }
.hero-copy { position: relative; z-index: 2; max-width: 880px; min-width: 0; }
.hero-title { margin: 1.45rem 0 1.45rem; font-family: var(--display); font-size: clamp(4.1rem, 8.8vw, 9.8rem); font-weight: 400; line-height: .82; letter-spacing: -.048em; text-shadow: 0 12px 46px rgba(0,0,0,.45); }
.hero-title .line { display: block; overflow: hidden; padding: 0 .04em .08em 0; }
.hero-title .line > span { display: block; }
.hero-title .accent { margin-left: clamp(.5rem, 4vw, 4.2rem); color: var(--gold-light); font-style: italic; }
.hero-intro { max-width: 37rem; margin: 0; color: rgba(241,235,221,.82); font-size: clamp(.96rem, 1.2vw, 1.12rem); line-height: 1.72; text-shadow: 0 5px 25px rgba(0,0,0,.48); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-proof { display: flex; align-items: center; gap: 1.25rem; margin-top: 2.3rem; }
.proof-rating, .proof-text { display: grid; gap: .15rem; }
.proof-rating strong { font-family: var(--display); font-size: 1.75rem; font-weight: 400; }
.proof-rating span { color: var(--gold-light); font-size: .68rem; letter-spacing: .08em; }
.proof-rating small, .proof-text small { color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.proof-text strong { font-family: var(--display); font-size: 1.05rem; font-weight: 400; }
.proof-divider { width: 1px; height: 46px; background: var(--line); }
.hero-mark { justify-self: end; display: grid; width: min(100%, 255px); gap: 1rem; align-self: end; margin-bottom: 2.3rem; padding: 1rem; border: 1px solid rgba(241,235,221,.18); background: rgba(9,9,8,.34); backdrop-filter: blur(14px); }
.hero-mark img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; filter: drop-shadow(0 15px 30px rgba(0,0,0,.35)); }
.hero-mark div { display: grid; gap: .28rem; border-top: 1px solid var(--line); padding-top: .8rem; }
.hero-mark span { color: var(--gold-light); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-mark strong { font-size: .72rem; font-weight: 500; letter-spacing: .05em; }
.hero-control-row { position: absolute; z-index: 6; right: 0; bottom: 3.85rem; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.video-toggle { display: inline-flex; align-items: center; gap: .7rem; padding: .45rem .7rem .45rem .45rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(9,9,8,.48); backdrop-filter: blur(10px); cursor: pointer; }
.video-toggle span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--paper); color: var(--ink); font-size: .67rem; }
.video-toggle b { font-size: .58rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.hero-film-line { display: flex; width: min(360px, 35vw); align-items: center; gap: .8rem; }
.hero-film-line span { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-light), rgba(241,235,221,.15)); }
.hero-film-line small { font-size: .55rem; letter-spacing: .13em; white-space: nowrap; }
.hero-marquee { position: absolute; z-index: 5; bottom: 0; left: 0; width: 100%; overflow: hidden; padding: .78rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(9,9,8,.52); backdrop-filter: blur(10px); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 1.25rem; animation: marquee 24s linear infinite; color: rgba(241,235,221,.75); font-size: .62rem; letter-spacing: .18em; }
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro */
.intro-statement { background: var(--ink); }
.intro-grid { display: grid; grid-template-columns: minmax(120px, .28fr) minmax(0, 1fr); gap: clamp(2.5rem, 8vw, 9rem); }
.statement { max-width: 17ch; margin: 0; font-family: var(--display); font-size: clamp(3rem, 6.8vw, 7.2rem); line-height: 1.02; letter-spacing: -.04em; }
.statement .word { opacity: .22; }
.statement-note { display: flex; max-width: 38rem; align-items: flex-start; gap: 1rem; margin-top: 3.4rem; margin-left: auto; color: var(--muted); line-height: 1.75; }
.statement-note p { margin: 0; }
.gold-dot { flex: 0 0 auto; width: 8px; height: 8px; margin-top: .58rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 24px rgba(191,145,80,.6); }

/* Craft profile */
.craft-profile { overflow: hidden; background: var(--paper); color: var(--ink); }
.craft-profile::before { content: 'IMAGE'; position: absolute; top: 3%; right: -1%; color: rgba(9,9,8,.045); font-family: var(--display); font-size: clamp(8rem, 22vw, 24rem); line-height: 1; pointer-events: none; }
.craft-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .78fr); align-items: center; gap: clamp(3.5rem, 8vw, 9rem); }
.craft-visual { position: relative; min-height: clamp(590px, 54vw, 760px); }
.craft-photo { position: absolute; top: 0; left: 0; width: 76%; height: 72%; margin: 0; overflow: hidden; box-shadow: 0 30px 80px rgba(9,9,8,.17); }
.craft-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.craft-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(9,9,8,.78)); }
.craft-photo figcaption { position: absolute; z-index: 2; right: auto; bottom: 1.05rem; left: 1.2rem; display: flex; width: min(45%, 220px); align-items: flex-start; flex-direction: column; gap: .3rem; color: var(--paper); }
.craft-photo figcaption span { color: var(--gold-light); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }
.craft-photo figcaption b { font-family: var(--display); font-size: 1.1rem; font-weight: 400; }
.craft-portrait { position: absolute; z-index: 3; right: 0; bottom: 0; width: 52%; height: 72%; overflow: hidden; border: 1px solid rgba(241,235,221,.18); background: radial-gradient(circle at 45% 35%, rgba(191,145,80,.24), transparent 40%), #11110f; box-shadow: 0 34px 85px rgba(9,9,8,.24); }
.craft-portrait::before { content: ''; position: absolute; inset: 1rem; border: 1px solid rgba(226,189,125,.22); }
.craft-portrait img { position: absolute; right: -18%; bottom: -1%; width: 135%; max-width: none; filter: saturate(.82) contrast(1.03); }
.craft-portrait-index { position: absolute; z-index: 3; top: 1.5rem; left: 1.5rem; color: var(--gold-light); font-size: .55rem; letter-spacing: .16em; }
.craft-orbit { position: absolute; z-index: 2; right: 34%; bottom: 8%; width: 190px; aspect-ratio: 1; border: 1px solid rgba(191,145,80,.36); border-radius: 50%; }
.craft-orbit::before, .craft-orbit::after { content: ''; position: absolute; border: 1px solid rgba(191,145,80,.2); border-radius: 50%; }
.craft-orbit::before { inset: 18px; }
.craft-orbit::after { inset: 40px; }
.craft-copy { position: relative; z-index: 2; }
.craft-copy .section-index { color: #86602a; }
.craft-copy h2 em { color: #9a6b2f; }
.craft-copy > p { max-width: 35rem; color: rgba(9,9,8,.68); line-height: 1.8; }
.craft-copy blockquote { max-width: 30rem; margin: 2.5rem 0; padding: 1.3rem 0 1.3rem 1.4rem; border-left: 1px solid var(--gold); font-family: var(--display); font-size: clamp(1.7rem, 2.7vw, 2.65rem); line-height: 1.18; }
.craft-facts { border-top: 1px solid var(--line-dark); }
.craft-facts > div { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-dark); }
.craft-facts strong { color: #8c6127; font-size: .67rem; }
.craft-facts span { color: rgba(9,9,8,.66); font-size: .82rem; }

/* Services */
.services { background: #0d0d0b; }
.service-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.8rem, 1.6vw, 1.5rem); }
.service-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); background: #151411; }
.service-image { position: relative; aspect-ratio: 4 / 4.7; overflow: hidden; }
.service-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, #151411 100%); }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .9s cubic-bezier(.2,.75,.2,1), filter .5s; }
.service-card:hover .service-image img { transform: scale(1.05); filter: saturate(1); }
.service-body { position: relative; z-index: 2; margin-top: -5.3rem; padding: 1.5rem; }
.service-body > span { color: var(--gold-light); font-size: .62rem; letter-spacing: .13em; }
.service-body h3 { margin: 1.7rem 0 .8rem; font-family: var(--display); font-size: clamp(2.2rem, 3.3vw, 3.7rem); font-weight: 400; line-height: .95; }
.service-body p { min-height: 3.2em; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.5rem; }
.service-tags b { padding: .42rem .62rem; border: 1px solid var(--line); border-radius: 999px; color: rgba(241,235,221,.72); font-size: .55rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

/* Transformation */
.transformation { overflow: hidden; background: var(--ink-2); }
.transformation-grid { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(4rem, 8vw, 9rem); }
.transform-copy > p { margin-top: 1.8rem; }
.craft-points { margin-top: 2.6rem; border-top: 1px solid var(--line); }
.craft-points > div { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.craft-points strong { color: var(--gold-light); font-family: var(--display); font-size: 1.05rem; font-weight: 400; }
.craft-points span { color: var(--muted); font-size: .76rem; }
.transformation-collage { position: relative; min-height: clamp(580px, 55vw, 780px); }
.transform-card { position: absolute; margin: 0; overflow: hidden; border: 1px solid var(--line); background: #151411; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.transform-card img { width: 100%; height: 100%; object-fit: cover; }
.transform-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 63%, rgba(9,9,8,.85)); }
.transform-card figcaption { position: absolute; z-index: 2; right: 1rem; bottom: 1rem; left: 1rem; display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.transform-card figcaption span { color: var(--gold-light); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.transform-card figcaption b { font-family: var(--display); font-size: 1rem; font-weight: 400; }
.transform-card-main { top: 0; right: 2%; width: 67%; height: 86%; }
.transform-card-main img { object-position: center; }
.transform-card-small { z-index: 2; bottom: 0; left: 2%; width: 47%; aspect-ratio: 1; border: 8px solid var(--ink-2); }
.transform-stamp { position: absolute; z-index: 4; right: 0; bottom: 4%; display: grid; width: 108px; aspect-ratio: 1; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); transform: rotate(-8deg); }
.transform-stamp b { font-family: var(--display); font-size: 1.15rem; font-weight: 400; }
.transform-stamp span { margin-top: -2rem; font-size: .48rem; letter-spacing: .14em; }

/* Gallery */
.work-showcase { overflow: hidden; background: #080807; }
.gallery-intro { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .6fr); align-items: end; gap: clamp(3rem, 8vw, 8rem); margin-bottom: 3rem; }
.gallery-side { display: flex; flex-direction: column; align-items: flex-start; }
.gallery-controls { display: flex; align-items: center; gap: .6rem; margin-top: 1.4rem; }
.gallery-status { min-width: 78px; color: var(--gold-light); font-family: var(--display); font-size: 1.05rem; }
.gallery-controls button { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: background .25s, color .25s, border-color .25s, opacity .25s; }
.gallery-controls button:hover, .gallery-controls button:focus-visible { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.gallery-controls button:disabled { opacity: .28; cursor: default; }
.gallery-shell { position: relative; }
.gallery-viewport { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; border: 1px solid rgba(226,189,125,.28); background: #11110f; scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory; touch-action: pan-x pan-y; box-shadow: 0 28px 90px rgba(0,0,0,.3); }
.gallery-viewport::-webkit-scrollbar { display: none; }
.gallery-track { display: flex; width: 100%; }
.work-slide { display: grid; flex: 0 0 100%; min-width: 100%; height: clamp(560px, 49vw, 690px); min-height: 0; grid-template-columns: minmax(0, 1.48fr) minmax(300px, .68fr); overflow: hidden; background: #12120f; scroll-snap-align: start; scroll-snap-stop: always; }
.slide-media { position: relative; min-width: 0; height: 100%; padding: 0; overflow: hidden; border: 0; border-right: 1px solid var(--line); background: #0a0a08; cursor: zoom-in; }
.slide-media::before { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(135deg, rgba(226,189,125,.08), transparent 34%); pointer-events: none; }
.slide-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.02); transition: transform .85s cubic-bezier(.2,.75,.2,1), filter .5s; }
.work-slide.is-active .slide-media img, .slide-media:hover img { transform: scale(1.015); filter: saturate(1); }
.slide-media-contain { background: radial-gradient(circle at 50% 45%, #25221b 0%, #0a0a08 70%); }
.slide-media-contain img { object-fit: contain; padding: clamp(1.4rem, 4vw, 4.2rem); }
.slide-media-portrait img { object-position: center 30%; }
.expand-icon { position: absolute; z-index: 3; top: 1rem; right: 1rem; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(241,235,221,.34); border-radius: 50%; background: rgba(9,9,8,.45); backdrop-filter: blur(10px); }
.slide-copy { display: flex; min-width: 0; flex-direction: column; justify-content: space-between; padding: clamp(1.8rem, 3.8vw, 4.2rem); }
.slide-copy > span { color: var(--gold-light); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.slide-copy h3 { max-width: 9ch; margin: auto 0 1.3rem; overflow-wrap: normal; font-family: var(--display); font-size: clamp(3rem, 4.8vw, 5.8rem); font-weight: 400; line-height: .92; letter-spacing: -.035em; }
.slide-copy p { max-width: 26rem; margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.72; }
.gallery-footer { display: grid; grid-template-columns: auto minmax(180px, 1fr); align-items: center; gap: 2rem; margin-top: 1.2rem; }
.gallery-pager { display: flex; gap: .35rem; overflow-x: auto; scrollbar-width: none; }
.gallery-pager::-webkit-scrollbar { display: none; }
.gallery-pager button { width: 36px; height: 34px; flex: 0 0 auto; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: rgba(241,235,221,.48); font-size: .58rem; cursor: pointer; transition: color .25s, border-color .25s; }
.gallery-pager button.is-active { border-color: var(--gold-light); color: var(--gold-light); }
.gallery-progress { height: 1px; overflow: hidden; background: var(--line); }
.gallery-progress span { display: block; width: 12.5%; height: 100%; background: var(--gold-light); transform-origin: left; transition: width .35s ease; }

/* Motion */
.motion-section { overflow: hidden; background: var(--paper); color: var(--ink); }
.motion-section .section-index { color: #86602a; }
.motion-section h2 em { color: #9a6b2f; }
.motion-heading > p { color: rgba(9,9,8,.66); }
.motion-shell { position: relative; aspect-ratio: 16 / 8.4; min-height: 480px; overflow: hidden; background: #090909; box-shadow: 0 32px 90px rgba(9,9,8,.2); }
.motion-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.motion-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,8,.08), transparent 50%, rgba(9,9,8,.78)); }
.motion-copy { position: absolute; right: 2rem; bottom: 1.7rem; left: 2rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; color: var(--paper); }
.motion-copy span { color: var(--gold-light); font-size: .6rem; letter-spacing: .14em; }
.motion-copy strong { font-family: var(--display); font-size: clamp(1.4rem, 2.7vw, 2.8rem); font-weight: 400; }
.motion-toggle { position: absolute; z-index: 3; top: 1.2rem; right: 1.2rem; color: var(--paper); }

/* Heritage */
.heritage { position: relative; display: flex; min-height: clamp(760px, 78vw, 1040px); align-items: flex-end; overflow: hidden; }
.heritage-media { position: absolute; inset: 0; }
.heritage-media img { width: 100%; height: 112%; object-fit: cover; object-position: center 40%; filter: contrast(1.03); }
.heritage-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,8,.82) 0%, rgba(9,9,8,.24) 58%, rgba(9,9,8,.35) 100%), linear-gradient(180deg, rgba(9,9,8,.2), rgba(9,9,8,.78)); }
.heritage-content { position: relative; z-index: 2; }
.heritage-card { display: grid; width: min(780px, 100%); grid-template-columns: minmax(180px, .62fr) minmax(0, 1fr); align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem); padding: clamp(1.2rem, 3vw, 2.4rem); border: 1px solid rgba(241,235,221,.22); background: rgba(9,9,8,.66); backdrop-filter: blur(20px); }
.heritage-logo { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--line); }
.heritage-card h2 { font-size: clamp(3rem, 5.2vw, 5.8rem); }
.heritage-card p { color: var(--muted); line-height: 1.72; }

/* Contact + footer */
.contact { background: var(--gold); color: var(--ink); }
.contact .section-index { color: #65491f; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr); align-items: start; gap: clamp(4rem, 8vw, 8rem); }
.contact-main h2 em { color: var(--paper); }
.contact-main > p { color: rgba(9,9,8,.64); }
.contact .button-primary { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.contact .button-primary i { background: var(--paper); color: var(--ink); }
.contact .button-ghost { border-color: rgba(9,9,8,.25); background: transparent; }
.contact .button-ghost i { border-color: rgba(9,9,8,.25); }
.contact-panel { border-top: 1px solid rgba(9,9,8,.25); }
.contact-block { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; padding: 1.6rem 0; border-bottom: 1px solid rgba(9,9,8,.25); }
.contact-block small { font-size: .61rem; letter-spacing: .13em; text-transform: uppercase; }
.contact-block p { margin: 0; font-family: var(--display); font-size: 1.4rem; line-height: 1.35; }
.hours dl { margin: 0; }
.hours dl div { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .55rem; }
.hours dt, .hours dd { margin: 0; font-size: .81rem; }
.instagram-link { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
footer { position: relative; z-index: 2; padding: 2rem 0; border-top: 1px solid var(--line); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto auto; align-items: center; gap: 2rem; }
.footer-brand { font-family: var(--display); font-size: 1.4rem; letter-spacing: .08em; }
.footer-brand span { margin-left: .4rem; color: var(--gold); font-style: italic; }
footer p, .footer-links { color: var(--muted); font-size: .7rem; }
.footer-links { display: flex; gap: 1.2rem; }
.back-top { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }

/* Lightbox */
.lightbox { width: min(92vw, 1100px); max-width: none; height: min(90svh, 900px); max-height: none; padding: 0; overflow: hidden; border: 1px solid rgba(241,235,221,.2); background: #080807; color: var(--paper); }
.lightbox::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(10px); }
.lightbox figure { display: grid; height: 100%; grid-template-rows: minmax(0, 1fr) auto; margin: 0; }
.lightbox img { width: 100%; height: 100%; object-fit: contain; background: #050505; }
.lightbox figcaption { padding: 1rem 1.25rem; color: var(--muted); font-size: .78rem; }
.lightbox-close { position: absolute; z-index: 2; top: .75rem; right: .75rem; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(241,235,221,.4); border-radius: 50%; background: rgba(9,9,8,.62); font-size: 1.4rem; cursor: pointer; }

/* Legal */
.legal-page { min-height: 100vh; padding: 8rem var(--page-pad) 5rem; background: var(--paper); color: var(--ink); }
.legal-page .legal-wrap { max-width: 850px; margin: auto; }
.legal-page h1 { font-family: var(--display); font-size: clamp(3.4rem, 9vw, 8rem); font-weight: 400; }
.legal-page h2 { margin-top: 2.5rem; }
.legal-page p { color: rgba(9,9,8,.7); line-height: 1.75; }
.legal-back { display: inline-block; margin-bottom: 3rem; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

/* Tablet */
@media (max-width: 1100px) {
  .desktop-nav, .header-call { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 210px; gap: 2rem; }
  .hero-title { font-size: clamp(4rem, 9.6vw, 7.4rem); }
  .craft-grid { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr); gap: 3rem; }
  .craft-visual { min-height: 620px; }
  .service-body h3 { font-size: clamp(2rem, 3.6vw, 3rem); }
  .work-slide { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr); min-height: 600px; }
  .slide-copy h3 { font-size: clamp(3rem, 5.8vw, 5rem); }
}

@media (max-width: 860px) {
  .hero { min-height: 820px; }
  .hero-video { object-position: 58% center; }
  .hero-video-shade { background: linear-gradient(180deg, rgba(5,5,5,.58) 0%, rgba(5,5,5,.2) 34%, rgba(5,5,5,.84) 72%, rgba(5,5,5,.94) 100%); }
  .hero-grid { min-height: 820px; grid-template-columns: 1fr; align-content: end; padding-top: 7.5rem; padding-bottom: 9.5rem; }
  .hero-copy { max-width: 740px; }
  .hero-title { max-width: 9ch; font-size: clamp(4.1rem, 13vw, 7rem); }
  .hero-mark { display: none; }
  .hero-control-row { bottom: 3.8rem; }
  .intro-grid, .craft-grid, .section-head, .transformation-grid, .gallery-intro, .motion-heading, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 2.5rem; }
  .section-head, .gallery-intro, .motion-heading { gap: 2rem; }
  .craft-grid { gap: 4rem; }
  .craft-visual { width: min(100%, 720px); min-height: 650px; margin-inline: auto; }
  .craft-copy { max-width: 680px; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .service-card:last-child .service-image { aspect-ratio: auto; min-height: 360px; }
  .service-card:last-child .service-body { align-self: end; margin-top: 0; }
  .transformation-grid { gap: 3.5rem; }
  .transformation-collage { width: min(100%, 720px); min-height: 580px; margin-inline: auto; }
  .work-slide { height: auto; grid-template-columns: 1fr; grid-template-rows: minmax(470px, 58svh) auto; min-height: 0; }
  .slide-media { border-right: 0; border-bottom: 1px solid var(--line); }
  .slide-copy { min-height: 300px; }
  .slide-copy h3 { max-width: 12ch; margin-top: 3rem; font-size: clamp(3rem, 8vw, 5rem); }
  .motion-shell { aspect-ratio: 16 / 10; min-height: 460px; }
  .heritage-card { grid-template-columns: 180px minmax(0, 1fr); }
  .contact-grid { gap: 4rem; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --page-pad: 1rem; }
  html { scroll-padding-top: 4.8rem; }
  .section-space { padding-block: 6.2rem; }
  .site-header { padding: .68rem var(--page-pad); }
  .brand img { width: 42px; height: 42px; }
  .brand-copy small { display: none; }
  .mobile-menu { padding-top: 6.5rem; }
  .mobile-menu-meta { flex-direction: column; gap: 1rem; }
  .hero { min-height: 760px; }
  .hero-video { object-position: 55% center; }
  .hero-video-shade { background: linear-gradient(180deg, rgba(5,5,5,.55) 0%, rgba(5,5,5,.08) 28%, rgba(5,5,5,.72) 58%, rgba(5,5,5,.98) 100%); }
  #three-canvas { opacity: .18; }
  .hero-grid { min-height: 760px; padding-top: 6.8rem; padding-bottom: 8.6rem; }
  .hero-title { max-width: none; margin-top: 1.1rem; font-size: clamp(3.35rem, 16.5vw, 5.1rem); line-height: .86; }
  .hero-title .accent { margin-left: .25rem; }
  .hero-intro { max-width: 95%; font-size: .91rem; }
  .hero-actions { gap: .5rem; }
  .button { min-height: 50px; gap: 1.05rem; padding-left: .95rem; }
  .button i { width: 39px; height: 39px; }
  .hero-proof { margin-top: 1.65rem; gap: .9rem; }
  .proof-rating strong { font-size: 1.5rem; }
  .hero-control-row { bottom: 3.65rem; }
  .hero-film-line { display: none; }
  .video-toggle b { display: none; }
  .video-toggle { padding: .34rem; }
  .statement { font-size: clamp(2.7rem, 11.8vw, 4.1rem); }
  .statement-note { margin-top: 2.5rem; }
  h2 { font-size: clamp(3.1rem, 14vw, 4.8rem); }
  .craft-visual { min-height: 530px; }
  .craft-photo { width: 88%; height: 62%; }
  .craft-photo figcaption { align-items: flex-start; flex-direction: column; }
  .craft-portrait { width: 60%; height: 58%; }
  .craft-portrait img { right: -30%; width: 160%; }
  .craft-orbit { right: 39%; bottom: 8%; width: 118px; }
  .craft-copy blockquote { font-size: 1.85rem; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; display: block; }
  .service-card:last-child .service-image { min-height: 0; aspect-ratio: 4 / 4.4; }
  .service-card:last-child .service-body { margin-top: -4.2rem; }
  .service-image { aspect-ratio: 4 / 3.65; }
  .service-body h3 { font-size: 2.6rem; }
  .service-body p { min-height: 0; }
  .craft-points > div { grid-template-columns: 74px 1fr; }
  .transformation-collage { min-height: 500px; }
  .transform-card-main { right: 0; width: 78%; height: 82%; }
  .transform-card-small { width: 49%; border-width: 6px; }
  .transform-stamp { right: 2%; bottom: 5%; width: 88px; }
  .gallery-intro { margin-bottom: 2rem; }
  .gallery-side { display: grid; grid-template-columns: 1fr; }
  .gallery-controls { justify-content: space-between; width: 100%; }
  .gallery-status { margin-right: auto; }
  .gallery-viewport { border-right: 0; border-left: 0; }
  .gallery-shell { width: 100%; }
  .work-slide { grid-template-rows: minmax(360px, 52svh) auto; }
  .slide-copy { min-height: 250px; padding: 1.3rem; }
  .slide-copy h3 { margin: 2.3rem 0 1rem; font-size: clamp(2.55rem, 11vw, 3.8rem); }
  .slide-copy p { font-size: .77rem; }
  .slide-media-contain img { padding: 1.2rem; }
  .gallery-footer { grid-template-columns: 1fr; gap: .9rem; width: calc(100% - 2rem); margin-inline: auto; }
  .motion-shell { width: 100%; min-height: 620px; aspect-ratio: 4 / 5; }
  .motion-video { object-position: 52% center; }
  .motion-copy { right: 1rem; bottom: 1rem; left: 1rem; align-items: flex-start; flex-direction: column; gap: .4rem; }
  .motion-toggle { top: .8rem; right: .8rem; }
  .heritage { min-height: 780px; }
  .heritage-media img { object-position: 55% center; }
  .heritage-overlay { background: linear-gradient(180deg, rgba(9,9,8,.2), rgba(9,9,8,.86) 72%); }
  .heritage-card { width: 100%; grid-template-columns: 1fr; gap: 1.2rem; padding: 1rem; }
  .heritage-logo { width: min(100%, 330px); }
  .heritage-card h2 { font-size: clamp(2.9rem, 12vw, 4rem); }
  .contact-block { grid-template-columns: 1fr; gap: .8rem; }
  .instagram-link { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr auto; }
  footer p { display: none; }
  .footer-links { grid-row: 2; }
  .back-top { grid-column: 2; grid-row: 1 / 3; }
  .lightbox { width: 96vw; height: 88svh; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 3.25rem; }
  .button { gap: .75rem; font-size: .59rem; }
  .hero-proof { transform: scale(.9); transform-origin: left bottom; }
  .craft-visual { min-height: 480px; }
  .work-slide { grid-template-rows: minmax(330px, 50svh) auto; }
  .slide-copy h3 { font-size: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  #three-canvas { display: none; }
  .hero-video, .motion-video { display: none; }
  .hero-video-wrap { background: url('assets/hero-poster.webp') center / cover no-repeat; }
  .motion-shell { background: url('assets/editorial-poster.webp') center / cover no-repeat; }
}

/* =========================================================
   FINAL STABILIZATION — VIDEO, READABILITY, GALLERY, SECTION 7
   ========================================================= */
:root { --muted: rgba(241, 235, 221, .76); }
body { font-size: 16px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.eyebrow, .section-index { font-size: .7rem; line-height: 1.45; }
.section-head > p,
.motion-heading > p,
.transform-copy > p,
.contact-main > p,
.gallery-side > p,
.craft-copy > p,
.heritage-card p { font-size: clamp(.94rem, .92vw, 1.04rem); line-height: 1.8; }
.service-body p, .slide-copy p { font-size: .9rem; line-height: 1.76; }
.service-tags b, .proof-rating small, .proof-text small { font-size: .66rem; }
.desktop-nav, .header-call { font-size: .76rem; }

/* Replace the duplicated still with an actual working portrait film. */
.craft-motion { isolation: isolate; }
.craft-video { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 28% center; background: #050505; }
.craft-video-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,.08), rgba(5,5,5,.08) 55%, rgba(5,5,5,.82)); pointer-events: none; }
.craft-video-caption { position: absolute; z-index: 3; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; display: grid; gap: .24rem; color: var(--paper); }
.craft-video-caption span { color: var(--gold-light); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.craft-video-caption strong { font-family: var(--display); font-size: clamp(1.2rem, 1.8vw, 1.75rem); font-weight: 400; }
.craft-video-toggle { position: absolute; z-index: 5; top: 1rem; right: 1rem; color: var(--paper); }
.craft-video-toggle b { display: none; }
.craft-video-toggle.is-blocked b { display: inline; }

/* Make the real-work stamp legible and intentionally prominent. */
.transform-stamp { width: clamp(128px, 9.5vw, 154px); box-shadow: 0 18px 45px rgba(0,0,0,.28); }
.transform-stamp b { font-size: clamp(1.32rem, 1.5vw, 1.62rem); letter-spacing: .02em; }
.transform-stamp span { margin-top: -2.55rem; font-size: .57rem; font-weight: 600; letter-spacing: .18em; }

/* Deterministic slider: one complete stage, moved by transform instead of browser scroll. */
.gallery-viewport { overflow: hidden; scroll-behavior: auto; scroll-snap-type: none; touch-action: pan-y pinch-zoom; cursor: grab; }
.gallery-viewport.is-dragging { cursor: grabbing; }
.gallery-track { display: flex; width: 100%; transform: translate3d(0,0,0); transition: transform .72s cubic-bezier(.22,.78,.2,1); will-change: transform; }
.work-slide { flex: 0 0 100%; min-width: 100%; scroll-snap-align: none; }
.slide-media img { -webkit-user-drag: none; user-select: none; }
.gallery-controls button, .gallery-pager button { touch-action: manipulation; }

/* Section 7 now uses film; the card moves right so the woman remains visible. */
.heritage-media { background: #050505; }
.heritage-video { width: 100%; height: 112%; max-width: none; object-fit: cover; object-position: 40% center; filter: contrast(1.04) brightness(.92); }
.heritage-overlay { background: linear-gradient(270deg, rgba(9,9,8,.91) 0%, rgba(9,9,8,.73) 35%, rgba(9,9,8,.18) 72%, rgba(9,9,8,.08) 100%), linear-gradient(180deg, rgba(9,9,8,.16), rgba(9,9,8,.72)); }
.heritage-content { display: flex; justify-content: flex-end; padding-bottom: clamp(.5rem, 3vw, 3rem); }
.heritage-card { width: min(760px, 58vw); grid-template-columns: minmax(155px, .48fr) minmax(0, 1fr); background: rgba(9,9,8,.72); }
.heritage-logo { min-height: 118px; }
.heritage-video-toggle { position: absolute; z-index: 5; top: 6.5rem; right: var(--page-pad); color: var(--paper); }
.video-toggle.is-blocked { border-color: rgba(226,189,125,.72); }

@media (max-width: 1100px) {
  .heritage-card { width: min(720px, 72vw); }
}

@media (max-width: 860px) {
  .craft-video { object-position: 29% center; }
  .heritage { min-height: 900px; }
  .heritage-video { height: 108%; object-position: 43% center; }
  .heritage-content { align-items: flex-end; justify-content: center; }
  .heritage-card { width: min(100%, 720px); }
  .heritage-video-toggle { top: 5.8rem; }
}

@media (max-width: 640px) {
  .eyebrow, .section-index { font-size: .66rem; }
  .section-head > p,
  .motion-heading > p,
  .transform-copy > p,
  .contact-main > p,
  .gallery-side > p,
  .craft-copy > p,
  .heritage-card p { font-size: .94rem; line-height: 1.75; }
  .service-body p, .slide-copy p { font-size: .86rem; line-height: 1.7; }
  .craft-portrait { width: 64%; height: 60%; }
  .craft-video { object-position: 27% center; }
  .craft-video-caption { right: .8rem; bottom: .8rem; left: .8rem; }
  .craft-video-caption strong { font-size: 1.15rem; }
  .craft-video-toggle { top: .65rem; right: .65rem; }
  .transform-stamp { right: 0; bottom: 3%; width: 106px; }
  .transform-stamp b { font-size: 1.16rem; }
  .transform-stamp span { margin-top: -2.05rem; font-size: .48rem; }
  .gallery-track { transition-duration: .58s; }
  .heritage { min-height: 850px; }
  .heritage-video { height: 102%; object-position: 42% 22%; }
  .heritage-overlay { background: linear-gradient(180deg, rgba(9,9,8,.08) 0%, rgba(9,9,8,.1) 42%, rgba(9,9,8,.9) 74%, rgba(9,9,8,.98) 100%); }
  .heritage-content { padding-bottom: 0; }
  .heritage-card { width: 100%; padding: 1.15rem; background: rgba(9,9,8,.78); backdrop-filter: blur(16px); }
  .heritage-logo { width: min(100%, 290px); min-height: 0; }
  .heritage-video-toggle { top: 5rem; right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .craft-video, .heritage-video { display: none; }
  .craft-motion { background: #090909 url('assets/craft-film-poster.webp') 28% center / cover no-repeat; }
  .heritage-media { background: #090909 url('assets/heritage-film-poster.webp') 42% center / cover no-repeat; }
  .craft-video-toggle, .heritage-video-toggle { display: none; }
  .gallery-track { transition: none; }
}

/* Mobile correction: keep the section-7 editorial card fully inside the viewport. */
@media (max-width: 640px) {
  .heritage { min-height: 960px; }
  .heritage-video { height: 100%; object-position: 40% top; }
  .heritage-content { align-items: flex-end; padding-bottom: 1rem; }
  .heritage-card {
    width: calc(100% - .25rem);
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.15rem;
  }
  .heritage-logo { width: min(58vw, 230px); }
  .heritage-card h2 { max-width: 100%; font-size: clamp(2.9rem, 13vw, 4.15rem); line-height: .91; overflow-wrap: normal; }
  .heritage-card p { max-width: 33rem; }
}

/* =========================================================
   DOMAIN-READY MOBILE VIDEO FIT
   Keep the final two 16:9 films fully visible on phones.
   ========================================================= */
@media (max-width: 860px) {
  /* Section 06: preserve the complete 16:9 editorial frame. */
  .motion-shell {
    display: grid;
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    grid-template-rows: auto auto;
    overflow: hidden;
    background: #090909;
  }
  .motion-video {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    background: #050505;
  }
  .motion-overlay {
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: linear-gradient(180deg, transparent 58%, rgba(9,9,8,.35));
    pointer-events: none;
  }
  .motion-copy {
    position: relative;
    z-index: 2;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 78px;
    padding: .9rem 1rem 1rem;
    align-items: flex-start;
    justify-content: center;
    gap: .28rem;
    background: #0c0c0b;
    color: var(--paper);
  }
  .motion-copy strong { font-size: clamp(1.25rem, 6vw, 1.65rem); }
  .motion-toggle { top: .7rem; right: .7rem; }

  /* Section 07: video becomes a true 16:9 stage above the content card. */
  .heritage {
    display: block;
    min-height: 0;
    align-items: initial;
    overflow: hidden;
    background: #070706;
  }
  .heritage-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050505;
  }
  .heritage-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: contrast(1.03) brightness(.96);
  }
  .heritage-overlay {
    background: linear-gradient(180deg, transparent 68%, rgba(9,9,8,.32));
    pointer-events: none;
  }
  .heritage-video-toggle {
    top: .7rem;
    right: .7rem;
  }
  .heritage-content {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
  .heritage-card {
    width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.25rem 1.15rem 1.45rem;
    border-top: 0;
    background: rgba(9,9,8,.98);
    backdrop-filter: none;
  }
  .heritage-logo { width: min(62vw, 240px); }
}
@media (max-width: 860px) {
  .motion-overlay { inset: 0 0 auto 0; }
}

/* =========================================================
   FINAL RELEASE POLISH — MOBILE HERO FIT + LIGHT/COLOR TUNING
   Keep the complete 16:9 hero film visible on phones while
   preserving the editorial desktop composition and effects.
   ========================================================= */
:root {
  --ink: #0c0c0a;
  --ink-2: #15140f;
  --ink-3: #1d1a15;
  --muted: rgba(241, 235, 221, .79);
}

html, body { background: var(--ink); }
.services { background: #11110e; }
.work-showcase { background: #0d0d0b; }

/* Slightly brighter, richer media treatment without flattening contrast. */
.hero-video { filter: contrast(1.04) brightness(.91) saturate(1.09); }
.craft-video,
.motion-video { filter: contrast(1.03) brightness(1.035) saturate(1.08); }
.heritage-video { filter: contrast(1.03) brightness(1.015) saturate(1.08); }
.craft-photo img,
.transform-card img { filter: contrast(1.02) brightness(1.025) saturate(1.06); }
.service-image img,
.slide-media img { filter: contrast(1.02) brightness(1.035) saturate(.86); }
.service-card:hover .service-image img,
.work-slide.is-active .slide-media img,
.slide-media:hover img { filter: contrast(1.02) brightness(1.04) saturate(1.06); }

@media (max-width: 640px) {
  /* The header stays fixed; the complete film begins directly below it. */
  .hero {
    min-height: 0;
    padding-top: 4.2rem;
    background: #0b0b09;
  }

  .hero-video-wrap {
    position: relative;
    z-index: 0;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #050505;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: contrast(1.03) brightness(.99) saturate(1.1);
  }

  .hero-video-shade {
    background:
      linear-gradient(180deg, rgba(5,5,5,.08), transparent 58%, rgba(5,5,5,.24)),
      linear-gradient(90deg, rgba(5,5,5,.14), transparent 26%, transparent 74%, rgba(5,5,5,.12));
  }

  #three-canvas {
    z-index: 1;
    top: 4.2rem;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 56.25vw;
    max-height: 360px;
    opacity: .14;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 2.15rem;
    padding-bottom: 7.4rem;
    background: linear-gradient(180deg, #0b0b09 0%, #0c0c0a 100%);
  }

  .hero-title { margin-top: 1rem; }
  .hero-intro { max-width: 100%; color: rgba(241,235,221,.88); }

  .hero-control-row {
    top: clamp(7.6rem, calc(4.2rem + 56.25vw - 3rem), 20.2rem);
    right: 0;
    bottom: auto;
    left: 0;
    justify-content: flex-end;
  }

  .hero-control-row .video-toggle {
    border-color: rgba(241,235,221,.3);
    background: rgba(9,9,8,.56);
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .hero-video-wrap {
    background: #050505 url('assets/hero-poster.webp') center / contain no-repeat;
  }
}

