/* ---------- Tokens ---------- */
:root {
  --bg: #FAF8F5;
  --bg-2: #F2EEE7;
  --bg-3: #E8E2D6;
  --ink: #1A1A1A;
  --ink-2: #3B3B38;
  --ink-3: #6B6B66;
  --ink-4: #9A9A93;
  --line: #DCD6C8;
  --line-soft: #E9E3D5;
  --forest: #2C3E33;
  --forest-deep: #1F2C24;
  --forest-soft: #3E544A;
  --sage: #8A9A82;
  --sage-soft: #B6C0AE;
  --moss: #6F7E68;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --header-h: 84px;
  --header-h-sm: 64px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-lg { padding: 160px 0; }

@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .section-lg { padding: 96px 0; }
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}
.eyebrow-light { color: var(--sage-soft); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144;
}
.h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 350;
  font-variation-settings: "opsz" 144;
}
.h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 400;
  font-variation-settings: "opsz" 96;
}
.h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.h4 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}
.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  text-wrap: pretty;
  max-width: 60ch;
}
.body { font-size: 16px; line-height: 1.7; color: var(--ink-2); }
.muted { color: var(--ink-3); }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 220ms cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  text-decoration: none;
}
.btn .arrow { transition: transform 240ms cubic-bezier(.2,.7,.2,1); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--forest);
  color: var(--bg);
}
.btn-primary:hover { background: var(--forest-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-ghost-light {
  background: transparent;
  color: var(--bg);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-light {
  background: var(--bg);
  color: var(--ink);
}
.btn-light:hover { background: #fff; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 200ms;
}
.link-arrow:hover { border-color: var(--forest); }
.link-arrow .arrow { transition: transform 240ms cubic-bezier(.2,.7,.2,1); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background 320ms ease, height 280ms ease, border-color 320ms ease, color 320ms ease;
  border-bottom: 1px solid transparent;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.is-scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  height: var(--header-h-sm);
  border-bottom-color: var(--line-soft);
}
.header.is-overlay { color: var(--bg); }
.header.is-overlay:not(.is-scrolled) .nav a { color: rgba(255,255,255,0.86); }
.header.is-overlay:not(.is-scrolled) .nav a:hover { color: #fff; }
.header.is-overlay:not(.is-scrolled) .logo { color: #fff; }
.header.is-overlay:not(.is-scrolled) .header-cta { color: #fff; border-color: rgba(255,255,255,0.5); }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  transition: color 220ms;
}
.logo-mark {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color 200ms;
  letter-spacing: 0.005em;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--forest);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  transition: all 200ms;
}
.header-cta:hover { background: var(--ink); color: var(--bg); }
.header.is-overlay:not(.is-scrolled) .header-cta:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
}
.menu-btn span {
  width: 22px; height: 1.5px;
  background: currentColor;
  position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor;
}
.menu-btn span::before { top: -7px; }
.menu-btn span::after { top: 7px; }

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-btn { display: inline-flex; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 200;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu .top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu nav { margin-top: 60px; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: max(100vh, 720px);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 80px;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.65) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--sage-soft); border-radius: 50%;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8.4vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 14ch;
  font-variation-settings: "opsz" 144;
}
.hero-sub {
  margin-top: 32px;
  max-width: 56ch;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}
.hero-ctas {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  position: absolute;
  bottom: 36px;
  right: 32px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: right;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .hero-meta { display: none; }
  .hero { padding-bottom: 56px; }
}

/* ---------- Page hero (smaller, for non-home) ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + 96px);
  padding-bottom: 96px;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .eyebrow { margin-bottom: 24px; display: inline-block; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 16ch;
  font-variation-settings: "opsz" 144;
}
.page-hero .lede { margin-top: 28px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item .num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.trust-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 10px;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .right { text-align: left; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Services overview ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.svc-card {
  background: var(--bg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  transition: background 260ms ease, color 260ms ease;
  cursor: pointer;
  overflow: hidden;
}
.svc-card:nth-child(1), .svc-card:nth-child(2) { grid-column: span 6; }
.svc-card:nth-child(3), .svc-card:nth-child(4), .svc-card:nth-child(5) { grid-column: span 4; }
.svc-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
}
.svc-card h3 {
  margin-top: auto;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 12ch;
}
.svc-card .desc {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 38ch;
}
.svc-card .arrow-wrap {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
}
.svc-card:hover { background: var(--forest); color: var(--bg); }
.svc-card:hover .num, .svc-card:hover .desc { color: rgba(255,255,255,0.7); }
.svc-card:hover .arrow-wrap { color: var(--sage-soft); }
.svc-card:hover .arrow-wrap .arrow { transform: translateX(6px); }

@media (max-width: 900px) {
  .svc-card { grid-column: span 12 !important; min-height: 280px; padding: 32px 24px 28px; }
  .svc-card h3 { font-size: 26px; }
}

/* ---------- Featured projects ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.feat-card { position: relative; overflow: hidden; cursor: pointer; }
.feat-card:nth-child(1) { grid-row: span 2; }
.feat-card .img {
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.feat-card:nth-child(1) .img { aspect-ratio: 4/5.2; height: 100%; }
.feat-card:nth-child(2) .img, .feat-card:nth-child(3) .img { aspect-ratio: 5/3.5; }
.feat-card:hover .img { transform: scale(1.04); }
.feat-card .meta {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  color: #fff;
  z-index: 2;
}
.feat-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.feat-card .meta .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.feat-card .meta .ttl {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (max-width: 800px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card:nth-child(1) { grid-row: auto; }
  .feat-card .img, .feat-card:nth-child(1) .img { aspect-ratio: 4/3 !important; height: auto; }
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.process-step {
  padding: 48px 32px 56px;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step .num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--forest);
  letter-spacing: 0.04em;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 80px;
  line-height: 1.1;
}
.process-step p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 32px 0; }
  .process-step h3 { margin-top: 24px; }
}

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--forest);
  color: var(--bg);
  padding: 140px 0;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
  font-variation-settings: "opsz" 96;
  text-wrap: balance;
}
.testimonial blockquote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 1em;
  color: var(--sage-soft);
  margin-right: 4px;
}
.testimonial cite {
  display: block;
  margin-top: 36px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-soft);
}
.testimonial cite .name { color: var(--bg); }

/* ---------- About teaser ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser .img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
@media (max-width: 800px) {
  .about-teaser { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Service area ---------- */
.svc-area {
  background: var(--bg-2);
  padding: 100px 0;
  border-top: 1px solid var(--line-soft);
}
.svc-area-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.town-pill {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-2);
}
.town-pill.primary { background: var(--forest); border-color: var(--forest); color: var(--bg); }
@media (max-width: 800px) {
  .svc-area-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 16ch;
  font-variation-settings: "opsz" 144;
}
.final-cta .lede { color: rgba(255,255,255,0.72); margin-top: 28px; max-width: 50ch; }
.final-cta .ctas { margin-top: 48px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.72);
  padding: 100px 0 36px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: rgba(255,255,255,0.85); transition: color 200ms; }
