/* ============================================================
   BEYOND THE TITLE — Global Stylesheet
   Architectural Silence design system
   Poppins 300 / 400 / 600 / 700 · Charcoal · Amber · Off-White
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TOKENS ── */
:root {
  --charcoal:    #1C1C1A;
  --amber:       #C8923A;
  --offwhite:    #F5F2EC;
  --mid:         #8A8480;
  --rule:        rgba(28,28,26,0.10);
  --rule-amber:  #C8923A;

  --font:        'Poppins', sans-serif;

  --nav-h:       80px;
  --max-w:       1200px;
  --gutter:      64px;
}

/* ── BASE ── */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--offwhite);
  color: var(--charcoal);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY SCALE ── */
.t-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.t-eyebrow-amber {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.t-display {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.t-h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.t-h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.t-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}
.t-body-sm {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}
.t-caption {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mid);
}
.t-pull {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.t-mid { color: var(--mid); }
.t-amber { color: var(--amber); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: 100px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-full {
  padding: 100px var(--gutter);
}
.rule {
  width: 100%;
  height: 1px;
  background: var(--rule);
}
.rule-amber {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 32px;
}
.spacer-sm  { height: 24px; }
.spacer-md  { height: 48px; }
.spacer-lg  { height: 80px; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: var(--offwhite);
  border-bottom: 1px solid var(--rule);
}
.nav-wordmark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
}
.nav-body-offset { padding-top: var(--nav-h); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--offwhite);
}
.btn-primary:hover {
  background: #2e2e2b;
}
.btn-outline {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--offwhite);
}
.btn-amber {
  background: var(--amber);
  color: var(--offwhite);
}
.btn-amber:hover { background: #b07e30; }
.btn-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--amber); }

/* ── HERO BRAND (homepage — no photo) ── */
/* ── LANDING PAGE HERO ── */
.lp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.lp-left {
  padding: 56px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.lp-headline {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.lp-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #4a4845;
  max-width: 460px;
  margin-bottom: 32px;
}
.lp-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.lp-position {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: #6a6663;
  max-width: 460px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.lp-right {
  background: #D8D4CE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 420px;
  border-left: 1px solid var(--rule);
}
.lp-mark {
  width: 57%;
  height: auto;
  display: block;
  opacity: 0.88;
}
.lp-mark-name {
  margin-top: 24px;
  font-size: clamp(23px, 2.5vw, 38px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
}

/* ── LANDING STATEMENT ── */
.lp-statement {
  padding: 96px var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
  border-bottom: 1px solid var(--rule);
}
.lp-statement-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  padding-top: 10px;
}
.lp-statement-body {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 760px;
}
.lp-statement-body strong { font-weight: 700; }

/* ── LANDING FEATURE CARDS ── */
.lp-cards-section {
  padding: 48px var(--gutter);
  background: var(--offwhite);
  border-bottom: 1px solid var(--rule);
}
.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.lp-card {
  background: var(--bg);
  padding: 32px 28px;
  border-top: 2px solid transparent;
  transition: border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.lp-card:hover { border-top-color: var(--amber); }
.lp-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.lp-card-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}
.lp-card-body {
  font-size: 14px;
  font-weight: 300;
  color: #4a4845;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 28px;
}
.lp-card-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(60,56,52,0.22);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.lp-card-link:hover { color: var(--amber); border-color: var(--amber); }

/* ── COMPANY HERO ── */
.hero-co-outer {
  border-bottom: 1px solid var(--rule);
}
.hero-co {
  min-height: calc(100vh - var(--nav-h));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-co-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 40px;
}
.hero-co-headline {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 860px;
  margin-bottom: 40px;
}
.hero-co-rule {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 40px;
}
.hero-co-body {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: #4a4845;
  max-width: 600px;
  margin-bottom: 56px;
}
.hero-co-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
.hero-co-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.hero-co-link:hover { color: var(--amber); }
.hero-co-link::after {
  content: '→';
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  transition: transform 0.2s;
}
.hero-co-link:hover::after { transform: translateX(3px); }

/* ── HERO (kept for other uses) ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-left {
  padding: 80px var(--gutter) 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rule);
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.85;
  mix-blend-mode: luminosity;
}
.hero-name {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 20px 0 8px;
}
.hero-title {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 36px;
}
.hero-statement {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
  color: var(--charcoal);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  display: block;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-top: 2px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── PROVOCATION BAND ── */
.provocation {
  padding: 80px var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--charcoal);
  color: var(--offwhite);
}
.provocation-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.provocation-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.provocation-text {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--offwhite);
}
.provocation-text strong {
  font-weight: 700;
  color: #fff;
}

