/* =========================================================
   A1 Joinery Studio — site styles
   ---------------------------------------------------------
   Discipline:
   • One accent (brass). One serif (Cormorant). One sans (DM Sans).
   • Hairline borders, generous vertical rhythm, sentence case.
   ========================================================= */

:root {
  /* Palette */
  --obsidian:   #0a0a0a;
  --void:       #111110;
  --charcoal:   #1a1816;
  --hairline:   #222220;
  --brass:      #c9a96e;
  --brass-dim:  #9a8455;
  --linen:      #f0ebe2;
  --linen-soft: #e8e2d9;
  --warm-grey:  #9a8f82;
  --grey-dim:   #6e6660;

  /* Light section palette */
  --linen-bg:    #f0ebe2;
  --linen-bg-2:  #e6dfd2;
  --linen-line:  #d8d0c0;
  --linen-ink:   #0d0c0a;
  --linen-body:  #4a443c;
  --linen-mute:  #807868;

  /* Typography */
  --f-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --f-body:    "DM Sans", -apple-system, system-ui, sans-serif;

  /* Rhythm */
  --gutter: clamp(24px, 5vw, 80px);
  --section-y: clamp(72px, 11vw, 132px);
  --maxw: 1320px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--linen-soft);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ===================== Film grain & cursor ===================== */
.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 4;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.78  0 0 0 0 0.66  0 0 0 0 0.44  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.cursor {
  pointer-events: none;
  position: fixed; top: 0; left: 0;
  z-index: 99;
  transform: translate3d(0,0,0);
  mix-blend-mode: difference;
}
.cursor__dot,
.cursor__ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform, width, height, opacity;
  transition: width .35s var(--ease), height .35s var(--ease), opacity .25s, border-color .25s;
}
.cursor__dot {
  width: 6px; height: 6px;
  background: var(--brass);
  z-index: 100;
}
.cursor__ring {
  width: 18px; height: 18px;
  border: 1px solid var(--brass);
  opacity: 0;
  z-index: 100;
}
.cursor.is-hover .cursor__dot { width: 4px; height: 4px; opacity: 0; }
.cursor.is-hover .cursor__ring { width: 44px; height: 44px; opacity: 1; }
@media (hover: none), (max-width: 820px) {
  .cursor { display: none; }
}

/* ===================== Reveals ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out) var(--d, 0s), transform 1s var(--ease-out) var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================== Typography ===================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--brass);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow__line {
  display: inline-block;
  width: 34px; height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

.section__title,
.cta__h,
.promise__h,
.hero__h1 {
  font-family: var(--f-display);
  color: var(--linen);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 16px 0 0;
}
.section__title { font-size: clamp(34px, 5.4vw, 68px); }
.section__title em,
.cta__h em,
.promise__h em,
.hero__h1 em { color: var(--brass); font-style: italic; }

.section__lede {
  color: var(--warm-grey);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 56ch;
  margin: 20px 0 0;
  line-height: 1.6;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  position: relative;
}
.btn--brass { background: var(--brass); color: var(--obsidian); }
.btn--brass:hover { background: var(--linen); }
.btn--ghost { border-color: var(--hairline); color: var(--linen-soft); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn--block { width: 100%; justify-content: space-between; }
.btn__icon { width: 14px; height: 14px; display: inline-flex; }
.btn__icon svg { width: 100%; height: 100%; }
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ===================== Nav ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding: 12px 0;
  border-bottom-color: var(--hairline);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--linen);
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.06em;
}
.nav__wordmark em { color: var(--brass); font-style: italic; font-weight: 400; }
.nav__monogram {
  display: inline-flex;
  width: 28px; height: 28px;
  color: var(--brass);
}
.nav__monogram svg { width: 100%; height: 100%; }
.nav__links {
  display: inline-flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--linen-soft);
  justify-self: center;
}
.nav__links a { position: relative; padding: 6px 0; transition: color .3s var(--ease); }
.nav__links a:hover { color: var(--brass); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .5s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--brass); }
.nav__cta { justify-self: end; }

.nav__burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  justify-self: end;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: var(--linen-soft);
  margin: 0 auto;
  transition: transform .4s var(--ease), opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile overlay */
