/* ==========================================================
   VX DIARY site styles
   ========================================================== */

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

:root {
  --cream:      #FAF6F0;
  --parchment:  #F2EBE0;
  --blush:      #E8D4C4;
  --terracotta: #C07A5A;
  --rust:       #9E4F30;
  --umber:      #5C3A28;
  --sage:       #8A9E8C;
  --mist:       #D6DDD7;
  --text:       #3A2A20;
  --text-soft:  #7A6255;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

::selection { background: var(--blush); color: var(--umber); }

:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* ── NAV ── */
body > nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 3rem;
  min-height: var(--nav-h);
  background: rgba(250,246,240,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,122,90,0.12);
  transition: box-shadow 0.3s, padding 0.3s;
}

body > nav.scrolled { box-shadow: 0 4px 24px rgba(94,58,40,0.07); }

.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px; width: auto;
  transition: transform 0.3s;
}

.nav-logo:hover img { transform: scale(1.06); }

.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--umber);
  line-height: 1;
  white-space: nowrap;
}

.nav-logo-text span { color: var(--terracotta); }

.nav-links {
  display: flex; gap: 2.2rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--terracotta); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--terracotta);
  padding: 0.65rem 1.4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover { background: var(--rust); transform: translateY(-1px); }

/* hamburger */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 22px;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: var(--umber);
  transition: transform 0.32s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  background: var(--cream);
  border-bottom: 1px solid rgba(192,122,90,0.15);
  padding: 1.5rem 2rem 2.2rem;
  display: none;
  flex-direction: column;
  gap: 1.3rem;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open { transform: translateY(0); opacity: 1; }

.mobile-menu a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
}

.mobile-menu a:last-child {
  color: var(--terracotta);
  font-weight: 500;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--umber);
  padding: 0.95rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover { background: var(--rust); transform: translateY(-1px); }

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: transparent;
  border: 1px solid var(--blush);
  padding: 0.95rem 2rem;
  display: inline-block;
  text-decoration: none; cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}

.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.2s;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--umber);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}

.hero-title em { font-style: italic; color: var(--terracotta); }

.hero-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-soft);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}

.hero-actions {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--blush), transparent);
}

.hero-right { position: relative; overflow: hidden; background: var(--blush); }

.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  animation: slowZoom 22s ease-in-out infinite alternate;
}

.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(250,246,240,0.55) 0%, rgba(250,246,240,0) 32%),
    linear-gradient(to top, rgba(92,58,40,0.30) 0%, rgba(92,58,40,0) 45%);
  pointer-events: none;
}

.hero-quote-block {
  position: absolute;
  bottom: 9%;
  left: 6%;
  right: 6%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
  background: rgba(250,246,240,0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 3px solid var(--terracotta);
  padding: 1.6rem 1.8rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}

.hero-quote-block p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--umber);
  line-height: 1.5;
}

.hero-quote-block cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-style: normal;
}

/* ── SHARED SECTION TYPE ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--umber);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--terracotta); }

.section-sub {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

/* ── OUR STORY ── */
.story-section {
  padding: 7rem 5rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.story-figure { position: relative; }

.story-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 640px;
  object-fit: cover;
  object-position: 50% 62%;
}

.story-figure::after {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--blush);
  z-index: -1;
}

.story-copy .section-sub { margin-bottom: 2rem; }

.story-copy p + p { margin-top: 1.2rem; }

.story-copy .lede {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--umber);
  line-height: 1.55;
  margin-bottom: 1.6rem;
}

.story-copy .body-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.85;
}

.story-signature {
  margin-top: 2.2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--terracotta);
}

/* ── LIFE STAGES ── */
.stages {
  padding: 7rem 5rem;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.stages::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: 0.6;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.stage-card {
  background: var(--cream);
  border: 1px solid rgba(192,122,90,0.15);
  padding: 2rem 1.6rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(94,58,40,0.10);
}

.stage-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stage-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--umber);
  margin-bottom: 0.6rem;
}

