:root {
  --ink: #151814;
  --moss: #315d43;
  --olive: #8a9b5a;
  --melon: #df765f;
  --cream: #f8f2e8;
  --paper: #fffdf7;
  --clay: #b6694f;
  --muted: #687167;
  --line: rgba(21, 24, 20, .13);
  --shadow: 0 28px 80px rgba(21, 24, 20, .16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(49, 93, 67, .08) 1px, transparent 1px), linear-gradient(0deg, rgba(49, 93, 67, .08) 1px, transparent 1px), var(--cream);
  background-size: 72px 72px;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0 62%, rgba(223, 118, 95, .13) 62% 76%, transparent 76%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 9ch;
  margin-bottom: 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .78;
}
h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5.5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .92;
}
h3 { margin-bottom: .55rem; font-size: 1.15rem; letter-spacing: 0; }
.section-pad { padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem); }
.eyebrow {
  margin-bottom: .95rem;
  color: var(--clay);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,.52);
  background: rgba(248, 242, 232, .78);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: .75rem; font-weight: 950; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: conic-gradient(from 140deg, var(--moss), var(--melon), var(--olive), var(--moss));
  box-shadow: 0 12px 32px rgba(49, 93, 67, .22);
}
.main-nav { display: flex; align-items: center; gap: 1.05rem; color: var(--muted); font-size: .92rem; font-weight: 800; }
.main-nav a:hover { color: var(--moss); }
.nav-cta { padding: .78rem 1rem; color: var(--paper) !important; background: var(--ink); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }
.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(3rem, 8vw, 6rem);
}
.hero-plate { position: relative; z-index: 1; padding-left: clamp(0rem, 4vw, 3rem); }
.hero-text { max-width: 630px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .92rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--moss); box-shadow: 0 18px 42px rgba(49, 93, 67, .24); }
.btn-secondary { color: var(--ink); background: rgba(255,255,255,.58); border-color: var(--line); }
.hero-media { position: relative; min-height: clamp(420px, 58vw, 680px); }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 7% 8% auto auto;
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid rgba(21, 24, 20, .22);
  border-radius: 50%;
}
.hero-media img {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(680px, 92%);
  height: 100%;
  border-radius: 52% 48% 10% 10% / 36% 42% 10% 10%;
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  left: 0;
  bottom: 9%;
  width: min(245px, 58%);
  padding: 1rem;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 3.2rem; font-family: Georgia, serif; font-weight: 500; line-height: .85; }
