/* ==========================================================================
   THE ALIGNED AGENCY — DESIGN SYSTEM v8
   Strategic counsel register. Type-led. Generous whitespace.
   No coaching warmth. Declarative. Premium-restrained.
   ========================================================================== */

@font-face {
  font-family: "Glitten";
  src: url("fonts/Glitten.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir LT Std Light";
  src: url("fonts/AvenirLTStd-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Herlyna";
  src: url("fonts/Herlyna.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette — no black */
  --shiraz:        #4C0823;
  --shiraz-deep:   #380519;
  --shiraz-soft:   #6B1838;
  --terracotta:    #BC6359;
  --terracotta-soft:#D08577;
  --gold:          #AF8F6C;
  --gold-soft:     #C7A988;
  --rosy:          #A78680;
  --beige:         #D9C7BA;
  --paper:         #F5EDE4;
  --paper-warm:    #EFE4D6;
  --paper-cool:    #FAF6F1;
  --white:         #FFFFFF;
  --ink:           #2A1A14;
  --ink-soft:      #3A2A22;
  --ink-muted:     #565847;

  /* Type */
  --display: "Glitten", "Cormorant Garamond", Georgia, serif;
  --body:    "Avenir LT Std Light", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --script:  "Herlyna", cursive;

  /* Type scale — slightly tighter than v7 to feel more editorial */
  --fs-display: clamp(2.4rem, 5vw, 4.5rem);
  --fs-h1:      clamp(2.2rem, 4.5vw, 4rem);
  --fs-h2:      clamp(1.8rem, 3.2vw, 2.8rem);
  --fs-h3:      clamp(1.2rem, 1.5vw, 1.45rem);
  --fs-body:    1.05rem;
  --fs-body-lg: clamp(1.05rem, 1.15vw, 1.18rem);
  --fs-small:   0.92rem;
  --fs-eyebrow: 0.7rem;

  /* Rhythm */
  --lh-display: 1.08;
  --lh-h2:      1.18;
  --lh-body:    1.7;

  /* Layout — generous gutters, generous vertical rhythm */
  --max-w: 1200px;
  --max-text: 36rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(6rem, 11vw, 10rem);
  --section-y-tight: clamp(4rem, 7vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--shiraz); color: var(--paper);
  padding: 0.75rem 1.25rem; z-index: 200;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--gold); outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  video { display: none; }
}

/* No italics anywhere. Emphasis through color and weight. */
em, .emphasis {
  font-style: normal;
  color: var(--terracotta);
  font-weight: 400;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(76, 8, 35, 0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(217, 199, 186, 0);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease, padding 0.4s ease;
}
nav.site-nav.scrolled {
  background: rgba(245, 237, 228, 0.96);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: rgba(76, 8, 35, 0.08);
  padding: 1rem var(--gutter);
}
nav.site-nav .mark {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 500;
  color: var(--paper); letter-spacing: 0.005em;
  transition: color 0.5s ease;
}
nav.site-nav.scrolled .mark { color: var(--shiraz); }
nav.site-nav ul {
  display: flex; gap: clamp(1.25rem, 3vw, 2.5rem);
  list-style: none; align-items: center;
}
nav.site-nav ul a {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--paper); transition: color 0.5s ease;
}
nav.site-nav.scrolled ul a { color: var(--ink); }
nav.site-nav ul a:hover,
nav.site-nav ul a[aria-current="page"] { color: var(--gold-soft); }
nav.site-nav.scrolled ul a:hover,
nav.site-nav.scrolled ul a[aria-current="page"] { color: var(--terracotta); }
.nav-cta {
  border: 1px solid var(--gold-soft);
  padding: 0.6rem 1.2rem;
  letter-spacing: 0.18em !important;
  transition: all 0.4s ease;
}
nav.site-nav.scrolled .nav-cta { border-color: var(--shiraz); }
.nav-cta:hover { background: var(--gold-soft); color: var(--shiraz) !important; }
nav.site-nav.scrolled .nav-cta:hover { background: var(--shiraz); color: var(--paper) !important; }

/* ── EYEBROWS ── */
.eyebrow {
  font-family: var(--body);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--terracotta);
  font-weight: 400;
  display: inline-flex; align-items: center; gap: 0.85rem;
  margin-bottom: 2rem;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 2rem; height: 1px; background: var(--terracotta);
}
.eyebrow--centered {
  justify-content: center;
}
.eyebrow--centered::before,
.eyebrow--centered::after {
  content: ""; display: inline-block;
  width: 1.5rem; height: 1px; background: var(--terracotta);
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before, .eyebrow--light::after { background: var(--gold-soft); }

/* ── TYPOGRAPHY UTILITIES ── */
.display {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -0.012em;
  color: var(--shiraz);
}
.display em { color: var(--terracotta); font-weight: 400; }

.h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: -0.008em;
  color: var(--shiraz);
}
.h2 em { color: var(--terracotta); font-weight: 400; }

.lead {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--ink);
  max-width: var(--max-text);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.btn--filled {
  background: var(--shiraz);
  color: var(--paper);
}
.btn--filled:hover { background: var(--shiraz-deep); }
.btn--outline {
  border-color: var(--shiraz);
  color: var(--shiraz);
  background: transparent;
}
.btn--outline:hover { background: var(--shiraz); color: var(--paper); }
.btn--ghost {
  border-color: var(--gold-soft);
  color: var(--paper);
  background: transparent;
}
.btn--ghost:hover { background: var(--gold-soft); color: var(--shiraz); }

/* ──────────────────────────────────────────────────────────────────
   1. HERO — restrained front door
   ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 9rem var(--gutter) 5rem;
  background: var(--shiraz);
  overflow: hidden;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero__logo {
  width: clamp(300px, 46vw, 540px);
  height: auto;
  margin-bottom: 3rem;
  opacity: 0; animation: fade 1.6s ease-out 0.3s forwards;
}
.hero__eyebrow {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--gold-soft);
  display: inline-flex; align-items: center; gap: 0.85rem;
  opacity: 0; animation: rise 1.1s ease-out 0.6s forwards;
  margin-bottom: 2rem;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: ""; display: inline-block;
  width: 1.5rem; height: 1px; background: var(--gold-soft);
}
.hero__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: var(--lh-display);
  color: var(--paper);
  letter-spacing: -0.018em;
  max-width: 22ch;
  margin-bottom: 2.5rem;
  opacity: 0; animation: rise 1.2s ease-out 0.8s forwards;
}
.hero__headline em { color: var(--gold-soft); font-weight: 400; }
.hero__tagline {
  display: flex; gap: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--rosy);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  opacity: 0; animation: rise 1.1s ease-out 1.05s forwards;
}
.hero__tagline span { position: relative; }
.hero__tagline span:not(:last-child)::after {
  content: "·"; position: absolute; right: -1.4rem; color: var(--rosy);
}
.hero__scroll-cue {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.32em; color: var(--gold-soft);
  opacity: 0.5; z-index: 2;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.9; transform: translateX(-50%) translateY(6px); }
}

/* ──────────────────────────────────────────────────────────────────
   2. WORLDVIEW — first content section, declarative
   ────────────────────────────────────────────────────────────────── */
.worldview {
  background: var(--paper);
  padding: var(--section-y) var(--gutter);
}
.worldview__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.worldview__statement {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--shiraz);
  margin-bottom: 3rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.worldview__statement em { color: var(--terracotta); font-weight: 400; }
.worldview__body {
  max-width: var(--max-text);
  margin: 0 auto;
  text-align: left;
}
.worldview__body p {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.worldview__body strong {
  color: var(--shiraz);
  font-weight: 500;
}
.worldview__body p:last-child { margin-bottom: 0; }

/* ──────────────────────────────────────────────────────────────────
   3. PRACTICE — what we do, in order
   ────────────────────────────────────────────────────────────────── */
.practice {
  background: var(--paper-warm);
  padding: var(--section-y) var(--gutter);
}
.practice__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.practice__intro {
  position: sticky; top: 8rem;
}
.practice__intro .eyebrow { margin-bottom: 1.5rem; }
.practice__intro .display {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}
.practice__body p {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: var(--max-text);
}
.practice__body strong {
  color: var(--shiraz);
  font-weight: 500;
}
.practice__divider {
  width: 100%;
  height: 1px;
  background: rgba(76, 8, 35, 0.15);
  margin: 2.5rem 0;
}
.practice__step {
  margin-bottom: 2rem;
}
.practice__step-label {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.practice__step h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--shiraz);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.practice__step p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 38rem;
  margin-bottom: 0;
}

/* ──────────────────────────────────────────────────────────────────
   4. PULL QUOTE — parallax video, single declarative line
   ────────────────────────────────────────────────────────────────── */
.pullquote {
  position: relative;
  min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem var(--gutter);
  overflow: hidden;
  background: var(--shiraz-deep);
}
.pullquote video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.pullquote__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(56, 5, 25, 0.55) 0%, rgba(76, 8, 35, 0.75) 100%);
}
.pullquote__text {
  position: relative; z-index: 2;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-align: center;
  max-width: 22ch;
}
.pullquote__text em { color: var(--gold-soft); font-weight: 400; }