.stage-age {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.stage-desc { font-size: 0.82rem; color: var(--text-soft); line-height: 1.7; }

.stage-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--terracotta), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.stage-card:hover::after { transform: scaleX(1); }

/* ── PILLARS ── */
.pillars {
  padding: 7rem 5rem;
  background: var(--umber);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,122,90,0.2) 0%, transparent 70%);
}

.pillars .section-label { color: var(--terracotta); }
.pillars .section-title { color: var(--cream); }
.pillars .section-title em { color: var(--terracotta); }
.pillars .section-sub { color: rgba(250,246,240,0.6); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1rem;
  position: relative;
}

.pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,122,90,0.2);
  padding: 3rem 2.4rem;
  transition: background 0.3s;
}

.pillar:hover { background: rgba(192,122,90,0.08); }

.pillar-icon {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.pillar-body { font-size: 0.88rem; color: rgba(250,246,240,0.58); line-height: 1.8; }

/* ── MANIFESTO ── */
.manifesto {
  padding: 6rem 5rem;
  background: var(--terracotta);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--cream);
}

.manifesto-text em { display: block; font-style: italic; opacity: 0.75; }

.manifesto-list { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; }

.manifesto-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(250,246,240,0.85);
  line-height: 1.6;
}

.manifesto-list li::before {
  content: '✦';
  color: rgba(250,246,240,0.5);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.7rem;
}

/* ── STORIES ── */
.stories { padding: 7rem 5rem; background: var(--cream); }

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  gap: 2rem;
}

.story-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.story-card {
  border: 1px solid var(--blush);
  padding: 2.4rem;
  position: relative;
  background: var(--cream);
  transition: box-shadow 0.3s, transform 0.3s;
}

.story-card:hover { box-shadow: 0 8px 32px rgba(94,58,40,0.09); transform: translateY(-3px); }

.story-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}

.story-excerpt {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.6rem;
}

.story-author { display: flex; align-items: center; gap: 0.9rem; }

.story-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--terracotta));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--cream);
}

.story-name {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.story-meta { font-family: var(--sans); font-size: 0.68rem; color: var(--text-soft); letter-spacing: 0.08em; }

/* ── SPECIALISTS ── */
.specialists { padding: 7rem 5rem; background: var(--parchment); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.spec-card {
  background: var(--cream);
  border: 1px solid rgba(192,122,90,0.15);
  padding: 2rem 1.6rem 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.spec-card:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(94,58,40,0.08); }

.spec-card { padding: 2.4rem 1.8rem 2.2rem; }

.spec-card::before {
  content: '';
  display: block;
  width: 34px; height: 2px;
  background: var(--terracotta);
  margin-bottom: 1.4rem;
}

.spec-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--umber);
  line-height: 1.3;
  margin-bottom: 0.9rem;
}

.spec-bio { font-size: 0.85rem; color: var(--text-soft); line-height: 1.8; }

/* ── JOURNAL TEASER (home) ── */
.journal-teaser { padding: 7rem 5rem; background: var(--cream); border-top: 1px solid var(--blush); }

.teaser-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4.5rem; align-items: center; }

.teaser-card {
  border: 1px solid var(--blush);
  padding: 3rem;
  background: var(--parchment);
}

.teaser-card .entry-kicker {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.teaser-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 300;
  color: var(--umber);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.teaser-card p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 2rem; }

