/* ════════════════════════════════════════════════════
   OATHILL MEDIA — Shared stylesheet
   ════════════════════════════════════════════════════ */

:root {
  --ink:         #11170f;
  --green-deep:  #1c271a;
  --green:       #2f3f2b;
  --green-mid:   #3f5238;
  --green-soft:  #5a6e52;
  --green-pale:  #7b8a73;
  --cream:       #ece3cf;
  --cream-pale:  #f4edda;
  --cream-warm:  #e6dcc4;
  --brass:       #a88656;
  --brass-dim:   #7a6340;
  --serif-d:     'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --serif-b:     'EB Garamond', Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--serif-b);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "onum" 1, "liga" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--serif-d); font-style: italic; font-weight: 400; }

/* ——— PAGE FADE ——— */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn 0.7s ease both; }

/* ——— FILM GRAIN ——— */
.grain {
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  animation: grain 1.6s steps(4) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0);     }
  25%  { transform: translate(-2%,1%);  }
  50%  { transform: translate(1%,-1%);  }
  75%  { transform: translate(-1%,2%);  }
  100% { transform: translate(0,0);     }
}

/* ══════════════════════════  NAV  ══════════════════════════ */
nav.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  mix-blend-mode: difference;
  color: var(--cream);
}
nav.site .wordmark {
  font-family: var(--serif-d);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 40, "SOFT" 30;
}
nav.site .wordmark em {
  font-size: 13px;
  margin-left: 2px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}
nav.site ul {
  list-style: none;
  display: flex;
  gap: 40px;
  font-family: var(--serif-d);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 400;
}
nav.site ul a {
  position: relative;
  padding: 4px 0;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}
nav.site ul a:hover { opacity: 1; }
nav.site ul a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: currentColor;
  transition: width 0.5s cubic-bezier(.7,0,.3,1);
}
nav.site ul a:hover::after,
nav.site ul a.current::after { width: 100%; }
nav.site ul a.current { opacity: 1; }

/* ══════════════════════════  HOME HERO  ══════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 40px 60px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(90,110,82,0.35), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(20,28,18,0.7), transparent 60%),
    linear-gradient(180deg, #1c271a 0%, #141d13 60%, #0d140c 100%);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(168, 134, 86, 0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(90, 120, 75, 0.12), transparent 45%);
  pointer-events: none;
}

.hero-est {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--brass);
  opacity: 0.85;
  margin-bottom: 34px;
  font-variation-settings: "opsz" 14;
  animation: fadeUp 1.2s 0.2s both cubic-bezier(.4,0,.2,1);
}
.hero-est .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--brass);
  border-radius: 50%;
  margin: 0 14px;
  vertical-align: middle;
  opacity: 0.8;
}

.hero h1 {
  font-family: var(--serif-d);
  font-weight: 400;
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  text-shadow: 0 0 40px rgba(168,134,86,0.06);
  animation: fadeUp 1.6s 0.4s both cubic-bezier(.4,0,.2,1);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 30px 0 22px;
  animation: fadeUp 1.2s 0.8s both cubic-bezier(.4,0,.2,1);
}
.hero-divider .line {
  width: 70px;
  height: 1px;
  background: var(--brass);
  opacity: 0.5;
}
.hero-divider em {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.04em;
  font-variation-settings: "opsz" 24, "SOFT" 80;
}

.hero-crest {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  opacity: 0.55;
  animation: fadeUp 1.2s 0.1s both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-d);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--cream);
  opacity: 0.55;
  writing-mode: vertical-rl;
  animation: fadeUp 1.2s 1.4s both, bob 2.6s 1.4s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════  SUB-PAGE MASTHEAD  ══════════════════════════ */
.masthead {
  min-height: 70vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 180px 40px 100px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(90,110,82,0.25), transparent 60%),
    linear-gradient(180deg, #1c271a 0%, #141d13 100%);
  text-align: center;
  overflow: hidden;
}

.masthead-chapter {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.85;
  margin-bottom: 30px;
  animation: fadeUp 1.2s 0.2s both;
}
.masthead-chapter .dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--brass);
  border-radius: 50%;
  margin: 0 12px;
  vertical-align: middle;
  opacity: 0.8;
}

