/* ===== VARIABLES ===== */
:root {
  --bg: #F9F5EE;
  --bg-alt: #F0EBE1;
  --fg: #1A3A2E;
  --fg-muted: #4A6741;
  --accent: #C88B3A;
  --accent-light: #E8C07A;
  --white: #FFFFFF;
  --border: #D9D0C4;
  --shadow: rgba(26, 58, 46, 0.08);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.2; }
section { padding: 80px 24px; }
img { display: block; max-width: 100%; }

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  padding: 100px 48px 80px;
  min-height: 620px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-block {
  background: var(--fg);
  color: var(--bg);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.hero-block::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
}
.hero-block--top { border-radius: 16px 16px 4px 16px; }
.hero-block--bottom { border-radius: 16px 4px 16px 16px; }
.block-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249,245,238,0.6);
}
.block-value {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
}
.block-unit {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.7;
}

/* ===== SERVICES ===== */
.services {
  background: var(--fg);
  padding: 96px 48px;
}
.services-header { max-width: 680px; margin-bottom: 56px; }
.services .section-title { color: var(--bg); }
.services .section-sub { color: rgba(249,245,238,0.65); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: rgba(249,245,238,0.06);
  border: 1px solid rgba(249,245,238,0.12);
  border-radius: 16px;
  padding: 28px;
  transition: background 0.2s;
}
.service-card:hover { background: rgba(249,245,238,0.1); }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  color: rgba(249,245,238,0.6);
  line-height: 1.65;
}

/* ===== SCHEDULE ===== */
.schedule {
  background: var(--bg);
  padding: 96px 48px;
}
.schedule-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.schedule-text .section-title { margin-bottom: 20px; }
.schedule-text .section-body { margin-bottom: 0; }
.schedule-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-season {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  text-align: center;
}
.season-winter { background: #E8F0F7; color: #2C5282; }
.season-spring { background: #E8F5ED; color: #276749; }
.season-summer { background: #FEF3E2; color: #975A16; }
.season-fall { background: #FAF0E6; color: #C05621; }
.timeline-tasks { display: flex; flex-direction: column; gap: 6px; }
.timeline-tasks span {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 12px;
  border-left: 2px solid var(--accent-light);
  line-height: 1.4;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-alt);
  padding: 96px 48px;
}
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-title { margin-bottom: 12px; }
.pricing-header .section-sub { margin: 0 auto; text-align: center; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 32px var(--shadow); }
.pricing-card--featured {
  border: 2px solid var(--accent);
  background: var(--fg);
  color: var(--bg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-card--featured .pricing-tier { color: var(--accent-light); }
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-price { color: var(--bg); }
.pricing-period {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.7;
}
.pricing-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card--featured .pricing-tagline { color: rgba(249,245,238,0.6); border-color: rgba(249,245,238,0.15); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  top: 2px;
}
.pricing-card--featured .pricing-features li { color: rgba(249,245,238,0.8); }
.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg);
  padding: 96px 48px;
}
.hiw-header { text-align: center; margin-bottom: 64px; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.hiw-step { position: relative; }
.hiw-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 16px;
  line-height: 1;
}
.hiw-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.hiw-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--fg);
  padding: 96px 48px;
}
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--bg);
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1.125rem;
  color: rgba(249,245,238,0.65);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 56px;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(249,245,238,0.15);
}
.closing-stat { text-align: center; }
.stat-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(249,245,238,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  padding: 48px 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.875rem;
}
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--fg); }
.footer-sep { color: var(--border); }
.footer-legal {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.5;
  width: 100%;
}

/* ===== RESPONSIVE ===== */

/* ===== WAITLIST FORM ===== */
.waitlist-form-wrapper {
  max-width: 560px;
  margin: 0 auto 72px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px var(--shadow);
  scroll-margin-top: 40px;
}
.waitlist-title {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.waitlist-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.waitlist-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.2s;
}
.waitlist-form input:focus {
  outline: none;
  border-color: var(--fg);
}
.waitlist-form button {
  padding: 14px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.waitlist-form button:hover {
  background: var(--fg-muted);
}
.form-alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 16px;
}
.form-alert--success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}
.form-alert--error {
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 64px 32px 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  section { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .schedule-inner { grid-template-columns: 1fr; gap: 48px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .closing-stats { flex-direction: column; gap: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-brand { margin-bottom: 8px; }
}