@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --indigo:#2D2B6B; --copper:#9F6033; --garnet:#7B1113; --gold:#C5A059;
  --navy:#1A1D3A; --night:#0E1028; --white:#FFFFFF;
  --stone:#E8E4DD; --pale-indigo:#E8E6EE; --vellum:#F9F7F2;
  --fg1:#1A1D3A; --fg2:#4A4A5A; --fg3:#6A6A7A; --fg4:#A39B8E;
  --fg-on-dark-1:#E8E4DD; --fg-on-dark-2:rgba(232,228,221,0.7); --fg-on-dark-3:rgba(232,228,221,0.4);
  --rule:rgba(45,43,107,0.12); --rule-soft:rgba(45,43,107,0.06); --rule-dark:rgba(232,228,221,0.12);
  --font-serif:'Lora',Georgia,'Times New Roman',serif;
  --font-display:'Playfair Display','Lora',Georgia,serif;
  --font-sans:'Inter','Calibri','Helvetica Neue',Arial,sans-serif;
  --ease-out:cubic-bezier(.22,.61,.36,1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg1);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--copper); color: var(--vellum); }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
section { position: relative; }

/* ─── NAV (dark by default) ─── */
.nav {
  position: fixed; top:0; left:0; right:0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
  background: rgba(14,16,40,0);
  transition: all 320ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,16,40,0.88);
  border-bottom-color: rgba(232,228,221,0.08);
  padding: 16px 48px;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.nav-mark { display: flex; align-items: center; opacity: 0; transition: opacity 600ms var(--ease-out); }
.nav.scrolled .nav-mark { opacity: 1; }
.nav-mark-svg { height: 32px; width: auto; display: block; }
.nav-links {
  display: flex; gap: 38px; align-items: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  color: rgba(232,228,221,0.7);
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease-out);
}
.nav-links a:hover { color: var(--stone); }
.nav-links a::after {
  content:''; position:absolute; left:0; bottom:0; height:1px; width: 0;
  background: var(--copper); transition: width 320ms var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); font-weight: 600;
  padding: 11px 20px;
  border: 1px solid rgba(232,228,221,0.25);
  border-radius: 2px;
  transition: all 200ms var(--ease-out);
}
.nav-cta:hover { background: var(--copper); color: var(--vellum); border-color: var(--copper); }

@media (max-width: 820px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }
}

/* ─── HERO (Dark Navy executive) ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  background: var(--navy);
  color: var(--fg-on-dark-1);
  overflow: hidden;
}
.hero::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(159,96,51,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(45,43,107,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(232,228,221,0.04) 1px, transparent 1px);
  background-size: 100px 100%;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  align-items: center;
  padding: 160px 0 120px;
}
.hero-text { max-width: 700px; }

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 900ms var(--ease-out) 1900ms forwards;
}
.hero-eyebrow::before {
  content:''; width: 32px; height: 1px; background: var(--copper);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--stone);
  margin: 0 0 36px;
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-title .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1100ms var(--ease-out) forwards;
}
.hero-title .word.it > span { font-style: italic; color: var(--copper); }

.hero-title .w1 > span { animation-delay: 1500ms; }
.hero-title .w2 > span { animation-delay: 1620ms; }
.hero-title .w3 > span { animation-delay: 1740ms; }
.hero-title .w4 > span { animation-delay: 1860ms; }
.hero-title .w5 > span { animation-delay: 1980ms; }

.hero-sub {
  font-size: 19px; line-height: 1.65;
  color: var(--fg-on-dark-2);
  max-width: 560px;
  margin: 0 0 48px;
  opacity: 0;
  animation: fadeUp 900ms var(--ease-out) 2300ms forwards;
  font-weight: 300;
}
.hero-sub strong { color: var(--stone); font-weight: 500; }

.hero-cta {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 900ms var(--ease-out) 2500ms forwards;
}
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 240ms var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--copper); color: var(--vellum); }
.btn-primary:hover { background: #b56e3b; }
.btn-ghost { color: var(--stone); border-color: rgba(232,228,221,0.25); }
.btn-ghost:hover { border-color: var(--stone); background: rgba(232,228,221,0.06); }
.btn .arrow { width: 16px; height: 1px; background: currentColor; position: relative; transition: width 240ms var(--ease-out); }
.btn .arrow::after { content:''; position:absolute; right:-1px; top:-3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .arrow { width: 26px; }

.hero-meta {
  position: absolute; bottom: 42px; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: end;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-on-dark-3);
  opacity: 0;
  animation: fadeUp 900ms var(--ease-out) 2700ms forwards;
  padding: 0 40px;
  font-weight: 500;
}
.hero-meta .l { display: flex; gap: 36px; }
.hero-meta .scroll-hint { display: flex; align-items: center; gap: 14px; }
.scroll-line {
  width: 1px; height: 44px; background: rgba(232,228,221,0.18); position: relative; overflow: hidden;
}
.scroll-line::after {
  content:''; position:absolute; left:0; right:0; top: -50%; height: 50%;
  background: var(--copper);
  animation: scrollPulse 2200ms var(--ease-out) infinite;
}

/* Hero mark — official Depth Group lockup, animated, BIG */
.hero-mark {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 0 40px;
  display: grid;
  place-items: center;
}
.hero-mark-svg { width: 100%; height: auto; overflow: visible; display: block; }

