/* ============================================================
   LEVEL JOINERY — shared stylesheet
   Aesthetic: workshop drawing / shop-floor precision
   Reference language: luxury watchmaker precision + editorial
   architecture-studio confidence + warmth of real timber
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Archivo:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Locked brand tokens — do not change */
  --charcoal: #1c1a17;
  --paper: #f4efe6;
  --paper-warm: #ece4d6;
  --oak: #b9835a;
  --oak-deep: #8a5d3b;
  --brass: #a3925f;
  --ink: #2b2620;
  --ink-soft: #6e6557;

  /* Background hierarchy */
  --bg-0: var(--charcoal);
  --bg-1: #211e19;
  --bg-2: #28241e;
  --bg-light: var(--paper-warm);
  --bg-light-raised: var(--paper);

  /* Text hierarchy — dark surfaces */
  --text-on-dark-primary: var(--paper);
  --text-on-dark-secondary: #b9ab97;
  --text-on-dark-muted: #83786a;

  /* Text hierarchy — light surfaces */
  --text-on-light-primary: var(--ink);
  --text-on-light-secondary: var(--ink-soft);

  /* Accent */
  --accent: var(--oak);
  --accent-hover: var(--oak-deep);
  --border-hairline: rgba(185, 131, 90, 0.14);
  --border-hairline-strong: rgba(185, 131, 90, 0.28);

  /* Neutral hairlines (kept separate from accent hairlines) */
  --line: rgba(43, 38, 32, 0.12);
  --line-strong: rgba(43, 38, 32, 0.22);
  --cream-line: rgba(244, 239, 230, 0.18);
  --cream-line-strong: rgba(244, 239, 230, 0.35);

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 40px;
  --sp-6: 64px;
  --sp-7: 96px;

  --font-display: 'Fraunces', serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ TOP ANNOUNCEMENT BAR ============ */
.topbar {
  background: var(--bg-0);
  color: var(--text-on-dark-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}
.topbar span { color: var(--oak); }

/* ============ HEADER / NAV ============ */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(28, 26, 23, 0.06); }
.site-header.scrolled .nav { padding: 14px 0; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  transition: padding 0.3s ease;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.logo .lvl { color: var(--ink); display: inline-block; transition: letter-spacing 0.3s ease; }
.site-header:not(.scrolled) .logo:hover .lvl { letter-spacing: 0.18em; }
.logo .joinery {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--oak-deep);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--oak-deep); }
.nav-links a:focus-visible { outline: 2px solid var(--oak); outline-offset: 4px; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  background: var(--charcoal);
  padding: 11px 22px;
  border: 1px solid var(--charcoal);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--charcoal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  margin: 0 auto;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a.active { color: var(--oak-deep); }
.mobile-menu .nav-cta { margin-top: 12px; text-align: center; justify-content: center; width: 100%; padding: 14px 22px; color: var(--paper); border-bottom: none; }
.mobile-menu .nav-cta:hover { color: var(--charcoal); }
.mobile-menu .material-selector { display: flex; padding: 16px 20px; border-bottom: 1px solid var(--line); }

/* ============ EYEBROW / SECTION LABELS ============ */
/* Restrained: max one eyebrow per three sections across a page */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oak-deep);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--oak-deep); }
.eyebrow.on-dark { color: var(--oak); }
.eyebrow.on-dark::before { background: var(--oak); }

/* ============ DIMENSION LINE — signature element (do not remove) ============ */
.dim-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.dim-line .dim-track {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
  position: relative;
  min-width: 40px;
}
.dim-line .dim-track::before,
.dim-line .dim-track::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  background: var(--line-strong);
}
.dim-line .dim-track::before { left: 0; }
.dim-line .dim-track::after { right: 0; }
.dim-line.on-dark { color: rgba(244, 239, 230, 0.55); }
.dim-line.on-dark .dim-track,
.dim-line.on-dark .dim-track::before,
.dim-line.on-dark .dim-track::after { background: var(--cream-line-strong); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 30px;
  min-height: 44px;
  border: 1px solid currentColor;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  background: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  touch-action: manipulation;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--oak-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.65,0,.35,1);
  z-index: -1;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--paper);
  border-color: var(--charcoal);
}
.btn-primary:hover { color: var(--paper); border-color: var(--oak-deep); background: transparent; }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-outline {
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-outline.on-dark { color: var(--paper); border-color: var(--cream-line-strong); }
.btn-outline.on-dark:hover { background: var(--paper); color: var(--charcoal); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--oak); outline-offset: 3px; }