/* ── CTA ── */
.cta-section {
  padding: 9rem 5rem;
  background: var(--umber);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'VX';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 28rem;
  font-weight: 300;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.cta-section > * { position: relative; }

.cta-section .section-label { color: var(--terracotta); }

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 em { font-style: italic; color: var(--terracotta); }

.cta-section p.cta-lede {
  font-size: 0.95rem;
  color: rgba(250,246,240,0.55);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.cta-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid transparent;
  padding: 1rem 1.4rem;
  outline: none;
  transition: border-color 0.2s;
}

.cta-form input::placeholder { color: var(--text-soft); }
.cta-form input.error { border-color: #C0453A; }

.cta-form button {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--terracotta);
  border: none;
  padding: 1rem 1.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
}

.cta-form button:hover { background: var(--rust); }

.form-message {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  min-height: 1.4rem;
  color: rgba(250,246,240,0.75);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-message.show { opacity: 1; transform: none; }
.form-message.err { color: #E8A79E; }

.cta-fineprint {
  margin-top: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(250,246,240,0.3);
}

/* ── WHATSAPP CHANNEL ── */
.wa-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1F6B4F;
  background: #E4F0E7;
  border: 1px solid #C3DCCB;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.wa-button:hover { background: #D7E9DD; transform: translateY(-1px); }

.wa-button svg {
  width: 17px; height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

.wa-button.light {
  color: var(--cream);
  background: rgba(255,255,255,0.07);
  border-color: rgba(250,246,240,0.22);
}

.wa-button.light:hover { background: rgba(255,255,255,0.13); }

.cta-alt {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(250,246,240,0.10);
}

.cta-alt-line {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.4rem;
}

.cta-alt-sub {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: rgba(250,246,240,0.4);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  background: #2A1A12;
  padding: 3.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(192,122,90,0.15);
}

.footer-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
}

.footer-logo img { height: 38px; width: auto; }

.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--cream);
  opacity: 0.75;
  white-space: nowrap;
}

.footer-logo-text span { color: var(--terracotta); }

.footer-nav { display: flex; gap: 2.2rem; list-style: none; flex-wrap: wrap; justify-content: center; }

.footer-nav a {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--terracotta); }

.footer-copy { font-family: var(--sans); font-size: 0.65rem; color: rgba(250,246,240,0.25); letter-spacing: 0.1em; }

/* ── JOURNAL PAGES ── */
.page-header {
  padding: calc(var(--nav-h) + 6rem) 5rem 4rem;
  background: var(--parchment);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 620px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: 0.55;
}

.page-header > * { position: relative; }

.page-header .section-sub { margin: 0 auto; }

.entry-list { padding: 6rem 5rem 7rem; background: var(--cream); max-width: 1000px; margin: 0 auto; }

.entry-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--blush);
  align-items: start;
}

.entry-item:first-child { padding-top: 0; }

.entry-date {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-top: 0.5rem;
}

.entry-item h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 300;
  color: var(--umber);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.entry-item h2 a { color: inherit; text-decoration: none; transition: color 0.25s; }
.entry-item h2 a:hover { color: var(--terracotta); }

.entry-item p { font-size: 0.94rem; color: var(--text-soft); line-height: 1.85; margin-bottom: 1.4rem; }

.entry-tags {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}

.read-link {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 0.25s;
}

.read-link:hover { gap: 0.9rem; }

.entry-empty {
  padding: 3rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-soft);
}

/* ── JOURNAL GROUPS ── */
.group-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.6rem;
}

.group-jump a {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  background: var(--cream);
  border: 1px solid var(--blush);
  padding: 0.6rem 1.3rem;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.group-jump a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: var(--cream);
}

.journal-group { padding-top: 4.5rem; }
.journal-group:first-of-type { padding-top: 0; }

.group-head {
  border-top: 2px solid var(--umber);
  padding-top: 1.6rem;
  margin-bottom: 1.2rem;
}

.journal-group:first-of-type .group-head { border-top: none; padding-top: 0; }

.group-index {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.7rem;
}

.group-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--umber);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.group-head h2 em { font-style: italic; color: var(--terracotta); }

.group-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 620px;
}

.group-count {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 1rem;
}

.journal-group .entry-item:first-of-type { padding-top: 2.5rem; }

.entry-invite {
  margin-top: 2.5rem;
  padding: 2.4rem 2.6rem;
  background: var(--parchment);
  border-left: 2px solid var(--terracotta);
}

