/* ═══════════════════════════════════════════════════════════════
   Aletheia Works — styles-v2.css
   Version 1.1.0 — Full responsive / mobile-first
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink: #18211f;
  --muted: #5b6660;
  --paper: #f7f4ee;
  --cream: #fffaf1;
  --green: #1e5a4f;
  --green-soft: #dfe9df;
  --clay: #9f4f3e;
  --mustard: #c69a2e;
  --line: rgba(24, 33, 31, 0.16);
  --shadow: 0 24px 60px rgba(24, 33, 31, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ── Body copy justification: applied site-wide, desktop and mobile ──
   Hyphenation is required so the browser can break long words instead
   of only stretching spaces — this is what keeps justified text from
   looking uneven on narrow columns. overflow-wrap guards against any
   single long word/URL overflowing its container. Structural elements
   (single-line labels, tags, buttons, quotes) are excluded since they
   are not flowing prose and justification has no effect or looks odd
   on a single line. ──────────────────────────────────────────────── */
main p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

main .kicker,
main .pill-list li,
main .founder-tags li,
main .placeholder-note,
main .whitepaper-kicker,
main .whitepaper-byline,
main .whitepaper-sub,
main figcaption,
main blockquote,
main .button,
main dd {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
}

@media (max-width: 820px) {
  main p {
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

/* ── HEADER ─────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(16px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(10,18,16,0.82), rgba(10,18,16,0));
  transition: background 0.3s;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 101;
}

.brand-logo {
  display: block;
  width: min(240px, 52vw);
  height: auto;
  border-radius: 4px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Desktop nav */
nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 14px;
  color: rgba(255,255,255,0.86);
}

nav a { border-bottom: 1px solid transparent; }
nav a:hover { border-color: rgba(255,255,255,0.72); }
nav a[aria-current="page"] { border-color: currentColor; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  z-index: 101;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #121a18;
  padding: 80px 24px 40px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 18px 24px;
  border-radius: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: background 0.18s;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.inner-header {
  position: sticky;
  color: #fff;
  background: #121a18;
  box-shadow: 0 12px 34px rgba(18,26,24,0.14);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5.4vw, 68px);
}

h2 { font-size: clamp(28px, 5vw, 58px); }

h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.2;
}

.kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker { color: #f0c96d; }

/* ── BUTTONS ─────────────────────────────────────────────────── */

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.1;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
}

.button:active { transform: scale(0.97); }
.button.primary { color: #fff; background: var(--green); }
.button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 850;
  border-bottom: 1px solid rgba(30,90,79,0.34);
}

/* ── HERO ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img { object-fit: cover; }

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9,17,15,0.9), rgba(9,17,15,0.56) 44%, rgba(9,17,15,0.2) 72%),
    linear-gradient(0deg, rgba(9,17,15,0.58), rgba(9,17,15,0.05) 42%);
}

.hero-content {
  position: relative;
  width: min(920px, 100%);
  padding: clamp(100px, 14vw, 140px) clamp(20px, 7vw, 96px) clamp(36px, 5vw, 52px);
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.84);
  font-size: clamp(16px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── HOME SECTIONS ───────────────────────────────────────────── */

.intro-band,
.work-section,
.advisory-band,
.learning-section,
.principles-section,
.contact-section {
  padding: clamp(48px, 8vw, 120px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  background: var(--cream);
}

.intro-copy p,
.section-heading h2,
.learning-copy p,
.contact-copy p,
.why-name-copy p { max-width: 740px; }

.intro-copy p,
.advisory-content p,
.learning-copy p,
.contact-copy p,
.why-name-copy p {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
}

.why-name-copy p + p { margin-top: 18px; }

.signal-grid {
  display: grid;
  gap: 14px;
  margin: 0;
}

.signal-grid div {
  padding: 20px;
  border-left: 4px solid var(--green);
  background: #fff;
  box-shadow: 0 12px 32px rgba(24,33,31,0.06);
}

dt { margin-bottom: 6px; font-weight: 900; }
dd { margin: 0; color: var(--muted); }

.work-section { background: #eef2e9; }

.section-heading { margin-bottom: clamp(24px, 5vw, 54px); }

.work-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.work-grid article,
.principle-grid article {
  min-height: 270px;
  padding: 24px;
  background: #fff;
}

.work-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--mustard);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.work-grid p,
.principle-grid p { color: var(--muted); }

.advisory-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  color: #fff;
  background: var(--green);
}

.advisory-band .kicker { color: #f3d483; }
.advisory-content p { color: rgba(255,255,255,0.82); }

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  font-size: 14px;
}

.learning-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: var(--paper);
}

.quote-panel {
  border-top: 5px solid var(--clay);
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 3vw, 35px);
  line-height: 1.2;
}