/* ============ HERO ============ */
.hero {
  background: var(--charcoal);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 123px);
  min-height: calc(100dvh - 123px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.crop-marks span {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--cream-line-strong);
  z-index: 2;
}
.crop-marks .tl { top: 28px; left: 28px; border-right: none; border-bottom: none; }
.crop-marks .tr { top: 28px; right: 28px; border-left: none; border-bottom: none; }
.crop-marks .bl { bottom: 28px; left: 28px; border-right: none; border-top: none; }
.crop-marks .br { bottom: 28px; right: 28px; border-left: none; border-top: none; }

.hero-full-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-img {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,26,23,0.84) 0%, rgba(28,26,23,0.55) 50%, rgba(138,93,59,0.35) 100%);
}
.hero-grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(98deg, rgba(244,239,230,0.025) 0px, rgba(244,239,230,0.025) 1px, transparent 1px, transparent 36px);
}
.hero-container { position: relative; z-index: 2; padding: 96px 0 72px; max-width: 720px; }
.hero .eyebrow { color: var(--oak); }
.hero .eyebrow::before { background: var(--oak); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  max-width: 620px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--oak); }
.hero .lede {
  font-size: 18px;
  color: rgba(244,239,230,0.72);
  max-width: 46ch;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
}

/* ============ STAT BAND (below hero) ============ */
.stat-band { border-top: 1px solid var(--cream-line); border-bottom: 1px solid var(--cream-line); padding: 56px 0; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { text-align: center; border-left: 1px solid var(--cream-line); padding: 0 20px; }
.stat-cell:first-child { border-left: none; }
.stat-cell .num { font-family: var(--font-display); font-size: 44px; font-weight: 500; color: var(--oak); line-height: 1; margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.stat-cell .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,239,230,0.55); }

/* ============ TRUST TICKER (marquee) ============ */
.trust-v2 { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; overflow: hidden; position: relative; background: var(--bg-light); }
.trust-v2-track { display: flex; gap: 60px; animation: trustScroll 26s linear infinite; width: max-content; }
@keyframes trustScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.trust-v2-item { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; display: flex; align-items: center; gap: 14px; }
.trust-v2-item::before { content: '\25C6'; font-size: 6px; color: var(--oak-deep); }

/* ============ SECTION GENERAL ============ */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-dark { background: var(--bg-0); color: var(--paper); }
.section-warm { background: var(--bg-light); }
.section-raised { background: var(--bg-1); color: var(--paper); }

.section-head { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 64px; max-width: 700px; }
.section-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.15; letter-spacing: -0.015em; text-wrap: balance; }
.section-head h2 em { font-style: italic; font-weight: 300; color: var(--oak-deep); }
.section-dark .section-head h2 em, .section-raised .section-head h2 em { color: var(--oak); }
.section-head .head-note { font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-width: 60ch; }
.section-dark .section-head .head-note, .section-raised .section-head .head-note { color: rgba(244,239,230,0.62); }

/* ============ SERVICES GRID ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); }
.service-card { background: var(--paper); padding: 40px 36px; display: flex; flex-direction: column; gap: 18px; transition: background 0.25s, transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s; position: relative; }
.service-card:hover { background: var(--paper-warm); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(28,26,23,0.10); z-index: 2; }
.service-card .sc-index { font-family: var(--font-mono); font-size: 12px; color: var(--oak-deep); letter-spacing: 0.1em; transition: color 0.25s, transform 0.25s; }
.service-card:hover .sc-index { color: var(--oak); transform: translateX(4px); }
.service-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.service-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.service-card .sc-spec { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.service-card a { text-decoration: none; }

/* ============ PROCESS / NUMBERED STEPS ============ */
.process-list { display: flex; flex-direction: column; }
.process-item { display: grid; grid-template-columns: 100px 1fr 1.3fr; gap: 40px; padding: 36px 0; border-top: 1px solid var(--line); align-items: start; }
.section-dark .process-item, .section-raised .process-item { border-top: 1px solid var(--cream-line); }
.process-item:last-child { border-bottom: 1px solid var(--line); }
.section-dark .process-item:last-child, .section-raised .process-item:last-child { border-bottom: 1px solid var(--cream-line); }
.process-num { font-family: var(--font-display); font-size: 36px; font-weight: 300; color: var(--oak-deep); }
.section-dark .process-num, .section-raised .process-num { color: var(--oak); }
.process-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.process-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.section-dark .process-desc, .section-raised .process-desc { color: rgba(244,239,230,0.6); }