.overlay {
  position: fixed; inset: 0; z-index: 49;
  background: var(--obsidian);
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease);
}
.overlay.is-open { opacity: 1; pointer-events: auto; }
.overlay__inner {
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 100px var(--gutter) 60px;
  gap: 40px;
}
.overlay__links { display: flex; flex-direction: column; gap: 4px; }
.overlay__links a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 0;
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--linen);
  border-bottom: 1px solid var(--hairline);
}
.overlay__num {
  font-family: var(--f-body);
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.22em;
}
.overlay__cta { align-self: flex-start; }
.overlay__meta {
  display: flex; gap: 24px;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--warm-grey);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) var(--gutter) clamp(60px, 9vh, 100px);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero__text { position: relative; }
.hero__h1 {
  font-size: clamp(48px, 8.4vw, 124px);
  line-height: 0.98;
  margin: 28px 0 0;
}
.hero__h1 span,
.hero__h1 em { display: block; }
.hero__sub {
  color: var(--linen-soft);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 300;
  max-width: 44ch;
  margin: 32px 0 0;
  line-height: 1.65;
}
.hero__ctas { display: flex; gap: 12px; margin: 40px 0 0; flex-wrap: wrap; }
.hero__meta {
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* Hero collage */
.hero__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: clamp(440px, 70vh, 720px);
}
.ph {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  margin: 0;
}
.ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease-out), filter 1s var(--ease);
}
.ph::after {
  /* Subtle darkening for text legibility */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.ph__tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linen);
  padding: 6px 10px;
  border: 1px solid rgba(240,235,226,0.18);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  border-radius: 2px;
}
.ph__caption {
  position: absolute; top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--linen-soft);
  letter-spacing: 0.02em;
}
.ph--tall { grid-row: 1 / span 2; }

/* Subtle parallax effect via JS toggling --pY */
.ph img { transform: translate3d(0, var(--pY, 0), 0) scale(1.02); }

/* Corner brackets — architectural drafting marks */
.hero__corner {
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--brass);
  opacity: 0.55;
  pointer-events: none;
}
.hero__corner--tl { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.hero__corner--br { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: var(--gutter);
  display: flex; align-items: center; gap: 14px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.hero__scroll-line {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--warm-grey);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--brass);
  transform: translateX(-100%);
  animation: scrollLine 2.4s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ===================== Stats ===================== */
.stats {
  padding: 0 var(--gutter);
  margin: clamp(40px, 6vw, 80px) 0;
}
.stats__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 10px;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--linen);
}
.stat__num--text em { font-style: italic; color: var(--brass); font-weight: 400; }
.stat__suffix {
  color: var(--brass);
  font-style: italic;
  font-size: 0.55em;
  margin-left: 2px;
}
.stat__label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ===================== Sections ===================== */
.section {
  padding: var(--section-y) var(--gutter);
  position: relative;
}
.panel { background: var(--void); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

.section__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 5vw, 72px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}