.entry-invite p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--umber);
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.entry-invite .sub {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

/* ── ARTICLE ── */
.article-hero {
  padding: calc(var(--nav-h) + 5.5rem) 5rem 3.5rem;
  background: var(--parchment);
  text-align: center;
}

.article-hero .entry-tags { margin-bottom: 1.2rem; }

.article-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 300;
  color: var(--umber);
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 1.4rem;
}

.article-hero h1 em { font-style: italic; color: var(--terracotta); }

.article-byline {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.article-figure { max-width: 1100px; margin: 0 auto; padding: 0 5rem; }

.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 35%;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

article.entry-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 4.5rem 2rem 6rem;
}

article.entry-body p {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 1.6rem;
  font-weight: 300;
}

article.entry-body p.lede {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 300;
  color: var(--umber);
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

article.entry-body h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--umber);
  line-height: 1.3;
  margin: 3.2rem 0 1.2rem;
}

article.entry-body blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 0.4rem 0 0.4rem 1.8rem;
  margin: 2.6rem 0;
}

article.entry-body blockquote p {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--umber);
  line-height: 1.55;
  margin: 0;
}

article.entry-body ul { list-style: none; margin: 0 0 1.8rem; }

article.entry-body ul li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
}

article.entry-body ul li::before {
  content: '✦';
  position: absolute; left: 0; top: 0.15rem;
  color: var(--terracotta);
  font-size: 0.72rem;
}

.entry-signoff {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--terracotta);
}

.entry-footer-nav {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-eyebrow, .hero-title, .hero-body, .hero-actions, .hero-quote-block { opacity: 1; }
  html { scroll-behavior: auto; }
}

/* ── JOIN PAGE ── */
.join-wrap {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4.5rem) 2rem 5rem;
  background: var(--parchment);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.join-card {
  width: 100%;
  max-width: 560px;
  background: var(--cream);
  border: 1px solid rgba(192,122,90,0.18);
  padding: 3.2rem 3rem 3rem;
  position: relative;
}

.join-card .section-label { text-align: center; }

.join-card h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 300;
  color: var(--umber);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.1rem;
}

.join-card h1 em { font-style: italic; color: var(--terracotta); }

.join-intro {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 2.6rem;
}

.field { margin-bottom: 1.6rem; }

.field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}

.field .optional {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--text-soft);
  opacity: 0.75;
  margin-left: 0.4rem;
}

.field input[type="text"],
.field input[type="email"],
.field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  background: var(--parchment);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--blush);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C07A5A' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.6rem;
  cursor: pointer;
}

.field input:focus, .field select:focus { border-bottom-color: var(--terracotta); background: var(--cream); }
.field input.error, .field select.error { border-bottom-color: #C0453A; }

.field-hint {
  font-size: 0.72rem;
  color: var(--text-soft);
  opacity: 0.8;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.checkline {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 2rem 0 2.2rem;
  padding: 1.1rem 1.2rem;
  background: var(--parchment);
  border-left: 2px solid var(--blush);
}

.checkline input[type="checkbox"] {
  margin-top: 0.28rem;
  width: 15px; height: 15px;
  accent-color: var(--terracotta);
  flex-shrink: 0;
  cursor: pointer;
}

.checkline label {
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.65;
  cursor: pointer;
}

.join-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--umber);
  border: none;
  padding: 1.1rem 2rem;
  cursor: pointer;
  transition: background 0.25s;
}

.join-submit:hover { background: var(--rust); }

.join-fineprint {
  text-align: center;
  margin-top: 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  opacity: 0.75;
  line-height: 1.7;
}

.join-error {
  font-size: 0.78rem;
  color: #A83A2E;
  margin-top: 1rem;
  text-align: center;
  min-height: 1.2rem;
}

/* the door */
.join-door {
  display: none;
  text-align: center;
  padding: 1rem 0 0.5rem;
}

.join-door.show { display: block; animation: fadeUp 0.8s ease forwards; }

