/* Archivo: one variable-range face per subset (bundle shipped identical files for weights 400-700) */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/archivo-vietnamese.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/archivo-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/archivo-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Caslon Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/caslon-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Caslon Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/caslon-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #16130f;
  --ink: #ece5d8;
  --ink-bright: #f3ecdd;
  --body-ink: #b5ab97;
  --muted: #9a917f;
  --gold: #c9963f;
  --gold-bright: #dfae56;
  --gold-dim: rgba(201, 150, 63, .4);
  --hairline: rgba(236, 229, 216, .14);
  --hairline-mid: rgba(236, 229, 216, .16);
  --hairline-strong: rgba(236, 229, 216, .22);
  --cream: #f0e9db;
  --cream-ink: #1b1815;
  --cream-muted: #57503f;
  --serif: 'Libre Caslon Display', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;
  --gutter: 44px;
  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(236, 229, 216, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 229, 216, .03) 1px, transparent 1px);
  background-size: 52px 52px;
}
a { color: var(--gold); text-decoration: none }
a:hover { color: var(--gold-bright) }
::selection { background: var(--gold); color: var(--bg) }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px }

.clip { overflow-x: clip }
section[id] { scroll-margin-top: 90px }
.wrap { max-width: 1320px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter) }
.accent { color: var(--gold) }
.push { margin-left: auto }

/* Load-in animation and scroll reveals. The site driver (np-interactions.js)
   writes inline opacity/transform on [data-rv] and [data-word]; only the
   transitions live here. */
@keyframes npRise { from { opacity: 0; transform: translateY(110%) } to { opacity: 1; transform: none } }
@keyframes npDraw { to { stroke-dashoffset: 0 } }
@keyframes npFade { to { opacity: 1 } }
.mask { display: block; overflow: hidden }
.rise { display: block; animation: npRise 1s var(--ease-out) both; animation-delay: var(--d, 0s) }
[data-rv] { transition: opacity .8s ease, transform .8s ease; transition-delay: var(--d, 0s) }
[data-word] { display: inline-block; white-space: pre; transition: opacity .5s ease; transition-delay: calc(var(--i) * 18ms) }

/* Progress bar + fixed nav (driver sets width / scrolled background inline) */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--gold); z-index: 60 }
.nav { position: fixed; top: 2px; left: 0; right: 0; z-index: 50; border-bottom: 1px solid transparent; transition: background .4s ease, border-color .4s ease }
.nav-inner { display: flex; align-items: center; gap: 34px; padding-top: 19px; padding-bottom: 19px }
.brand { color: var(--ink); font-family: var(--serif); font-size: 18px; letter-spacing: .08em; white-space: nowrap }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 30px; font-size: 13.5px; font-weight: 500; letter-spacing: .06em }
.nav-link { color: var(--muted); transition: color .25s }
.nav-link:hover { color: var(--ink) }
.nav-cta { color: var(--gold); border: 1px solid rgba(201, 150, 63, .5); padding: 10px 20px; transition: background .25s, color .25s }
.nav-cta:hover { background: var(--gold); color: var(--bg) }

/* Hero */
.hero { min-height: 92vh; min-height: 92svh; display: flex; flex-direction: column; justify-content: center; padding-top: 150px; padding-bottom: 60px }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold) }
.hero-eyebrow { letter-spacing: .34em; margin-bottom: 30px }
.hero-title { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.015em; line-height: .96; font-size: clamp(48px, 10.5vw, 168px); color: var(--ink-bright) }
.hero-title .indent { margin-left: clamp(28px, 8vw, 150px) }
.hero-rule { display: block; width: 100%; margin: 44px 0 0; overflow: visible }
.hero-rule line { stroke: var(--gold); stroke-width: 1 }
.draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: npDraw 1.6s cubic-bezier(.4, 0, .2, 1) .9s both }
.cap { opacity: 0; animation: npFade .4s ease var(--d, .9s) both }
.hero-foot { display: flex; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-top: 34px }
.hero-copy { margin: 0; max-width: 430px; font-size: 17px; line-height: 1.6; color: var(--body-ink) }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap }
.btn-gold { background: var(--gold); color: var(--bg); padding: 17px 32px; font-weight: 600; font-size: 15.5px; transition: background .25s }
.btn-gold:hover { background: var(--gold-bright); color: var(--bg) }
.link-arrow { color: var(--ink); font-weight: 500; font-size: 15.5px; border-bottom: 1px solid rgba(236, 229, 216, .4); padding-bottom: 4px; transition: border-color .25s, color .25s }
.link-arrow:hover { color: var(--gold-bright); border-color: var(--gold-bright) }

