/* ===========================================================================
   Embodywell — shared styles
   Palette: Sage (see design-system/Brand Sheet.html for alternates)
   =========================================================================== */

:root {
  --bg: #EFEDE3;
  --paper: #E4E1D2;
  --ink: #1E2620;
  --ink-2: #5E6A5F;
  --ink-3: #9CA496;
  --accent: #7A8B6E;
  --rule: rgba(30, 38, 32, 0.10);
  --rule-strong: rgba(30, 38, 32, 0.18);

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans: "Geist", -apple-system, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;

  --radius-lg: 28px;
  --shadow-soft: 0 30px 70px -30px rgba(30, 38, 32, 0.30), 0 8px 20px -10px rgba(30, 38, 32, 0.14);
}

@supports (color: color-mix(in oklab, red, blue)) {
  :root {
    --shadow-soft: 0 30px 70px -30px color-mix(in oklab, var(--ink) 30%, transparent),
                   0 8px 20px -10px color-mix(in oklab, var(--ink) 14%, transparent);
  }
}

/* ---- Reset & base ---------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { overflow-x: hidden; }
a { color: var(--accent); }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
button { font: inherit; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 56px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

h1, h2, h3 { font-weight: 400; }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  color: var(--ink);
  text-wrap: pretty;
}

::selection { background: var(--accent); color: var(--bg); }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 26px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  background: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 999px;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.btn-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn-on-dark { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn-on-dark:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: translateY(-2px); }
.btn-on-dark-outline { background: transparent; color: var(--bg); border-color: rgba(245, 239, 230, 0.55); }
.btn-on-dark-outline:hover { background: rgba(245, 239, 230, 0.12); border-color: var(--bg); color: var(--bg); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn-accent:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-block { width: 100%; justify-content: center; }

/* ---- Nav ------------------------------------------------------------ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(239, 237, 227, 0.86);
  border-bottom: 1px solid var(--rule);
}
@supports (color: color-mix(in oklab, red, blue)) {
  .site-nav { background: color-mix(in oklab, var(--bg) 86%, transparent); }
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.nav-brand svg { display: block; }
.nav-brand span {
  font-family: var(--serif); font-size: 25px; letter-spacing: -0.015em; line-height: 1;
}
.nav-links { display: flex; gap: 36px; align-items: center; margin-left: auto; }
.nav-link {
  position: relative;
  color: var(--ink-2); text-decoration: none; font-size: 14px; letter-spacing: 0.01em;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px;
  background: var(--ink); transition: right 0.25s ease;
}
.nav-link:hover { color: var(--ink-2); }
.nav-link:hover::after { right: 0; }
.nav-cta { padding: 12px 22px; }
.nav-burger {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center; color: var(--ink);
  margin-left: auto;
}
.nav-burger [data-icon-close] { display: none; }
.nav-drawer {
  display: none;
  position: fixed; inset: 88px 0 0 0; background: var(--bg); z-index: 49;
  overflow-y: auto; padding: 8px 0 40px;
}
.nav-drawer.is-open { display: block; }
.nav-drawer-inner { display: flex; flex-direction: column; gap: 4px; padding-top: 20px; }
.nav-drawer-link {
  color: var(--ink); text-decoration: none; font-family: var(--serif);
  font-size: 28px; letter-spacing: -0.01em; padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.nav-drawer .btn { justify-content: center; margin-top: 28px; }
body.nav-open { overflow: hidden; }

/* ---- Scroll reveal -------------------------------------------------- */
[data-reveal] > * {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal] > *.is-revealed { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] > * { opacity: 1; transform: none; transition: none; }
}

/* ---- Hover treatments ------------------------------------------------ */
.lift-card, .lift-card-dark {
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease, background 0.35s ease;
}
.lift-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px -32px rgba(30, 38, 32, 0.34), 0 10px 26px -12px rgba(30, 38, 32, 0.18);
}
.lift-card-dark:hover { transform: translateY(-8px); background: rgba(245, 239, 230, 0.13); }
.img-hover { transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1); }
.img-hover:hover { transform: scale(1.045); }

