@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/EBGaramond-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f6efe2;
  --paper-deep: #eadcc6;
  --surface: #fffaf1;
  --surface-strong: #fbf3e6;
  --ink: #2d2118;
  --muted: #6f5b48;
  --line: #d8c2a5;
  --accent: #8c4f2e;
  --accent-dark: #673a24;
  --sage: #6d765f;
  --dark: #241914;
  --shadow: 0 18px 42px rgba(73, 48, 31, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 194, 165, 0.32), transparent 26rem),
    linear-gradient(180deg, #f9f2e7 0%, var(--paper) 52%, #f3e8d7 100%);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 840px;
}

.section-pad {
  padding: 88px 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.1rem, 7.8vw, 6rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

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

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 194, 165, 0.75);
  background: rgba(246, 239, 226, 0.88);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand img {
  width: 190px;
}

.main-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 18px;
}

.main-nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 600;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.hero-copy {
  display: grid;
  gap: 26px;
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(1.22rem, 2vw, 1.56rem);
  line-height: 1.42;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.check-list li,
.process-card li {
  position: relative;
  padding-left: 24px;
}

.hero-points li::before,
.check-list li::before,
.process-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.shine-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.shine-button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  animation: pay-shine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.button:hover,
.review-shot:hover,
.lesson-thumb:hover,
.video-card:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff9ef;
  background: var(--accent-dark);
  box-shadow: 0 14px 28px rgba(103, 58, 36, 0.22);
}

.secondary {
  color: var(--accent-dark);
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.72);
}

.wide {
  width: 100%;
}

.deadline {
  color: var(--accent-dark);
  font-weight: 600;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -22px 18px 26px -18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.38);
}

.video-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 180ms ease;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(45, 33, 24, 0.18);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 23px;
  border-left: 22px solid var(--accent-dark);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.split,
.two-columns,
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
}

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

.section-copy p,
.section-head p,
.offer p,
.value p,
.final-cta p {
  font-size: 1.22rem;
}

.now {
  background: linear-gradient(180deg, #fffdf8 0%, #fbf6ed 100%);
}

.roadmap-frame {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(216, 194, 165, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.76);
}

.mistakes,
.program,
.reviews,
.faq {
  background: rgba(255, 250, 241, 0.48);
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 36px;
}

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

.mistake-grid article,
.audience-list article,
.result-panel,
.process-card,
.price-card,
.team-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.76);
  box-shadow: 0 14px 30px rgba(73, 48, 31, 0.08);
}

.mistake-grid article {
  min-height: 210px;
  padding: 24px;
}

.mistake-grid h3,
.audience-list h3 {
  margin-bottom: 10px;
}

.audience-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.audience-list article {
  padding: 22px;
}

.result-panel {
  padding: clamp(26px, 4vw, 42px);
  background: var(--dark);
}

.panel-cta {
  width: max-content;
  margin-top: 26px;
}

.result-panel h2,
.result-panel li,
.process-card.dark h2,
.process-card.dark p,
.process-card.dark li {
  color: #fff6e8;
}

.check-list,
.process-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.compact {
  margin-top: 0;
}

.module-list {
  display: grid;
  gap: 20px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.module-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 230px;
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 16px 38px rgba(73, 48, 31, 0.09);
}

.module-card-featured {
  border-color: rgba(140, 79, 46, 0.55);
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(234, 220, 198, 0.62));
}

.module-cover-wrap {
  position: relative;
  min-height: 220px;
  border-radius: 6px;
  overflow: hidden;
}

.module-cover {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 6px;
  object-fit: cover;
}

.module-cover-badge {
  display: none;
}

.module-screen-button {
  width: 100%;
  height: 100%;
  min-height: 220px;
  padding: 0;
  border: 1px solid rgba(216, 194, 165, 0.8);
  border-radius: 6px;
  background: #fff;
  cursor: zoom-in;
}

.module-screen {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 6px;
  object-fit: contain;
  object-position: top;
  background: #fff;
}

.module-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.module-number {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.text-button {
  align-self: flex-start;
  margin: 4px 0;
  padding: 0;
  border: 0;
  color: var(--accent-dark);
  background: transparent;
  font: 700 20px/1.2 "EB Garamond", Georgia, serif;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  cursor: pointer;
}

details {
  border-top: 1px solid rgba(216, 194, 165, 0.8);
  padding-top: 12px;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

details ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.lesson-thumb {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(73, 48, 31, 0.1);
  cursor: pointer;
  transition: transform 180ms ease;
}

.lesson-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.value-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  color: #fff6e8;
  background: var(--dark);
}

.value-panel p {
  color: #d8c8b3;
}

.value-table {
  display: grid;
  gap: 10px;
}

.value-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 246, 232, 0.2);
  border-radius: 6px;
  color: #f7ead7;
}

.value-table .total {
  color: var(--ink);
  background: var(--paper-deep);
}