/* Section headers */
.sec-title { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.4vw, 58px); letter-spacing: -.01em; color: var(--ink-bright) }
.sec-title--sm { font-size: clamp(30px, 3.6vw, 46px) }
.sec-sub { margin: 18px 0 0; max-width: 65ch; font-size: 15px; line-height: 1.6; color: var(--muted) }
.sec-head { margin-bottom: 44px }
.sec-link { font-size: 14.5px; font-weight: 600 }

/* Before / after slider (driver sets clip-path and handle position inline) */
.transform { padding-top: 110px }
.ba { position: relative; aspect-ratio: 12 / 7; border: 1px solid rgba(236, 229, 216, .25); overflow: hidden; cursor: ew-resize; touch-action: none; user-select: none }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block }
[data-ba-before] { clip-path: inset(0 50% 0 0) }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--gold); transform: translateX(-1px) }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 52px; height: 52px; border-radius: 50%; background: var(--bg); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; gap: 5px; color: var(--gold); font-size: 13px; box-shadow: 0 8px 30px rgba(0, 0, 0, .5) }
.ba-caption { display: flex; justify-content: space-between; padding: 16px 2px 0; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted) }

/* Services (driver swaps the background image and fades it in on row hover) */
.svc { position: relative; margin-top: 130px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline) }
.svc-bg { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; pointer-events: none }
.svc-bg img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(.3) brightness(.5) }
.svc-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, #16130f 20%, rgba(22, 19, 15, .72)); pointer-events: none }
.svc-inner { position: relative; padding-top: 90px; padding-bottom: 90px }
.svc-rows { display: flex; flex-direction: column; margin-top: 48px }
.svc-row { display: grid; grid-template-columns: 1fr minmax(220px, 300px); align-items: baseline; gap: 26px; padding: 24px 4px; border-top: 1px solid var(--hairline); color: var(--ink); transition: opacity .7s ease, transform .7s ease, padding .3s ease }
.svc-row:hover { padding: 24px 18px }
.svc-title { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 46px); letter-spacing: -.01em; color: #b5ab97; transition: color .3s ease }
.svc-desc { font-size: 14px; color: var(--muted); text-align: right; line-height: 1.5 }
.svc-end { border-top: 1px solid var(--hairline) }

/* Statement + stats */
.statement { padding-top: 130px }
.statement-text { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3.2vw, 40px); line-height: 1.34; letter-spacing: -.01em; max-width: 920px; color: var(--ink-bright) }
.statement-by { margin-top: 32px; display: flex; gap: 14px; align-items: center; font-size: 14px; color: var(--muted) }
.statement-by::before { content: ""; width: 44px; height: 1px; background: var(--gold) }
.stats { margin-top: 90px; border-top: 1px solid var(--hairline); display: grid; grid-template-columns: repeat(3, 1fr) }
.stat { padding: 40px 24px; border-right: 1px solid var(--hairline) }
.stat:first-child { padding-left: 0 }
.stat:last-child { padding-right: 0; border-right: 0 }
.stat-num { font-family: var(--serif); font-size: 54px; line-height: 1; color: var(--ink-bright) }
.stat-label { margin-top: 10px; font-size: 13.5px; color: var(--muted) }

/* Process (driver drives the numeral parallax) */
.process { padding-top: 140px }
.steps { display: flex; flex-direction: column; margin-top: 48px }
.step { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; padding: 54px 0; border-top: 1px solid var(--hairline); overflow: hidden }
.step-num { display: block; font-family: var(--serif); font-size: clamp(120px, 14vw, 210px); line-height: .8; color: transparent; -webkit-text-stroke: 1px var(--gold-dim); will-change: transform }
.step-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap }
.step-title { font-family: var(--serif); font-size: 30px; color: var(--ink-bright) }
.step-body { margin: 14px 0 0; max-width: 520px; font-size: 15.5px; line-height: 1.65; color: var(--muted) }

/* Work (driver zooms [data-zoom] on card hover) */
.work { padding-top: 140px }
.work-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 54px }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 44px }
.card { display: block; color: var(--ink) }
.card-stag { margin-top: 80px }
.card-frame { border: 1px solid var(--hairline-strong); background: #efeade }
.card-media { overflow: hidden }
.card-media > div { height: 330px; transition: transform .6s var(--ease-out) }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block }
.card-head { display: flex; align-items: baseline; gap: 14px; padding: 18px 2px 0 }
.card-title { font-family: var(--serif); font-size: 22px; color: var(--ink-bright) }
.card-tag { margin-left: auto; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold) }
.card-loc { padding: 6px 2px 0; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted) }