/* ===================== Work ===================== */
.work__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.card--work {
  display: block;
  position: relative;
  overflow: hidden;
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--charcoal);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .8s var(--ease);
  filter: saturate(0.95);
}
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.72) 100%);
}
.card--work:hover .card__media img { transform: scale(1.06); filter: saturate(1.05); }
.card__badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--brass);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.card--work:hover .card__badge { opacity: 1; transform: none; }
.card__arrow { font-size: 14px; }
.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 2px 2px;
  border-top: 1px solid transparent;
  transition: border-color .35s var(--ease);
}
.card--work:hover .card__meta { border-top-color: var(--brass-dim); }
.card__cat {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  color: var(--linen);
}
.card__loc {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.work__foot {
  max-width: var(--maxw);
  margin: clamp(40px, 5vw, 72px) auto 0;
  display: flex; align-items: center; gap: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.work__foot a { color: var(--linen-soft); border-bottom: 1px solid var(--brass-dim); padding-bottom: 1px; }
.work__foot a:hover { color: var(--brass); }
.work__foot-text { flex: 0 0 auto; }
.hairline { flex: 1; height: 1px; background: var(--hairline); }

/* ===================== Services ===================== */
.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.card--service {
  position: relative;
  padding: 36px 28px 84px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: transform .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease);
  cursor: default;
  min-height: 280px;
}
.card--service:hover {
  transform: translateY(-4px);
  background: rgba(201,169,110,0.025);
  border-color: var(--brass-dim);
}
.card__icon {
  width: 40px; height: 40px;
  color: var(--brass);
  margin-bottom: 32px;
  opacity: 0.85;
}
.card__icon svg { width: 100%; height: 100%; }
.card__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 26px;
  color: var(--linen);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.card__body {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.6;
  margin: 0;
  max-width: 32ch;
}
.card__index {
  position: absolute;
  bottom: 18px; right: 22px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
  letter-spacing: 0.05em;
  opacity: 0.65;
}

/* Accent card (design service) */
.card--service.card--service--accent {
  background: linear-gradient(135deg, rgba(201,169,110,0.05), rgba(201,169,110,0));
  border-right-color: var(--brass-dim);
}
.card--service.card--service--accent .card__title { color: var(--brass); }

/* Services banner — sits ABOVE the 5 services, applies to all of them */
.services__banner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto 0;
  padding: clamp(28px, 3.4vw, 44px) clamp(28px, 3vw, 44px) clamp(36px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(201,169,110,0.10) 0%, rgba(201,169,110,0.03) 100%),
    rgba(10,10,10,0.4);
  border: 1px solid var(--brass-dim);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}
.services__banner-head { display: flex; flex-direction: column; gap: 16px; }
.services__banner-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--linen);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.services__banner-title em { color: var(--brass); font-style: italic; }
.services__banner-body {
  display: flex; flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.services__banner-body p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--linen-soft);
  line-height: 1.65;
  max-width: 60ch;
}
.services__banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.services__banner-cta:hover { background: var(--brass); color: var(--obsidian); }
.services__banner-cta .btn__arrow { font-size: 14px; letter-spacing: 0; }

/* Down-ticks: visually connect the banner to each card below */
.services__banner-tick {
  position: absolute;
  bottom: -1px;
  width: 1px;
  height: 14px;
  background: var(--brass-dim);
  opacity: 0.6;
}
.services__banner-tick--1 { left: 10%;  }
.services__banner-tick--2 { left: 30%;  }
.services__banner-tick--3 { left: 50%;  }
.services__banner-tick--4 { left: 70%;  }
.services__banner-tick--5 { left: 90%;  }

/* Services grid sits flush under the banner with a matching top border */
.services__grid {
  border-top: 1px solid var(--brass-dim);
}

/* Service contexts row */
.services__contexts {
  max-width: var(--maxw);
  margin: clamp(36px, 4vw, 56px) auto 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: rgba(0,0,0,0.18);
}
.services__context {
  display: flex; align-items: baseline; gap: 12px;
}
.services__context-num {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--brass);
  font-size: 22px;
}
.services__context-lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linen-soft);
}
.services__context--note {
  margin-left: auto;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--warm-grey);
}
.services__context--note em { color: var(--brass); font-style: italic; }

/* ===================== Promise ===================== */
.promise {
  text-align: center;
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  position: relative;
}
.promise__inner {
  max-width: 820px;
  margin: 0 auto;
}
.promise__h {
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.08;
  margin: 18px 0 28px;
}
.promise__sub {
  color: var(--linen-soft);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.promise__small {
  margin: 40px auto 0;
  max-width: 64ch;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--grey-dim);
  letter-spacing: 0.02em;
}
.promise__bracket {
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--brass);
  opacity: 0.4;
  pointer-events: none;
}
.promise__bracket--tl { top: 60px; left: 60px;  border-right: 0; border-bottom: 0; }
.promise__bracket--tr { top: 60px; right: 60px; border-left: 0;  border-bottom: 0; }
.promise__bracket--bl { bottom: 60px; left: 60px;  border-right: 0; border-top: 0; }
.promise__bracket--br { bottom: 60px; right: 60px; border-left: 0;  border-top: 0; }

/* ===================== About ===================== */
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 4px;
}
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
}
.about__text p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--linen-soft);
  line-height: 1.75;
  margin: 24px 0 0;
  max-width: 56ch;
}
.about__sign {
  margin-top: 36px !important;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  color: var(--warm-grey);
  font-size: 14px;
}
.about__sign em {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--linen);
  margin-right: 8px;
  letter-spacing: 0.01em;
}