.masthead h1 {
  font-family: var(--serif-d);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  animation: fadeUp 1.4s 0.4s both;
}
.masthead h1 em {
  color: var(--brass);
  font-weight: 300;
}

.masthead-sub {
  margin-top: 40px;
  font-family: var(--serif-d);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 22px);
  color: var(--cream);
  opacity: 0.7;
  max-width: 520px;
  letter-spacing: 0.01em;
  animation: fadeUp 1.2s 0.8s both;
}

.masthead-ornament {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeUp 1.2s 1s both;
}
.masthead-ornament .rule {
  width: 50px;
  height: 1px;
  background: var(--brass);
  opacity: 0.5;
}
.masthead-ornament .glyph {
  color: var(--brass);
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 16px;
  opacity: 0.8;
}

/* ══════════════════════════  SHARED SECTIONS  ══════════════════════════ */

.section-label {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* Manifesto (cream) */
.manifesto {
  background: var(--cream);
  color: var(--green-deep);
  padding: 180px 40px;
  position: relative;
  text-align: center;
}
.manifesto::before,
.manifesto::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: var(--green-mid);
  opacity: 0.3;
}
.manifesto::before { top: 0; }
.manifesto::after { bottom: 0; }

.manifesto .label {
  color: var(--brass-dim);
  margin-bottom: 60px;
}
.manifesto .pull {
  font-family: var(--serif-d);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.15;
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 100, "SOFT" 50;
  color: var(--green-deep);
}
.manifesto .sig {
  margin-top: 72px;
  font-family: var(--serif-d);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.manifesto .sig .sig-rule {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--green-mid);
  vertical-align: middle;
  margin: 0 14px;
  opacity: 0.6;
}

/* Cinematic plate with custom landscape SVG */
.plate {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 120px 40px 140px;
  text-align: center;
}
.plate-illustration {
  max-width: 1200px;
  margin: 0 auto 80px;
  opacity: 0.9;
}
.plate-label {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.9;
  margin-bottom: 36px;
}
.plate-disciplines {
  font-family: var(--serif-d);
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.5;
  color: var(--cream);
  letter-spacing: 0.005em;
  font-variation-settings: "opsz" 100, "SOFT" 60;
}
.plate-disciplines em {
  color: var(--brass);
  font-weight: 300;
  margin: 0 14px;
  opacity: 0.85;
}
.plate-sub {
  margin-top: 44px;
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 0.02em;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Studio band (cream-pale) */
.studio-band {
  background: var(--cream-pale);
  color: var(--green-deep);
  padding: 180px 40px;
  position: relative;
  text-align: center;
}
.studio-band::before,
.studio-band::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: var(--brass-dim);
  opacity: 0.4;
}
.studio-band::before { top: 0; }
.studio-band::after { bottom: 0; }

.studio-band .label {
  color: var(--brass-dim);
  margin-bottom: 60px;
}
.studio-band h2 {
  font-family: var(--serif-d);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--green-deep);
  max-width: 900px;
  margin: 0 auto 60px;
  font-variation-settings: "opsz" 120, "SOFT" 50;
}
.studio-band h2 em {
  color: var(--brass-dim);
  font-weight: 300;
}

.studio-marks {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 70px;
  font-family: var(--serif-d);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--green-mid);
  flex-wrap: wrap;
}
.studio-marks span {
  opacity: 0.75;
}
.studio-marks span em {
  display: block;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--brass-dim);
  margin-top: 8px;
  opacity: 1;
  font-variation-settings: "opsz" 24;
}

/* ══════════════════════════  PAGE CONTENT  ══════════════════════════ */

.page {
  background: var(--cream);
  color: var(--green-deep);
  padding: 140px 40px;
}

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

.prose {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--serif-b);
  font-size: 19px;
  line-height: 1.7;
  color: var(--green-deep);
}
.prose p + p { margin-top: 1.3em; }
.prose em {
  font-family: var(--serif-d);
  color: var(--brass-dim);
  font-style: italic;
}

.prose-lead {
  font-family: var(--serif-d);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.45;
  color: var(--green-deep);
  margin-bottom: 2em;
  font-variation-settings: "opsz" 40, "SOFT" 50;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Botanical + architectural illustrations as inline figures */
.figure {
  margin: 100px auto;
  text-align: center;
  max-width: 480px;
}
.figure svg {
  margin: 0 auto;
}
.figure-caption {
  margin-top: 28px;
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dim);
  opacity: 0.85;
}

