:root {
  /* Light surfaces */
  --bone: #f4f1e9;
  --bone-2: #ebe7dc;
  --paper: #fafaf5;
  --ink: #1f1c1a;
  --ink-2: #3a3530;
  --ink-3: #6e6760;

  /* ADR brand accents */
  --lime: #b8e986;
  --lime-bright: #c5f192;
  --lime-dark: #95c45e;
  --lime-deep: #6a9b3e;
  --moss: #3d5a32;
  --moss-dark: #2a3f23;
  --stone: #8c8479;

  /* Sizing */
  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Type */
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 350;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.display em {
  font-style: italic;
  font-weight: 350;
  color: var(--moss);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lime-deep);
}
.eyebrow.no-line::before { display: none; }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-2); max-width: 60ch; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(60px, 7vw, 90px) 0; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--bone);
  font-size: 13px;
  padding: 10px 0;
  font-family: var(--sans);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--lime); }
.topbar .stars { color: var(--lime); letter-spacing: 1px; }
.topbar-right { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 233, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(31, 28, 26, 0.08);
  transition: background 0.3s ease;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--lime);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-style: italic;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-text small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 400;
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 14.5px;
  color: var(--ink-2);
  transition: color 0.2s;
  font-weight: 500;
  position: relative;
}
.nav a:hover { color: var(--moss); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--moss);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; }
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
  min-height: 44px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--lime);
  font-weight: 600;
}
.btn-primary:hover { background: var(--moss-dark); color: var(--lime-bright); box-shadow: 0 8px 24px rgba(31, 28, 26, 0.25); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 28, 26, 0.25);
}
.btn-ghost:hover { background: var(--ink); color: var(--lime); border-color: var(--ink); }
.btn-light {
  background: var(--bone);
  color: var(--ink);
}
.btn-light:hover { background: var(--paper); }
.btn-lime {
  background: var(--lime-bright);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(184, 233, 134, 0.3);
}
.btn-lime:hover { background: var(--lime-bright); box-shadow: 0 8px 24px rgba(184, 233, 134, 0.4); }
.btn-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
  font-size: 16px;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 880px);
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 28, 26, 0.35) 0%, rgba(31, 28, 26, 0.50) 40%, rgba(31, 28, 26, 0.88) 100%);
  z-index: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.05);
  animation: kenburns 22s ease-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.0) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
}
.hero-inner {
  position: relative;
  z-index: 3;
  min-height: clamp(640px, 92vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 0 70px;
  color: var(--bone);
}
.hero-eyebrow {
  color: var(--lime);
  margin-bottom: 28px;
}
.hero-eyebrow::before { background: var(--lime); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--paper);
  font-size: clamp(48px, 7.8vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 18ch;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  color: var(--lime);
  font-weight: 300;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero p.hero-sub {
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(250, 250, 245, 0.82);
  max-width: 52ch;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute;
  right: var(--pad-x);
  top: 90px;
  z-index: 3;
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.6);
  line-height: 1.8;
}
.hero-meta span { color: var(--lime); }
.hero-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  border-top: 1px solid rgba(250, 250, 245, 0.14);
  background: rgba(31, 28, 26, 0.45);
  backdrop-filter: blur(8px);
}
.hero-bottom-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  color: var(--bone);
}
.hero-stat {
  padding: 22px var(--pad-x);
  border-right: 1px solid rgba(250, 250, 245, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat:last-child { border-right: 0; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--lime);
  line-height: 1;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero-stat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.75);
  line-height: 1.3;
}