/* ===================== Process ===================== */
.process__list {
  list-style: none;
  margin: 0; padding: 0;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.process__step {
  padding: 48px 32px 56px;
  border-right: 1px solid var(--hairline);
  position: relative;
}
.process__step:last-child { border-right: 0; }
.process__num {
  font-family: var(--f-display);
  display: block;
  margin-bottom: 24px;
}
.process__num em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass);
  font-size: clamp(56px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.process__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 26px;
  color: var(--linen);
  margin: 0 0 12px;
}
.process__body {
  color: var(--warm-grey);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 28ch;
}

/* ===================== CTA banner ===================== */
.cta {
  text-align: center;
  padding: clamp(100px, 14vw, 180px) var(--gutter);
}
.cta__inner { max-width: 780px; margin: 0 auto; }
.cta__h {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.04;
  margin: 18px 0 24px;
}
.cta__sub {
  color: var(--warm-grey);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.cta__btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===================== Contact ===================== */
.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 112px);
}
.contact__details p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--linen-soft);
  margin: 24px 0 36px;
  max-width: 44ch;
  line-height: 1.65;
}
.contact__list {
  margin: 0;
  padding: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.contact__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.contact__row dt {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}
.contact__row dd {
  margin: 0;
  font-size: 15px;
  color: var(--linen);
}
.contact__row dd a { border-bottom: 1px solid var(--hairline); padding-bottom: 1px; }
.contact__row dd a:hover { border-color: var(--brass); color: var(--brass); }

.contact__form {
  padding: 36px;
  border: 1px solid var(--hairline);
  background: var(--void);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--linen);
  font: inherit;
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color .35s var(--ease);
  font-family: var(--f-body);
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--brass); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.select { position: relative; }
.select select {
  appearance: none;
  padding-right: 24px;
  cursor: pointer;
}
.select select option { background: var(--obsidian); color: var(--linen); }
.select__chev {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  font-size: 14px;
  pointer-events: none;
}
.contact__form-note {
  margin: 0;
  font-size: 11px;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
}

/* ===================== Footer ===================== */
.footer {
  padding: clamp(60px, 8vw, 100px) var(--gutter) 32px;
  border-top: 1px solid var(--hairline);
  background: var(--obsidian);
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.footer__brand {
  display: inline-flex;
  align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--linen);
  letter-spacing: 0.05em;
}
.footer__col {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: var(--warm-grey);
}
.footer__col a { color: var(--linen-soft); transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--brass); }
.footer__label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-dim);
}
.footer__tag em { font-family: var(--f-display); font-style: italic; text-transform: none; color: var(--warm-grey); font-size: 13px; letter-spacing: 0; }

/* ===================== Light section variant ===================== */
.section--light {
  background: var(--linen-bg);
  color: var(--linen-body);
  border-top: 1px solid var(--linen-line);
  border-bottom: 1px solid var(--linen-line);
}
.section--light .section__head { border-bottom-color: var(--linen-line); }
.section--light .section__title,
.section--light .cta__h,
.section--light .promise__h {
  color: var(--linen-ink);
}
/* Italic emphasis on light: brass colour, no background. */
.section--light .section__title em,
.section--light .cta__h em,
.section--light .promise__h em {
  color: var(--brass);
  background: transparent;
}
/* Eyebrow on light: darker brass for legibility on linen. */
.section--light .eyebrow {
  color: #6e5826;
  background: transparent;
}
.section--light .eyebrow__line {
  background: #6e5826;
  opacity: 0.85;
}
.section--light .section__lede { color: var(--linen-body); }
.section--light p { color: var(--linen-body); }