.door-mark {
  width: 74px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.join-door .kicker {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
}

.join-door h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--umber);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.join-door h2 em { font-style: italic; color: var(--terracotta); }

.join-door p {
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.9;
  max-width: 400px;
  margin: 0 auto 1.2rem;
}

.join-door .door-rule {
  width: 44px; height: 1px;
  background: var(--blush);
  margin: 2.2rem auto;
}

.door-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── ENTRY TABLE (entry 02) ── */
.entry-table-wrap { margin: 2.8rem 0; }

.entry-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 300;
}

.entry-table th {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  color: var(--terracotta);
  padding: 0 1.1rem 0.9rem 0;
  border-bottom: 1px solid var(--blush);
  vertical-align: bottom;
  width: 50%;
}

.entry-table th:last-child { padding-right: 0; padding-left: 1.1rem; }

.entry-table td {
  padding: 1rem 1.1rem 1rem 0;
  border-bottom: 1px solid rgba(232,212,196,0.5);
  color: var(--text-soft);
  line-height: 1.65;
  vertical-align: top;
}

.entry-table td:last-child { padding-right: 0; padding-left: 1.1rem; }

.entry-note {
  margin-top: 3rem;
  padding: 1.4rem 1.6rem;
  background: var(--parchment);
  border-left: 2px solid var(--blush);
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.75;
  font-style: italic;
}

.entry-tagline {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  line-height: 1.9;
}

/* ── BACK TO TOP ── */
.to-top {
  position: fixed;
  right: 1.8rem; bottom: 1.8rem;
  z-index: 98;
  width: 44px; height: 44px;
  border: 1px solid var(--blush);
  background: rgba(250,246,240,0.9);
  backdrop-filter: blur(8px);
  color: var(--terracotta);
  font-size: 0.9rem;
  cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.25s;
}

.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--parchment); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .stages-grid { grid-template-columns: repeat(3, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  body > nav { padding: 1rem 2rem; }
  .nav-links { gap: 1.5rem; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: flex; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4.5rem 2.2rem 3.5rem; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 78vw; }
  .hero-quote-block { width: 88%; bottom: 6%; }
  .story-section,
  .stages, .pillars, .manifesto, .stories,
  .specialists, .journal-teaser, .cta-section { padding: 4.5rem 2.2rem; }
  .story-section { grid-template-columns: 1fr; gap: 3rem; }
  .story-figure::after { display: none; }
  .stages-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-cards { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .teaser-card { padding: 2.2rem; }
  .stories-header { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .cta-form { flex-direction: column; gap: 0.6rem; }
  .cta-section::before { font-size: 15rem; }
  footer { flex-direction: column; gap: 2rem; text-align: center; padding: 3rem 2rem; }
  .page-header, .article-hero { padding-left: 2.2rem; padding-right: 2.2rem; }
  .article-figure { padding: 0 2.2rem; }
  .entry-list { padding: 3.5rem 2.2rem 4.5rem; }
  .entry-item { grid-template-columns: 1fr; gap: 1rem; }
  .entry-date { padding-top: 0; }
  article.entry-body { padding: 3rem 2.2rem 4rem; }
  .entry-footer-nav { padding: 0 2.2rem 4rem; }
  .join-wrap { padding: calc(var(--nav-h) + 2.5rem) 1.2rem 3.5rem; }
  .join-card { padding: 2.4rem 1.6rem 2.2rem; }
  .entry-table { font-size: 0.8rem; }
  .entry-table th { font-size: 0.58rem; }
  .entry-table td { padding: 0.8rem 0.7rem 0.8rem 0; }
  .entry-table td:last-child, .entry-table th:last-child { padding-left: 0.7rem; }
}

@media (max-width: 480px) {
  .stages-grid { grid-template-columns: 1fr; }
  .nav-logo-text { font-size: 1.05rem; letter-spacing: 0.14em; }
  .nav-logo img { height: 34px; }
  .hero-title { font-size: 2.6rem; }
}