/* ---------- Intro / Manifesto ---------- */
.manifesto { background: var(--bone); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.manifesto-grid .col-left { position: sticky; top: 120px; }
.manifesto h2 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.manifesto h2 em {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.manifesto-body p {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 1.1em;
}
.manifesto-body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 5.2em;
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--lime-deep);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.manifesto-signature {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(31, 28, 26, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.signature-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Services ---------- */
.services {
  background: var(--ink);
  color: var(--bone);
}
.services .eyebrow { color: var(--lime); }
.services .eyebrow::before { background: var(--lime); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 70px;
  align-items: end;
}
.services h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-top: 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.services h2 em {
  font-style: italic;
  color: var(--lime);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.services-intro {
  color: rgba(250, 250, 245, 0.7);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
}
.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.6fr auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid rgba(250, 250, 245, 0.1);
  cursor: pointer;
  transition: padding 0.3s ease, background 0.3s ease;
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid rgba(250, 250, 245, 0.1); }
.service-row:hover {
  padding-left: 12px;
  padding-right: 12px;
}
.service-row:hover .svc-title { color: var(--lime); }
.service-row:hover .svc-arrow { transform: translateX(8px); color: var(--lime); }
.svc-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(250, 250, 245, 0.4);
}
.svc-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: -0.015em;
  transition: color 0.3s ease;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.svc-desc {
  color: rgba(250, 250, 245, 0.72);
  font-size: 15.5px;
  line-height: 1.55;
}
.svc-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid rgba(250, 250, 245, 0.22);
  border-radius: 100px;
  color: rgba(250, 250, 245, 0.78);
}
.svc-arrow {
  font-family: var(--serif);
  font-size: 28px;
  color: rgba(250, 250, 245, 0.5);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ---------- Featured Project / Pull Quote ---------- */
.featured {
  background: var(--bone-2);
  overflow: hidden;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.featured-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(31, 28, 26, 0.4);
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.featured-content blockquote {
  font-family: var(--serif);
  font-weight: 320;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.featured-content blockquote em {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.featured-content blockquote .quote-mark {
  font-family: var(--serif);
  color: var(--lime-deep);
  font-size: 1.4em;
  line-height: 0.5;
  margin-right: 4px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 28, 26, 0.15);
}
.featured-meta-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.featured-meta-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bone); }
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.gallery h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.gallery h2 em {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 16px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(31, 28, 26, 0.2);
  color: var(--ink-2);
  transition: all 0.2s ease;
}
.filter-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter-btn.active {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease, opacity 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 28, 26, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 6px;
}
.gi-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--paper);
  font-weight: 350;
  line-height: 1.1;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
/* gallery item sizes (magazine layout) */
.gi-1 { grid-column: span 6; aspect-ratio: 4 / 3; }
.gi-2 { grid-column: span 3; aspect-ratio: 3 / 4; }
.gi-3 { grid-column: span 3; aspect-ratio: 3 / 4; }
.gi-4 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gi-5 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gi-6 { grid-column: span 4; aspect-ratio: 4 / 5; }
.gi-7 { grid-column: span 5; aspect-ratio: 5 / 4; }
.gi-8 { grid-column: span 7; aspect-ratio: 7 / 4; }

/* ---------- Process ---------- */
.process {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.12;
  pointer-events: none;
}
.process-header { max-width: 720px; margin: 0 auto 80px; text-align: center; position: relative; z-index: 1; }
.process-header .eyebrow { color: var(--lime); justify-content: center; }
.process-header .eyebrow::before { background: var(--lime); }
.process h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-top: 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.process h2 em {
  font-style: italic;
  color: var(--lime);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.step {
  padding: 36px 28px 36px 0;
  border-left: 1px solid rgba(250, 250, 245, 0.15);
  padding-left: 28px;
  position: relative;
}
.step:first-child { border-left: 1px solid rgba(250, 250, 245, 0.15); }
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--lime);
  margin-bottom: 18px;
}
.step-title {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 24px;
  color: var(--paper);
  margin-bottom: 12px;
  line-height: 1.15;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.step-desc {
  color: rgba(250, 250, 245, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Owners ---------- */
.owners { background: var(--bone); }
.owners-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.owners-image {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
}
.owners-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.04);
}
.owners-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--paper);
  padding: 18px 22px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(31,28,26,0.18);
}
.owners-badge-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.15;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.owners-badge-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}
.owners-badge .stars { color: var(--lime-deep); letter-spacing: 1px; font-size: 14px; }
.owners-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.owners-content h2 em {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.owners-content p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 1.1em;
}
.owners-values {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.value {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.value-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.4;
}
.value-text strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ---------- Service Area ---------- */
.areas {
  background: var(--bone-2);
  position: relative;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.areas h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.areas h2 em {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.areas p { color: var(--ink-2); margin-bottom: 28px; }
.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.area {
  padding: 22px 24px;
  border-top: 1px solid rgba(31, 28, 26, 0.15);
  border-right: 1px solid rgba(31, 28, 26, 0.15);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.25s ease;
}
.area:nth-child(3n) { border-right: none; }
.area:hover { background: var(--bone); }
.area-name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.area-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Reviews ---------- */
.reviews { background: var(--paper); }
.reviews-header { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.reviews-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-top: 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.reviews-header h2 em {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.reviews-header .eyebrow { justify-content: center; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  padding: 36px 32px;
  background: var(--bone);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 28, 26, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -20px rgba(31, 28, 26, 0.15); }
.review-stars { color: var(--lime-deep); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.review-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 350;
  margin-bottom: 24px;
  flex-grow: 1;
  letter-spacing: -0.005em;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.review-author {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 28, 26, 0.1);
}
.review-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.review-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bone-2); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.faq h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-top: 22px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.faq h2 em {
  font-style: italic;
  color: var(--moss);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.faq-side p { color: var(--ink-2); margin-top: 24px; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid rgba(31, 28, 26, 0.15);
}
.faq-item:first-child { border-top: 1px solid rgba(31, 28, 26, 0.15); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 400;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
  letter-spacing: -0.01em;
  line-height: 1.25;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.faq-q:hover { color: var(--moss); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--moss); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 0 28px;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.10;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-top: 22px;
  margin-bottom: 24px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.cta h2 em {
  font-style: italic;
  color: var(--lime);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.cta .eyebrow { color: var(--lime); }
.cta .eyebrow::before { background: var(--lime); }
.cta p { color: rgba(250, 250, 245, 0.85); font-size: 17px; line-height: 1.6; max-width: 50ch; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-card {
  background: rgba(250, 250, 245, 0.04);
  border: 1px solid rgba(184, 233, 134, 0.22);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.cta-form { display: grid; gap: 14px; }
.cta-form label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.7);
  margin-bottom: 4px;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(250, 250, 245, 0.94);
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(184, 233, 134, 0.25);
}
.cta-form .field { display: flex; flex-direction: column; }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form textarea { resize: vertical; min-height: 100px; font-family: var(--sans); }
.form-success {
  display: none;
  padding: 16px;
  background: rgba(184, 233, 134, 0.12);
  border: 1px solid rgba(184, 233, 134, 0.45);
  border-radius: var(--radius);
  color: var(--lime);
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  padding: 16px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.45);
  border-radius: var(--radius);
  color: #f8a0a8;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}
.form-error.show { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(250, 250, 245, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.footer-brand {
  font-family: var(--sans);
  font-size: 28px;
  color: var(--paper);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.footer-brand em {
  font-style: italic;
  color: var(--lime);
  font-weight: 700;
}
.footer-tagline { font-size: 14.5px; line-height: 1.6; max-width: 32ch; margin-bottom: 24px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14.5px; }
.footer a { color: rgba(250, 250, 245, 0.7); transition: color 0.2s; }
.footer a:hover { color: var(--lime); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.footer-contact-item small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.4);
  margin-bottom: 4px;
}
.footer-contact-item span {
  color: var(--paper);
  font-size: 15px;
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250, 250, 245, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(250, 250, 245, 0.5);
}
.footer-credit a { color: var(--lime); }
.footer-credit a:hover { text-decoration: underline; }

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-bottom-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid rgba(250, 250, 245, 0.12); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: 0; }
  .manifesto-grid,
  .services-header,
  .featured-grid,
  .owners-grid,
  .areas-grid,
  .faq-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .manifesto-grid .col-left { position: static; }
  .service-row {
    grid-template-columns: 60px 1fr auto;
    row-gap: 16px;
  }
  .service-row > .svc-num { grid-column: 1 / 2; grid-row: 1 / 2; }
  .service-row > div:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .service-row > div:nth-child(3) { grid-column: 2 / 4; grid-row: 2 / 3; }
  .service-row > .svc-arrow { grid-column: 3 / 4; grid-row: 1 / 2; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 0; }
  .step:nth-child(3) { border-top: 1px solid rgba(250, 250, 245, 0.15); padding-top: 36px; margin-top: 16px; }
  .step:nth-child(4) { border-top: 1px solid rgba(250, 250, 245, 0.15); padding-top: 36px; margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gi-1 { grid-column: span 12; aspect-ratio: 16 / 10; }
  .gi-2, .gi-3 { grid-column: span 6; aspect-ratio: 1 / 1; }
  .gi-4, .gi-5, .gi-6 { grid-column: span 6; aspect-ratio: 4 / 5; }
  .gi-6 { grid-column: span 12; aspect-ratio: 16 / 9; }
  .gi-7 { grid-column: span 6; aspect-ratio: 1 / 1; }
  .gi-8 { grid-column: span 6; aspect-ratio: 1 / 1; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .nav.mobile-open {
    display: flex;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--bone);
    flex-direction: column;
    gap: 0;
    padding: 16px var(--pad-x) 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    align-items: stretch;
    border-bottom: 1px solid rgba(31,28,26,0.08);
  }
  .nav.mobile-open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(31,28,26,0.08);
    font-size: 16px;
  }
  .nav.mobile-open .nav-cta {
    margin: 16px 0 0;
    justify-content: center;
  }
  .hero-meta { display: none; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero-inner { padding-bottom: 180px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .service-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 32px 0;
  }
  .service-row .svc-num { font-size: 11px; }
  .service-row .svc-title { font-size: 26px; }
  .service-row .svc-arrow { display: none; }
  .service-row > div:nth-child(3) { padding-top: 4px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .gallery-filters { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7, .gi-8 {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
  .process-steps { grid-template-columns: 1fr; }
  .step:nth-child(n) {
    border-top: 1px solid rgba(250, 250, 245, 0.15);
    border-left: none;
    padding-left: 0;
    padding-top: 32px;
    margin-top: 0;
  }
  .step:first-child { border-top: none; padding-top: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .owners-values { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr 1fr; }
  .area:nth-child(3n) { border-right: 1px solid rgba(31, 28, 26, 0.15); }
  .area:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-form .row { grid-template-columns: 1fr; }
  .topbar { font-size: 12px; padding: 8px 0; }
  .topbar-inner { justify-content: center; gap: 14px; }
  .topbar-left { display: none; }
  .featured-content blockquote { font-size: 28px; }
  .manifesto-body p:first-child::first-letter { font-size: 4.2em; }
  .gallery-item .gi-overlay { opacity: 1; }
  .cta-form input,
  .cta-form select,
  .cta-form textarea { font-size: 16px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .topbar-right { font-size: 11.5px; gap: 14px; }
  .container { padding-left: 28px; padding-right: 28px; }
  .hero h1 { font-size: 42px; }
  .hero-inner { padding: 60px 0 180px; }
  .area-list { grid-template-columns: 1fr; }
  .area:nth-child(n) { border-right: none; }
  .topbar a.areas-pill { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { flex: none; justify-content: center; }
}
