:root {
  --cream: #f3eee9;
  --cream-deep: #e8ded9;
  --wine: #2a1119;
  --wine-dark: #160a0e;
  --burgundy: #741c34;
  --red: #d62d3c;
  --rose: #ef6b6d;
  --ink: #21171a;
  --muted: #74686b;
  --white: #fffaf6;
  --line-dark: rgba(33, 23, 26, .16);
  --line-light: rgba(255, 250, 246, .18);
  --sans: "DM Sans", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { color: white; background: var(--burgundy); }

.noise { position: fixed; inset: 0; pointer-events: none; opacity: .15; z-index: 50; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"); }

.site-header { height: 96px; padding: 0 4.5vw; display: flex; align-items: center; justify-content: space-between; position: absolute; inset: 0 0 auto; z-index: 20; color: var(--white); }
.brand { display: inline-flex; align-items: center; gap: .85rem; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: white; box-shadow: 0 0 0 1px rgba(255,255,255,.25), 0 0 24px rgba(214,45,60,.2); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-family: var(--display); font-size: .94rem; font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
.brand-name small { display: block; margin-top: .22rem; font-family: var(--sans); font-size: .55rem; font-weight: 500; text-transform: uppercase; letter-spacing: .22em; opacity: .65; }
.main-nav { display: flex; align-items: center; gap: 2.1rem; }
.main-nav a { font-size: .85rem; text-decoration: none; }
.nav-cta { padding: .72rem 1rem; border: 1px solid rgba(255,255,255,.5); transition: background .25s ease, color .25s ease; }
.nav-cta:hover { color: var(--wine); background: white; }
.nav-cta span { margin-left: 1rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; color: inherit; cursor: pointer; }

.hero { min-height: 100svh; padding: 130px 4.5vw 70px; position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 2vw; background: radial-gradient(circle at 12% 32%, #4a1727 0, transparent 32%), var(--wine-dark); color: var(--white); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 48vw; height: 48vw; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; left: -24vw; bottom: -30vw; }
.hero-copy { position: relative; z-index: 3; max-width: 720px; }
.eyebrow, .section-label { margin: 0 0 2rem; text-transform: uppercase; font-size: .66rem; font-weight: 600; letter-spacing: .16em; }
.eyebrow { display: flex; align-items: center; gap: .8rem; color: rgba(255,250,246,.7); }
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--rose); }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -.065em; line-height: .96; overflow: visible; }
h1 { font-size: clamp(4.6rem, 8.4vw, 9rem); }
h1 em, h2 em { display: inline-block; padding: .06em .05em .12em; margin: -.06em -.05em -.12em; font-family: Georgia, serif; font-weight: 400; color: transparent; background: linear-gradient(105deg, #9f2744, #ef4650, #ff918b, #b52643, #ef4650); background-size: 260% 100%; -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 18px rgba(214,45,60,.15)); animation: gradientFlow 5s ease-in-out infinite; }
.hero-intro { max-width: 560px; margin: 2rem 0; color: rgba(255,250,246,.7); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 1.8rem; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 1.15rem; border: 1px solid currentColor; text-decoration: none; cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-light { color: var(--wine); background: var(--white); border-color: var(--white); }
.button-light:hover { color: white; background: linear-gradient(110deg, var(--burgundy), var(--red)); border-color: var(--red); }
.text-link { color: rgba(255,250,246,.78); font-size: .85rem; text-underline-offset: 5px; }
.text-link span { margin-left: .5rem; color: var(--rose); }
.hero-stats { max-width: 610px; margin-top: clamp(2.4rem, 5vh, 4.5rem); padding-top: 1.25rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.hero-stat { min-height: 66px; padding: 0 1.2rem; display: flex; align-items: flex-start; gap: .7rem; border-right: 1px solid rgba(255,255,255,.16); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: 0; }
.hero-stat strong { min-width: 2ch; font-family: var(--display); font-size: clamp(1.65rem, 2.5vw, 2.35rem); font-weight: 500; line-height: .95; letter-spacing: -.06em; color: white; font-variant-numeric: tabular-nums; }
.hero-stat span { color: rgba(255,250,246,.55); font-size: .61rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .1em; }

.hero-visual { position: relative; min-height: min(73vh, 750px); transform: translate3d(var(--move-x, 0), var(--move-y, 0), 0); transition: transform .4s ease-out; }
.hero-image-wrap { position: absolute; inset: 0; overflow: hidden; border-radius: 50% 0 0 50%; box-shadow: -40px 0 90px rgba(112,28,52,.28); }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--wine-dark) 0, transparent 33%), linear-gradient(0deg, rgba(22,10,14,.5), transparent 45%); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; animation: slowZoom 16s ease-in-out infinite alternate; }
.hero-caption { position: absolute; left: 13%; right: 5%; bottom: 4%; z-index: 2; display: flex; justify-content: flex-end; gap: 2rem; color: rgba(255,255,255,.72); font-size: .62rem; text-transform: uppercase; letter-spacing: .14em; }

.intro-strip { min-height: 100px; padding: 1.5rem 4.5vw; display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 3.5rem); background: linear-gradient(100deg, #62172d, var(--red), #771b34); color: white; overflow: hidden; }
.intro-strip p { margin: 0; font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.8rem); letter-spacing: -.04em; }
.intro-strip span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.75); }

.section-pad { padding: clamp(5rem, 9vw, 9rem) 4.5vw; }
.about { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; align-items: center; background: var(--cream); }
.about-visual { position: relative; width: min(100%, 560px); justify-self: end; }
.about-visual::before { content: ""; position: absolute; width: 70%; height: 55%; right: -7%; bottom: -6%; background: linear-gradient(135deg, var(--burgundy), var(--red)); z-index: 0; }
.about-visual img { position: relative; width: 100%; aspect-ratio: .74; object-fit: cover; z-index: 1; }
.about-visual p { position: absolute; left: -8%; bottom: 8%; z-index: 2; margin: 0; padding: 1rem 1.2rem; background: var(--white); font-family: Georgia, serif; font-style: italic; font-size: clamp(1rem, 1.6vw, 1.35rem); line-height: 1.3; box-shadow: 0 15px 35px rgba(42,17,25,.14); }
.about-copy { max-width: 780px; }
.section-label { color: var(--burgundy); }
.about h2, .expertise h2, .contact h2 { font-size: clamp(3.2rem, 6.2vw, 6.7rem); }
.about h2 em { background-image: linear-gradient(105deg, var(--burgundy), var(--red), #9e2744); }
.about-lead { margin: 3rem 0 1rem; font-family: var(--display); font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.5; letter-spacing: -.025em; }
.about-copy > p:not(.section-label):not(.about-lead) { max-width: 610px; color: var(--muted); line-height: 1.75; }
.about-signature { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.about-signature img { display: block; width: min(360px, 58%); height: auto; object-fit: contain; mix-blend-mode: multiply; }
.about-signature span { color: var(--muted); font-size: .66rem; line-height: 1.5; text-transform: uppercase; letter-spacing: .1em; }
.founder-note { grid-column: 1 / -1; margin-top: clamp(2rem, 5vw, 5rem); padding-top: clamp(4rem, 7vw, 7rem); display: grid; grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); align-items: start; gap: clamp(3rem, 7vw, 8rem); border-top: 1px solid var(--line-dark); }
.founder-portrait { position: sticky; top: 110px; margin: 0; }
.founder-image-wrap { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--wine-dark); }
.founder-image-wrap::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.16); box-shadow: inset 0 -80px 100px rgba(22,10,14,.18); pointer-events: none; }
.founder-image-wrap::before { content: ""; position: absolute; z-index: 2; right: -16px; bottom: -16px; width: 86px; height: 86px; border-right: 3px solid var(--red); border-bottom: 3px solid var(--red); }
.founder-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; filter: saturate(.78) contrast(1.03); }
.founder-portrait figcaption { padding-top: 1.1rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line-dark); padding-bottom: 1rem; }
.founder-portrait figcaption strong { font-family: var(--display); font-size: 1rem; letter-spacing: -.025em; }
.founder-portrait figcaption span { color: var(--muted); font-size: .58rem; text-transform: uppercase; letter-spacing: .14em; }
.founder-letter { max-width: 980px; }
.founder-letter h3 { margin: 0 0 clamp(2rem, 4vw, 3.5rem); font-family: var(--display); font-size: clamp(2.5rem, 4.7vw, 5.1rem); font-weight: 500; line-height: 1.02; letter-spacing: -.058em; }
.founder-letter h3 em { font-family: Georgia, serif; color: var(--burgundy); font-weight: 400; }
.founder-copy { column-count: 2; column-gap: clamp(2rem, 4vw, 4.5rem); column-rule: 1px solid var(--line-dark); color: #594a4e; font-size: .91rem; line-height: 1.78; }
.founder-copy p { margin: 0 0 1.25rem; break-inside: avoid; }
.founder-copy p:first-child::first-letter { float: left; margin: .12rem .42rem 0 0; color: var(--burgundy); font-family: Georgia, serif; font-size: 3.2rem; line-height: .78; }
.founder-copy strong { color: var(--ink); font-weight: 600; }
.founder-signature { margin-top: 2.2rem; display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
.founder-signature > span { width: 52px; height: 1px; background: var(--burgundy); }
.founder-signature p { margin: 0; font-family: Georgia, serif; font-style: italic; font-size: 1.08rem; line-height: 1.25; }
.founder-signature small { color: var(--muted); font-family: var(--sans); font-size: .53rem; font-style: normal; text-transform: uppercase; letter-spacing: .1em; }
.production-team { grid-column: 1 / -1; margin-top: clamp(5rem, 9vw, 9rem); padding-top: clamp(4rem, 6vw, 6rem); border-top: 1px solid var(--line-dark); }
.team-heading { display: grid; grid-template-columns: .45fr 1.1fr .8fr; align-items: end; gap: 5vw; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.team-heading .section-label { align-self: start; }
.team-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5.4rem); font-weight: 500; line-height: .98; letter-spacing: -.06em; }
.team-heading h3 em { font-family: Georgia, serif; color: var(--burgundy); font-weight: 400; }
.team-heading > p:last-child { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.team-member { min-width: 0; min-height: 205px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; border-right: 1px solid var(--line-dark); transition: color .3s ease, background .3s ease; }
.team-member:last-child { border-right: 0; }
.team-member::after { content: ""; position: absolute; right: -40px; top: -40px; width: 110px; height: 110px; border: 1px solid rgba(116,28,52,.1); border-radius: 50%; transition: transform .4s ease, border-color .3s ease; }
.team-member:hover { color: white; background: var(--wine); }
.team-member:hover::after { transform: translate(-18px,18px); border-color: rgba(239,107,109,.35); }
.team-member > span { color: var(--burgundy); font-family: Georgia, serif; font-size: 1.45rem; font-style: italic; }
.team-member:hover > span { color: var(--rose); }
.team-member h4 { margin: 0 0 .55rem; font-family: var(--display); font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 600; line-height: 1.1; letter-spacing: -.035em; }
.team-member p { margin: 0; color: var(--muted); font-size: .66rem; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; }
.team-member:hover p { color: rgba(255,255,255,.65); }

.expertise { background: radial-gradient(circle at 8% 28%, rgba(116,28,52,.35), transparent 30%), var(--wine-dark); color: var(--white); }
.expertise-top { display: grid; grid-template-columns: .65fr 1.5fr .7fr; gap: 5vw; align-items: end; margin-bottom: 5rem; }
.expertise .section-label { align-self: start; color: var(--rose); }
.expertise-top > p:last-child { margin: 0; color: rgba(255,250,246,.6); line-height: 1.65; }
.services { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.service { min-height: 340px; padding: 2rem; display: flex; flex-direction: column; position: relative; transition: background .35s ease, transform .35s ease; overflow: hidden; }
.service:nth-child(odd) { border-right: 1px solid var(--line-light); }
.service:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
.service::before { content: ""; position: absolute; width: 230px; height: 230px; border-radius: 50%; right: -120px; top: -120px; background: radial-gradient(circle, rgba(239,107,109,.28), transparent 67%); opacity: 0; transition: opacity .35s ease, transform .5s ease; }
.service:hover { background: rgba(116,28,52,.2); transform: translateY(-6px); }
.service:hover::before { opacity: 1; transform: translate(-25px,25px); }
.service-symbol { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--rose); font-family: Georgia, serif; font-style: italic; }
.service > div:nth-child(2) { margin-top: auto; position: relative; }
.service h3 { margin: 0 0 1rem; font-family: var(--display); font-size: clamp(1.7rem, 2.5vw, 2.7rem); font-weight: 500; letter-spacing: -.045em; }
.service p { max-width: 390px; margin: 0; color: rgba(255,250,246,.58); line-height: 1.65; }
.service-arrow { position: absolute; top: 2rem; right: 2rem; color: var(--rose); }

.references { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 18%, rgba(214,45,60,.12), transparent 25%), var(--cream); }
.references::before { content: "BK"; position: absolute; right: -2vw; top: 0; color: rgba(116,28,52,.025); font-family: var(--display); font-size: clamp(10rem, 22vw, 23rem); font-weight: 700; line-height: .8; letter-spacing: -.12em; pointer-events: none; }
.references-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 8vw; margin-bottom: clamp(3rem, 6vw, 6rem); }
.references-heading h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.5rem); }
.references-heading h2 em { font-family: Georgia, serif; color: var(--burgundy); font-weight: 400; }
.references-heading > p { max-width: 510px; margin: 0 0 .6rem; color: var(--muted); line-height: 1.7; }
.references-stage { position: relative; z-index: 1; width: calc(100% + 9vw); margin-left: -4.5vw; display: grid; gap: .7rem; transform: rotate(-.45deg); }
.reference-rail { overflow: hidden; padding: .2rem 0; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.reference-track { width: max-content; display: flex; animation: referencesForward 58s linear infinite; will-change: transform; }
.reference-rail-reverse .reference-track { animation-name: referencesReverse; animation-duration: 64s; }
.reference-group { padding-right: .65rem; display: flex; gap: .65rem; }
.reference-group span { padding: .62rem .9rem; flex: 0 0 auto; color: #59474c; border: 1px solid rgba(116,28,52,.14); border-radius: 100px; background: rgba(255,250,246,.52); font-family: var(--sans); font-size: clamp(.7rem, .9vw, .84rem); font-weight: 500; letter-spacing: .005em; }
.reference-group span::before { content: "·"; margin-right: .5rem; color: rgba(116,28,52,.55); }
.references-stage:hover .reference-track { animation-play-state: paused; }
.references-footer { position: relative; z-index: 1; margin-top: clamp(3rem, 5vw, 5rem); display: flex; align-items: center; gap: 1.2rem; color: var(--muted); }
.references-footer span { width: 55px; height: 1px; background: var(--burgundy); }
.references-footer p { margin: 0; font-family: Georgia, serif; font-style: italic; font-size: clamp(1rem, 1.4vw, 1.3rem); }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.visual-break { height: min(78vh, 850px); position: relative; overflow: hidden; background: var(--wine-dark); }
.visual-break > img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; opacity: .7; transform: scale(1.03); }
.visual-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,10,14,.88), rgba(22,10,14,.15) 70%), linear-gradient(0deg, rgba(22,10,14,.5), transparent 50%); }
.visual-break-copy { position: absolute; z-index: 2; left: 8vw; top: 50%; transform: translateY(-50%); color: white; }
.visual-break-copy.visible { transform: translateY(-50%); }
.visual-break-copy p { margin: 0 0 2.2rem; font-family: var(--display); font-size: clamp(2.8rem, 6vw, 6.5rem); line-height: 1; letter-spacing: -.06em; }
.visual-break-copy em { font-family: Georgia, serif; color: #ff8580; font-weight: 400; }
.visual-break-copy a { display: inline-flex; gap: 2rem; padding-bottom: .45rem; border-bottom: 1px solid rgba(255,255,255,.5); text-decoration: none; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; background: linear-gradient(145deg, #f7f2ee, #e9deda); }
.contact-heading > p:not(.section-label) { max-width: 510px; color: var(--muted); line-height: 1.65; }
.contact-direct { margin-top: 3.5rem; }
.contact-direct a { font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 600; text-underline-offset: 5px; }
.contact-direct a span { color: var(--burgundy); }
.contact-direct address { margin-top: 1.4rem; color: var(--muted); font-style: normal; line-height: 1.6; }
.contact-form { align-self: end; }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-form label { display: block; margin-bottom: 1.6rem; }
.contact-form label span { display: block; margin-bottom: .65rem; text-transform: uppercase; font-size: .62rem; font-weight: 600; letter-spacing: .12em; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; color: var(--ink); border: 0; border-bottom: 1px solid #a99a9e; border-radius: 0; background: transparent; padding: .75rem 0; outline: 0; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #96888c; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--burgundy); }
.contact-form textarea { min-height: 125px; }
.button-burgundy { color: white; background: linear-gradient(110deg, #511326, var(--burgundy)); border-color: var(--burgundy); box-shadow: 0 12px 30px rgba(116,28,52,.18); }
.button-burgundy:hover { background: linear-gradient(110deg, var(--burgundy), var(--red)); border-color: var(--red); }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.form-note { display: inline-block; margin: 0 0 0 1rem; color: var(--muted); font-size: .7rem; }
.form-status { min-height: 1.2em; color: var(--burgundy); font-size: .82rem; }

footer { min-height: 100px; padding: 1.7rem 4.5vw; display: grid; grid-template-columns: .8fr 1.8fr .25fr; align-items: center; gap: 2rem; color: rgba(255,250,246,.68); background: #10080b; border-top: 1px solid rgba(214,45,60,.3); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-brand { display: flex; align-items: center; gap: .7rem; color: white; text-decoration: none; }
.footer-brand > span { width: 34px; height: 34px; overflow: hidden; border-radius: 50%; background: white; }
.footer-brand img { width: 100%; height: 100%; object-fit: cover; }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .14s; }
.visual-break-copy.reveal { transform: translateY(calc(-50% + 28px)); }
.visual-break-copy.reveal.visible { transform: translateY(-50%); }
@keyframes gradientFlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes slowZoom { to { transform: scale(1.07); } }
@keyframes referencesForward { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes referencesReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (max-width: 980px) {
  .site-header { height: 78px; padding-inline: 5vw; }
  .brand-mark { width: 40px; height: 40px; }
  .menu-toggle { display: grid; place-content: center; gap: 7px; z-index: 22; }
  .menu-toggle span { display: block; width: 24px; height: 1px; background: white; transition: transform .25s ease; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { display: none; position: fixed; inset: 0; padding: 110px 8vw; background: var(--wine-dark); flex-direction: column; align-items: flex-start; justify-content: center; gap: 2rem; }
  .main-nav.open { display: flex; }
  .main-nav a { font-family: var(--display); font-size: 2rem; }
  .nav-cta { font-family: var(--sans) !important; font-size: .95rem !important; margin-top: 1rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 120px 5vw 5vw; }
  .hero-copy { padding-bottom: 2rem; }
  .hero-visual { min-height: 620px; }
  .hero-image-wrap { border-radius: 46% 46% 0 0; }
  .about { grid-template-columns: .8fr 1.2fr; gap: 6vw; }
  .expertise-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .expertise-top > p:last-child { max-width: 520px; }
  .services { grid-template-columns: 1fr; }
  .service { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .service:nth-child(odd) { border-right: 0; }
  .service:last-child { border-bottom: 0; }
  .founder-note { grid-template-columns: minmax(220px, .55fr) 1fr; gap: 3rem; }
  .founder-copy { column-count: 1; column-rule: 0; }
  .team-heading { grid-template-columns: 1fr; gap: 1.4rem; }
  .team-heading > p:last-child { max-width: 620px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-member { border-bottom: 1px solid var(--line-dark); }
  .team-member:nth-child(even) { border-right: 0; }
  .team-member:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .contact { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 680px) {
  .section-pad { padding: 5rem 5vw; }
  .brand-name { font-size: .82rem; }
  h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hero-stats { margin-top: 2.8rem; }
  .hero-stat { padding-inline: .65rem; flex-direction: column; gap: .5rem; }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat strong { font-size: 1.65rem; }
  .hero-stat span { font-size: .53rem; }
  .hero-visual { min-height: 440px; }
  .hero-caption { left: 8%; gap: .75rem; justify-content: space-between; }
  .intro-strip { justify-content: flex-start; min-height: 76px; overflow-x: hidden; }
  .intro-strip p { font-size: 1rem; }
  .about { grid-template-columns: 1fr; gap: 5rem; }
  .about-visual { width: 82%; justify-self: center; }
  .about-visual p { left: -8%; }
  .about h2, .expertise h2, .contact h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .about-signature { align-items: flex-start; flex-direction: column; }
  .about-signature img { width: 85%; }
  .founder-note { grid-template-columns: 1fr; padding-top: 4rem; }
  .founder-portrait { position: relative; top: auto; width: min(82%, 420px); }
  .founder-letter h3 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .founder-signature { justify-content: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
  .team-member { min-height: 150px; border-right: 0; }
  .team-member:last-child { grid-column: auto; }
  .references-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .references-stage { gap: .7rem; }
  .reference-group { gap: .5rem; padding-right: .5rem; }
  .reference-group span { padding: .58rem .78rem; font-size: .68rem; }
  .visual-break { height: 620px; }
  .visual-break-copy { left: 5vw; right: 5vw; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-note { display: block; margin: .8rem 0 0; }
  footer { grid-template-columns: 1fr; gap: 1rem; }
  footer p { margin: 0; }
  footer p:nth-child(2), footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .references-stage { width: 100%; margin-left: 0; transform: none; }
  .reference-rail { overflow: visible; mask-image: none; }
  .reference-track { width: auto; animation: none; }
  .reference-group { flex-wrap: wrap; }
  .reference-group + .reference-group { display: none; }
}
