/* ============================================================
   AAPS — Design System
   High-End Project Management
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --page-bg:        #f4f1ea;
  --page-bg-2:      #ece8de;
  --page-bg-3:      #1c1a16;
  --ink:            #0d0d0d;
  --ink-soft:       #2a2823;
  --taupe:          #a89a7d;
  --taupe-2:        #bdb5a1;
  --taupe-soft:     #d8d1bf;
  --muted:          #6d685b;
  --line:           rgba(13,13,13,0.12);
  --line-soft:      rgba(13,13,13,0.06);
  --line-dark:      rgba(244,241,234,0.14);

  --font-display:   'Fraunces', 'GT Sectra', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;

  --max-w:          1320px;
  --gutter:         clamp(20px, 4vw, 56px);

  --radius:         0;
  --transition:     0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── TYPOGRAPHY ── */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--muted);
}
.eyebrow.gold { color: var(--taupe); }

.lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 64ch;
}

em.italic { font-style: italic; font-family: var(--font-display); }

/* ── LAYOUT ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.divider { height: 1px; background: var(--line); width: 100%; margin: 0; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  background: rgba(244,241,234,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--transition);
}
nav .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.nav-logo .mark {
  display: inline-block;
  vertical-align: baseline;
  font-style: italic;
  color: var(--taupe);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover { color: var(--taupe); }
.nav-links a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -8px; height: 1px;
  background: var(--taupe);
}
.nav-cta a {
  font-size: 0.86rem;
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease;
  letter-spacing: 0.02em;
}
.nav-cta a:hover { background: var(--ink); color: var(--page-bg); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  padding: 10px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.28s ease, opacity 0.18s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: var(--page-bg);
  border-top: 1px solid var(--line);
  padding: 24px var(--gutter) 32px;
  z-index: 99;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s;
  box-shadow: 0 24px 48px rgba(13,13,13,0.06);
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-links { list-style: none; }
.mobile-menu-links a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu-links a:active,
.mobile-menu-links a:hover { color: var(--taupe); }
.mobile-menu-cta {
  margin-top: 24px;
}
.mobile-menu-cta a {
  display: block;
  text-align: center;
  padding: 16px;
  border: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
body.menu-open { overflow: hidden; }

/* ── HERO ── */
#hero {
  padding-top: clamp(160px, 20vw, 260px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  isolation: isolate;
  color: #f4f1ea;
  background-color: #0d0d0d;
  background-image:
    linear-gradient(to right, rgba(13,13,13,0.78) 0%, rgba(13,13,13,0.55) 55%, rgba(13,13,13,0.35) 100%),
    url("img/echlin-6d858a30d9.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media (max-width: 720px) {
  #hero {
    padding-top: 130px;
    padding-bottom: 80px;
    background-image:
      linear-gradient(to bottom, rgba(13,13,13,0.78) 0%, rgba(13,13,13,0.72) 50%, rgba(13,13,13,0.78) 100%),
      url("img/echlin-6d858a30d9.jpg");
    background-position: center center;
  }
  .hero-h1 { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-actions .btn-ghost { padding-top: 14px; padding-bottom: 14px; border: 1px solid rgba(244, 241, 234, 0.45); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(244, 241, 234, 0.78);
  font-weight: 500;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: rgba(244, 241, 234, 0.55);
}
.hero-h1 {
  font-size: clamp(2.6rem, 7.2vw, 6.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  color: #f4f1ea;
}
.hero-h1 .it {
  font-style: italic;
  color: rgba(244, 241, 234, 0.72);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(244, 241, 234, 0.82);
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--page-bg);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-primary:hover { background: var(--taupe); border-color: var(--taupe); color: var(--ink); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.btn-ghost:hover { color: var(--taupe); border-bottom-color: var(--taupe); }
.btn-arrow {
  width: 14px; height: 14px;
  transition: transform 0.3s ease;
}
.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

#hero .btn-primary {
  background: #f4f1ea;
  color: #0d0d0d;
  border-color: #f4f1ea;
}
#hero .btn-primary:hover {
  background: var(--taupe);
  border-color: var(--taupe);
  color: #0d0d0d;
}
#hero .btn-ghost {
  color: #f4f1ea;
  border-bottom-color: rgba(244, 241, 234, 0.55);
}
#hero .btn-ghost:hover {
  color: var(--taupe);
  border-bottom-color: var(--taupe);
}