/* ── ECOSYSTEM ── */
.ecosystem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ecosystem-item {
  padding: 56px 48px;
  border-right: 1px solid var(--rule);
}
.ecosystem-item:last-child { border-right: none; }
.ecosystem-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 24px;
}
.ecosystem-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.ecosystem-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #4a4845;
  margin-bottom: 28px;
}
.ecosystem-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
}

/* ── WORK SECTION ── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.work-left {
  padding-right: 80px;
  border-right: 1px solid var(--rule);
}
.work-right {
  padding-left: 80px;
}
.service-list {
  margin: 32px 0;
}
.service-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.service-item:first-child { border-top: 1px solid var(--rule); }
.service-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--amber);
  min-width: 24px;
}
.service-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}

/* ── INHERITANCE TEASER ── */
.inheritance-band {
  background: var(--charcoal);
  color: var(--offwhite);
  padding: 80px var(--gutter);
}
.inheritance-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.inheritance-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.inheritance-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.inheritance-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,242,236,0.8);
  margin-bottom: 36px;
}
.inheritance-coming {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  display: inline-block;
  padding: 10px 24px;
}

/* ── WRITING / ESSAYS ── */
.essay-list { margin-top: 48px; }
.essay-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 32px;
  align-items: center;
}
.essay-item:first-child { border-top: 1px solid var(--rule); }
.essay-date {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mid);
}
.essay-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}
.essay-title:hover { color: var(--amber); }
.essay-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}
.essay-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.essay-read,
.essay-listen {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.essay-read {
  color: var(--charcoal);
  border-color: rgba(60,56,52,0.3);
}
.essay-read:hover { border-color: var(--charcoal); }
.essay-listen {
  color: var(--amber);
  border-color: rgba(200,146,58,0.3);
}
.essay-listen:hover { border-color: var(--amber); }

/* ── CREDENTIALS BAR ── */
.cred-bar {
  padding: 48px var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cred-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.cred-item {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mid);
}
.cred-sep {
  width: 1px;
  height: 20px;
  background: var(--rule);
}

/* ── EMAIL CAPTURE ── */
.email-band {
  padding: 80px var(--gutter);
  background: var(--offwhite);
  border-top: 1px solid var(--rule);
}
.email-band-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.email-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  margin-top: 16px;
}

/* ── ABOUT PAGE ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 64px;
  align-items: start;
  padding: 72px var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.about-headshot img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  max-width: none;
  display: block;
}
.about-body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { font-weight: 600; }

/* kept for responsive fallback */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.about-hero-left {
  padding: 80px var(--gutter) 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--rule);
}
.about-hero-right {
  background: var(--charcoal);
  overflow: hidden;
}
.about-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
}
.about-body p {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}
.about-body p:last-child { margin-bottom: 0; }

/* ── CONSULTING PAGE ── */
.consulting-hero {
  padding: 100px var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.service-card {
  padding: 56px 48px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.service-card:nth-child(even) { border-right: none; }
.service-card-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 20px;
}
.service-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-card-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #4a4845;
}
.engagement-band {
  padding: 80px var(--gutter);
  background: var(--charcoal);
  color: var(--offwhite);
  text-align: center;
}

/* ── SPEAKING PAGE ── */
.topic-list { margin-top: 48px; }
.topic-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 32px;
}
.topic-item:first-child { border-top: 1px solid var(--rule); }
.topic-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--amber);
  padding-top: 3px;
}
.topic-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.topic-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #4a4845;
}