.principles-section { background: #fffaf1; }

.principle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.principle-grid article { min-height: 190px; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  background: #e8eee8;
}

.fine-print {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-card {
  padding: clamp(20px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-card p { color: var(--muted); }

/* ── FOOTER ─────────────────────────────────────────────────── */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255,255,255,0.76);
  background: #121a18;
  font-size: 14px;
}

footer p { margin: 0; }

.footer-logo {
  display: block;
  width: min(220px, 60vw);
  height: auto;
  border-radius: 4px;
  background: #fff;
}

/* ── INNER PAGES ─────────────────────────────────────────────── */

.inner-page { background: var(--paper); }

.page-hero,
.content-band,
.testimonials-section,
.contact-page-section {
  padding: clamp(48px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.page-hero {
  min-height: 52svh;
  display: grid;
  align-content: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18,26,24,0.95), rgba(18,26,24,0.78)),
    var(--green);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(18,26,24,0.95), rgba(18,26,24,0.72)),
    linear-gradient(135deg, #1e5a4f, #9f4f3e);
}

.research-hero {
  background:
    linear-gradient(90deg, rgba(18,26,24,0.95), rgba(18,26,24,0.72)),
    linear-gradient(135deg, #1e5a4f, #833f34);
}

.learning-hero {
  background:
    linear-gradient(90deg, rgba(18,26,24,0.94), rgba(18,26,24,0.7)),
    linear-gradient(135deg, #315e69, #9f4f3e);
}

.advisory-hero {
  background:
    linear-gradient(90deg, rgba(18,26,24,0.95), rgba(18,26,24,0.72)),
    linear-gradient(135deg, #1e5a4f, #c69a2e);
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(18,26,24,0.95), rgba(18,26,24,0.72)),
    linear-gradient(135deg, #121a18, #1e5a4f);
}

.coaching-hero {
  background:
    linear-gradient(90deg, rgba(18,26,24,0.95), rgba(18,26,24,0.72)),
    linear-gradient(135deg, #9f4f3e, #1e5a4f);
}

.page-hero .kicker { color: #f3d483; }

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(34px, 6vw, 78px);
}

.page-hero p:not(.kicker) {
  max-width: 820px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(16px, 2vw, 22px);
}

.content-band { background: var(--cream); }

.content-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.content-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid article {
  min-height: 210px;
  padding: 26px;
  background: #fff;
}

.content-grid p { color: var(--muted); }

.testimonials-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  background: #eef2e9;
}

.testimonial-grid { display: grid; gap: 16px; }

.testimonial-grid figure {
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border-left: 5px solid var(--clay);
  box-shadow: 0 12px 32px rgba(24,33,31,0.06);
}

.testimonial-grid blockquote {
  font-size: clamp(18px, 2.6vw, 32px);
}

figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 850;
}

/* ── CONTACT FORM ────────────────────────────────────────────── */

.contact-page-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.74fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #e8eee8;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-card {
  position: relative;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.option-card:has(input:checked) {
  border-color: var(--green);
  box-shadow: 0 16px 34px rgba(30,90,79,0.14);
}

.option-card:active { transform: translateY(0); }
.option-card:hover { transform: translateY(-2px); }

.option-card input {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.option-card span,
.option-card small { display: block; }

.option-card span {
  max-width: 86%;
  margin-bottom: 10px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  line-height: 1.18;
}

.option-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(24,33,31,0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 16px; /* prevents iOS zoom on focus */
}

textarea { resize: vertical; }

input:focus,
textarea:focus {
  outline: 3px solid rgba(198,154,46,0.24);
  border-color: var(--mustard);
}

.form-button { width: 100%; margin-top: 4px; border: 0; }

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */

.about-founders-section { background: var(--paper); }

.founders-grid {
  display: grid;
  gap: clamp(36px, 7vw, 80px);
}

.founder-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(22px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.founder-card--reverse {
  grid-template-columns: minmax(0, 1fr) 260px;
}

.founder-card--reverse .founder-photo-wrap { order: 2; }
.founder-card--reverse .founder-bio { order: 1; }

.founder-photo-wrap { position: relative; }

.founder-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(24,33,31,0.16);
}

.founder-bio h3 {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.1;
}

.founder-title {
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-bio p {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.founder-tags li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 700;
}

.about-community { background: #eef2e9; }

/* ── LINKEDIN LINKS ──────────────────────────────────────────── */

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #0a66c2;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.18s;
}

.linkedin-link:hover { opacity: 0.7; }
.linkedin-link svg { flex-shrink: 0; }

/* ── CONSULTANTS & VCs ───────────────────────────────────────── */

.about-partners-section { background: #fff; }

.partner-card {
  padding: clamp(22px, 3vw, 32px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
}

.partner-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ink);
}

.partner-card p {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
}

/* ── INSIGHTS / PLACEHOLDERS ─────────────────────────────────── */

.insights-section { border-bottom: 1px solid var(--line); }

.alt-band { background: var(--paper) !important; }

.insights-placeholder {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 32px;
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: #fff;
}

.insights-placeholder-grid,
.book-grid,
.media-grid {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--line);
  border-radius: 8px;
  padding: 36px 20px;
}

.placeholder-note {
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  margin: 0 !important;
  text-align: center;
}

/* ── Whitepaper cards ────────────────────────────────────────── */
.whitepaper-grid {
  display: grid;
  gap: 18px;
}

.whitepaper-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.whitepaper-icon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whitepaper-icon svg { width: 32px; height: 32px; }

.whitepaper-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay);
}

.whitepaper-body h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.2;
}

.whitepaper-sub {
  margin: 0 0 14px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.whitepaper-desc {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
}

.whitepaper-byline {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.whitepaper-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .whitepaper-card {
    grid-template-columns: 1fr;
  }
  .whitepaper-icon { margin-bottom: 4px; }
}

/* ── OFFICE ADDRESS ──────────────────────────────────────────── */

.contact-address-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.office-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-style: normal;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
  color: var(--muted);
  margin: 22px 0 16px;
}

.office-address svg {
  flex-shrink: 0;
  margin-top: 5px;
  color: var(--clay);
}

/* ── WORK QUESTIONS ──────────────────────────────────────────── */

.work-questions {
  margin-top: clamp(24px, 5vw, 48px);
  padding: clamp(18px, 4vw, 36px);
  background: #fff;
  border-left: 4px solid var(--mustard);
  box-shadow: 0 8px 24px rgba(24,33,31,0.06);
}

.work-questions p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 17px);
}