/* ---- Founder philosophy reveal --------------------------------------- */
@keyframes philReveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.phil-reveal { animation: philReveal 0.45s ease both; }
@media (prefers-reduced-motion: reduce) { .phil-reveal { animation: none !important; } }

/* ---- Sections --------------------------------------------------------- */
.section { padding: 180px 0; }
.section-tight { padding: 96px 0; }

/* Hero */
.hero {
  position: relative; overflow: hidden; min-height: 94vh;
  display: flex; align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  position: absolute; top: -6%; left: 0; width: 100%; height: 112%;
  object-fit: cover; object-position: 80% 18%; will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 38, 32, 0.88) 0%, rgba(30, 38, 32, 0.55) 42%, rgba(30, 38, 32, 0.18) 68%, transparent 100%),
    linear-gradient(180deg, transparent 55%, rgba(30, 38, 32, 0.60) 100%);
}
.hero-content { position: relative; padding-bottom: 120px; width: 100%; }
.hero-inner { max-width: 760px; }
.hero-eyebrow { color: rgba(245, 239, 230, 0.75); }
.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.98; letter-spacing: -0.025em;
  margin: 20px 0 0; color: var(--bg);
}
.hero-sub {
  margin-top: 30px; font-size: 20px; line-height: 1.6;
  color: rgba(245, 239, 230, 0.86); max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* Problem */
.problem-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center;
}
.problem-card {
  margin-top: 48px; background: var(--paper); border-radius: var(--radius-lg);
  padding: 44px 48px; box-shadow: var(--shadow-soft);
}
.problem-card p { margin: 0; font-size: 20px; line-height: 1.6; color: var(--ink); }
.problem-card p + p { margin-top: 22px; font-size: 16px; line-height: 1.7; color: var(--ink-2); }
.problem-image-outer { position: relative; }
.problem-image-accent {
  position: absolute; top: -24px; right: -24px; width: 100%; height: 100%;
  background: var(--accent); border-radius: var(--radius-lg); opacity: 0.14;
}
.problem-image-wrap {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); aspect-ratio: 4 / 5;
}
.problem-image-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%;
}

/* Approach */
.approach-header { max-width: 640px; margin-bottom: 72px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar-card {
  padding: 44px 38px 48px; border-radius: var(--radius-lg);
  background: var(--bg); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 20px; min-height: 300px;
}
.pillar-numeral { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--accent); }
.pillar-title { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0; letter-spacing: -0.01em; color: var(--ink); line-height: 1.05; }
.pillar-body { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0 0 auto; }
.lenses-bar {
  margin-top: 32px; border-radius: var(--radius-lg); background: var(--bg);
  box-shadow: var(--shadow-soft); padding: 28px 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.lenses-list { display: flex; flex-wrap: wrap; align-items: center; }
.lens-item { font-size: 14px; color: var(--ink-2); padding-right: 18px; margin-right: 18px; white-space: nowrap; }
.lens-sep { width: 1px; height: 12px; background: var(--rule-strong); }

/* Offerings */
.offerings-header { margin-bottom: 64px; max-width: 720px; }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1320px; margin: 0 auto; }
.offer-card {
  padding: 36px 28px 32px; border-radius: var(--radius-lg);
  background: var(--paper); color: var(--ink);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 18px;
}
.offer-card--featured { background: var(--ink); color: var(--bg); }
.offer-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.offer-card--featured .offer-tag { color: var(--accent); }
.offer-title { font-family: var(--serif); font-weight: 400; font-size: 36px; margin: 0; letter-spacing: -0.015em; line-height: 1.02; }
.offer-price-row { margin-top: 14px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.offer-price { font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em; white-space: nowrap; }
.offer-cadence { font-size: 13px; opacity: 0.7; white-space: nowrap; }
.offer-forwhom { font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.5; margin: 0; color: var(--accent); }
.offer-desc { font-size: 14px; line-height: 1.65; margin: 0; color: var(--ink-2); }
.offer-card--featured .offer-desc { color: rgba(245, 239, 230, 0.78); }
.offer-includes { border-top: 1px solid var(--rule); padding-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.offer-card--featured .offer-includes { border-top-color: rgba(245, 239, 230, 0.18); }
.offer-include-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink); }
.offer-card--featured .offer-include-item { color: rgba(245, 239, 230, 0.92); }
.offer-dot { margin-top: 7px; width: 4px; height: 4px; border-radius: 999px; background: var(--ink); flex-shrink: 0; }
.offer-card--featured .offer-dot { background: var(--accent); }
.offer-cta { margin-top: auto; justify-content: center; }

