/* 7 Seeds of Success® — Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --bg:           #FFFFFF;
  --bg-section:   #F7F6F3;
  --text:         #1C1C1E;
  --accent:       #0891B2;
  --accent-dark:  #0779A0;
  --secondary:    #D97706;
  --secondary-dark:#B85C00;
  --muted:        #6B7280;
  --border:       #E5E4E0;
  --max-w:        1100px;
  --read-w:       680px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── Base ───────────────────────────────────────────────────────────────── */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

p { margin-bottom: 1.25rem; color: #3a3a3c; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: 0; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--read-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-section); }
.section--tight { padding: 3rem 0; }
.section--large { padding: 7rem 0; }
.divider { border: none; border-top: 1px solid var(--border); }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 2rem;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__logo:hover { color: var(--accent); text-decoration: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); text-decoration: none; }

.nav__cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem !important;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); text-decoration: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); color: white; }

.btn--secondary { background: var(--secondary); color: white; border-color: var(--secondary); }
.btn--secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); color: white; }

.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: white; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.10); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); color: var(--text); }

.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: 6rem 0 5rem; }
.hero--center { text-align: center; }
.hero--center .hero__body, .hero--center .hero__actions { margin-left: auto; margin-right: auto; }

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero__h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.hero--center .hero__h1 { max-width: 100%; }

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--text);
  max-width: var(--read-w);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero__body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__body p { color: var(--muted); margin-bottom: 0; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 600px;
  align-items: center;
}

/* ── Path Cards ──────────────────────────────────────────────────────────── */
.path-intro {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin: 2.5rem 0 2rem;
}

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

.path-card {
  display: block;
  background: var(--bg-section);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem 3.25rem;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}
.path-card::after {
  content: '→';
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.25s;
}
.path-card:hover { border-color: var(--accent); background: white; transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); text-decoration: none; }
.path-card:hover::after { transform: translateX(5px); }

.path-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.path-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.path-card__sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.path-waitlist {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ── Video Placeholder ───────────────────────────────────────────────────── */
.video-wrap { max-width: 680px; margin: 0 auto; }

.video-placeholder {
  background: var(--bg-section);
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 3.5rem 2.5rem;
  text-align: center;
}

.video-placeholder__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.video-placeholder__icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.video-placeholder__icon svg { width: 32px; height: 32px; fill: white; margin-left: 5px; }

.video-placeholder__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.video-placeholder__length { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.video-placeholder__notice { font-size: 0.9rem; color: var(--muted); font-style: italic; margin-bottom: 1.5rem; }

/* ── Image Placeholder ───────────────────────────────────────────────────── */
.img-placeholder {
  background: var(--bg-section);
  border: 2px dashed var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.875rem;
  padding: 2rem;
  text-align: center;
}
.img-placeholder svg { width: 40px; height: 40px; opacity: 0.25; }
.img-placeholder--hero { aspect-ratio: 16/9; }
.img-placeholder--portrait { aspect-ratio: 3/4; }
.img-placeholder--square { aspect-ratio: 1/1; }
.img-placeholder--landscape { aspect-ratio: 4/3; }
.img-placeholder--wide { aspect-ratio: 21/9; }

/* ── Real Images ─────────────────────────────────────────────────────────── */
.site-img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.site-img--portrait { aspect-ratio: 3/4; object-position: top; }
.site-img--landscape { aspect-ratio: 4/3; }
.site-img--hero { aspect-ratio: 16/9; max-height: 420px; }
@media (max-width: 600px) {
  .site-img--hero    { aspect-ratio: auto; height: 240px; }
  .site-img--landscape { aspect-ratio: auto; height: 240px; }
  .site-img--portrait  { aspect-ratio: auto; height: 300px; }
}

/* ── Email Form ──────────────────────────────────────────────────────────── */
.email-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 480px;
}

.email-form input[type="text"],
.email-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.email-form input:focus { border-color: var(--accent); }
.email-form input::placeholder { color: var(--muted); }
.email-form--stacked { flex-direction: column; align-items: stretch; }
.email-form--stacked input { min-width: 0; }
.email-form--centered { margin: 0 auto; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; }

/* ── Section Label ───────────────────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ── Seed Cards ──────────────────────────────────────────────────────────── */
.seed-grid { display: grid; gap: 1.25rem; }

.seed-card {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1.75rem 2rem;
  transition: box-shadow 0.2s;
}
.seed-card:nth-child(2n) { border-left-color: var(--secondary); }
.seed-card:nth-child(2n) .seed-card__num { color: var(--secondary); }
.seed-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.seed-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.seed-card__name { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.seed-card__tagline { font-size: 0.95rem; color: var(--muted); margin-bottom: 1rem; }
.seed-card__detail { font-size: 0.9rem; line-height: 1.7; color: #4a4a4f; }
.seed-card__detail p { color: #4a4a4f; margin-bottom: 0.5rem; }
.seed-card__detail p:last-child { margin-bottom: 0; }

/* ── Checklist ───────────────────────────────────────────────────────────── */
.checklist { list-style: none; margin: 1.25rem 0; }

.checklist li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text);
}
.checklist li:first-child { border-top: 1px solid var(--border); }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: var(--accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── CTA Cards ───────────────────────────────────────────────────────────── */
.cta-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }

.cta-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.2s;
}
.cta-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.07); }

.cta-card__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.75rem; }
.cta-card__title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; line-height: 1.3; }
.cta-card__body { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.6; }