.hero-meta {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: 40px;
  border-top: 1px solid rgba(244, 241, 234, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.hero-meta-item .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(244, 241, 234, 0.55);
  margin-bottom: 10px;
}
.hero-meta-item .val {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.25;
  color: #f4f1ea;
}

/* ── INTRO STATEMENT ── */
#statement {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.statement-eyebrow { color: var(--taupe); }
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 30ch;
}
.statement-text em { font-style: italic; color: var(--taupe); }

/* ── SERVICES (NUMBERED ROWS) ── */
#services-overview {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--page-bg-2);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.services-header h2 { max-width: 14ch; }
.services-list { list-style: none; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.3fr 60px;
  gap: 40px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.3s ease;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { padding-left: 12px; }
.service-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--taupe);
  font-feature-settings: 'tnum';
  padding-top: 4px;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-desc {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.service-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 4px;
}
.service-arrow svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
.service-row:hover .service-arrow svg { transform: translate(4px, -4px); }

/* ── FEATURED PROJECT TEASER ── */
#feature-project {
  padding: clamp(100px, 12vw, 160px) 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-img {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(168,154,125,0.30), rgba(13,13,13,0.6)),
    radial-gradient(circle at 30% 40%, #cdbf9b 0%, #6d685b 60%, #1c1a16 100%);
  position: relative;
  overflow: hidden;
}
.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 18px, rgba(13,13,13,0.04) 18px 19px);
}
.feature-img-label {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  color: var(--page-bg);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.feature-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.feature-meta-item .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 6px;
}
.feature-meta-item .val {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}
.feature-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  margin-bottom: 24px;
  max-width: 16ch;
}
.feature-text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 52ch;
}

/* ── APPROACH (alternating) ── */
#approach-strip {
  background: var(--page-bg-3);
  color: var(--page-bg);
  padding: clamp(100px, 12vw, 160px) 0;
}
#approach-strip h2 { color: var(--page-bg); }
#approach-strip .eyebrow { color: var(--taupe); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.approach-list {
  list-style: none;
  display: grid;
  gap: 0;
}
.approach-list li {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: baseline;
}
.approach-list li:first-child { border-top: 1px solid var(--line-dark); }
.approach-list .num {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--taupe);
  font-feature-settings: 'tnum';
}
.approach-list h4 {
  color: var(--page-bg);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  margin-bottom: 8px;
}
.approach-list p {
  font-size: 0.96rem;
  color: var(--taupe-soft);
  line-height: 1.6;
  margin-top: 4px;
}

/* ── CTA STRIP ── */
#cta-strip {
  padding: clamp(100px, 12vw, 160px) 0;
  text-align: center;
}
#cta-strip .eyebrow { display: inline-block; margin-bottom: 24px; }
#cta-strip h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 18ch;
  margin: 0 auto 24px;
  line-height: 1.08;
}
#cta-strip h2 em { font-style: italic; color: var(--taupe); }
#cta-strip .lead { margin: 0 auto 44px; }
.cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
}

/* ── INFO TILES (used on inner pages) ── */
.info-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-tile {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.info-tile:last-child { border-right: none; }
.info-tile .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 12px;
}
.info-tile h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.info-tile p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding-top: clamp(140px, 18vw, 220px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  max-width: 18ch;
  margin-bottom: 24px;
}
.page-header .lead { margin-top: 12px; }
.page-header .eyebrow {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--taupe);
}
.page-header .eyebrow::before {
  content: '';
  width: 28px; height: 1px; background: var(--taupe);
}

/* ── PROSE SECTIONS ── */
.prose-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.prose-section:last-of-type { border-bottom: none; }
.prose-aside .eyebrow { color: var(--taupe); margin-bottom: 16px; display: block; }
.prose-aside h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  max-width: 16ch;
}
.prose-aside p {
  margin-top: 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 30ch;
}
.prose-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.prose-body p:last-child { margin-bottom: 0; }
.prose-body h4 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 1.25rem;
}
.prose-body ul, .prose-body ol {
  margin: 16px 0 22px 20px;
}
.prose-body li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.prose-body strong { color: var(--ink); font-weight: 600; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: clamp(60px, 8vw, 100px) 0;
}
.contact-aside h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 24px; max-width: 14ch; }
.contact-aside p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 32px; max-width: 36ch; }
.contact-detail { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-detail .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-detail .val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}
form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
form .field {
  display: block;
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
}
form .field:focus { border-bottom-color: var(--taupe); }
form .field.span2 { grid-column: span 2; }
form label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
form textarea.field { resize: vertical; min-height: 120px; }
form .form-actions { grid-column: span 2; margin-top: 16px; }
form .privacy-note {
  grid-column: span 2;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}