.value-table s {
  margin-right: 10px;
  color: rgba(45, 33, 24, 0.52);
  font-weight: 600;
  text-decoration-thickness: 2px;
}

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

.team-grid article {
  overflow: hidden;
}

.team-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-grid h3,
.team-grid p {
  padding-inline: 18px;
}

.team-grid h3 {
  padding-top: 18px;
}

.team-grid p {
  padding-bottom: 22px;
}

.review-rail {
  display: grid;
  grid-auto-columns: minmax(230px, 280px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px 4px 18px;
  scroll-snap-type: x proximity;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.review-rail::-webkit-scrollbar,
.team-grid::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.review-rail.is-dragging,
.team-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.review-shot {
  height: 330px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 30px rgba(73, 48, 31, 0.1);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 180ms ease;
}

.review-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 180ms ease;
}

.review-shot:hover img {
  transform: scale(1.02);
}

.scroll-cue {
  position: relative;
  width: min(240px, 60vw);
  height: 4px;
  margin: 8px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(216, 194, 165, 0.45);
}

.scroll-cue span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  border-radius: inherit;
  background: rgba(103, 58, 36, 0.58);
  animation: review-scroll-cue 2.4s ease-in-out infinite;
}

.team-scroll-cue {
  display: none;
}

@keyframes review-scroll-cue {
  0%,
  12% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(138%);
  }

  88%,
  100% {
    transform: translateX(0);
  }
}

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

.process-card {
  padding: clamp(26px, 4vw, 44px);
}

.process-card.dark {
  background: var(--dark);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
  font-size: 1.18rem;
}

.steps span {
  color: var(--accent);
  font-weight: 700;
}

.offer {
  background: linear-gradient(135deg, var(--paper-deep), var(--paper));
}

.price-card {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 42px);
}

.price-card span {
  color: var(--muted);
  font-weight: 700;
}

.old-price {
  width: max-content;
  color: rgba(111, 91, 72, 0.78);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: 0.95;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-card strong {
  font-size: clamp(4rem, 8vw, 6.6rem);
  line-height: 0.95;
  color: var(--accent-dark);
}

@keyframes pay-shine {
  0%,
  46% {
    left: -55%;
  }

  72%,
  100% {
    left: 120%;
  }
}

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

.faq-list details {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
}

.faq-list summary {
  position: relative;
  min-height: 68px;
  padding: 20px 58px 20px 22px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent-dark);
  border-bottom: 2px solid var(--accent-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.faq-list a {
  color: var(--accent-dark);
  font-weight: 700;
}

.final-cta {
  text-align: center;
}

.final-cta .container {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.final-cta p {
  max-width: 720px;
}

.site-footer {
  padding: 34px 0;
  color: #d9c7ad;
  background: var(--dark);
}

.footer-inner {
  display: grid;
  gap: 12px;
}

.footer-inner img {
  width: 210px;
}

.footer-inner p {
  color: #d9c7ad;
  font-size: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 19, 14, 0.72);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.modal-panel h2 {
  padding-right: 48px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 16px;
  height: 2px;
  background: var(--ink);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.video-frame {
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.review-modal-panel {
  width: min(760px, 100%);
}

.review-modal-panel img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .split,
  .two-columns,
  .offer-grid,
  .value-panel,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .module-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .module-screen-button {
    grid-column: 1 / -1;
    max-height: 360px;
  }

  .mistake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 19px;
  }

  .section-pad {
    padding: 62px 0;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 156px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 16px;
  }

  .section-copy p,
  .section-head p,
  .offer p,
  .value p,
  .final-cta p {
    font-size: 1.14rem;
  }

  .hero-points,
  .mistake-grid,
  .lesson-gallery {
    grid-template-columns: 1fr;
  }

  .module-card {
    grid-template-columns: 1fr;
  }

  .module-cover-wrap,
  .module-cover,
  .module-screen-button,
  .module-screen {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .module-screen-button,
  .module-screen {
    aspect-ratio: auto;
    max-height: none;
  }

  .module-cover-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    max-width: calc(100% - 28px);
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 250, 241, 0.9);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.05;
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 24px rgba(45, 33, 24, 0.16);
  }

  .team-grid {
    display: grid;
    grid-auto-columns: calc((100% - 14px) / 2);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 4px 16px;
    scroll-snap-type: x proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .team-scroll-cue {
    display: block;
  }

  .team-grid article {
    min-width: 0;
    scroll-snap-align: start;
  }

  .team-grid h3,
  .team-grid p {
    padding-inline: 12px;
  }

  .team-grid h3 {
    font-size: 1.28rem;
  }

  .team-grid p {
    font-size: 1rem;
  }

  .review-rail {
    grid-auto-columns: minmax(220px, 76vw);
  }

  .review-shot {
    height: 300px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
  }

  .panel-cta {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .value-table div,
  .steps li {
    grid-template-columns: 1fr;
  }

  .value-table div {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .shine-button::after {
    display: none;
  }
}