/* ── Callout ─────────────────────────────────────────────────────────────── */
.callout {
  background: #A67C52;
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}
.callout p { color: #1C1C1E; font-weight: 600; margin-bottom: 0.25rem; }
.callout p:last-child { margin-bottom: 0; }

/* ── Logistics ───────────────────────────────────────────────────────────── */
.logistics-grid {
  background: var(--bg-section);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.875rem 2rem;
  max-width: 520px;
}
.logistics-grid dt { font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); padding-top: 2px; }
.logistics-grid dd { color: var(--text); font-size: 0.95rem; }

/* ── Credentials ─────────────────────────────────────────────────────────── */
.cred-row { display: flex; gap: 3rem; flex-wrap: wrap; margin: 2rem 0; }
.cred__num { font-size: 2.75rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 0.2rem; }
.cred__label { font-size: 0.875rem; color: var(--muted); max-width: 120px; line-height: 1.4; }

/* ── Two Column ──────────────────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col--wide { grid-template-columns: 1.3fr 1fr; }
.two-col--vcenter { align-items: center; }

/* ── Bullet List ─────────────────────────────────────────────────────────── */
.bullet-list { list-style: none; margin: 1rem 0; }
.bullet-list li { padding-left: 1.5rem; position: relative; margin-bottom: 0.6rem; font-size: 0.95rem; color: var(--text); }
.bullet-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── Upcoming Items ──────────────────────────────────────────────────────── */
.upcoming-list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.upcoming-item { background: white; padding: 1.75rem 2rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; transition: background 0.2s; }
.upcoming-item:hover { background: var(--bg-section); }
.upcoming-item__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.4rem; }
.upcoming-item__title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.upcoming-item__sub { font-size: 0.9rem; color: var(--muted); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--text); color: rgba(255,255,255,0.65); padding: 4.5rem 0 2rem; }
.footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand { font-size: 1rem; font-weight: 800; color: white; margin-bottom: 0.75rem; }
.footer__tagline { font-size: 0.9rem; line-height: 1.65; max-width: 300px; color: rgba(255,255,255,0.4); }
.footer__col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.footer__col ul a:hover { color: white; text-decoration: none; }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ── Blog Index ──────────────────────────────────────────────────────────── */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }

.blog-card__illus {
  background: var(--bg-section);
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  min-height: 140px;
}
.blog-card__illus svg { width: 160px; height: 110px; }
.blog-card__illus--photo {
  padding: 0;
  background: none;
  min-height: unset;
}
.blog-card__illus--photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.blog-card__sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.15rem 0 0.75rem;
  font-style: italic;
}

.blog-card__body {
  padding: 1.5rem 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}
.blog-card__link:hover { color: var(--accent-dark); text-decoration: none; }

.blog-more {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.blog-more a { color: var(--accent); font-weight: 600; }

/* ── Blog Post ───────────────────────────────────────────────────────────── */
.blog-post-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.blog-post-meta .meta-category { color: var(--accent); }
.blog-post-meta .meta-sep { color: var(--border); }

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.blog-back:hover { color: var(--accent); text-decoration: none; }

.blog-post-hero h1 {
  max-width: 22ch;
}
.blog-post-subhead {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.5rem;
  max-width: 36ch;
}

.blog-post-illustration {
  margin: 0 auto 0;
  padding: 2.5rem 2rem 0;
  max-width: var(--read-w);
  text-align: center;
}
.blog-post-illustration svg,
.blog-post-illustration img { max-width: 520px; width: 100%; display: inline-block; border-radius: 8px; }
.blog-post-illustration--sm { padding: 1.5rem 2rem; }
.blog-post-illustration--sm svg,
.blog-post-illustration--sm img { max-width: 280px; border-radius: 8px; }

.blog-body {
  padding: 3rem 0 5rem;
}

.blog-body h2 {
  font-size: 1.2rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}

.blog-pullquote {
  border-left: 3px solid var(--accent);
  padding: 1.1rem 1.5rem;
  margin: 2.25rem 0;
  background: var(--bg-section);
  border-radius: 0 8px 8px 0;
}
.blog-pullquote p {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

.blog-cta {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.25rem 2.5rem;
  margin-top: 3.5rem;
  text-align: center;
}
.blog-cta h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.blog-cta p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 44ch; margin-left: auto; margin-right: auto; }

/* ── Scroll Fade-in ──────────────────────────────────────────────────────── */
.js-reveal { opacity: 0; transition: opacity 0.6s ease; }
.js-reveal.is-visible { opacity: 1; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .path-grid { grid-template-columns: 1fr; }
  .two-col, .two-col--wide { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  body { font-size: 17px; }
  .nav__links {
    display: none;
    position: fixed;
    top: 63px;
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav__links--open { display: flex; }
  .nav__hamburger { display: flex; }
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .section--large { padding: 4rem 0; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .cta-cards { grid-template-columns: 1fr; }
  .cred-row { gap: 2rem; }
  .logistics-grid { grid-template-columns: 1fr; }
  .logistics-grid dt { margin-top: 0.5rem; }
  .upcoming-item { grid-template-columns: 1fr; gap: 1rem; }
  .email-form { flex-direction: column; }
  .email-form input { min-width: 0; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container, .container--narrow { padding: 0 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
  .footer__inner { padding: 0 1.25rem; }
  .video-placeholder { padding: 2.5rem 1.5rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}