/* Disciplines list (practice page) */
.disciplines {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid rgba(47,63,43,0.2);
}
.discipline {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(47,63,43,0.15);
  align-items: baseline;
  transition: padding-left 0.5s cubic-bezier(.4,0,.2,1);
}
.discipline:hover { padding-left: 18px; }
.discipline:hover .d-num { color: var(--brass-dim); }

.d-num {
  font-family: var(--serif-d);
  font-size: 14px;
  color: var(--green-mid);
  letter-spacing: 0.3em;
  transition: color 0.4s;
}
.d-title {
  font-family: var(--serif-d);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.1;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48, "SOFT" 40;
}
.d-title em { color: var(--brass-dim); }

/* Contact-specific */
.contact-page {
  background: var(--green-deep);
  color: var(--cream);
  min-height: 100vh;
  padding: 180px 40px 80px;
  text-align: center;
}
.contact-lead {
  font-family: var(--serif-d);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.25;
  max-width: 760px;
  margin: 60px auto 70px;
  color: var(--cream);
  font-variation-settings: "opsz" 80, "SOFT" 60;
}
.contact-lead em { color: var(--brass); }

.contact-mail {
  font-family: var(--serif-d);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--cream);
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(168,134,86,0.4);
  transition: border-color 0.4s, color 0.4s;
  font-variation-settings: "opsz" 40, "SOFT" 40;
}
.contact-mail:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.contact-note {
  margin-top: 60px;
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.55;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-details {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  gap: 90px;
  padding-top: 50px;
  border-top: 1px solid rgba(168,134,86,0.2);
  font-family: var(--serif-d);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--cream);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.contact-details span { opacity: 0.65; }
.contact-details span em {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--brass);
  opacity: 1;
}

/* ══════════════════════════  FOOTER  ══════════════════════════ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 40px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
footer.soft {
  padding: 80px 40px 50px;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--brass));
  opacity: 0.5;
}
footer.soft::before { display: none; }

.foot-label {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.85;
  margin-bottom: 46px;
}
.foot-head {
  font-family: var(--serif-d);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  max-width: 720px;
  margin: 0 auto 50px;
  color: var(--cream);
  font-variation-settings: "opsz" 80, "SOFT" 60;
}
.foot-head em { color: var(--brass); }

.foot-mail {
  font-family: var(--serif-d);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--cream);
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(168,134,86,0.4);
  transition: border-color 0.4s, color 0.4s;
  font-variation-settings: "opsz" 40, "SOFT" 40;
}
.foot-mail:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.foot-wordmark {
  margin-top: 140px;
  font-family: var(--serif-d);
  font-weight: 400;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  opacity: 0.92;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.foot-sub {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 18px;
  color: var(--brass);
  letter-spacing: 0.04em;
  margin-top: 8px;
  margin-bottom: 70px;
}

.foot-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px auto;
  max-width: 800px;
}
.foot-line .rule {
  flex: 1;
  height: 1px;
  background: rgba(236,227,207,0.15);
}
.foot-line .ornament {
  font-family: var(--serif-d);
  color: var(--brass);
  font-size: 14px;
  font-style: italic;
  opacity: 0.7;
}

.foot-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  margin-top: 40px;
  font-family: var(--serif-d);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 20px;
}
.foot-info a:hover { color: var(--brass); opacity: 1; }
.foot-info .social { display: flex; gap: 30px; }

/* Footer contact strip */
.foot-contact {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin: 60px auto 30px;
  padding-top: 50px;
  border-top: 1px solid rgba(168,134,86,0.15);
  font-family: var(--serif-d);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--cream);
  max-width: 1100px;
  flex-wrap: wrap;
  text-align: center;
}
.foot-contact span { opacity: 0.65; }
.foot-contact span em {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--brass);
  opacity: 0.95;
  line-height: 1.55;
  font-style: italic;
}
.foot-contact a:hover { color: var(--brass); }

/* Footer secondary nav */
.foot-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px auto 10px;
  font-family: var(--serif-d);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--cream);
  opacity: 0.7;
  flex-wrap: wrap;
}
.foot-nav a {
  position: relative;
  padding-bottom: 3px;
  transition: color 0.4s;
}
.foot-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--brass);
  transition: width 0.5s cubic-bezier(.7,0,.3,1);
}
.foot-nav a:hover { color: var(--brass); }
.foot-nav a:hover::after { width: 100%; }