/* ──────────────────────────────────────────────────────────────────
   5. AUDIENCE PROFILE — descriptors, not address
   ────────────────────────────────────────────────────────────────── */
.audience {
  background: var(--paper);
  padding: var(--section-y) var(--gutter);
}
.audience__inner {
  max-width: 880px;
  margin: 0 auto;
}
.audience__header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.audience__header .h2 {
  margin: 0 auto;
  max-width: 24ch;
}
.audience__list {
  display: flex; flex-direction: column;
  gap: 3rem;
  max-width: 38rem;
  margin: 0 auto;
}
.audience__item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 2rem;
  align-items: baseline;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(76, 8, 35, 0.08);
}
.audience__item:last-child { border-bottom: none; padding-bottom: 0; }
.audience__item-label {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--shiraz);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.audience__item-body {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
}
.audience__close {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 400;
}

/* ──────────────────────────────────────────────────────────────────
   6. CASE STUDIES — proof, abstracted
   ────────────────────────────────────────────────────────────────── */
.cases {
  background: var(--paper-warm);
  padding: var(--section-y) 0;
}
.cases__header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
  margin-bottom: 5rem;
}
.cases__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  color: var(--shiraz);
  letter-spacing: -0.012em;
  margin-bottom: 1.25rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.cases__intro {
  font-size: var(--fs-body-lg);
  color: var(--ink-muted);
  max-width: 34rem;
  margin: 0 auto;
}
.cases__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.case {
  background: var(--paper);
  border: 1px solid rgba(76, 8, 35, 0.08);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.case__meta { position: sticky; top: 7rem; }
.case__sector {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.case__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  color: var(--shiraz);
  margin-bottom: 0.75rem;
}
.case__geo {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.case__body { display: flex; flex-direction: column; gap: 1.25rem; }
.case__row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(76, 8, 35, 0.07);
}
.case__row:last-of-type { border-bottom: none; padding-bottom: 0; }
.case__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--terracotta);
}
.case__val {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}
.case__val strong { color: var(--shiraz); font-weight: 500; }
.case__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(76, 8, 35, 0.1);
}
.metric { }
.metric__num {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1.05;
}
.metric__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-top: 0.4rem;
}
.case__punch {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.4;
  color: var(--shiraz);
  font-weight: 400;
  margin-top: 1.75rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--terracotta);
}

