:root {
  --ink: #111614;
  --ink-soft: #2a332f;
  --pine: #173f32;
  --jade: #2f6b52;
  --moss: #8f9b73;
  --rice: #f5efe2;
  --paper: #fffaf0;
  --mist: #dfe5d7;
  --tea: #c6a35f;
  --cinnabar: #b34a2c;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 22, 20, 0.18);
  --border: rgba(17, 22, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 22, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper), var(--rice) 46%, #eef2e6);
  background-size: 56px 56px, auto;
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  color: var(--paper);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 10px 40px rgba(17, 22, 20, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: currentColor;
}

.brand-mark::before {
  top: 12px;
  transform: rotate(-18deg);
}

.brand-mark::after {
  top: 20px;
  transform: rotate(18deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.94rem;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.scrolled .main-nav a:hover,
.site-header.menu-open .main-nav a:hover {
  background: rgba(23, 63, 50, 0.08);
}

.main-nav .nav-cta {
  margin-left: 8px;
  color: var(--paper);
  background: var(--cinnabar);
}

.site-header.scrolled .nav-cta:hover,
.site-header.menu-open .nav-cta:hover,
.main-nav .nav-cta:hover {
  background: #9c3e25;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.menu-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(40deg);
}

.site-header.menu-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-40deg);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 15, 0.88) 0%, rgba(12, 18, 15, 0.62) 34%, rgba(12, 18, 15, 0.15) 70%),
    linear-gradient(0deg, rgba(12, 18, 15, 0.44), rgba(12, 18, 15, 0.05) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding-top: 90px;
}

.eyebrow,
.section-kicker,
.course-label,
.price-label {
  margin: 0 0 18px;
  color: var(--tea);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-size: 5.8rem;
  line-height: 0.88;
  font-weight: 500;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: 1.32rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.price-card button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.price-card button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--cinnabar);
  box-shadow: 0 14px 32px rgba(179, 74, 44, 0.28);
}

.button-primary:hover {
  background: #9c3e25;
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 250, 240, 0.45);
  background: rgba(255, 250, 240, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 250, 240, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 240, 0.28);
}

.hero-stats strong {
  display: block;
  color: var(--paper);
  font-size: 1.02rem;
}

.hero-stats span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.87rem;
}

.practice-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--pine);
  color: var(--paper);
}

.strip-item {
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.04);
}

.strip-item span {
  color: var(--tea);
  font-size: 0.8rem;
  font-weight: 800;
}

.strip-item strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.strip-item p {
  max-width: 360px;
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.76);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro-section {
  padding-top: 86px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 62px;
  align-items: start;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-size: 3.2rem;
  line-height: 1.02;
  font-weight: 500;
}

h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.05;
  font-weight: 600;
}

.intro-grid p,
.section-heading + p,
.method-copy p,
.routine-copy p,
.enroll-copy p,
.proof-quote p {
  color: rgba(17, 22, 20, 0.68);
  font-size: 1.05rem;
}

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

.section-heading h2 {
  max-width: 720px;
}

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

.course-card,
.price-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 20px 44px rgba(17, 22, 20, 0.07);
}

.course-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.featured-course {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(23, 63, 50, 0.96), rgba(17, 22, 20, 0.96)),
    var(--pine);
  border-color: rgba(255, 250, 240, 0.16);
  box-shadow: var(--shadow);
}

.course-card h3 {
  margin-bottom: 18px;
}

.course-card p:not(.course-label) {
  color: rgba(17, 22, 20, 0.66);
}

.featured-course p:not(.course-label),
.featured-course li {
  color: rgba(255, 250, 240, 0.74);
}

.course-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.course-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(17, 22, 20, 0.68);
}

.course-card li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--cinnabar);
}

.course-card a {
  margin-top: auto;
  color: var(--cinnabar);
  font-weight: 800;
}

.featured-course a {
  color: var(--tea);
}

.method-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 22, 20, 0.92), rgba(23, 63, 50, 0.94)),
    var(--pine);
}

.method-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
}

.method-copy p {
  color: rgba(255, 250, 240, 0.72);
}

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

.method-step {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.method-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--tea);
  border-radius: 50%;
  font-weight: 900;
}

.method-step p {
  color: rgba(255, 250, 240, 0.7);
}

