/* ============================================================
   ASRIDGE — SHARED STYLES
   ============================================================ */
:root {
  --paper:     #FAF7F1;
  --paper-2:   #F1ECE0;
  --paper-3:   #E9E2D3;
  --ink:       #14171C;
  --ink-2:     #1F2329;
  --bone:      #E9E0CD;
  --text:      #14171C;
  --text-mid:  #4A4945;
  --muted:     #7B756A;
  --terra:     #A24A2C;
  --terra-2:   #C26641;
  --terra-tint:#F2E5DD;
  --rule:      rgba(20,23,28,0.10);
  --rule-2:    rgba(20,23,28,0.18);
  --rule-dark: rgba(233,224,205,0.16);

  --gutter:    max(1.5rem, 5vw);
  --section-y: clamp(4.5rem, 8vw, 7rem);

  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Fraunces', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--terra); color: var(--paper); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); letter-spacing: -0.028em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.3rem; line-height: 1.2; }
h4 { font-size: 0.95rem; }

p { color: var(--text-mid); line-height: 1.8; }

em { font-style: italic; color: var(--terra); }

/* paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 0 0.06 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  color: var(--muted);
  font-size: 0.78rem;
  padding: 0.7rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--rule);
  letter-spacing: 0.02em;
}
.topbar a { color: var(--text-mid); transition: color 0.2s; }
.topbar a:hover { color: var(--terra); }
.topbar .left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar .right { color: var(--muted); }

/* ============================================================
   NAV
   ============================================================ */
nav.site {
  position: sticky; top: 0; z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem var(--gutter);
  background: rgba(250,247,241,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s, border-color 0.3s, background 0.3s;
}
nav.site.scrolled {
  padding-top: 0.9rem; padding-bottom: 0.9rem;
  border-color: var(--rule);
  background: rgba(250,247,241,0.97);
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand .mark { width: 26px; height: 26px; flex-shrink: 0; }
.brand .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1;
}
.brand .wordmark em { color: var(--terra); font-style: normal; }

.nav-list {
  display: flex; gap: 2.2rem; list-style: none;
  justify-content: center;
}
.nav-list a {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  padding: 0.2rem 0;
  position: relative;
}
.nav-list a:hover, .nav-list a:focus-visible { opacity: 1; color: var(--terra); }
.nav-list a.active {
  opacity: 1;
  color: var(--ink);
}
.nav-list a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--terra);
}

/* nav-end wraps hamburger + cta */
.nav-end {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.85rem; font-weight: 500;
  padding: 0.65rem 1.2rem;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.nav-cta:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-1px); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--rule-2);
  cursor: pointer;
  padding: 4px;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: var(--ink); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.92rem; font-weight: 500;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1),
              background 0.25s, color 0.25s, border-color 0.25s;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--terra); border-color: var(--terra);
  transform: translateY(-1px);
}
.btn-primary:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }

.btn-secondary {
  background: transparent; color: var(--ink);
  border-color: var(--rule-2);
}
.btn-secondary:hover {
  border-color: var(--ink); color: var(--ink); transform: translateY(-1px);
}

.btn-link {
  color: var(--terra);
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: gap 0.25s, color 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
  line-height: 1.4;
}
.btn-link:hover { gap: 0.6rem; color: #8B3E25; }

/* ============================================================
   PAGE HERO — small intro for inner pages
   ============================================================ */
.page-hero {
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 1.2rem;
}
.page-hero .lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 56ch;
}

/* ============================================================
   HERO — homepage, full-bleed image version
   ============================================================ */
.hero {
  padding: clamp(7rem, 14vw, 12rem) var(--gutter) clamp(5rem, 8vw, 7rem);
  position: relative;
  background-color: var(--ink);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,23,28,0.93) 0%,
    rgba(20,23,28,0.75) 55%,
    rgba(20,23,28,0.55) 100%
  );
  z-index: 0;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero .eyebrow { color: var(--terra-2); }
.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.6rem;
  color: var(--bone);
}
.hero h1 .accent { color: var(--terra-2); }
.hero-lede {
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(233,224,205,0.78);
  max-width: 56ch;
  margin: 0 0 2.4rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  margin-bottom: 4rem;
}
.hero .btn-secondary {
  border-color: rgba(233,224,205,0.35);
  color: var(--bone);
}
.hero .btn-secondary:hover {
  border-color: var(--bone);
  background: rgba(233,224,205,0.1);
}
.hero-strip {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem;
  align-items: baseline;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(233,224,205,0.15);
  font-size: 0.85rem;
  color: rgba(233,224,205,0.65);
  line-height: 1.5;
}
.hero-strip .label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(233,224,205,0.4);
  margin-right: 0.5rem;
}
.hero-strip span.who { white-space: nowrap; }
.hero-strip span.who::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--terra-2);
  border-radius: 50%;
  margin-right: 0.6rem;
  transform: translateY(-2px);
}