.hero-badge span { display: block; margin-top: .55rem; color: rgba(255,255,255,.72); line-height: 1.45; }
.vertical-note {
  position: absolute;
  right: 1.25rem;
  top: 18%;
  writing-mode: vertical-rl;
  color: rgba(21, 24, 20, .45);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.metrics {
  width: min(1180px, calc(100% - 2rem));
  margin: -1.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, .86);
  box-shadow: var(--shadow);
}
.metrics article { padding: 1.2rem; border-right: 1px solid var(--line); }
.metrics article:last-child { border-right: 0; }
.metrics strong { display: block; color: var(--moss); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; line-height: 1; }
.metrics span { color: var(--muted); font-weight: 800; }
.method { display: grid; grid-template-columns: .25fr 1.1fr .65fr; gap: 2rem; align-items: start; }
.section-kicker {
  color: var(--moss);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.method-card { padding: 1.4rem; border-left: 4px solid var(--melon); background: var(--paper); box-shadow: var(--shadow); }
.method-card p, .program-card p, .timeline p, .plan p, .quote p, .contact-copy p { color: var(--muted); line-height: 1.7; }
.editorial {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background: var(--paper);
}
.photo-mosaic { position: relative; min-height: 600px; }
.photo-mosaic img { position: absolute; box-shadow: var(--shadow); }
.photo-large { left: 0; top: 0; width: 78%; height: 78%; border-radius: 0 120px 0 0; }
.photo-small { right: 0; bottom: 0; width: 52%; height: 48%; border: 12px solid var(--paper); border-radius: 999px 999px 0 0; }
.benefit-list { display: grid; gap: .85rem; padding: 0; margin: 2rem 0 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 48px 1fr; gap: 0 .9rem; align-items: start; padding: 1rem 0; border-top: 1px solid var(--line); }
.benefit-list li span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--melon);
  font-weight: 950;
}
.benefit-list li p { margin: 0; color: var(--muted); line-height: 1.55; }
.section-heading { max-width: 850px; margin: 0 auto 2.4rem; text-align: center; }
.program-grid { display: grid; grid-template-columns: 1.05fr .95fr 1.15fr; grid-auto-rows: minmax(230px, auto); gap: 1rem; }
.program-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255,253,247,.84);
  box-shadow: 0 18px 50px rgba(21, 24, 20, .08);
}
.program-card:nth-child(2) { transform: translateY(2.4rem); }
.program-card:nth-child(4) { grid-column: span 2; }
.program-card span, .plan-tag { color: var(--clay); font-size: .75rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.program-card.accent { background: var(--moss); color: var(--paper); }
.program-card.accent p, .program-card.dark p { color: rgba(255,255,255,.74); }
.program-card.dark { background: var(--ink); color: var(--paper); }
.image-card { padding: 0; overflow: hidden; }
.image-card img { height: 100%; min-height: 230px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.timeline article { min-height: 245px; padding: 1.15rem; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 18px 50px rgba(21, 24, 20, .07); }
.timeline small { color: var(--moss); font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.plans { background: #f0eadf; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.plan { display: flex; flex-direction: column; min-height: 310px; padding: 1.4rem; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 18px 50px rgba(21, 24, 20, .08); }
.plan.featured { color: var(--paper); background: linear-gradient(145deg, var(--ink), var(--moss)); transform: translateY(-1rem); }
.plan.featured p, .plan.featured .plan-tag { color: rgba(255,255,255,.76); }
.price { margin: .65rem 0; color: var(--moss); font-family: Georgia, serif; font-size: 2.8rem; font-weight: 500; }
.plan.featured .price { color: var(--paper); }
.btn-plan { margin-top: auto; background: #e3ebd2; color: var(--ink); }
.wide-photo { width: min(1180px, 100%); margin: 0 auto 1rem; }
.wide-photo img { height: clamp(260px, 42vw, 520px); border-radius: 160px 0 160px 0; box-shadow: var(--shadow); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; width: min(1180px, 100%); margin: 0 auto; }
.quote { padding: 1.35rem; background: rgba(255,253,247,.9); border: 1px solid var(--line); }
.quote strong { color: var(--moss); }
.faq-list { width: min(900px,100%); margin: 0 auto; display: grid; gap: .75rem; }
.faq-item { overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.faq-item button { width: 100%; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem; cursor: pointer; color: var(--ink); font-weight: 950; text-align: left; }
.faq-item p { max-height: 0; margin: 0; overflow: hidden; padding: 0 1.2rem; color: var(--muted); line-height: 1.65; transition: max-height .25s ease, padding .25s ease; }
.faq-item.active p { max-height: 170px; padding: 0 1.2rem 1.2rem; }
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; background: var(--ink); color: var(--paper); }
.contact h2 { color: var(--paper); }
.contact-copy p { color: rgba(255,255,255,.72); }
.lead-form { display: grid; gap: 1rem; padding: 1.3rem; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.lead-form label { display: grid; gap: .45rem; font-weight: 900; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid rgba(21,24,20,.16); border-radius: 0; padding: .95rem 1rem; background: #fbf8f1; color: var(--ink); outline: none; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--moss); box-shadow: 0 0 0 4px rgba(49, 93, 67, .13); }
.form-status { margin: 0; color: var(--moss); font-weight: 900; }
.site-footer { display: flex; justify-content: space-between; gap: 1rem; padding: 2rem clamp(1rem, 5vw, 4rem); color: var(--muted); border-top: 1px solid var(--line); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 72px 1rem auto 1rem; display: none; flex-direction: column; align-items: stretch; padding: 1rem; background: var(--paper); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .hero, .method, .editorial, .contact { grid-template-columns: 1fr; }
  .section-kicker { writing-mode: horizontal-tb; }
  .metrics, .timeline, .plans-grid, .quotes-grid { grid-template-columns: 1fr; }
  .metrics article { border-right: 0; border-bottom: 1px solid var(--line); }
  .metrics article:last-child { border-bottom: 0; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .program-card:nth-child(2) { transform: none; }
  .program-card:nth-child(4) { grid-column: span 1; }
  .plan.featured { transform: none; }
  .site-footer { flex-direction: column; }
}
@media (max-width: 640px) {
  .section-pad { padding-inline: 1rem; }
  h1 { max-width: 10ch; font-size: clamp(3.35rem, 18vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-media { min-height: 430px; }
  .hero-media img { width: 100%; border-radius: 120px 120px 0 0; }
  .hero-badge { left: 1rem; width: calc(100% - 2rem); }
  .vertical-note { display: none; }
  .photo-mosaic { min-height: auto; display: grid; gap: 1rem; }
  .photo-mosaic img { position: static; width: 100%; height: auto; border-radius: 0; border: 0; }
  .program-grid { grid-template-columns: 1fr; }
  .wide-photo img { border-radius: 90px 0 90px 0; }
}