/* Long-form legal page (privacy / terms) */
.legal {
  background: var(--cream);
  color: var(--green-deep);
  padding: 180px 40px 120px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--serif-b);
  font-size: 17px;
  line-height: 1.75;
  color: var(--green-deep);
}
.legal-chapter {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-dim);
  text-align: center;
  margin-bottom: 24px;
}
.legal h1 {
  font-family: var(--serif-d);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  text-align: center;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.legal h1 em { color: var(--brass-dim); font-weight: 300; }
.legal-meta {
  text-align: center;
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 13px;
  color: var(--green-mid);
  opacity: 0.75;
  margin-bottom: 70px;
  letter-spacing: 0.04em;
}
.legal-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 60px 0 50px;
}
.legal-rule .line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--brass-dim);
  opacity: 0.4;
}
.legal-rule .glyph {
  font-family: var(--serif-d);
  font-style: italic;
  color: var(--brass-dim);
  font-size: 14px;
  opacity: 0.8;
}
.legal h2 {
  font-family: var(--serif-d);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: var(--green-deep);
  margin: 56px 0 18px;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 48, "SOFT" 40;
}
.legal h2 em { color: var(--brass-dim); font-style: italic; }
.legal h3 {
  font-family: var(--serif-d);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brass-dim);
  margin: 36px 0 14px;
}
.legal p { margin-bottom: 1.1em; }
.legal p em {
  font-family: var(--serif-d);
  font-style: italic;
  color: var(--brass-dim);
}
.legal ul, .legal ol {
  margin: 0 0 1.4em 1.4em;
  padding: 0;
}
.legal li { margin-bottom: 0.55em; padding-left: 0.4em; }
.legal a { color: var(--brass-dim); border-bottom: 1px solid rgba(122,99,64,0.35); transition: color 0.4s, border-color 0.4s; }
.legal a:hover { color: var(--green-deep); border-color: var(--green-deep); }
.legal-toc {
  background: var(--cream-warm);
  border-left: 2px solid var(--brass-dim);
  padding: 28px 30px;
  margin: 0 0 60px;
  font-family: var(--serif-b);
  font-size: 15px;
  line-height: 1.7;
}
.legal-toc-title {
  font-family: var(--serif-d);
  font-style: italic;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brass-dim);
  margin-bottom: 14px;
  display: block;
}
.legal-toc ol { margin: 0 0 0 1.2em; padding: 0; }
.legal-toc li { margin-bottom: 0.3em; }

/* ══════════════════════════  REVEAL  ══════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.12s; }
.reveal-2 { transition-delay: 0.24s; }
.reveal-3 { transition-delay: 0.36s; }

/* ══════════════════════════  RESPONSIVE  ══════════════════════════ */
@media (max-width: 900px) {
  nav.site { padding: 20px 24px; }
  nav.site ul { gap: 22px; font-size: 10px; letter-spacing: 0.2em; }
  .hero { padding: 100px 24px 60px; }
  .manifesto, .studio-band, .plate { padding: 120px 24px; }
  .page { padding: 100px 24px; }
  .masthead { min-height: 60vh; padding: 140px 24px 80px; }
  .contact-page { padding: 140px 24px 60px; }
  .studio-marks { flex-direction: column; gap: 28px; }
  .contact-details { flex-direction: column; gap: 36px; }
  footer { padding: 100px 24px 40px; }
  .foot-info { flex-direction: column; text-align: center; }
  .foot-wordmark { margin-top: 100px; }
  .foot-contact { flex-direction: column; gap: 36px; padding-top: 40px; margin-top: 50px; }
  .foot-nav { gap: 22px; font-size: 10px; letter-spacing: 0.22em; }
  .legal { padding: 130px 24px 100px; }
  .discipline { grid-template-columns: 50px 1fr; gap: 20px; padding: 32px 0; }
  .figure { margin: 70px auto; }
}
@media (max-width: 540px) {
  nav.site ul { gap: 18px; }
  .hero h1 { font-size: 26vw; }
  .plate-disciplines { font-size: 22px; line-height: 1.8; }
  .plate-disciplines em { margin: 0 6px; }
}