/* ──────────────────────────────────────────────────────────────────
   7. CLOSE CTA — quiet, final, restrained
   ────────────────────────────────────────────────────────────────── */
.close {
  position: relative;
  padding: var(--section-y) var(--gutter);
  overflow: hidden;
  background: var(--shiraz);
}
.close video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.close__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(76,8,35,0.62) 0%, rgba(56,5,25,0.85) 100%);
}
.close__inner {
  position: relative; z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.close__eyebrow {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--gold-soft);
  margin-bottom: 2rem;
  display: inline-flex; align-items: center; gap: 0.85rem;
}
.close__eyebrow::before, .close__eyebrow::after {
  content: ""; display: inline-block;
  width: 1.5rem; height: 1px; background: var(--gold-soft);
}
.close__statement {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 2.5rem;
  letter-spacing: -0.012em;
}
.close__statement em { color: var(--gold-soft); font-weight: 400; }
.close__note {
  font-size: 0.9rem;
  color: var(--gold-soft);
  margin-top: 2rem;
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────────────────────────────
   8. FOOTER — restrained, big wordmark
   ────────────────────────────────────────────────────────────────── */
footer {
  background: var(--shiraz-deep);
  color: var(--beige);
  padding: clamp(5rem, 9vw, 7rem) var(--gutter) 2rem;
}
.footer__big {
  max-width: var(--max-w);
  margin: 0 auto 5rem;
  text-align: center;
}
.footer__big-mark {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.95;
  color: var(--paper);
  letter-spacing: -0.018em;
  margin-bottom: 1rem;
}
.footer__big-tagline {
  font-family: var(--body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-soft);
}
.footer__cols {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: 3rem;
  border-top: 1px solid rgba(217, 199, 186, 0.15);
}
footer h4 {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.7rem; }
footer ul a {
  font-size: 0.92rem;
  color: var(--beige);
  transition: color 0.3s ease;
}
footer ul a:hover { color: var(--paper); }
.footer__intro {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--beige);
  max-width: 22rem;
}
.footer__bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(175, 143, 108, 0.2);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: var(--rosy);
  text-align: center;
}
.footer__bottom-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center;
}
.footer__ecosystem-note {
  font-size: 0.72rem;
  color: var(--rosy);
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────────────────────────────
   INTERIOR PAGES (about / contact / clarity-compass)
   ────────────────────────────────────────────────────────────────── */
.page-hero {
  padding: 10rem var(--gutter) 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--paper);
}
.page-hero__eyebrow {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.85rem;
}
.page-hero__eyebrow::before {
  content: ""; display: inline-block;
  width: 2rem; height: 1px;
  background: var(--terracotta);
}
.page-hero__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: var(--lh-display);
  color: var(--shiraz);
  letter-spacing: -0.012em;
  margin-bottom: 2rem;
  max-width: 30rem;
}
.page-hero__headline em { color: var(--terracotta); font-weight: 400; }
.page-hero__sub {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: var(--ink);
  max-width: 36rem;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem var(--gutter) 6rem;
}
.contact-side h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--shiraz);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}
.contact-side h2:first-of-type { margin-top: 0; }
.contact-side p { margin-bottom: 1rem; font-size: 0.98rem; }
.contact-side a {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
}
.contact-placeholder {
  background: var(--paper-warm);
  padding: 3rem 2rem;
  border: 1px solid rgba(76, 8, 35, 0.12);
  text-align: center;
}
.contact-placeholder h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--shiraz);
  margin-bottom: 1rem;
  font-weight: 400;
}
.contact-placeholder p {
  margin-bottom: 1.5rem;
  color: var(--ink);
  line-height: 1.7;
}
.contact-placeholder a.contact-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--shiraz);
  color: var(--paper);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  border-bottom: none;
  transition: background 0.3s ease;
}
.contact-placeholder a.contact-cta:hover { background: var(--shiraz-deep); }

