:root {
  --ivory: #eee9df;
  --paper: #fbf7ef;
  --ink: #12110f;
  --muted: #6f675e;
  --forest: #42583d;
  --forest-dark: #243421;
  --champagne: #c7a96f;
  --rose: #b68a82;
  --line: rgba(36, 52, 33, 0.18);
  --shadow: 0 28px 80px rgba(18, 17, 15, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(199, 169, 111, 0.16), transparent 30%),
    linear-gradient(315deg, rgba(182, 138, 130, 0.12), transparent 32%),
    var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 54px);
  border-bottom: 1px solid rgba(66, 88, 61, 0.16);
  background: rgba(238, 233, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  width: 168px;
  overflow: hidden;
}

.brand img {
  width: 210px;
  max-width: none;
  transform: translateX(-20px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--forest-dark);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  content: "";
  background: var(--champagne);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--forest);
  border-radius: 999px;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--forest-dark);
}

.hero {
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  padding: clamp(54px, 7vw, 96px) 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 7.4vw, 6.9rem);
  font-weight: 500;
}

.founder-title {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.9vw, 4.7rem);
  line-height: 1.04;
}

.founder-title strong {
  color: var(--forest-dark);
  font-weight: 500;
}

.founder-intro {
  display: grid;
  gap: 14px;
  max-width: 680px;
  margin-top: 28px;
  padding-left: 22px;
  border-left: 1px solid rgba(199, 169, 111, 0.72);
}

.founder-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.founder-intro strong {
  color: var(--forest-dark);
  font-weight: 850;
}