/* ============================================================
   STATS BAR — below hero
   ============================================================ */
.stats-bar {
  background: var(--ink-2);
  padding: 0 var(--gutter);
  border-top: 1px solid rgba(233,224,205,0.07);
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(233,224,205,0.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--terra-2);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.79rem;
  color: rgba(233,224,205,0.55);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* ============================================================
   EDITORIAL SECTION (sticky title left, body right)
   ============================================================ */
section.editorial {
  padding: var(--section-y) var(--gutter);
  border-top: 1px solid var(--rule);
}
section.editorial:first-of-type { border-top: none; }
.ed-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 18ch 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.ed-side { position: sticky; top: 6rem; }
.ed-side .eyebrow { margin-bottom: 0.8rem; }
.ed-side h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.1;
}
.ed-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  max-width: 62ch;
}
.ed-body p strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   SERVICES — clean numbered rows
   ============================================================ */
.services-list {
  margin-top: 1rem;
  border-top: 1px solid var(--rule);
}
.service-row {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.service-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terra);
  line-height: 1;
  padding-top: 0.3rem;
}
.service-row h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.service-row .summary {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 62ch;
  margin-bottom: 1rem;
}
.service-row .scope {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.5rem;
  margin-bottom: 1rem;
  max-width: 62ch;
}
.service-row .scope li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  display: flex; align-items: flex-start; gap: 0.55rem;
}
.service-row .scope li::before {
  content: '';
  width: 4px; height: 4px;
  margin-top: 0.7em;
  background: var(--terra);
  flex-shrink: 0;
}

/* ============================================================
   SUMMARY LIST — compact home services overview
   ============================================================ */
.summary-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1rem;
  border-top: 1px solid var(--rule);
}
.summary-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding-left 0.25s;
}
.summary-row:hover { padding-left: 0.4rem; }
.summary-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--terra);
}
.summary-row .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
}
.summary-row .name span {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-top: 0.25rem;
  line-height: 1.55;
  max-width: 60ch;
}
.summary-row .arrow {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--terra);
  transition: transform 0.25s;
}
.summary-row:hover .arrow { transform: translateX(4px); }

/* ============================================================
   CASE STUDY — with image panel split
   ============================================================ */
.case {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.case-with-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.case-media-slot {
  overflow: hidden;
  min-height: 440px;
  position: relative;
}
.case-media-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.case-media-slot:hover img { transform: scale(1.02); }
.case-media-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(241,236,224,0.12), transparent);
  pointer-events: none;
}
.case-with-media .case-inner {
  padding: var(--section-y) var(--gutter);
}
/* fallback for non-split case */
.case-inner { max-width: 1100px; margin: 0 auto; }
.case-with-media .case-inner { max-width: none; }

.case-head {
  display: grid;
  grid-template-columns: 18ch 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 3rem;
}
.case-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  max-width: 24ch;
}
.case-pull {
  border-left: 2px solid var(--terra);
  padding: 0.4rem 0 0.4rem 1.4rem;
  margin: 1.6rem 0 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--ink);
  max-width: 50ch;
}
.case-pull strong { font-style: normal; font-family: var(--serif); font-weight: 500; color: var(--terra); }
.case-body {
  display: grid;
  grid-template-columns: 18ch 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.case-body .meta {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.case-body .meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.case-body .meta dd { margin-bottom: 1rem; color: var(--ink); font-size: 0.88rem; }
.case-body .meta dd a { color: var(--text-mid); border-bottom: 1px solid var(--rule); transition: color 0.2s; }
.case-body .meta dd a:hover { color: var(--terra); }
.case-body .essay p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  max-width: 62ch;
}
.case-body .essay p strong { color: var(--ink); font-weight: 500; }
.case-body .essay .credits {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}
.case-body .essay .credits a {
  color: var(--text-mid);
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}
.case-body .essay .credits a:hover { color: var(--terra); }

.case-cta {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap;
}

/* ============================================================
   PHOTO GALLERY — experience page
   ============================================================ */
.photo-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
  height: 380px;
  margin-bottom: 0;
}
.photo-gallery-item {
  overflow: hidden;
  position: relative;
}
.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-gallery-item:hover img { transform: scale(1.04); }