/* Cards on light bg */
.section--light .card--why {
  background: #fff;
  border: 1px solid var(--linen-line);
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.section--light .card--why:hover {
  transform: translateY(-4px);
  border-color: var(--brass-dim);
  box-shadow: 0 18px 48px -28px rgba(20,16,8,0.30);
}
.section--light .card__title { color: var(--linen-ink); }
.section--light .card__body  { color: var(--linen-body); }
.section--light .card__index { color: #6e5826; opacity: 1; }
.section--light .card__icon  { color: #6e5826; }

/* FAQ items on light bg */
.section--light .faq__item {
  border-bottom: 1px solid var(--linen-line);
}
.section--light .faq__q {
  color: var(--linen-ink);
}
.section--light .faq__q-mark { color: #6e5826; }
.section--light .faq__a { color: var(--linen-body); }

/* Hairline ticks visible on light */
.section--light .hairline { background: var(--linen-line); }

/* Buttons on light */
.section--light .btn--ghost {
  border-color: var(--linen-line);
  color: var(--linen-ink);
}
.section--light .btn--ghost:hover { border-color: var(--brass); color: var(--brass); }

/* ===================== Why choose us ===================== */
.why__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.card--why .card__icon {
  width: 32px; height: 32px;
  margin-bottom: 8px;
}

/* ===================== FAQ ===================== */
.faq__list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--linen-line);
}
.faq__item {
  border-bottom: 1px solid var(--linen-line);
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 4px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--linen-ink);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.005em;
}
.faq__q-mark {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--f-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--brass);
  transition: transform .4s var(--ease);
}
.faq__item.is-open .faq__q-mark { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease), padding .35s var(--ease);
  padding: 0 4px;
  color: var(--linen-body);
  font-size: clamp(14.5px, 1.1vw, 16px);
  line-height: 1.7;
  max-width: 64ch;
}
.faq__item.is-open .faq__a {
  padding: 0 4px 28px;
}
.faq__a p { margin: 0 0 12px; color: inherit; }
.faq__a p:last-child { margin-bottom: 0; }

/* ===================== Process timeline ===================== */
.process__timeline {
  max-width: var(--maxw);
  margin: clamp(40px, 5vw, 72px) auto 0;
  padding: 36px clamp(20px, 3vw, 40px);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: rgba(201,169,110,0.025);
}
.process__timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.process__timeline-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--linen);
  margin: 0;
}
.process__timeline-title em { color: var(--brass); font-style: italic; }
.process__timeline-meta {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
.timeline {
  position: relative;
  padding: 24px 0 12px;
}
.timeline__track {
  height: 1px;
  background: var(--hairline);
  position: relative;
}
.timeline__fill {
  position: absolute;
  top: 0; left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass) 33%, var(--brass-dim) 70%, var(--brass-dim) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.8s var(--ease-out);
}
.timeline.is-in .timeline__fill { transform: scaleX(1); }
.timeline__points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -7px;
}
.timeline__point {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.timeline__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--obsidian);
  border: 1.5px solid var(--brass);
  margin-bottom: 12px;
}
.timeline__day {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--brass);
  font-size: 18px;
  line-height: 1;
}
.timeline__lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--linen-soft);
}

/* ===================== Responsive ===================== */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__collage { height: 60vh; min-height: 420px; }
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__banner { grid-template-columns: 1fr; gap: 20px; }
  .services__banner-tick { display: none; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(2) { border-right: 0; }
  .process__step:nth-child(1),
  .process__step:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .about__inner { grid-template-columns: 1fr; }
  .about__portrait { max-width: 480px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .promise__bracket { display: none; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { grid-template-columns: 1fr auto; }

  .hero { padding-top: 120px; min-height: auto; }
  .hero__scroll { display: none; }
  .hero__h1 { font-size: clamp(44px, 14vw, 80px); }

  .work__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .card--service { min-height: 220px; padding: 28px 22px 72px; }
  .process__list { grid-template-columns: 1fr; }
  .timeline__points { grid-template-columns: 1fr; gap: 16px; }
  .timeline__point { flex-direction: row; align-items: center; gap: 14px; }
  .timeline__dot { margin-bottom: 0; }
  .process__step { border-right: 0 !important; border-bottom: 1px solid var(--hairline); }
  .process__step:last-child { border-bottom: 0; }

  .stats__row { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 18px; }

  .field-row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
  .contact__row { grid-template-columns: 90px 1fr; gap: 16px; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  .section__head { padding-bottom: 18px; }
}

/* Focus visible */
:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Selection */
::selection { background: var(--brass); color: var(--obsidian); }
