:root {
  --cream: #F3EEE4;
  --tan: #DCD3C3;
  --tan-deep: #E6D6BC;
  --white: #FFFFFF;
  --ink: #2C2620;
  --sage: #5F6B52;
  --terracotta: #AF7657;
  --terracotta-dark: #96603F;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Public Sans', -apple-system, 'Apple SD Gothic Neo', sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Keep anchored section headings clear of the sticky navigation. */
section[id] { scroll-margin-top: 108px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}
.btn:hover { opacity: 0.85; }
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-link {
  background: none;
  padding: 15px 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn-full { width: 100%; text-align: center; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 100;
  border-bottom: 1px solid rgba(44,38,32,0.12);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
  font-size: 15px;
}
.nav-cta { white-space: nowrap; padding: 12px 22px; font-size: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .btn { margin-top: 8px; }

/* Hero */
.hero { padding: 70px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 56px;
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-image img {
  width: 100%;
  aspect-ratio: 451 / 621;
  object-fit: cover;
}
/* Split sections */
.split-section { padding: 90px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-grid-reverse { align-items: start; }
.split-copy h2 { font-size: 38px; line-height: 1.2; margin-bottom: 20px; }
.split-copy p, .split-copy-side p { font-size: 16px; line-height: 1.7; opacity: 0.85; margin-bottom: 14px; }
.split-copy-side { padding-top: 60px; }
.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.statement {
  font-family: var(--serif);
  font-size: 34px;
  text-align: center;
  line-height: 1.35;
  color: var(--sage);
  opacity: 0.9;
  margin: 60px 0 48px;
}

.experience-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.experience-panel {
  border-top: 1px solid rgba(44,38,32,0.16);
  padding-top: 16px;
}
.experience-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.experience-panel-copy { padding: 24px 0 2px; }
.experience-panel h3 { font-size: 25px; line-height: 1.15; margin-bottom: 12px; }
.experience-panel p { font-size: 15px; line-height: 1.6; opacity: 0.82; }

/* Centered sections */
.centered-section { padding: 90px 0; }
.centered-narrow { max-width: 720px; text-align: center; margin: 0 auto; }
.centered-narrow h2 { font-size: 38px; line-height: 1.25; margin-bottom: 20px; }
.section-sub { font-size: 16px; opacity: 0.8; }

.hesitation-questions {
  max-width: 560px;
  margin: 36px auto 24px;
  border-top: 1px solid rgba(44,38,32,0.15);
  text-align: left;
}
.hesitation-questions p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(44,38,32,0.15);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}
.hesitation-closing {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  opacity: 0.8;
}

/* Customer stories */
.testimonials-section {
  padding: 110px 0;
  background: rgba(220, 211, 195, 0.28);
}
.testimonials-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 42px;
}
.testimonials-intro .eyebrow { margin-bottom: 16px; }
.testimonials-intro h2 { font-size: 42px; line-height: 1.15; }
.testimonial-controls { display: flex; gap: 8px; }
.testimonial-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(44,38,32,0.28);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.testimonial-control:hover:not(:disabled) {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}
.testimonial-control:disabled { opacity: 0.3; cursor: default; }
.testimonials-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 2px 0 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 min(490px, calc(50% - 10px));
  min-height: 300px;
  margin: 0;
  padding: 34px;
  scroll-snap-align: start;
  border: 1px solid rgba(44,38,32,0.17);
  border-radius: 14px;
  background: rgba(243, 238, 228, 0.62);
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.testimonial-avatar {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--tan);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.testimonial figcaption span:last-child { display: flex; flex-direction: column; gap: 2px; }
.testimonial figcaption small {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sage);
}
.testimonial blockquote {
  max-width: 490px;
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.38;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.journey-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 42px 0;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(220, 211, 195, 0.42);
}
.journey-card:nth-child(2),
.journey-card:nth-child(3) { background: rgba(230, 214, 188, 0.42); }
.journey-card:nth-child(4) { background: var(--tan); }
.journey-num {
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--terracotta);
}
.journey-card h3 {
  max-width: 340px;
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.08;
}
.journey-card > p {
  max-width: 390px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.82;
}
.journey-visual {
  width: 100%;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

/* Step 01: the customer's starting point */
.goal-note {
  width: min(100%, 390px);
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  background: rgba(243, 238, 228, 0.88);
}
.goal-note span {
  display: block;
  padding: 13px 15px;
  border: 1px solid rgba(44,38,32,0.14);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-align: left;
}
.goal-note span:first-child { border-color: rgba(175,118,87,0.65); color: var(--terracotta-dark); }

/* Step 02: choices viewed together */
.options-visual { gap: 10px; }
.option-node {
  min-width: 104px;
  padding: 24px 10px;
  border: 1px solid rgba(44,38,32,0.2);
  border-radius: 9px;
  background: rgba(243, 238, 228, 0.56);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.option-node.active {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}
.option-line { width: 24px; height: 1px; background: rgba(44,38,32,0.28); }

/* Step 03: an understood plan */
.plan-visual {
  position: relative;
  gap: 12px;
  padding-bottom: 44px;
}
.plan-day {
  width: 92px;
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(44,38,32,0.2);
  border-radius: 9px;
  background: rgba(243, 238, 228, 0.56);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.plan-day i { width: 34px; height: 3px; background: rgba(44,38,32,0.3); }
.plan-day.active { border-color: var(--terracotta); background: var(--terracotta); color: var(--white); }
.plan-day.active i { background: rgba(255,255,255,0.78); }
.plan-recovery {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 210px;
  padding-top: 11px;
  border-top: 1px dashed rgba(44,38,32,0.3);
  transform: translateX(50%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--sage);
}

/* Step 04: room to recover */
.journey-card-image { padding-bottom: 0; }
.journey-photo {
  width: calc(100% + 84px);
  height: 205px;
  margin-top: auto;
  overflow: hidden;
}
.journey-photo img { width: 100%; height: 100%; object-fit: cover; }

.journey-card.reveal { transition-delay: 0s; }
.journey-card:nth-child(2).reveal { transition-delay: 0.08s; }
.journey-card:nth-child(3).reveal { transition-delay: 0.16s; }
.journey-card:nth-child(4).reveal { transition-delay: 0.24s; }

/* Step 05: the result of the journey */
.journey-outcome {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 42px 46px;
  border: 1px solid rgba(44,38,32,0.16);
  border-radius: 16px;
  background: rgba(243, 238, 228, 0.7);
}
.journey-outcome .journey-num { margin: 0; text-align: center; }
.journey-outcome h3 {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 1.12;
}
.journey-outcome p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.82;
}

/* Care before & after */
.care-section {
  padding: 104px 0;
  background: rgba(220, 211, 195, 0.24);
}
.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 90px;
  align-items: start;
}
.care-copy h2 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 46px;
  line-height: 1.1;
}
.care-copy > p:last-child {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.82;
}
.care-edits {
  border-top: 1px solid rgba(44,38,32,0.2);
}
.care-edit {
  padding: 30px 0 32px;
  border-bottom: 1px solid rgba(44,38,32,0.2);
}
.care-label {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.care-edit h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.15;
}
.care-edit p:last-child {
  max-width: 510px;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.82;
}

/* The MOSIM Edit */
.mosim-edit-section {
  padding: 104px 0;
  background: var(--tan-deep);
}
.mosim-edit-content { max-width: 760px; }
.mosim-edit-content h2 {
  margin-bottom: 28px;
  font-size: 50px;
  line-height: 1.08;
}
.mosim-edit-content p:not(.eyebrow) {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
}
.mosim-edit-intro {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 24px !important;
  line-height: 1.35 !important;
}

/* Begin / contact */
.begin-section { background: var(--tan-deep); padding: 90px 0; }
.begin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.begin-grid.is-submitted {
  grid-template-columns: 1fr;
  min-height: 280px;
  align-items: center;
}
.begin-grid.is-submitted .begin-copy { display: none; }
.begin-copy h2 { font-size: 36px; margin-bottom: 20px; line-height: 1.2; }
.begin-copy p { font-size: 16px; line-height: 1.7; opacity: 0.85; }
.begin-form { display: flex; flex-direction: column; gap: 18px; }
.begin-form.is-submitted {
  max-width: 560px;
  min-height: 180px;
  margin: 0 auto;
  justify-content: center;
}
.begin-form.is-submitted > :not(.form-success) { display: none !important; }
.begin-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}
.begin-form input,
.begin-form select,
.begin-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid rgba(44,38,32,0.2);
  border-radius: 3px;
  background: var(--cream);
  color: var(--ink);
}
.begin-form textarea { min-height: 90px; resize: vertical; }
.field-note { font-size: 12px; font-weight: 400; opacity: 0.65; }
.form-consent {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}
.form-consent input { width: 15px; height: 15px; margin: 2px 0 0; accent-color: var(--terracotta); }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-helper { font-size: 13px; opacity: 0.7; text-align: center; }
.form-privacy-note { font-size: 12px; opacity: 0.55; text-align: center; margin-top: 4px; }
.form-error { font-size: 13px; color: #9d3e31; text-align: center; }
.form-success { padding: 20px; text-align: center; }
.form-success-heading {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.form-success-body {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  opacity: 0.84;
}

/* Footer */
.footer { padding: 50px 0; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-tag { font-size: 14px; opacity: 0.7; margin-top: 6px; }
.footer-right { text-align: right; }
.footer-links { display: flex; gap: 20px; justify-content: flex-end; font-size: 14px; margin-bottom: 8px; }
.footer-copy { font-size: 13px; opacity: 0.6; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 18px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 40px 0 20px; }
  .hero-copy h1 { font-size: 38px; }
  .split-grid, .split-grid-reverse { grid-template-columns: 1fr; gap: 28px; }
  .split-copy-side { padding-top: 0; }
  .split-section { padding: 56px 0; }
  .split-copy h2 { font-size: 30px; }
  .statement { font-size: 26px; margin: 40px 0 32px; }
  .experience-panels { grid-template-columns: 1fr; gap: 44px; }
  .experience-panel { padding-top: 12px; }
  .experience-panel img { aspect-ratio: 4 / 3; }
  .experience-panel-copy { padding-top: 20px; }
  .experience-panel h3 { font-size: 24px; margin-bottom: 10px; }
  .testimonials-section { padding: 72px 0; }
  .testimonials-intro { display: flex; align-items: end; padding-bottom: 30px; gap: 20px; }
  .testimonials-intro h2 { font-size: 31px; }
  .testimonial-controls { flex: 0 0 auto; }
  .testimonial-control { width: 38px; height: 38px; }
  .testimonials-grid { gap: 14px; margin-right: -20px; padding-right: 20px; }
  .testimonial,
  .testimonial:nth-child(odd),
  .testimonial:nth-child(even) {
    flex-basis: min(328px, calc(100vw - 58px));
    min-height: 282px;
    padding: 28px;
    border-left: 1px solid rgba(44,38,32,0.17);
  }
  .testimonial figcaption { margin-bottom: 20px; }
  .testimonial-avatar { width: 60px; height: 60px; flex-basis: 60px; }
  .testimonial blockquote { font-size: 22px; }
  .centered-section { padding: 56px 0; }
  .centered-narrow h2 { font-size: 28px; }
  .journey-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .journey-card { min-height: 450px; padding: 40px 24px 0; }
  .journey-card h3 { font-size: 31px; }
  .journey-card > p { font-size: 15px; }
  .journey-photo { width: calc(100% + 48px); height: 190px; }
  .journey-outcome { grid-template-columns: 1fr; gap: 12px; padding: 36px 28px; text-align: center; }
  .journey-outcome h3 { font-size: 30px; }
  .journey-outcome p { font-size: 15px; }
  .care-section { padding: 72px 0; }
  .care-grid { grid-template-columns: 1fr; gap: 42px; }
  .care-copy h2 { font-size: 33px; }
  .care-copy > p:last-child,
  .care-edit p:last-child { font-size: 15px; }
  .care-edit { padding: 26px 0 28px; }
  .care-edit h3 { font-size: 25px; }
  .mosim-edit-section { padding: 72px 0; }
  .mosim-edit-content h2 { font-size: 40px; }
  .mosim-edit-content p:not(.eyebrow) { font-size: 16px; }
  .mosim-edit-intro { font-size: 22px !important; }
  .option-node { min-width: 86px; padding: 21px 7px; font-size: 10px; }
  .option-line { width: 16px; }
  .plan-day { width: 82px; min-height: 86px; }
  .begin-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { flex-direction: column; }
  .footer-right { text-align: left; }
  .footer-links { justify-content: flex-start; }
}