/* ============================================================
   ABOUT — bio + creds
   ============================================================ */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(165deg, var(--paper-2), var(--paper-3));
  overflow: hidden;
  position: relative;
  border: 1px solid var(--rule);
}
.about-portrait .placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 0.5rem; padding: 2rem;
  text-align: center;
}
.about-portrait .name-mark { width: 38px; height: 38px; margin-bottom: 0.6rem; opacity: 0.95; }
.about-portrait .name-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.about-portrait .name-title {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-top: 0.4rem;
}
.about-portrait .name-foot {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.team-member {
  border-top: 1px solid var(--rule);
  padding-top: 1.2rem;
}
.team-member .name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.team-member .title {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.team-member .bio {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-mid);
}

.creds {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 1.4rem;
}
.cred {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
}
.cred.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* principles grid (about page) */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--rule);
}
.principle {
  padding: 1.6rem 1.4rem 1.6rem 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.principle:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 1.4rem; }
.principle .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--terra);
  margin-bottom: 0.5rem;
  display: block;
}
.principle h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.principle p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 1rem;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.6rem 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terra); }
.faq-item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--terra);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  margin-top: 0.9rem;
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 62ch;
}
.faq-item .answer p + p { margin-top: 0.6rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--paper-2); }
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  max-width: 18ch;
}
.contact-left .lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 44ch;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
}
.contact-row:first-of-type { border-top: 1px solid var(--rule); }
.contact-key {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
}
.contact-val { font-size: 1rem; color: var(--ink); line-height: 1.5; }
.contact-val a { transition: color 0.2s; }
.contact-val a:hover { color: var(--terra); }

.form {
  background: var(--paper);
  padding: 2rem;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.78rem; color: var(--text); font-weight: 500; letter-spacing: 0.02em; }
.field label .req { color: var(--terra); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-2);
  padding: 0.7rem 0.85rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  line-height: 1.4;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(162,74,44,0.10);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' fill='none' stroke='%2314171C' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 12px;
  padding-right: 2rem;
}

.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form.is-error .btn-primary { background: #6B2A1A; border-color: #6B2A1A; }
.form .submit-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-top: 0.5rem;
}
.form .submit-note { font-size: 0.78rem; color: var(--muted); line-height: 1.5; max-width: 28ch; }

.form-success {
  background: var(--terra-tint);
  padding: 2rem;
  border: 1px solid var(--terra);
  display: none;
  flex-direction: column; gap: 0.7rem;
}
.form-success[hidden] { display: none; }
.form-success.show { display: flex; }
.form-success h3 { color: var(--ink); font-size: 1.5rem; line-height: 1.15; }
.form-success p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }
.form-success a { color: var(--terra); border-bottom: 1px solid var(--terra); }

/* ============================================================
   COMMON REQUESTS GRID
   ============================================================ */
.common-requests {
  padding: var(--section-y) var(--gutter);
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.common-requests-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.common-requests-inner > .reveal {
  margin-bottom: 3rem;
}
.common-requests-inner > .reveal h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.common-requests-inner > .reveal p {
  color: var(--text-mid);
  max-width: 560px;
}
.requests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-2);
  border: 1px solid var(--rule-2);
}
.request-card {
  display: block;
  background: var(--paper);
  padding: 1.8rem 1.6rem 1.6rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0;
}
.request-card:hover {
  background: var(--terra-tint);
  box-shadow: inset 3px 0 0 var(--terra);
}
.request-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.request-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.request-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .requests-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .requests-grid { grid-template-columns: 1fr; }
  .request-card { padding: 1.4rem 1.2rem; }
}

/* ============================================================
   END-OF-PAGE CTA STRIP
   ============================================================ */
.cta-strip {
  padding: var(--section-y) var(--gutter);
  border-top: 1px solid var(--rule);
  text-align: center;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.cta-strip .eyebrow { margin-bottom: 1rem; }
.cta-strip h2 {
  max-width: 22ch;
  margin: 0 auto 1.4rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.cta-strip p {
  max-width: 50ch;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
  line-height: 1.7;
}
.cta-strip .actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--bone);
  padding: 4rem var(--gutter) 1.6rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule-dark);
}
.footer-brand { display: flex; flex-direction: column; gap: 1.1rem; max-width: 32ch; }
.footer-brand .brand .wordmark { color: var(--bone); }
.footer-brand .brand .wordmark em { color: var(--terra-2); }
.footer-brand p { font-size: 0.9rem; color: rgba(233,224,205,0.6); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-2);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; color: rgba(233,224,205,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--terra-2); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 1.6rem;
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: center;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(233,224,205,0.45); letter-spacing: 0.02em; }
.footer-legal { display: flex; gap: 1.2rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(233,224,205,0.55); transition: color 0.2s; }
.footer-legal a:hover { color: var(--terra-2); }

/* ============================================================
   PHOTO SLOT
   ============================================================ */