.hero-bar {
  transform-origin: left center;
  transform: scaleX(0);
  animation: barDraw 900ms var(--ease-out) forwards;
}
.hero-bar.b1 { animation-delay: 200ms; }
.hero-bar.b2 { animation-delay: 360ms; }
.hero-bar.b3 { animation-delay: 520ms; }
.hero-bar.b4 { animation-delay: 680ms; }
@keyframes barDraw { to { transform: scaleX(1); } }

.dg-line {
  opacity: 0;
  transform: translateY(14px);
  animation: dgRise 900ms var(--ease-out) forwards;
}
.dg-l1 { animation-delay: 1100ms; }
.dg-l2 { animation-delay: 1260ms; }
.dg-l3 { animation-delay: 1420ms; }
@keyframes dgRise { to { opacity: 1; transform: translateY(0); } }

.hero-mark-text {
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--fg-on-dark-3);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 900ms var(--ease-out) 2100ms forwards;
  text-transform: uppercase;
  text-align: center;
}

@keyframes rise { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0% { top: -50%; } 100% { top: 100%; } }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 140px 0 100px; }
  .hero-mark { max-width: 380px; }
  .hero-meta { position: static; margin-top: 60px; flex-direction: column; gap: 20px; align-items: flex-start; padding: 0; }
}

/* ─── SECTION BASE ─── */
.section {
  padding: 160px 0;
  border-top: 1px solid var(--rule);
  background: var(--vellum);
}
.section.dark { background: var(--navy); color: var(--fg-on-dark-1); border-top-color: rgba(232,228,221,0.06); }
.section.darker { background: var(--night); color: var(--fg-on-dark-1); border-top-color: rgba(232,228,221,0.06); }
.section.stone { background: var(--stone); }
.section.pale { background: var(--pale-indigo); }

.section-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 96px;
  align-items: start;
}
.section-num {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.28em;
  color: var(--copper);
  font-weight: 500;
  text-transform: uppercase;
  display: flex; align-items: baseline; gap: 18px;
  font-style: italic;
}
.section-num .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--copper);
}
.section-num .lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  font-style: normal;
  padding-top: 12px;
}
.section.dark .section-num .num,
.section.dark .section-num .lbl,
.section.darker .section-num .num,
.section.darker .section-num .lbl { color: var(--copper); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 500;
  color: var(--indigo);
  margin: 0 0 28px;
  max-width: 860px;
}
.section.dark .section-title,
.section.darker .section-title { color: var(--stone); }
.section-title em { font-style: italic; color: var(--copper); }

.section-lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg2);
  max-width: 720px;
  font-weight: 300;
}
.section.dark .section-lede,
.section.darker .section-lede { color: var(--fg-on-dark-2); }

@media (max-width: 880px) {
  .section { padding: 110px 0; }
  .section-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .section-num .num { font-size: 48px; }
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--navy);
  color: var(--fg-on-dark-1);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232,228,221,0.06);
}
.manifesto::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, rgba(159,96,51,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(45,43,107,0.5) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto-inner {
  position: relative;
  padding: 180px 40px;
  max-width: 1040px;
  margin: 0 auto;
}
.manifesto-eyebrow {
  font-size: 12px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--copper); font-weight: 600;
  margin-bottom: 44px;
  display: flex; align-items: center; gap: 16px;
}
.manifesto-eyebrow::before { content:''; width: 40px; height: 1px; background: var(--copper); }

.manifesto-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.38;
  font-weight: 400;
  color: var(--stone);
  margin: 0;
  letter-spacing: -0.008em;
}
.manifesto-text strong { color: var(--copper); font-weight: 500; font-style: italic; }
.manifesto-text .quiet { color: var(--fg-on-dark-2); }