/* FAQ */
.faq { padding-top: 140px; padding-bottom: 130px }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start }
.qa { border-top: 1px solid var(--hairline-mid) }
.qa:last-child { border-bottom: 1px solid var(--hairline-mid) }
.qa-q { cursor: pointer; list-style: none; display: flex; align-items: baseline; gap: 20px; padding: 24px 4px; font-family: var(--serif); font-size: 21px; color: var(--ink-bright) }
.qa-q::-webkit-details-marker { display: none }
.qa-mark { margin-left: auto; color: var(--gold); font-family: var(--sans); font-size: 20px; transition: transform .3s ease }
details[open] .qa-mark { transform: rotate(45deg) }
.qa-a { margin: 0; padding: 0 4px 26px; max-width: 600px; font-size: 15px; line-height: 1.65; color: var(--muted) }

/* CTA: the page's single deliberate light color-block */
.cta { background: var(--cream); background-image: linear-gradient(rgba(27, 24, 21, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 24, 21, .05) 1px, transparent 1px); background-size: 52px 52px; color: var(--cream-ink) }
.cta-inner { padding-top: 120px; padding-bottom: 120px; text-align: center }
.cta .eyebrow { color: #a3762f; margin-bottom: 22px }
.cta-title { margin: 0 auto 30px; font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.6vw, 76px); line-height: 1.04; letter-spacing: -.015em; max-width: 800px }
.cta-copy { margin: 0 auto 40px; max-width: 440px; font-size: 16px; line-height: 1.6; color: var(--cream-muted) }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap }
.btn-dark { background: var(--cream-ink); color: var(--cream); padding: 18px 34px; font-weight: 600; font-size: 16px; transition: background .25s }
.btn-dark:hover { background: #3a352e; color: var(--cream) }
.cta-alt { font-size: 15.5px; color: var(--cream-muted) }
.cta-alt b { color: var(--cream-ink) }

/* Footer */
.footer { border-top: 1px solid var(--hairline) }
.footer-inner { padding-top: 30px; padding-bottom: 30px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; font-size: 13px; color: var(--muted) }
.footer-brand { font-family: var(--serif); font-size: 16px; color: var(--ink); letter-spacing: .06em }
.footer-social { margin-left: auto; display: flex; gap: 20px }
.foot-link { color: var(--muted) }
.foot-link:hover { color: var(--gold-bright) }

/* Mobile collapse */
@media (max-width: 900px) {
  :root { --gutter: 24px }
  .nav-inner { gap: 16px; padding-top: 14px; padding-bottom: 14px }
  .nav-links { gap: 18px }
  .nav-links .nav-link { display: none }
  .brand { font-size: 15px; letter-spacing: .04em }
  .nav-cta { white-space: nowrap; padding: 8px 13px; font-size: 12.5px }
  .hero { padding-top: 130px; padding-bottom: 48px }
  .hero-foot { gap: 28px }
  .svc { margin-top: 100px }
  .svc-inner { padding-top: 70px; padding-bottom: 70px }
  .svc-row { grid-template-columns: 1fr; gap: 8px }
  .svc-desc { text-align: left; max-width: 46ch }
  .statement { padding-top: 100px }
  .stats { margin-top: 70px; grid-template-columns: 1fr 1fr }
  .stat { padding: 28px 20px }
  .stat:nth-child(odd) { padding-left: 0 }
  .stat:nth-child(2n) { border-right: 0; padding-right: 0 }
  .stat:nth-child(n+3) { border-top: 1px solid var(--hairline); grid-column: 1 / -1; border-right: 0 }
  .process, .work, .faq { padding-top: 100px }
  .step { display: block; padding: 44px 0 }
  .step-num { font-size: clamp(88px, 20vw, 120px); margin-bottom: 10px }
  .work-grid { grid-template-columns: 1fr; gap: 44px }
  .card-stag { margin-top: 0 }
  .card-media > div { height: 260px }
  .faq { padding-bottom: 90px }
  .faq-grid { grid-template-columns: 1fr; gap: 32px }
  .cta-inner { padding-top: 90px; padding-bottom: 90px }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}
