:root {
  color-scheme: light;
  --cream: #f4ecd8;
  --cream-light: #faf4e3;
  --cream-card: #fbf5e3;
  --green: #2c3a30;
  --green-deep: #243029;
  --yellow: #d4f25b;
  --yellow-soft: rgba(212, 242, 91, 0.45);
  --yellow-band: rgba(212, 242, 91, 0.22);
  --lavender: #dadbf0;
  --lavender-deep: #a5a8d5;
  --peach: #f4dcd2;
  --peach-band: rgba(244, 220, 210, 0.55);
  --peach-deep: #e8b8a8;
  --ink: #2c3a30;
  --muted: #6b7268;
  --rule: rgba(44, 58, 48, 0.15);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.55; font-size: 18px; -webkit-font-smoothing: antialiased; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }

/* Nav */
nav.top { padding: 22px 32px; display: flex; justify-content: space-between; align-items: center; background: var(--cream); border-bottom: 1px solid var(--rule); }
.logo { font-family: var(--serif); font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 14px; border: 1px solid var(--ink); border-radius: 2px; color: var(--ink); text-decoration: none; }
.nav-links { display: flex; gap: 32px; align-items: center; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links a { color: var(--ink); text-decoration: none; }
.nav-cta { background: var(--green); color: var(--cream); padding: 10px 22px; border-radius: 999px; font-size: 14px; letter-spacing: 0.06em; }

/* Hero */
.hero { padding: 80px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.hero h1 { font-family: var(--serif); font-size: 70px; line-height: 1.02; letter-spacing: -0.02em; font-weight: 500; margin-bottom: 32px; }
.hero h1 em { font-style: italic; }
.hero h1 .highlight { background: linear-gradient(transparent 55%, var(--peach) 55%); padding: 0 4px; }
.hero .kicker { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); border: 1.5px solid var(--green); border-radius: 999px; padding: 7px 16px; display: inline-block; margin-bottom: 26px; transform: rotate(-2deg); }
.hero p.lead { font-size: 21px; max-width: 540px; margin-bottom: 32px; line-height: 1.6; }
.hero p.lead em { font-style: italic; font-weight: 500; background: linear-gradient(transparent 65%, var(--peach-band) 65%); padding: 0 2px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.btn-primary { display: inline-block; background: var(--lavender); color: var(--ink); border: 1.5px solid var(--ink); padding: 16px 32px; border-radius: 999px; font-weight: 600; text-decoration: none; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; }
.btn-primary:hover { background: var(--peach); }
.btn-peach { background: var(--peach); border-color: var(--peach); color: var(--green); }
.scroll-cue { display: inline-flex; align-items: center; gap: 16px; text-decoration: none; color: var(--green); font-family: var(--serif); font-style: italic; font-size: 18px; letter-spacing: 0.04em; }
.scroll-cue .cue-label { padding-bottom: 2px; }
.scroll-cue .cue-arrow { display: inline-block; width: 22px; height: 36px; color: var(--peach-deep); animation: scroll-bob 2.6s ease-in-out infinite; }
.scroll-cue .cue-arrow svg { width: 100%; height: 100%; display: block; }
.scroll-cue:hover .cue-arrow { color: var(--green); animation-play-state: paused; }
@keyframes scroll-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.placeholder-photo { background: linear-gradient(135deg, #d4c9a8, #c6b89a); aspect-ratio: 4/5; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--green); font-family: var(--serif); font-size: 18px; font-style: italic; border: 1px dashed var(--green); text-align: center; padding: 20px; }
.photo-img { aspect-ratio: 4/5; width: 100%; border-radius: 4px; object-fit: cover; display: block; }

/* Timeline / Story */
.story { padding: 100px 0; background: var(--cream-light); }
.story-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.story-head .section-label { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.story-head h2 { font-family: var(--serif); font-size: 57px; line-height: 1.1; font-weight: 500; }
.story-head h2 em { font-style: italic; }
.story-head h2 .underline { background: linear-gradient(transparent 60%, var(--peach) 60%); padding: 0 4px; }
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 100px; top: 28px; bottom: 28px; width: 2px; background: var(--rule); }
.tl-row { display: grid; grid-template-columns: 100px 1fr; gap: 40px; padding: 24px 0; position: relative; }
.tl-row::before { content: ""; position: absolute; left: 92px; top: 32px; width: 16px; height: 16px; border-radius: 50%; background: var(--peach-deep); border: 4px solid var(--cream-light); z-index: 1; }
.tl-year { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--green); padding-top: 24px; text-align: right; padding-right: 24px; }
.tl-body h3 { font-family: var(--serif); font-size: 29px; line-height: 1.2; font-weight: 500; margin-bottom: 10px; }
.tl-body h3 em { font-style: italic; }
.tl-body p { font-size: 18px; line-height: 1.65; color: var(--ink); margin-bottom: 12px; }
.tl-body p:last-child { margin-bottom: 0; }
.tl-body p em { font-style: italic; font-weight: 500; background: linear-gradient(transparent 65%, var(--peach-band) 65%); padding: 0 2px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.tl-proof { margin: 36px 0 0 140px; padding: 22px 28px; border-left: 4px solid var(--peach-deep); background: var(--cream); border-radius: 0 6px 6px 0; font-family: var(--serif); }
.tl-proof p { font-size: 19px; line-height: 1.55; margin: 0 0 16px; }
.tl-proof p em { font-style: italic; font-weight: 600; color: var(--green-deep); background: linear-gradient(transparent 60%, var(--peach) 60%); padding: 0 4px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.tl-proof a { display: inline-block; font-family: var(--sans); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); text-decoration: none; border-bottom: 1.5px solid var(--green); padding-bottom: 2px; font-weight: 600; }

/* Thesis section */
.thesis-section { padding: 110px 0 120px; background: var(--cream-light); }
.thesis-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 32px auto 56px;
  max-width: 1000px;
  flex-wrap: nowrap;
}
.thesis-half {
  font-family: var(--serif);
  font-size: 53px;
  line-height: 1.0;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  flex: 1;
}
.thesis-half em {
  font-style: italic;
  background: linear-gradient(transparent 60%, var(--peach) 60%);
  padding: 0 6px;
}
.thesis-arrow { flex-shrink: 0; padding: 0 8px; }
.thesis-arrow svg { width: 110px; height: auto; display: block; }
.thesis-body { max-width: 740px; margin: 0 auto; }
.thesis-body p { font-size: 19px; line-height: 1.75; margin-bottom: 20px; color: var(--ink); }
.thesis-body p em { font-style: italic; font-weight: 500; background: linear-gradient(transparent 65%, var(--peach-band) 65%); padding: 0 2px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.thesis-body .thesis-climax {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.35;
  font-weight: 500;
  padding: 24px 30px;
  border-left: 4px solid var(--peach-deep);
  background: var(--cream);
  border-radius: 0 6px 6px 0;
  margin: 32px 0 0;
}
.thesis-body .thesis-climax em { background: linear-gradient(transparent 60%, var(--peach) 60%); padding: 0 4px; }
@media (max-width: 800px) {
  .thesis-statement { flex-direction: column; gap: 16px; }
  .thesis-arrow svg { transform: rotate(90deg); width: 60px; }
  .thesis-half { font-size: 40px; }
}

/* Beliefs */
.beliefs { padding: 110px 0; background: var(--cream); }
.beliefs-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.beliefs-head .section-label { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.beliefs-head h2 { font-family: var(--serif); font-size: 62px; line-height: 1.05; font-weight: 500; }
.beliefs-head h2 em { font-style: italic; }
.beliefs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.belief-card { background: var(--cream-light); border-radius: 10px; padding: 32px 34px; border: 1px solid var(--rule); border-left: 5px solid var(--peach-deep); }
.belief-card:nth-child(2n) { border-left-color: var(--green); }
.belief-card:nth-child(3n) { border-left-color: var(--yellow); }
.belief-card:nth-child(4n) { border-left-color: var(--lavender-deep); }
.belief-card h3 { font-family: var(--serif); font-size: 29px; line-height: 1.15; font-weight: 500; margin-bottom: 12px; }
.belief-card h3 em { font-style: italic; }
.belief-card p { font-size: 16px; line-height: 1.6; color: var(--ink); }
.belief-card p em { font-style: italic; font-weight: 500; background: linear-gradient(transparent 65%, var(--yellow-soft) 65%); padding: 0 2px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* Off-work */
.lifestyle { padding: 110px 0; background: var(--peach-band); }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.lifestyle .section-label { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.lifestyle h2 { font-family: var(--serif); font-size: 53px; line-height: 1.1; font-weight: 500; margin-bottom: 24px; }
.lifestyle h2 em { font-style: italic; }
.lifestyle h2 .underline { background: linear-gradient(transparent 60%, var(--peach-deep) 60%); padding: 0 4px; }
.lifestyle p { font-size: 19px; line-height: 1.7; margin-bottom: 18px; color: var(--ink); }
.lifestyle p em { font-style: italic; font-weight: 500; background: linear-gradient(transparent 65%, var(--peach-deep) 65%); padding: 0 2px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* Fit */
.fit { padding: 100px 0; background: var(--green); color: var(--cream); }
.fit-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.fit-head .section-label { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,236,216,0.7); margin-bottom: 14px; }
.fit-head h2 { font-family: var(--serif); font-size: 57px; line-height: 1.1; font-weight: 500; color: var(--cream); }
.fit-head h2 em { font-style: italic; color: var(--peach); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-card { background: rgba(244,236,216,0.05); border: 1px solid rgba(244,236,216,0.18); border-radius: 10px; padding: 32px 34px; }
.fit-card.yes { border-top: 5px solid var(--peach); }
.fit-card.no { border-top: 5px solid rgba(244,236,216,0.3); }
.fit-card .fit-label { font-family: var(--serif); font-style: italic; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,236,216,0.7); margin-bottom: 12px; }
.fit-card h3 { font-family: var(--serif); font-size: 31px; line-height: 1.15; font-weight: 500; margin-bottom: 18px; color: var(--cream); }
.fit-card h3 em { font-style: italic; color: var(--peach); }
.fit-card ul { list-style: none; }
.fit-card ul li { padding: 7px 0; padding-left: 22px; position: relative; font-size: 16px; color: var(--cream); opacity: 0.9; }
.fit-card.yes ul li::before { content: "\2713"; position: absolute; left: 0; color: var(--peach); font-weight: 700; }
.fit-card.no ul li::before { content: "\2715"; position: absolute; left: 0; color: rgba(244,236,216,0.4); font-weight: 700; }

/* Final CTA */
.final-cta { padding: 100px 0; background: var(--cream); }
.final-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center; }
.final-cta h2 { font-family: var(--serif); font-size: 62px; line-height: 1.05; margin-bottom: 24px; font-weight: 500; }
.final-cta h2 em { font-style: italic; }
.final-cta h2 .underline { background: linear-gradient(transparent 60%, var(--peach) 60%); padding: 0 4px; }
.final-cta p { font-size: 19px; margin-bottom: 32px; max-width: 480px; }

/* Footer */
footer { background: var(--green-deep); color: var(--cream); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; margin-bottom: 48px; }
.footer-logo { font-family: var(--serif); font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 14px; border: 1px solid var(--cream); border-radius: 2px; display: inline-block; margin-bottom: 14px; }
footer .tagline { font-size: 15px; opacity: 0.7; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols h5 { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; opacity: 0.7; }
.footer-cols a { display: block; color: var(--cream); text-decoration: none; padding: 4px 0; font-size: 15px; opacity: 0.9; }
.footer-bottom { border-top: 1px solid rgba(244,236,216,0.15); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; opacity: 0.6; }

@media (max-width: 960px) {
  .hero-grid, .lifestyle-grid, .final-grid { grid-template-columns: 1fr; gap: 40px; }
  .beliefs-grid, .fit-grid { grid-template-columns: 1fr; }
  .footer-grid, .footer-cols { grid-template-columns: 1fr; }
  .hero h1 { font-size: 53px; }
  .story-head h2, .beliefs-head h2, .fit-head h2, .final-cta h2 { font-size: 44px; }
  .lifestyle h2 { font-size: 40px; }
  .timeline::before { left: 12px; }
  .tl-row { grid-template-columns: 1fr; gap: 8px; padding-left: 40px; }
  .tl-row::before { left: 4px; top: 30px; }
  .tl-year { text-align: left; padding-right: 0; padding-top: 0; font-size: 18px; }
  .tl-proof { margin-left: 40px; }
}