/* Founder */
.founder-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 96px; align-items: center; }
.founder-image-outer { position: relative; }
.founder-image-accent {
  position: absolute; top: 28px; left: -28px; width: 100%; height: 100%;
  background: var(--accent); border-radius: var(--radius-lg); opacity: 0.16;
}
.founder-image-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.founder-image-wrap img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; }
.founder-copy .h2 { margin: 20px 0 28px; }
.founder-copy p { font-size: 17px; line-height: 1.65; color: var(--ink); margin: 0 0 16px; }
.founder-copy p.muted { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0; }
.founder-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.phil-toggle-icon { display: inline-flex; transition: transform 0.32s ease; }
.phil-toggle-icon.is-open { transform: rotate(90deg); }
.philosophy-panel { margin-top: 36px; }
.philosophy-panel[hidden] { display: none; }
.philosophy-card { border-radius: var(--radius-lg); background: var(--bg); box-shadow: var(--shadow-soft); padding: 32px 34px; }
.philosophy-card .eyebrow { margin-bottom: 18px; }
.philosophy-card p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px); line-height: 1.28;
  letter-spacing: -0.012em; color: var(--ink); margin: 0; text-wrap: pretty;
}
.philosophy-card em { font-style: italic; color: var(--accent); }

/* Testimonials */
.testimonials-header { margin-bottom: 64px; max-width: 640px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  margin: 0; padding: 36px 32px 30px; border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 22px; min-height: 320px;
}
.testimonial-quote {
  margin: 0; font-family: var(--serif); font-weight: 400; font-size: 21px;
  line-height: 1.35; letter-spacing: -0.005em; color: var(--ink);
}
.testimonial-quote .quote-full { display: none; }
.testimonial-card.is-expanded .quote-truncated { display: none; }
.testimonial-card.is-expanded .quote-full { display: inline; }
.testimonial-more-btn {
  align-self: flex-start; margin-top: -8px; display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-size: 13px; font-weight: 500; font-family: var(--sans);
  background: transparent; border: none; padding: 0; cursor: pointer;
}
.testimonial-meta { margin-top: auto; border-top: 1px solid var(--rule); padding-top: 16px; }
.testimonial-name { font-size: 14px; color: var(--ink); font-weight: 500; }
.testimonial-role { font-size: 12px; color: var(--ink-2); margin-top: 2px; }