h2 {
  font-size: clamp(2.2rem, 4.9vw, 4.5rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-lead strong {
  color: var(--forest-dark);
  font-weight: 850;
}

.hero-lead-secondary {
  max-width: 560px;
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--paper);
  background: var(--forest-dark);
  box-shadow: 0 18px 36px rgba(38, 54, 36, 0.18);
}

.btn-secondary {
  color: var(--forest-dark);
  border-color: var(--forest);
  background: rgba(251, 247, 239, 0.48);
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 16px;
}

.hero-photo,
.before-after figure,
.work-card {
  position: relative;
  margin: 0;
  border: 1px solid rgba(66, 88, 61, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo img,
.before-after img,
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption,
.before-after figcaption,
.work-card figcaption {
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(251, 247, 239, 0.42);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(18, 17, 15, 0.58);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-photo-main {
  height: clamp(430px, 52vw, 580px);
}

.hero-photo-small {
  height: clamp(360px, 44vw, 500px);
}

.signature-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(199, 169, 111, 0.5);
  border-radius: 8px;
  color: var(--paper);
  background: var(--forest-dark);
  box-shadow: 0 18px 42px rgba(18, 17, 15, 0.18);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-strip span + span {
  padding-left: 10px;
  border-left: 1px solid rgba(251, 247, 239, 0.16);
}

.marquee {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 78px);
  padding: 18px 20px;
  border-block: 1px solid var(--line);
  color: var(--forest-dark);
  background: rgba(251, 247, 239, 0.56);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  overflow: auto;
  text-transform: uppercase;
  white-space: nowrap;
}

.pain-points {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(68px, 8vw, 104px) 0 0;
}

.pain-points h2 {
  max-width: 620px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pain-grid p {
  min-height: 118px;
  margin: 0;
  display: flex;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest-dark);
  background:
    linear-gradient(145deg, rgba(199, 169, 111, 0.12), transparent 52%),
    rgba(251, 247, 239, 0.68);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
  line-height: 1.08;
  box-shadow: 0 18px 46px rgba(18, 17, 15, 0.06);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(32px, 7vw, 84px);
  padding: clamp(70px, 9vw, 120px) 0;
  align-items: end;
}

.intro p:last-child,
.ebook-copy p,
.gallery-copy p,
.contact-copy p,
.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.section-heading > p {
  max-width: 430px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.programs,
.results,
.gallery,
.education,
.faq {
  padding: clamp(68px, 8vw, 108px) 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-grid.single-program {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.program-card,
.timeline-item,
details,
.lead-form,
.locked-product {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.7);
}

.program-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.program-card.featured {
  color: var(--paper);
  border-color: rgba(199, 169, 111, 0.52);
  background:
    linear-gradient(155deg, rgba(199, 169, 111, 0.2), transparent 42%),
    var(--forest-dark);
}

.program-card p {
  margin: 20px 0 0;
  color: var(--muted);
}

.program-card.featured p {
  color: rgba(251, 247, 239, 0.78);
}

.tag {
  margin: 0 0 18px !important;
  color: var(--forest) !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.program-card.featured .tag {
  color: var(--champagne) !important;
}

.price {
  margin: auto 0 22px;
  padding-top: 28px;
  font-family: var(--serif);
  font-size: 2.55rem;
  line-height: 1;
}

.program-card.featured .btn-primary {
  color: var(--forest-dark);
  background: var(--paper);
}

.program-card .btn {
  width: 100%;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.before-after figure {
  aspect-ratio: 4 / 5;
}

.gallery {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.gallery-copy {
  position: sticky;
  top: 110px;
}

.gallery-copy h2 {
  margin-bottom: 22px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  aspect-ratio: 1 / 1.18;
}

.work-card.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.ebook {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: center;
  padding: clamp(70px, 9vw, 128px) 0;
  border-top: 1px solid var(--line);
}

.locked-product {
  display: grid;
  min-height: 520px;
  align-content: center;
  justify-items: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
  box-shadow: var(--shadow);
}

.locked-product img {
  width: min(420px, 88%);
}

.locked-product p {
  margin: 0;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.lock-badge {
  padding: 9px 14px;
  border: 1px solid rgba(199, 169, 111, 0.58);
  border-radius: 999px;
  color: var(--forest-dark);
  background: rgba(199, 169, 111, 0.16);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ebook-copy {
  display: grid;
  gap: 22px;
}

.lesson-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.lesson-list span {
  min-height: 50px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.62);
  color: var(--forest-dark);
  font-size: 0.9rem;
  font-weight: 760;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.timeline-item {
  padding: 30px;
}

.timeline-item span {
  display: block;
  margin-bottom: 40px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 3.3rem;
  line-height: 1;
}

.timeline-item p {
  margin: 18px 0 0;
  color: var(--muted);
}

.quote-band {
  padding: clamp(56px, 8vw, 90px) 0;
  color: var(--paper);
  background: var(--forest-dark);
}

.quote-band p {
  max-width: 930px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 6.3rem);
  line-height: 1;
}

.quote-band span {
  display: block;
  margin-top: 22px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  color: var(--forest-dark);
  font-weight: 820;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(34px, 8vw, 90px);
  align-items: start;
  padding: clamp(76px, 9vw, 126px) 0;
  border-top: 1px solid var(--line);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.mail-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--forest-dark);
  font-weight: 850;
  border-bottom: 1px solid var(--champagne);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(66, 88, 61, 0.22);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--ink);
  background: rgba(255, 252, 247, 0.78);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(66, 88, 61, 0.1);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(20px, 5vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(251, 247, 239, 0.58);
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.site-footer p:first-child {
  color: var(--forest-dark);
  font-weight: 850;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(980px, calc(100% - 36px));
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(199, 169, 111, 0.48);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(36, 52, 33, 0.96);
  box-shadow: 0 24px 64px rgba(18, 17, 15, 0.26);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0 0 4px;
  color: var(--champagne);
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner span {
  display: block;
  max-width: 680px;
  color: rgba(251, 247, 239, 0.78);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-banner .btn {
  min-height: 42px;
}

.cookie-banner .btn-secondary {
  color: var(--paper);
  border-color: rgba(251, 247, 239, 0.54);
  background: transparent;
}

.cookie-banner .btn-primary {
  color: var(--forest-dark);
  background: var(--paper);
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 77px 14px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 247, 239, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: rgba(66, 88, 61, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .hero,
  .intro,
  .pain-points,
  .gallery,
  .ebook,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    gap: 14px;
  }

  .program-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

  .gallery-copy,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    width: 136px;
  }

  .brand img {
    width: 174px;
    transform: translateX(-18px);
  }

  h1 {
    font-size: clamp(2.72rem, 16vw, 4.2rem);
  }

  .founder-title {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .founder-intro {
    padding-left: 16px;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-photo-main {
    height: 420px;
  }

  .hero-photo-small {
    height: 340px;
  }

  .signature-strip {
    grid-template-columns: 1fr;
    padding: 14px;
    font-size: 0.64rem;
  }

  .signature-strip span + span {
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid rgba(251, 247, 239, 0.16);
    border-left: 0;
  }

  .marquee {
    justify-content: flex-start;
  }

  .section-heading {
    display: block;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .before-after,
  .work-grid,
  .lesson-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .work-card.tall {
    aspect-ratio: 1 / 1.18;
  }

  .locked-product {
    min-height: 390px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }

  .cookie-banner {
    display: grid;
  }

  .cookie-actions {
    display: grid;
  }
}