.manifesto-sig {
  margin-top: 64px;
  display: flex; align-items: center; gap: 22px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg-on-dark-3);
  font-weight: 500;
}
.manifesto-sig .line { width: 80px; height: 1px; background: rgba(232,228,221,0.2); }

/* ─── PILLARS ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,228,221,0.1);
  border: 1px solid rgba(232,228,221,0.1);
}
.section:not(.dark):not(.darker) .pillars { background: var(--rule); border-color: var(--rule); }

.pillar {
  background: var(--navy);
  padding: 52px 36px 60px;
  position: relative;
  transition: background 240ms var(--ease-out);
}
.section:not(.dark):not(.darker) .pillar { background: var(--vellum); }
.pillar:hover { background: #1f2247; }
.section:not(.dark):not(.darker) .pillar:hover { background: #fff; }

.pillar-num {
  font-family: var(--font-display);
  color: var(--copper);
  font-size: 16px;
  letter-spacing: 0.28em;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 32px;
}
.pillar-bar {
  width: 36px; height: 3px;
  background: var(--copper);
  margin-bottom: 26px;
  transition: width 320ms var(--ease-out);
}
.pillar:hover .pillar-bar { width: 64px; }

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--stone);
  margin: 0 0 16px;
  letter-spacing: -0.012em;
  line-height: 1.18;
}
.section:not(.dark):not(.darker) .pillar h3 { color: var(--indigo); }
.pillar p { font-size: 15px; line-height: 1.7; color: var(--fg-on-dark-2); margin: 0; }
.section:not(.dark):not(.darker) .pillar p { color: var(--fg2); }

@media (max-width: 880px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* ─── PRACTICES ─── */
.practices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(232,228,221,0.1);
  border: 1px solid rgba(232,228,221,0.1);
  margin-top: 40px;
}
.practice {
  background: var(--navy);
  padding: 64px 56px 72px;
  position: relative;
  transition: background 240ms var(--ease-out);
}
.practice:hover { background: #1f2247; }

.practice .mark {
  height: 96px;
  display: flex; align-items: center;
  margin-bottom: 44px;
}
.practice .mark img { height: 100%; width: auto; }

/* Render CRAFT/CRAFHT marks as inline SVG below for proper sizing on dark */
.practice .mark-svg { height: 100%; width: auto; }

.practice-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--copper);
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.practice.crafht .practice-tagline { color: #c75357; }

.practice-descriptor {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-on-dark-3); font-weight: 600;
  margin-bottom: 28px;
}

.practice-body {
  font-size: 16px; line-height: 1.7; color: var(--fg-on-dark-2);
  margin: 0 0 32px;
  max-width: 480px;
  font-weight: 300;
}

.practice-list {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: grid; gap: 0;
}
.practice-list li {
  font-size: 14px; color: var(--stone);
  display: flex; align-items: flex-start; gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(232,228,221,0.1);
  font-weight: 400;
}
.practice-list li::before {
  content:''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--copper); margin-top: 9px; flex-shrink: 0;
}
.practice.crafht .practice-list li::before { background: #c75357; }

.practice-link {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--stone); font-weight: 600;
  display: inline-flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(232,228,221,0.2);
  padding-bottom: 10px;
  transition: all 240ms var(--ease-out);
}
.practice-link:hover { border-color: var(--copper); gap: 18px; color: var(--copper); }
.practice.crafht .practice-link:hover { border-color: #c75357; color: #c75357; }

@media (max-width: 880px) { .practices { grid-template-columns: 1fr; } }

/* ─── OPERATING MODEL LAYERS ─── */
.layers {
  display: grid;
  gap: 1px;
  background: rgba(232,228,221,0.1);
  border: 1px solid rgba(232,228,221,0.1);
  margin-top: 24px;
}
.layer {
  background: var(--navy);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 100px 240px 1fr 200px;
  gap: 40px;
  align-items: start;
  transition: background 240ms var(--ease-out);
}
.layer:hover { background: #1f2247; }
.layer-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--copper);
  line-height: 1;
  font-style: italic;
}
.layer-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: -0.008em;
  line-height: 1.2;
}
.layer-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-top: 12px;
}
.layer-desc {
  font-size: 15px; line-height: 1.7; color: var(--fg-on-dark-2);
  max-width: 600px;
  font-weight: 300;
}
.layer-tag {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fg-on-dark-3);
  text-align: right;
  font-weight: 500;
}
.layer-tag .num {
  display: block;
  font-family: var(--font-serif);
  font-size: 38px; letter-spacing: -0.01em;
  color: var(--stone);
  text-transform: none;
  font-weight: 400;
  margin-bottom: 8px;
  font-style: italic;
}
@media (max-width: 980px) {
  .layer { grid-template-columns: 1fr; gap: 18px; padding: 36px; }
  .layer-tag { text-align: left; }
}