/* Teams */
.teams-section { background: var(--accent); color: var(--bg); }
.teams-header-row {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap;
  gap: 28px; margin-bottom: 64px;
}
.teams-header-copy { max-width: 640px; }
.teams-header-copy .eyebrow { color: rgba(245, 239, 230, 0.72); }
.teams-title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 4.6vw, 64px); line-height: 1.0; letter-spacing: -0.025em; margin: 20px 0 0; }
.teams-lede { font-size: 17px; line-height: 1.6; color: rgba(245, 239, 230, 0.82); max-width: 400px; margin: 0; }
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.format-card {
  padding: 36px 28px; border-radius: var(--radius-lg);
  background: rgba(245, 239, 230, 0.08); border: 1px solid rgba(245, 239, 230, 0.16);
  display: flex; flex-direction: column; gap: 14px; min-height: 240px;
}
.format-numeral { font-family: var(--serif); font-style: italic; font-size: 20px; color: rgba(245, 239, 230, 0.75); }
.format-title { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0; letter-spacing: -0.01em; line-height: 1.08; }
.format-body { font-size: 13.5px; line-height: 1.6; color: rgba(245, 239, 230, 0.82); margin: 0; }
.teams-form-panel {
  margin-top: 56px; border-radius: var(--radius-lg); background: rgba(245, 239, 230, 0.06);
  border: 1px solid rgba(245, 239, 230, 0.2); padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.teams-form-intro { font-size: 16px; color: rgba(245, 239, 230, 0.82); max-width: 440px; line-height: 1.6; }
.teams-form, .cta-form, .subscribe-form { display: flex; flex-direction: column; gap: 14px; }
.field-input, .field-select {
  width: 100%; padding: 15px 20px; background: rgba(245, 239, 230, 0.06);
  border: 1px solid rgba(245, 239, 230, 0.3); color: var(--bg);
  font-family: var(--sans); font-size: 15px; outline: none;
  border-radius: 999px; box-sizing: border-box; appearance: none;
}
.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(245,239,230,0.7)' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center; background-size: 16px;
  padding-right: 44px;
}
.field-select option { background: var(--ink); color: var(--bg); }
.field-input::placeholder { color: rgba(245, 239, 230, 0.55); }
.cta-form .field-input, .cta-form .field-select { background: rgba(245, 239, 230, 0.04); border-color: rgba(245, 239, 230, 0.22); }
.form-note { font-size: 12px; color: rgba(245, 239, 230, 0.55); line-height: 1.5; }
.form-note-min { font-size: 11.5px; color: rgba(245, 239, 230, 0.4); line-height: 1.5; }
.form-status { font-size: 13px; line-height: 1.5; display: none; }
.form-status.is-visible { display: block; }
.form-status.is-error { color: #E7A6A0; }
.form-status.is-success { color: var(--bg); font-weight: 500; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 96px; }
.faq-intro .h2 { margin: 20px 0 24px; }
.faq-intro p { font-size: 15px; color: var(--ink-2); line-height: 1.65; margin: 0; }
.faq-intro a { color: var(--ink); }
.faq-panel { border-radius: var(--radius-lg); background: var(--bg); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; padding: 28px 32px;
  background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; color: var(--ink);
  font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em;
}
.faq-icon {
  width: 30px; height: 30px; border-radius: 999px; background: var(--paper);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  flex-shrink: 0; position: relative;
}
.faq-icon .icon-plus, .faq-icon .icon-minus { position: absolute; }
.faq-icon .icon-minus { display: none; }
.faq-item.is-open .faq-icon .icon-plus { display: none; }
.faq-item.is-open .faq-icon .icon-minus { display: block; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.24s ease; opacity: 0; padding: 0 32px; }
.faq-item.is-open .faq-answer { max-height: 220px; opacity: 1; padding: 0 32px 28px; }
.faq-answer p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 640px; }