.about-body {
  max-width: 38rem;
  margin: 0 auto;
  padding: 4rem var(--gutter) 6rem;
}
.about-body h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.25;
  color: var(--shiraz);
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
.about-body h2:first-of-type { margin-top: 0; }
.about-body h2 em { color: var(--terracotta); font-weight: 400; }
.about-body p { margin-bottom: 1.5rem; }
.about-body strong { color: var(--shiraz); font-weight: 500; }
.about-quote {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--terracotta);
  padding: 2rem 0 2rem 2rem;
  border-left: 1px solid var(--gold);
  margin: 2.5rem 0;
  font-weight: 400;
}
.about-bio {
  background: var(--paper-warm);
  padding: 2.5rem var(--gutter);
  max-width: 600px;
  margin: 4rem auto 0;
  border-left: 2px solid var(--gold);
}
.about-bio h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--shiraz);
  margin-bottom: 1rem;
}

.compass-hero {
  min-height: 70vh;
  padding: 11rem var(--gutter) 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.compass-hero__breadcrumb {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}
.compass-hero__breadcrumb a { color: var(--terracotta); }
.compass-hero__breadcrumb-sep { margin: 0 0.75rem; color: var(--rosy); }
.compass-hero__eyebrow {
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.compass-hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--shiraz);
  letter-spacing: -0.018em;
  margin-bottom: 1.5rem;
}
.compass-hero__title em { color: var(--terracotta); font-weight: 400; }
.compass-hero__title-mark {
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 0.2rem;
  color: var(--gold);
  font-weight: 400;
}
.compass-hero__sub {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: var(--ink);
  max-width: 38rem;
  margin: 0 auto 3rem;
}
.compass-hero__meta {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(76, 8, 35, 0.15);
  max-width: 42rem;
  margin: 0 auto;
  flex-wrap: wrap;
}
.compass-hero__meta-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
}
.compass-hero__meta-val {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--shiraz);
  text-transform: none;
}

/* ──────────────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__cols { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__cols > div:last-child { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .practice__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .practice__intro { position: static; }
  .case { grid-template-columns: 1fr; gap: 1.75rem; }
  .case__meta { position: static; }
  .case__row { grid-template-columns: 6rem 1fr; gap: 1rem; }
  .audience__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .pullquote, .close { background-attachment: scroll; }
  .contact-body { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  nav.site-nav { padding: 1rem var(--gutter); }
  nav.site-nav ul li:not(.nav-cta-wrap):not(.first) { display: none; }
  .footer__cols { grid-template-columns: 1fr; }
  .pullquote__text { font-size: 1.6rem; }
  .case__row { grid-template-columns: 1fr; gap: 0.4rem; }
  .case__label { font-size: 0.62rem; }
}