.work-questions p:last-child { margin-bottom: 0; }

.work-questions-cta {
  margin-top: 16px !important;
  color: var(--green) !important;
  font-weight: 800;
  font-size: 17px !important;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════════ */

/* ── Tablet (≤980px) ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .intro-band,
  .advisory-band,
  .learning-section,
  .contact-section,
  .testimonials-section,
  .contact-page-section {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .principle-grid,
  .content-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Large mobile (≤820px) ───────────────────────────────────── */
@media (max-width: 820px) {
  .founder-card,
  .founder-card--reverse {
    grid-template-columns: 1fr;
  }

  .founder-card--reverse .founder-photo-wrap,
  .founder-card--reverse .founder-bio {
    order: unset;
  }

  .founder-photo {
    aspect-ratio: 4 / 3;
    object-position: center 20%;
    max-height: 280px;
    width: 100%;
  }

  .content-grid.two {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile (≤720px) ─────────────────────────────────────────── */
@media (max-width: 720px) {

  /* Show hamburger, hide desktop nav */
  .nav-toggle { display: flex; }
  nav { display: none; }

  /* Header adjustments */
  .site-header {
    position: fixed;
    align-items: center;
    padding: 14px 18px;
    background: rgba(10,18,16,0.88);
  }

  .inner-header {
    position: sticky;
    background: #121a18;
  }

  .brand-logo { width: min(200px, 56vw); }

  /* Hero */
  .hero { min-height: 90svh; }

  .hero-content {
    padding: 90px 18px 40px;
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }

  /* Sections */
  .intro-band,
  .work-section,
  .advisory-band,
  .learning-section,
  .principles-section,
  .contact-section {
    padding: 40px 18px;
  }

  .page-hero {
    min-height: 48svh;
    padding-top: 100px;
  }

  .page-hero,
  .content-band,
  .testimonials-section,
  .contact-page-section {
    padding: 40px 18px;
  }

  /* Grids → single column on mobile */
  .work-grid,
  .principle-grid,
  .content-grid.three,
  .content-grid.two,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .work-grid article,
  .principle-grid article,
  .content-grid article {
    min-height: auto;
  }

  /* Signal grid */
  .signal-grid { gap: 10px; }

  /* Advisory pills — smaller on mobile */
  .pill-list li { font-size: 13px; padding: 8px 11px; }

  /* Footer */
  footer { display: block; padding: 24px 18px; }
  footer p + p { margin-top: 10px; }

  /* Contact page */
  .contact-page-section { grid-template-columns: 1fr; }
  .option-card { min-height: auto; padding: 16px; }
  .option-card span { font-size: 16px; }

  /* Touch-friendly form */
  input, textarea {
    font-size: 16px;
    padding: 14px;
  }

  /* Founders */
  .founder-card,
  .founder-card--reverse { padding: 20px; }
  .founder-photo { max-height: 240px; }

  /* Quote panel */
  .quote-panel { padding: 20px; }
}

/* ── Small mobile (≤400px) ───────────────────────────────────── */
@media (max-width: 400px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }

  .founder-tags li { font-size: 12px; padding: 6px 10px; }

  .intro-band,
  .work-section,
  .advisory-band,
  .learning-section,
  .principles-section,
  .contact-section,
  .page-hero,
  .content-band,
  .testimonials-section,
  .contact-page-section {
    padding: 32px 14px;
  }
}