[data-photo-slot] > img.photo-injected {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
[data-photo-slot]:has(img.photo-injected) > .placeholder { display: none; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   THREE PILLARS — Design / Supervision / Project Management
   ============================================================ */
.pillars {
  padding: var(--section-y) var(--gutter);
  background: var(--ink);
  border-top: 1px solid rgba(233,224,205,0.08);
}
.pillars-header {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.pillars-header .eyebrow { color: var(--terra-2); }
.pillars-header h2 {
  color: var(--bone);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 28ch;
}
.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.pillar-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pillar-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transition: opacity 0.5s ease;
  display: block;
}
.pillar-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,23,28,0.85) 0%, rgba(20,23,28,0.35) 60%, rgba(20,23,28,0.2) 100%);
}
.pillar-card:hover .pillar-card-media img { opacity: 0.38; }
.pillar-card-body {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 400px;
  justify-content: flex-end;
}
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--terra-2);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: block;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--bone);
  line-height: 1.1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.pillar-card p {
  font-size: 0.92rem;
  color: rgba(233,224,205,0.65);
  line-height: 1.65;
  max-width: 34ch;
  margin-bottom: 1.2rem;
}
.pillar-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}
.pillar-services li {
  font-size: 0.8rem;
  color: rgba(233,224,205,0.5);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pillar-services li::before {
  content: '';
  width: 14px; height: 1px;
  background: var(--terra-2);
  flex-shrink: 0;
}
.pillar-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--terra-2);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(194,102,65,0.4);
  padding-bottom: 2px;
  transition: gap 0.25s, color 0.2s;
  align-self: flex-start;
}
.pillar-link:hover { gap: 0.65rem; color: #D98060; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-section {
  padding: var(--section-y) var(--gutter);
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
}
.serve-inner { max-width: 1100px; margin: 0 auto; }
.serve-header {
  display: grid;
  grid-template-columns: 18ch 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 2.5rem;
  align-items: end;
}
.serve-header h2 { line-height: 1.1; }
.serve-header p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 52ch;
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.serve-card {
  padding: 2.2rem 2rem 2.2rem 0;
  border-right: 1px solid var(--rule);
}
.serve-card:last-child { border-right: none; padding-right: 0; }
.serve-card:not(:first-child) { padding-left: 2rem; }
.serve-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--terra);
  display: block;
  margin-bottom: 0.8rem;
}
.serve-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.serve-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ============================================================
   IMG BAND — full-width cinematic photo strip
   ============================================================ */
.img-band {
  position: relative;
  height: clamp(260px, 35vw, 460px);
  overflow: hidden;
  background: var(--ink);
}
.img-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.img-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,23,28,0.7) 0%, rgba(20,23,28,0.25) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem var(--gutter);
}
.img-band-caption {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.img-band-caption h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--bone);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 28ch;
  margin-bottom: 0.4rem;
}
.img-band-caption p {
  font-size: 0.88rem;
  color: rgba(233,224,205,0.6);
  letter-spacing: 0.03em;
}

/* ============================================================
   SERVICE PILLAR HEADER (groups on services page)
   ============================================================ */
.service-pillar-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.8rem 0 0.8rem;
  border-top: 2px solid var(--terra);
  margin-top: 3rem;
}
.service-pillar-header:first-of-type { margin-top: 0; }
.service-pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--terra);
  line-height: 1;
  letter-spacing: -0.02em;
}
.service-pillar-header h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
}
.service-pillar-header p {
  grid-column: 2;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 60ch;
  margin-top: 0.3rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 2px; }
  .pillar-card { min-height: 340px; }
  .pillar-card-body { min-height: 340px; }
  .serve-header { grid-template-columns: 1fr; gap: 1rem; }
  .serve-grid { grid-template-columns: 1fr; }
  .serve-card { border-right: none; padding: 1.6rem 0; border-bottom: 1px solid var(--rule); }
  .serve-card:last-child { border-bottom: none; }
  .serve-card:not(:first-child) { padding-left: 0; }
  .service-pillar-header { grid-template-columns: auto 1fr; }
  .ed-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ed-side { position: static; }
  .case-head { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .case-body { grid-template-columns: 1fr; gap: 2rem; }
  .case-body .meta { border-top: none; padding-top: 0; }
  .case-with-media { grid-template-columns: 1fr; }
  .case-media-slot { min-height: 300px; position: relative; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-row .scope { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .principle, .principle:nth-child(2n) { border-right: none; padding-left: 0; padding-right: 0; }
  .summary-row { grid-template-columns: 3rem 1fr auto; }
  .stats-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .photo-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 420px; }
  .photo-gallery-item:first-child { grid-row: span 2; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }

  /* Mobile nav with hamburger */
  nav.site {
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--terra);
    padding: 0