/* ============ TESTIMONIAL CARDS ============ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--paper); border: 1px solid var(--line); padding: 36px 32px; display: flex; flex-direction: column; gap: 24px; transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s, border-color 0.25s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(28,26,23,0.08); border-color: var(--oak); }
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 48px; line-height: 1; color: var(--oak); font-style: italic; }
.testimonial-card p.quote { font-size: 15px; line-height: 1.75; color: var(--ink); flex: 1; }
.testimonial-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 18px; }
.testimonial-name { font-family: var(--font-display); font-weight: 500; font-size: 15px; }
.testimonial-loc { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.05em; }
.stars { color: var(--oak-deep); font-size: 13px; letter-spacing: 2px; }

/* ============ CTA BAND ============ */
.cta-band { background: var(--oak-deep); color: var(--paper); text-align: center; padding: 96px 0; position: relative; overflow: hidden; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 500; margin-bottom: 20px; letter-spacing: -0.015em; }
.cta-band h2 em { font-style: italic; font-weight: 300; }
.cta-band p { font-size: 16px; color: rgba(244,239,230,0.82); margin-bottom: 36px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--charcoal); border-color: var(--charcoal); }
.cta-band .btn-outline { color: var(--paper); border-color: rgba(244,239,230,0.4); }
.cta-band .btn-outline:hover { background: var(--paper); color: var(--oak-deep); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-0); color: rgba(244,239,230,0.65); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--cream-line); margin-bottom: 28px; }
.footer-brand .logo { color: var(--paper); margin-bottom: 18px; }
.footer-brand .logo .lvl { color: var(--paper); }
.footer-brand .logo .joinery { color: rgba(244,239,230,0.5); }
.footer-brand p { font-size: 13.5px; line-height: 1.8; max-width: 280px; color: rgba(244,239,230,0.5); }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--oak); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; text-decoration: none; color: rgba(244,239,230,0.65); margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; color: rgba(244,239,230,0.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { text-decoration: none; color: rgba(244,239,230,0.4); }
.footer-bottom a:hover { color: var(--paper); }

/* ============ PAGE HEADER (inner pages) ============ */
.page-hero { background: var(--bg-0); color: var(--paper); padding: 70px 0 60px; position: relative; overflow: hidden; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(34px, 4vw, 54px); font-weight: 500; letter-spacing: -0.015em; margin-bottom: 18px; }
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--oak); }
.page-hero .lede { font-size: 17px; color: rgba(244,239,230,0.68); max-width: 54ch; }
.breadcrumb { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,239,230,0.45); margin-bottom: 24px; }
.breadcrumb a { text-decoration: none; color: rgba(244,239,230,0.45); }
.breadcrumb a:hover { color: var(--oak); }
.breadcrumb .sep { margin: 0 8px; }

