/* ── Variables ── */
:root {
  --bg: #FDFAF6;
  --bg-alt: #F5F0E8;
  --fg: #1C1A17;
  --muted: #6B6457;
  --accent: #C4622D;
  --accent-light: #E8A882;
  --sage: #7B9E6B;
  --navy: #2C3E50;
  --border: #E5DDD3;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: baseline; gap: 1.5rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--fg); letter-spacing: -0.02em; text-decoration: none; }
.nav-tagline { font-size: 0.875rem; color: var(--muted); font-weight: 300; flex: 1; }
.nav-cta { font-size: 0.85rem; font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; }
.nav-cta:hover { color: #b0541f; }
.nav-link { font-size: 0.85rem; color: var(--muted); text-decoration: none; }
.nav-link:hover { color: var(--fg); }

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.hero-lede {
  font-size: 1.1rem; line-height: 1.7; color: var(--muted); max-width: 460px; font-weight: 300;
}
.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(196, 98, 45, 0.18), 0 4px 16px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* ── Shared section styles ── */
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--fg); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--muted); max-width: 540px; font-weight: 300; line-height: 1.7;
}

/* ── Seasons ── */
.seasons { padding: 5rem 2rem; background: var(--bg-alt); }
.seasons-inner { max-width: 1100px; margin: 0 auto; }
.seasons .section-headline { max-width: 480px; }
.seasons .section-sub { margin-bottom: 3rem; }

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.season-card {
  background: var(--bg); border-radius: 8px; padding: 0;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
  position: relative;
}
.season-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.season-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: white;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 0.75rem;
  border-radius: 20px; z-index: 1;
}
.season-card--featured { border-color: var(--accent-light); }

.season-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.season-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.3s;
}
.season-card:hover .season-card-img img { transform: scale(1.03); }

.season-card-body { padding: 1.25rem 1.25rem 1.5rem; }
.season-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 0.5rem; color: var(--fg);
}
.season-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300; margin-bottom: 0.9rem; }
.season-card-cta {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  transition: color 0.2s;
}
.season-card-cta:hover { color: #b0541f; }

/* ── How ── */
.how { padding: 5rem 2rem; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-sub { margin-bottom: 3rem; }

.how-steps {
  display: flex; align-items: flex-start; gap: 0;
}
.step {
  flex: 1; background: var(--bg-alt); border-radius: 8px; padding: 1.75rem;
  border: 1px solid var(--border);
}
.step-connector {
  width: 60px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
}
.step-connector svg { width: 24px; height: 24px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent);
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 0.5rem; color: var(--fg);
}
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── Manifesto ── */
.manifesto { padding: 5rem 2rem; background: var(--fg); color: var(--bg); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 1.5rem;
}
.manifesto-quote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400; font-style: italic; line-height: 1.3;
  color: var(--bg); margin-bottom: 1.5rem;
}
.manifesto-body { font-size: 1rem; color: rgba(253, 250, 246, 0.7); font-weight: 300; line-height: 1.8; }

/* ── Pricing ── */
.pricing { padding: 5rem 2rem; background: var(--bg); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing .section-sub { margin-bottom: 3rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--bg-alt); border-radius: 8px; padding: 2rem 1.75rem;
  border: 1px solid var(--border); position: relative;
}
.pricing-card--featured {
  background: var(--fg); color: var(--bg);
  border: 1px solid var(--fg);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.9rem;
  border-radius: 20px; white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  margin-bottom: 0.75rem; letter-spacing: -0.02em;
}
.pricing-card--featured .pricing-price { color: var(--bg); }
.pricing-per { font-size: 0.9rem; font-weight: 400; }
.pricing-card > p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; font-weight: 300; margin-bottom: 1.25rem; }
.pricing-card--featured > p { color: rgba(253, 250, 246, 0.65); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-features li {
  font-size: 0.85rem; padding-left: 1.2rem; position: relative; font-weight: 400;
}
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.pricing-card--featured .pricing-features li::before { background: var(--accent-light); }
.pricing-card--featured .pricing-features li { color: rgba(253, 250, 246, 0.85); }
.pricing-card:not(.featured) .pricing-features li { color: var(--muted); }

/* ── Closing ── */
.closing { padding: 6rem 2rem; text-align: center; background: var(--bg-alt); }
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--fg); max-width: 700px; margin: 0 auto;
}

/* ── Footer ── */
.footer { padding: 2.5rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--fg); display: block; margin-bottom: 0.3rem; }
.footer-desc { font-size: 0.8rem; color: var(--muted); font-weight: 300; }
.footer-links { font-size: 0.8rem; color: var(--muted); font-weight: 400; }

/* ── Waitlist ── */
.waitlist {
  padding: 4rem 2rem;
  background: var(--accent);
  color: white;
  text-align: center;
}
.waitlist-inner { max-width: 640px; margin: 0 auto; }
.waitlist-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.8; margin-bottom: 0.75rem;
}
.waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 0.5rem;
}
.waitlist-sub {
  font-size: 0.95rem; opacity: 0.85; font-weight: 300;
  margin-bottom: 2rem; line-height: 1.6;
}
.waitlist-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.waitlist-input {
  flex: 1; min-width: 220px;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.65); }
.waitlist-input:focus { border-color: rgba(255,255,255,0.7); }
.waitlist-count {
  margin-top: 1.25rem; font-size: 0.82rem; opacity: 0.7;
}
.waitlist-msg {
  margin-top: 1rem; font-size: 0.9rem; font-weight: 500; min-height: 1.5em;
}
.waitlist-msg--success { color: #d4f5d4; }
.waitlist-msg--error { color: #ffd4d4; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}
.btn--primary:hover {
  background: #b0541f;
  border-color: #b0541f;
  color: white;
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: white;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { flex-direction: column; gap: 0.75rem; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .seasons, .how, .manifesto, .pricing, .closing, .waitlist { padding: 3.5rem 1.25rem; }
  .season-grid { grid-template-columns: 1fr; }
  .nav-inner { gap: 0.75rem; }
  .nav-tagline { display: none; }
  .waitlist-form { flex-direction: column; align-items: stretch; }
  .waitlist-input { min-width: unset; }
  .btn--waitlist { width: 100%; }
}