.routine-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: center;
}

.routine-panel {
  border: 1px solid rgba(17, 22, 20, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.95), rgba(245, 239, 226, 0.98)),
    var(--paper);
  box-shadow: var(--shadow);
}

.routine-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(17, 22, 20, 0.14);
}

.routine-tab {
  min-height: 54px;
  border: 0;
  border-right: 1px solid rgba(17, 22, 20, 0.14);
  color: rgba(17, 22, 20, 0.7);
  background: transparent;
  font-weight: 800;
}

.routine-tab:last-child {
  border-right: 0;
}

.routine-tab.active {
  color: var(--paper);
  background: var(--pine);
}

.routine-display {
  padding: 34px;
}

.routine-time {
  margin: 0 0 12px;
  color: var(--cinnabar);
  font-weight: 800;
}

.routine-display ol {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding-left: 22px;
}

.routine-display li {
  padding-left: 8px;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
}

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

.audience-grid div {
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(17, 22, 20, 0.18);
}

.audience-grid p {
  color: rgba(17, 22, 20, 0.66);
}

.pricing-section {
  background: var(--mist);
}

.pricing-inner {
  padding-top: 86px;
  padding-bottom: 86px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 382px;
  padding: 28px;
  background: var(--paper);
}

.price-featured {
  color: var(--paper);
  background: var(--pine);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-size: 3.3rem;
  line-height: 1;
}

.price-card p:not(.price-label):not(.price) {
  color: rgba(17, 22, 20, 0.64);
}

.price-featured p:not(.price-label):not(.price) {
  color: rgba(255, 250, 240, 0.75);
}

.price-card button {
  width: 100%;
  margin-top: auto;
  color: var(--paper);
  background: var(--ink);
}

.price-featured button {
  color: var(--ink);
  background: var(--tea);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 360px;
  gap: 50px;
  align-items: center;
}

.proof-quote h2 {
  max-width: 780px;
}

.proof-notes {
  display: grid;
  gap: 1px;
  background: rgba(17, 22, 20, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.proof-notes div {
  padding: 24px;
  background: rgba(255, 250, 240, 0.88);
}

.proof-notes strong,
.proof-notes span {
  display: block;
}

.proof-notes span {
  margin-top: 6px;
  color: rgba(17, 22, 20, 0.62);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(17, 22, 20, 0.68);
}

.enroll-section {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(17, 22, 20, 0.96), rgba(47, 107, 82, 0.9)),
    var(--ink);
}

.enroll-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.enroll-copy p {
  color: rgba(255, 250, 240, 0.72);
}

.enroll-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
}

.enroll-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.8);
  font-weight: 800;
}

.enroll-form input,
.enroll-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--paper);
  background: rgba(17, 22, 20, 0.38);
}

.enroll-form input::placeholder {
  color: rgba(255, 250, 240, 0.48);
}

.enroll-form option {
  color: var(--ink);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.92rem;
}

.form-note.success {
  color: #f2d990;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  color: rgba(17, 22, 20, 0.64);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: 82svh;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .practice-strip,
  .course-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .method-inner,
  .routine-section,
  .audience-section,
  .proof-section,
  .enroll-inner {
    grid-template-columns: 1fr;
  }

  .course-card,
  .price-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(17, 22, 20, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .main-nav a {
    color: var(--ink);
    padding: 14px;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    color: var(--paper);
  }

  .hero {
    min-height: 80svh;
    align-items: end;
    padding-bottom: 54px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 18, 15, 0.9) 0%, rgba(12, 18, 15, 0.62) 54%, rgba(12, 18, 15, 0.18) 100%),
      linear-gradient(90deg, rgba(12, 18, 15, 0.72), rgba(12, 18, 15, 0.2));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 3.4rem;
    line-height: 0.94;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
  }

  .strip-item {
    padding: 24px 20px;
  }

  .section {
    width: min(100% - 36px, 1180px);
    padding: 72px 0;
  }

  h2 {
    font-size: 2.45rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .method-steps,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .course-card,
  .price-card,
  .routine-display,
  .enroll-form {
    padding: 22px;
  }

  .proof-notes {
    width: 100%;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 145px;
    line-height: 1.1;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  h2 {
    font-size: 2.1rem;
  }
}