/* ── CASE STUDY PAGE ── */
.case-hero {
  padding-top: clamp(140px, 18vw, 220px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.case-hero .eyebrow { color: var(--taupe); margin-bottom: 24px; }
.case-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  max-width: 18ch;
  margin-bottom: 32px;
}
.case-hero .lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.case-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.case-meta-item .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 8px;
}
.case-meta-item .val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--ink);
}
.case-img-large {
  aspect-ratio: 21 / 10;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.10), rgba(13,13,13,0.40)),
    radial-gradient(circle at 40% 30%, #d8c7a3, #6d685b 70%, #1c1a16 100%);
  position: relative;
}
.case-img-large::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(13,13,13,0.04) 22px 23px);
}

/* ── FOOTER ── */
footer {
  background: var(--page-bg-3);
  color: var(--taupe-soft);
  padding: clamp(80px, 10vw, 120px) 0 40px;
}
footer .wrap {}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--page-bg);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-brand .footer-logo em {
  font-style: italic;
  color: var(--taupe);
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--taupe-soft);
  max-width: 36ch;
}
.footer-col h5 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--page-bg);
  margin-bottom: 18px;
  font-weight: 500;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--taupe-soft);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--page-bg); }

.footer-legal {
  margin-top: 36px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(216,209,191,0.62);
  max-width: 100ch;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.78rem;
  color: rgba(216,209,191,0.55);
}
.footer-bottom .footer-mini-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-bottom a { color: rgba(216,209,191,0.55); }
.footer-bottom a:hover { color: var(--page-bg); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .statement-grid,
  .feature-grid,
  .approach-grid,
  .prose-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-header { grid-template-columns: 1fr; gap: 32px; }
  .service-row {
    grid-template-columns: 50px 1fr 30px;
    gap: 20px;
  }
  .service-row .service-desc {
    grid-column: 2 / 3;
    grid-row: 2;
    margin-top: 12px;
  }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .case-meta { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 700px) {
  .info-tiles { grid-template-columns: 1fr; }
  .info-tile { border-right: none; border-bottom: 1px solid var(--line); }
  .info-tile:last-child { border-bottom: none; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; }
  form .form-grid { grid-template-columns: 1fr; }
  form .field.span2 { grid-column: span 1; }
  form .form-actions, form .privacy-note { grid-column: span 1; }
  .case-meta { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .nav-toggle { display: none !important; }
}

/* ============================================================
   IMAGERY
   ============================================================ */
.hero-photo {
  padding-top: 0;
  padding-bottom: 0;
}
.hero-photo img {
  width: 100%;
  display: block;
  height: clamp(360px, 60vh, 720px);
  object-fit: cover;
  object-position: center;
}

.feature-img,
.case-img-large {
  background: none;
  overflow: hidden;
  position: relative;
}
.feature-img > img,
.case-img-large > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.feature-img::after,
.case-img-large::after {
  z-index: 1;
  pointer-events: none;
}
.feature-img:has(> img)::after,
.case-img-large:has(> img)::after {
  background: linear-gradient(to top, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0) 38%);
}
.feature-img-label,
.case-img-large .feature-img-label {
  z-index: 2;
}

.image-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: clamp(40px, 6vw, 80px) 0;
}
.image-grid-2 figure { margin: 0; position: relative; overflow: hidden; }
.image-grid-2 img {
  width: 100%;
  height: clamp(280px, 40vw, 480px);
  object-fit: cover;
  display: block;
}
.image-grid-2 figcaption {
  margin-top: 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.about-image { margin: clamp(40px, 5vw, 60px) 0 0; }
.about-image img {
  width: 100%;
  height: clamp(320px, 50vw, 520px);
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .image-grid-2 { grid-template-columns: 1fr; gap: 18px; }
}

/* Contact form status message */
.form-status {
  margin-top: 4px;
  font-size: 0.95rem;
  line-height: 1.55;
  padding: 14px 16px;
  border-radius: 6px;
}
.form-status.is-ok {
  background: rgba(60, 80, 55, 0.08);
  border: 1px solid rgba(60, 80, 55, 0.25);
  color: #3c5037;
}
.form-status.is-error {
  background: rgba(140, 50, 40, 0.07);
  border: 1px solid rgba(140, 50, 40, 0.25);
  color: #8c3228;
}