/* CTA */
.cta-section { background: var(--ink); color: var(--bg); }
.cta-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.cta-eyebrow { color: var(--accent); }
.cta-title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -0.025em; margin: 20px 0 24px; }
.cta-copy { font-size: 18px; line-height: 1.6; color: rgba(245, 239, 230, 0.78); max-width: 520px; margin: 0; }
.cta-form-panel {
  background: rgba(245, 239, 230, 0.05); border: 1px solid rgba(245, 239, 230, 0.18);
  border-radius: var(--radius-lg); padding: 40px; display: flex; flex-direction: column; gap: 16px;
}
.cta-form-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.cta-form-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(245, 239, 230, 0.6); margin-top: -6px; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(245, 239, 230, 0.7); border-top: 1px solid rgba(245, 239, 230, 0.1); }
.footer-grid { padding: 64px 0 44px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--bg); }
.footer-brand span { font-family: var(--serif); font-size: 24px; letter-spacing: -0.015em; line-height: 1; }
.footer-tagline { margin-top: 16px; font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 239, 230, 0.5); margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { color: var(--bg); text-decoration: none; font-size: 14px; }
.footer-col-links a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 0 44px; border-top: 1px solid rgba(245, 239, 230, 0.1);
  display: flex; justify-content: space-between; font-size: 12px; color: rgba(245, 239, 230, 0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-left { display: flex; align-items: center; gap: 14px; }
.footer-seal { display: flex; align-items: center; gap: 8px; padding-left: 14px; border-left: 1px solid rgba(245, 239, 230, 0.15); }
.footer-seal img { height: 52px; width: auto; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

/* Journal */
.journal-header-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: end; }
.journal-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 6.4vw, 88px); line-height: 1.0;
  letter-spacing: -0.025em; margin: 20px 0 0; color: var(--ink);
}
.journal-lede { padding-bottom: 8px; max-width: 460px; }
.journal-lede p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.featured-card {
  border-radius: var(--radius-lg); background: var(--paper);
  box-shadow: var(--shadow-soft); padding: 48px; cursor: pointer;
}
.featured-card-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.featured-figure { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.featured-figure img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.featured-credit {
  position: absolute; left: 14px; bottom: 12px; padding: 5px 10px; border-radius: 999px;
  background: rgba(20, 17, 12, 0.55); backdrop-filter: blur(4px);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92); margin: 0;
}
.featured-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.featured-meta .eyebrow { color: var(--accent); }
.featured-meta .dot { color: var(--ink-3); font-size: 12px; }
.featured-meta .datum { font-family: var(--mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.08em; }
.featured-title { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 3.6vw, 46px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.featured-excerpt { margin-top: 22px; font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.featured-toggle { margin-top: 28px; }
.featured-toggle svg { transition: transform 0.24s ease; }
.featured-card.is-open .featured-toggle svg { transform: rotate(90deg); }
.featured-panel { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.55s ease, opacity 0.4s ease; }
.featured-card.is-open .featured-panel { opacity: 1; }
.featured-article { max-width: 720px; margin: 56px auto 0; border-top: 1px solid var(--rule); padding-top: 48px; }
.featured-article p { margin: 0 0 26px; font-size: 18px; line-height: 1.72; color: var(--ink); }
.featured-article p:last-child { margin-bottom: 0; }
.featured-article em { font-style: italic; }
.subscribe-section { background: var(--ink); color: var(--bg); }
.subscribe-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.subscribe-title { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin: 20px 0 22px; }
.subscribe-copy { font-size: 16px; line-height: 1.6; color: rgba(245, 239, 230, 0.78); margin: 0; max-width: 460px; }
.subscribe-form-panel {
  background: rgba(245, 239, 230, 0.05); border: 1px solid rgba(245, 239, 230, 0.18);
  border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 14px;
}

/* Legal pages */
.legal-nav .container { max-width: 1320px; padding: 0 56px; }
.legal-main { padding: 88px 0 120px; }
.legal-container { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.legal-container h1 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 5vw, 56px);
  line-height: 1.04; letter-spacing: -0.02em; margin: 18px 0 8px; text-wrap: pretty; color: var(--ink);
}
.legal-updated { font-size: 14px; color: var(--ink-2); margin: 0 0 48px; }
.legal-container h2 {
  font-family: var(--serif); font-weight: 400; font-size: 26px;
  letter-spacing: -0.01em; margin: 48px 0 14px; color: var(--ink);
}
.legal-container p, .legal-container li { font-size: 16px; line-height: 1.7; color: var(--ink); }
.legal-container p { margin: 0 0 16px; }
.legal-container ul { margin: 0 0 16px; padding-left: 22px; }
.legal-container li { margin-bottom: 6px; }
.legal-container strong { font-weight: 600; }
.legal-card { background: var(--paper); border-radius: 20px; padding: 32px 36px; margin: 24px 0 40px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-footer { border-top: 1px solid var(--rule); padding: 32px 0; text-align: center; font-size: 13px; color: var(--ink-2); }

/* ---- Responsive collapse --------------------------------------------- */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-links { display: none !important; }
  .nav-burger { display: inline-flex !important; }
  .problem-grid, .founder-grid, .faq-grid, .cta-grid,
  .pillars-grid, .offerings-grid, .testimonials-grid, .formats-grid,
  .teams-form-panel, .journal-header-grid, .subscribe-grid,
  .featured-card-grid, .cv-cols, .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .featured-figure { order: -1; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}