.footer-grid a:hover { color: #fff; }
.footer .brand-blurb {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: #fff;
  font-weight: 300;
  letter-spacing: -0.015em;
  max-width: 28ch;
  margin-top: 16px;
}
.footer .ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
}
.footer .ig:hover { background: rgba(255,255,255,0.06); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rd, 0ms);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- Services page ---------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0;
  border-bottom: 1px solid var(--line-soft);
}
.svc-detail:nth-child(even) .svc-detail-img { order: 2; }
.svc-detail-img {
  aspect-ratio: 5/6;
  background-size: cover;
  background-position: center;
}
.svc-detail h2 { margin-top: 16px; }
.svc-detail .meta-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.meta-grid .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.meta-grid .val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
}
.svc-detail ul.bullets {
  margin-top: 24px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-detail ul.bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.svc-detail ul.bullets li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--sage);
  margin-top: 9px;
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .svc-detail { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; }
  .svc-detail:nth-child(even) .svc-detail-img { order: 0; }
}

/* ---------- Portfolio ---------- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 48px;
}
.filter-pill {
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all 200ms;
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.proj-card { cursor: pointer; }
.proj-card .img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.proj-card .img::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(28,30,28,0);
  transition: background 300ms;
}
.proj-card:hover .img::after { background: rgba(28,30,28,0.12); }
.proj-card .info { margin-top: 18px; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.proj-card .info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.proj-card .info .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.proj-card .info .tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--forest);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Lightbox / Case study ---------- */
.lb-overlay {
  position: fixed; inset: 0;
  background: rgba(20, 22, 20, 0.85);
  z-index: 300;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms;
}
.lb-overlay.is-open { opacity: 1; pointer-events: auto; }
.lb-inner {
  background: var(--bg);
  width: 100%;
  max-width: 1200px;
  margin: 5vh auto;
  border-radius: 4px;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.lb-overlay.is-open .lb-inner { transform: translateY(0); }
.lb-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--bg);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 310;
  font-size: 22px;
}
.lb-hero {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.lb-body { padding: 64px 56px; }
.lb-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 32px 0 48px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lb-meta .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px;
}
.lb-meta .val { font-family: var(--serif); font-size: 18px; }
.lb-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.lb-gallery .gimg {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.lb-gallery .gimg.full { grid-column: span 2; aspect-ratio: 16/9; }
@media (max-width: 720px) {
  .lb-inner { margin: 0; border-radius: 0; }
  .lb-body { padding: 36px 24px; }
  .lb-meta { grid-template-columns: repeat(2, 1fr); }
  .lb-gallery { grid-template-columns: 1fr; }
  .lb-gallery .gimg.full { grid-column: span 1; }
}

/* ---------- About ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.about-story .left { position: sticky; top: 120px; align-self: start; }
.about-story h2 { font-size: clamp(36px, 4vw, 56px); }
.about-story p { font-size: 17px; line-height: 1.75; color: var(--ink-2); margin: 0 0 20px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.team-card .img {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}
.team-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.team-card .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 6px;
  margin-bottom: 14px;
}
.team-card .bio { font-size: 14px; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 800px) {
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .about-story .left { position: static; }
  .team-grid { grid-template-columns: 1fr; gap: 36px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.value {
  padding: 48px 32px;
  border-right: 1px solid var(--line-soft);
}
.value:last-child { border-right: none; }
.value .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-3); }
.value h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 400; margin-top: 24px;
  letter-spacing: -0.02em; line-height: 1.15;
}
.value p { margin-top: 14px; font-size: 15px; color: var(--ink-2); line-height: 1.65; }
@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .value:last-child { border-bottom: none; }
}

.creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cred {
  padding: 32px 24px;
  border-right: 1px solid var(--line-soft);
}
.cred:last-child { border-right: none; }
.cred .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.cred .val { font-family: var(--serif); font-size: 22px; margin-top: 10px; letter-spacing: -0.01em; }
@media (max-width: 800px) {
  .creds { grid-template-columns: 1fr 1fr; }
  .cred { border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .cred:nth-child(even) { border-right: none; }
}

/* ---------- Process page ---------- */
.process-vert {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line-soft);
}
.process-vert .num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
  color: var(--forest);
  font-variation-settings: "opsz" 144;
}
.process-vert h2 { margin-bottom: 20px; }
.process-vert .lede { font-size: 18px; }
.process-vert ul {
  margin-top: 28px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.process-vert ul li {
  display: flex; gap: 12px; font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.process-vert ul li::before {
  content: "→"; color: var(--sage); font-family: var(--mono);
}
@media (max-width: 800px) {
  .process-vert { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .process-vert ul { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.form-group { display: flex; flex-direction: column; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 220ms;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-bottom-color: var(--forest);
}
.form-group textarea { resize: vertical; min-height: 120px; padding-top: 14px; }
.form-group.error input, .form-group.error select, .form-group.error textarea {
  border-bottom-color: #b3503a;
}
.form-group .err {
  font-size: 12px;
  color: #b3503a;
  margin-top: 6px;
}
.contact-info {
  background: var(--forest);
  color: var(--bg);
  padding: 48px 40px;
  border-radius: 2px;
  align-self: start;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.contact-info .row { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.contact-info .row:last-child { border-bottom: none; }
.contact-info .row .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 8px;
}
.contact-info .row .val { font-size: 16px; line-height: 1.5; }
.contact-info .row a { color: #fff; }
.map-placeholder {
  margin-top: 48px;
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, rgba(44,62,51,0.06), rgba(138,154,130,0.12)),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(44,62,51,0.06) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(44,62,51,0.06) 24px 25px),
    var(--bg-2);
  position: relative;
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder .pin {
  width: 16px; height: 16px;
  background: var(--forest);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 6px rgba(44,62,51,0.15);
}
.map-placeholder .pin::before {
  content: ""; position: absolute;
  inset: -6px;
  border: 1px solid var(--forest);
  border-radius: 50%;
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.map-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg);
  padding: 6px 10px;
}
.thanks {
  text-align: center;
  padding: 96px 40px;
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.thanks .check {
  width: 64px; height: 64px;
  background: var(--forest);
  color: var(--bg);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