/* ─── METHOD ─── */
.method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  border: 1px solid rgba(232,228,221,0.1);
}
.step {
  padding: 64px 48px 72px;
  border-right: 1px solid rgba(232,228,221,0.1);
  background: var(--navy);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 110px;
  line-height: 1;
  color: var(--copper);
  opacity: 0.22;
  margin-bottom: 28px;
  font-weight: 400;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--stone);
  margin: 0 0 22px;
  letter-spacing: -0.012em;
}
.step p { font-size: 15px; line-height: 1.7; color: var(--fg-on-dark-2); margin: 0 0 18px; font-weight: 300; }
.step .pull {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--copper);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(232,228,221,0.12);
}
@media (max-width: 880px) {
  .method { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(232,228,221,0.1); }
  .step:last-child { border-bottom: none; }
}

/* ─── VOICE ─── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 32px;
}
.voice-card {
  background: var(--vellum);
  padding: 52px 44px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--indigo);
  font-weight: 400;
  letter-spacing: -0.008em;
  position: relative;
  transition: background 240ms var(--ease-out);
}
.voice-card:hover { background: #fff; }
.voice-card::before {
  content:''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: transparent; transition: background 240ms var(--ease-out);
}
.voice-card:hover::before { background: var(--copper); }
.voice-card .src {
  display: block; margin-top: 24px;
  font-family: var(--font-sans); font-style: normal;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--fg4); font-weight: 600;
}
@media (max-width: 760px) { .voice-grid { grid-template-columns: 1fr; } }

/* ─── FOUNDER ─── */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.founder-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #20234a 0%, var(--navy) 100%);
  border: 1px solid rgba(232,228,221,0.1);
  position: relative;
  overflow: hidden;
}
.founder-portrait::before {
  content:''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 11px, rgba(232,228,221,0.04) 11px, rgba(232,228,221,0.04) 12px);
}
.founder-portrait .initials {
  position: absolute;
  bottom: 36px; left: 36px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 400;
  color: var(--copper);
  opacity: 0.6;
  line-height: 1;
  font-style: italic;
}
.founder-portrait .label {
  position: absolute;
  top: 36px; left: 36px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-on-dark-3); font-weight: 600;
}

.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.4;
  color: var(--stone);
  margin: 0 0 40px;
  font-weight: 400;
  letter-spacing: -0.008em;
}
.founder-quote::before {
  content:'"'; color: var(--copper); margin-right: 4px; font-size: 1.4em; line-height: 0; vertical-align: -0.2em;
}
.founder-meta {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--copper); font-weight: 600;
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 32px;
}
.founder-meta .div { width: 28px; height: 1px; background: var(--copper); }
.founder-bio { font-size: 16px; line-height: 1.75; color: var(--fg-on-dark-2); margin: 0; max-width: 600px; font-weight: 300; }
@media (max-width: 880px) {
  .founder { grid-template-columns: 1fr; gap: 48px; }
  .founder-portrait { max-width: 380px; }
}

/* ─── CONTACT ─── */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: end;
}
.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--stone);
  margin: 0;
  font-weight: 500;
}
.contact-headline em { font-style: italic; color: var(--copper); }
.contact-list {
  display: grid; gap: 0;
  font-size: 14px;
  list-style: none; padding: 0; margin: 0;
}
.contact-list li {
  display: grid; grid-template-columns: 110px 1fr; gap: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(232,228,221,0.1);
  align-items: center;
}
.contact-list li:last-child { border-bottom: 1px solid rgba(232,228,221,0.1); }
.contact-list .label {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--fg-on-dark-3); font-weight: 600;
}
.contact-list .value { color: var(--stone); }
.contact-list a:hover { color: var(--copper); }

footer.foot {
  background: var(--night);
  color: var(--fg-on-dark-2);
  padding: 60px 0 44px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
}
footer.foot .row {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(232,228,221,0.1);
  padding-top: 36px;
  gap: 32px;
}
footer.foot .practices-list { display: flex; gap: 36px; }
footer.foot .legal { color: var(--fg-on-dark-3); }
footer.foot a:hover { color: var(--copper); }

@media (max-width: 720px) {
  .contact-block { grid-template-columns: 1fr; gap: 48px; }
  footer.foot .row { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 100ms; }
.reveal.d2 { transition-delay: 200ms; }
.reveal.d3 { transition-delay: 300ms; }
.reveal.d4 { transition-delay: 400ms; }