/* ── PRESS PAGE ── */
.press-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
}
.press-item:first-child { border-top: 1px solid var(--rule); }
.press-outlet {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 4px;
}
.press-title {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
}
.press-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #4a4845;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 60vh;
}
.contact-left {
  padding: 80px var(--gutter) 80px var(--gutter);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-right {
  padding: 80px var(--gutter) 80px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-item:first-child { border-top: 1px solid var(--rule); }
.contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.contact-value {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
}
.contact-value a:hover { color: var(--amber); }

/* ── FOOTER ── */
.footer {
  padding: 48px var(--gutter);
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-wordmark {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--charcoal); }
.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
}

/* ── PAGE HEADER (interior pages) ── */
.page-header {
  padding: 80px var(--gutter) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.page-header .t-eyebrow { margin-bottom: 16px; }
.page-header .t-h1 { max-width: 700px; margin-bottom: 24px; }
.page-header .t-pull { max-width: 620px; color: #4a4845; }

/* ── MANIFESTO PAGE ── */
.manifesto-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.manifesto-body h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 64px 0 28px;
}
.manifesto-body h2:first-of-type { margin-top: 48px; }
.manifesto-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 28px;
  color: var(--charcoal);
}
.manifesto-body hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 56px 0;
}
.manifesto-body strong {
  font-weight: 600;
}

/* ── WRITING / PLATFORM ── */
.platform-grid-wrap {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.platform-item {
  padding: 56px 32px;
  border-right: 1px solid var(--rule);
}
.platform-item:first-child { padding-left: 0; }
.platform-item:last-child { border-right: none; padding-right: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --gutter: 40px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 480px; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--rule); }
  .ecosystem { grid-template-columns: 1fr; }
  .ecosystem-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .work-grid { grid-template-columns: 1fr; }
  .work-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 60px; margin-bottom: 60px; }
  .work-right { padding-left: 0; }
  .inheritance-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-headshot img { width: 160px; height: 200px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-right { height: 400px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--rule); }
  .provocation-inner { grid-template-columns: 1fr; gap: 24px; }
  .essay-item { grid-template-columns: 80px 1fr; }
  .essay-tag { display: none; }
  .essay-actions { display: none; }
  .press-item { grid-template-columns: 1fr; gap: 12px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .cred-bar-inner { gap: 24px; }
}

@media (max-width: 640px) {
  :root { --gutter: 24px; --nav-h: 64px; }
  /* .nav-links visibility is now governed by the hamburger (≤820px) — see RESPONSIVE SUPPLEMENT */
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .hero-btns { flex-direction: column; }
  .btn { text-align: center; }
  .topic-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE SUPPLEMENT — added 2026-06-13
   1. CSS-only hamburger nav (checkbox + label injected into every <nav>)
      — replaces the old "hide .nav-links on mobile" which left phones
      with no navigation at all.
   2. Landing-page (index .lp-*) breakpoints — the homepage was redesigned
      with an lp-* component set the original @media blocks never covered.
   ═══════════════════════════════════════════════════════════ */

/* Hamburger — hidden on desktop, shown ≤820px */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Landing page (index .lp-*) — collapse to single column, matching the site's ≤1024 behavior */
@media (max-width: 1024px) {
  .lp-hero { grid-template-columns: 1fr; }
  .lp-right { min-height: 320px; border-left: none; border-top: 1px solid var(--rule); }
  .lp-left { padding-top: 48px; padding-bottom: 48px; }
  .lp-statement { grid-template-columns: 1fr; gap: 24px; padding-top: 64px; padding-bottom: 64px; }
  .lp-cards { grid-template-columns: 1fr; }
}

/* Nav → hamburger (covers phone + small tablet; 7 links incl. "The Inheritance" need the room) */
@media (max-width: 820px) {
  /* Make the toggle keyboard-focusable on mobile (visually hidden, not display:none) */
  .nav-toggle { display: block; position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; margin: 0; }
  .nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--charcoal); outline-offset: 5px; }
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--offwhite);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
    padding: 6px var(--gutter) 14px;
    display: none;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links li { width: 100%; list-style: none; border-top: 1px solid var(--rule); }
  .nav-links li:first-child { border-top: none; }
  .nav-links a { display: block; width: 100%; padding: 15px 2px; font-size: 12px; }
  .nav-links .nav-cta { border-bottom: none; font-weight: 600; }
}

/* Small phones — landing cards already single-col; keep hero image tidy */
@media (max-width: 640px) {
  .lp-right { min-height: 280px; }
  .lp-mark { width: 50%; }
}