/* ============ FORM ELEMENTS ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.field .req { color: var(--oak-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  min-height: 48px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--oak-deep); background: #fff; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--oak); outline-offset: 0; border-color: var(--oak-deep); }
.field textarea { resize: vertical; min-height: 130px; font-family: var(--font-body); }
.field-note { font-size: 12px; color: var(--ink-soft); }
.field-error { font-size: 12.5px; color: #a3402c; display: none; }
.field.has-error input, .field.has-error textarea { border-color: #a3402c; }
.field.has-error .field-error { display: block; }
.form-status { font-size: 14px; padding: 16px 18px; border: 1px solid var(--line-strong); display: none; margin-top: 22px; }
.form-status.success { display: block; border-color: var(--oak-deep); color: var(--oak-deep); background: rgba(185,131,90,0.06); }
.form-status.error { display: block; border-color: #a3402c; color: #a3402c; background: rgba(163,64,44,0.06); }

/* ============ INFO CARDS (contact page) ============ */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); margin-bottom: 70px; }
.info-card { background: var(--paper); padding: 32px; }
.info-card .eyebrow { margin-bottom: 14px; }
.info-card .ic-main { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.info-card .ic-sub { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.info-card a { text-decoration: none; }

/* ============ MAP PLACEHOLDER ============ */
.map-block { background: var(--paper-warm); border: 1px solid var(--line); height: 360px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.map-block .grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 48px 48px; opacity: 0.6; }
.map-block .map-pin { position: relative; text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.map-block .map-pin .pin-dot { width: 14px; height: 14px; background: var(--oak-deep); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); margin: 0 auto 14px; }

/* ============ SPLIT BLOCK (about page) ============ */
.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-block.reverse .split-visual { order: 2; }
.split-visual { height: 460px; position: relative; overflow: hidden; background: var(--bg-1); }
.split-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.split-text h2 { font-family: var(--font-display); font-size: clamp(28px, 3.2vw, 38px); font-weight: 500; line-height: 1.2; margin-bottom: 22px; letter-spacing: -0.015em; }
.split-text h2 em { font-style: italic; font-weight: 300; color: var(--oak-deep); }
.split-text p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 18px; }

/* ============ VALUES GRID ============ */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); }
.value-card { background: var(--paper); padding: 32px 26px; }
.value-card .vc-mark { font-family: var(--font-mono); font-size: 11px; color: var(--oak-deep); letter-spacing: 0.1em; margin-bottom: 16px; }
.value-card h4 { font-family: var(--font-display); font-size: 19px; font-weight: 500; margin-bottom: 10px; color: var(--ink); }
.value-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card .team-photo { height: 280px; background: var(--bg-1); position: relative; overflow: hidden; margin-bottom: 20px; }
.team-card .team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card .team-name { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.team-card .team-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--oak-deep); margin-bottom: 12px; }
.team-card .team-bio { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ============ GALLERY STRIP (services page) ============ */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { height: 220px; position: relative; overflow: hidden; background: var(--bg-1); }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.16,1,.3,1); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gi-label { position: absolute; bottom: 16px; left: 16px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); background: rgba(28,26,23,0.55); padding: 5px 10px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--line); padding: 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
}
.faq-q h4 { font-family: var(--font-display); font-size: 19px; font-weight: 500; display: flex; gap: 16px; }
.faq-q h4 .fq-num { font-family: var(--font-mono); font-size: 14px; color: var(--oak-deep); font-weight: 400; }
.faq-q .fq-toggle { font-family: var(--font-mono); font-size: 20px; color: var(--oak-deep); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .fq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.8; padding: 0 0 28px 38px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-container { padding: 120px 0 72px; }
  .hero h1 { font-size: clamp(34px, 8vw, 44px); }
  .services-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 1fr; gap: 12px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat-cell:nth-child(3) { border-left: none; }
  .stat-cell:nth-child(2), .stat-cell:nth-child(4) { border-left: 1px solid var(--cream-line); }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { padding-top: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split-block, .split-block.reverse { grid-template-columns: minmax(0, 1fr); }
  .split-block.reverse .split-visual { order: 0; }
  .split-visual { height: 320px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { padding: 16px 0; }
  .container { padding: 0 20px; }
  .page-hero h1 { font-size: 34px; }
  .cta-band h2 { font-size: 28px; }
}

@media (max-width: 600px) {
  .services-grid, .values-grid, .gallery-strip { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
  .value-card { padding: 28px 22px; }
  .info-grid { margin-bottom: 48px; }
  .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dim-line { white-space: normal; }
  .dim-line .dim-track { min-width: 24px; }
}

/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 9999;
  background: var(--charcoal);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid var(--oak);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; }

:focus-visible { outline: 2px solid var(--oak); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .trust-v2-track, .marquee-track { animation: none !important; }
}
