:root {
  --ink: #2b211b;
  --muted: #70645d;
  --cream: #f8f3ea;
  --paper: #fffdf8;
  --clay: #dc6d43;
  --clay-dark: #b94f2b;
  --sage: #87957e;
  --sage-pale: #dfe7dc;
  --gold: #efb448;
  --plum: #6d434a;
  --line: rgba(43, 33, 27, 0.14);
  --shadow: 0 24px 70px rgba(65, 42, 29, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(248, 243, 234, 0.9);
  border-bottom: 1px solid rgba(43, 33, 27, 0.08);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Georgia, serif; font-size: 17px; font-weight: 700; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--paper); background: var(--clay); font-style: italic; }
.desktop-nav { display: flex; gap: 28px; margin-left: auto; }
.desktop-nav a { color: var(--muted); font-size: 14px; font-weight: 700; }
.desktop-nav a:hover { color: var(--clay); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 11px 19px; color: white; background: var(--ink); font-size: 13px; }
.button-primary { color: white; background: var(--clay); box-shadow: 0 12px 30px rgba(185, 79, 43, 0.25); }
.button-primary:hover { background: var(--clay-dark); box-shadow: 0 16px 34px rgba(185, 79, 43, 0.32); }
.button-light { color: var(--ink); background: var(--paper); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.button-full { width: 100%; }
.text-link { color: var(--ink); border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 800; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 120px) clamp(22px, 6vw, 88px);
  overflow: hidden;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--clay-dark); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: #f4d8c5; }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.04em; line-height: 1.03; }
h1 { max-width: 770px; font-size: clamp(48px, 6.2vw, 86px); }
h1 em { position: relative; color: var(--clay); font-weight: inherit; }
h1 em::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 100%; height: 10px; border-top: 3px solid var(--gold); border-radius: 50%; transform: rotate(-1deg); }
h2 { font-size: clamp(39px, 4.6vw, 66px); }
h3 { margin: 0; line-height: 1.2; }
.hero-lead { max-width: 660px; margin: 30px 0; color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 19px; margin: 27px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; font-weight: 700; }
.trust-list span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 5px; border-radius: 50%; color: white; background: var(--sage); }
.hero-visual { position: relative; max-width: 520px; justify-self: center; padding: 22px; }
.hero-arch { overflow: hidden; aspect-ratio: .82; border: 10px solid var(--paper); border-radius: 240px 240px 30px 30px; background: var(--sage-pale); box-shadow: var(--shadow); }
.hero-arch img { height: 100%; object-fit: cover; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.6); border-radius: 16px; background: rgba(255,253,248,.93); box-shadow: 0 18px 46px rgba(65, 42, 29, .18); backdrop-filter: blur(8px); }
.floating-card strong { display: block; }
.floating-card span { display: block; font-size: 12px; line-height: 1.3; }
.floating-top { top: 15%; right: -8%; }
.floating-top strong { color: var(--clay); font-family: Georgia, serif; font-size: 28px; }
.floating-bottom { bottom: 6%; left: -9%; }
.floating-bottom small { display: block; color: var(--muted); }
.mini-avatar { display: grid !important; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: white; background: var(--plum); font-weight: 900; }
.doodle { position: absolute; color: var(--gold); font-size: 44px; }
.doodle-one { left: -6%; top: 3%; }
.doodle-two { right: -2%; bottom: -4%; font-size: 70px; transform: rotate(-10deg); }

.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); background: var(--paper); }
.proof-strip div { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 112px; padding: 20px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border: 0; }
.proof-strip strong { color: var(--clay); font-family: Georgia, serif; font-size: 34px; }
.proof-strip span { max-width: 115px; color: var(--muted); font-size: 12px; font-weight: 800; line-height: 1.3; text-transform: uppercase; }

.section { padding: clamp(82px, 10vw, 145px) clamp(22px, 7vw, 100px); }
.section-heading { max-width: 1180px; margin: 0 auto 64px; }
.section-heading.centered { max-width: 800px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child, .split-heading > p { color: var(--muted); font-size: 18px; }
.section-heading.centered > p:last-child { max-width: 690px; margin: 24px auto 0; }
.split-heading { display: grid; grid-template-columns: 1.15fr .7fr; align-items: end; gap: 80px; }
.intro-section { background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1180px; margin: auto; }
.benefit-card { min-height: 280px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.benefit-card:nth-child(2) { background: var(--sage-pale); }
.benefit-card:nth-child(3) { background: #f4dfd1; }
.benefit-card .number { color: var(--clay); font-family: Georgia, serif; font-size: 15px; font-style: italic; }
.benefit-card h3 { margin-top: 68px; font-family: Georgia, serif; font-size: 27px; }
.benefit-card p { margin-bottom: 0; color: var(--muted); }

.project-section { color: white; background: var(--ink); }
.project-section .split-heading > p { color: #c8beb7; }
.project-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 18px; max-width: 1180px; margin: auto; }
.project-card { position: relative; overflow: hidden; border-radius: 24px; background: #4a4039; }
.project-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(26,18,14,.92)); }
.project-card img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card > div { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 22px; }
.project-card span { color: #f3cfae; font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.project-card h3 { font-family: Georgia, serif; font-size: 25px; }
.project-card p { margin: 3px 0 0; color: #e6ddd6; font-size: 13px; }
.project-tall { grid-row: 1 / 3; }
.project-wide { grid-column: 2 / 4; }
.center-action { max-width: 760px; margin: 52px auto 0; text-align: center; }
.center-action p { color: #c8beb7; }

.method-section { display: grid; grid-template-columns: .9fr 1fr; align-items: center; gap: clamp(55px, 9vw, 130px); max-width: 1400px; margin: auto; }
.method-visual { position: relative; }
.method-visual > img { aspect-ratio: .92; border-radius: 220px 220px 30px 30px; object-fit: cover; box-shadow: var(--shadow); }
.method-note { position: absolute; right: -35px; bottom: 34px; display: flex; align-items: flex-start; gap: 12px; max-width: 285px; padding: 20px; border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
.method-note > span { color: var(--gold); font-size: 27px; }
.method-note p { margin: 0; font-size: 13px; }
.method-copy > h2 { max-width: 650px; }
.steps { margin: 45px 0 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps li > span { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--clay); border-radius: 50%; color: var(--clay); font-family: Georgia, serif; font-weight: 700; }
.steps h3 { font-family: Georgia, serif; font-size: 22px; }
.steps p { margin: 5px 0 0; color: var(--muted); }

.christmas-section {
  position: relative;
  overflow: hidden;
  color: #fff9e9;
  background:
    radial-gradient(circle at 8% 18%, rgba(203, 43, 48, .34), transparent 25%),
    radial-gradient(circle at 92% 78%, rgba(207, 157, 59, .18), transparent 24%),
    #103c2f;
}
.christmas-section::before,
.christmas-section::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.christmas-section::before { top: -170px; left: -130px; }
.christmas-section::after { right: -160px; bottom: -170px; }
.christmas-sparkles span { position: absolute; color: #e8bd63; font-size: 28px; opacity: .7; }
.christmas-sparkles span:nth-child(1) { top: 6%; left: 8%; }
.christmas-sparkles span:nth-child(2) { top: 11%; right: 13%; font-size: 44px; }
.christmas-sparkles span:nth-child(3) { top: 46%; right: 4%; }
.christmas-heading { position: relative; z-index: 1; max-width: 930px; }
.christmas-heading h2 { color: white; }
.christmas-heading h2 em { color: #f3c96e; font-weight: inherit; }
.christmas-heading > p:last-child { color: #d6e1d8; }
.christmas-eyebrow { color: #f3c96e; }
.season-comparison { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 115px 1fr; align-items: stretch; max-width: 1050px; margin: 0 auto 70px; }
.comparison-card { padding: 36px; border: 1px solid rgba(255,255,255,.14); }
.learned-card { border-radius: 26px 0 0 26px; background: rgba(255,255,255,.07); }
.imagine-card { border-radius: 0 26px 26px 0; background: #f8f0dd; color: var(--ink); }
.comparison-label { display: inline-block; margin-bottom: 15px; color: #f3c96e; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.imagine-card .comparison-label { color: #a3282f; }
.comparison-card h3 { max-width: 340px; font-family: Georgia, serif; font-size: 28px; }
.comparison-card ul { margin: 25px 0 0; padding: 0; list-style: none; }
.comparison-card li { margin: 12px 0; font-size: 14px; }
.comparison-card li span { display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; border-radius: 50%; color: #103c2f; background: #f3c96e; font-size: 11px; font-weight: 900; }
.imagine-card li span { color: #f7e9c7; background: #a3282f; }
.comparison-bridge { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-inline: -1px; color: #103c2f; background: #f3c96e; text-align: center; }
.comparison-bridge span { font-size: 10px; font-weight: 900; line-height: 1.3; letter-spacing: .12em; text-transform: uppercase; }
.comparison-bridge strong { margin-top: 8px; font-size: 33px; }
.christmas-gallery { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .85fr .85fr; grid-template-rows: 285px 285px; gap: 16px; max-width: 1180px; margin: auto; }
.christmas-photo { position: relative; overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: #1d4b3e; }
.christmas-feature { grid-row: 1 / 3; }
.christmas-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); transition: transform .5s ease; }
.christmas-photo:hover img { transform: scale(1.075); }
.christmas-photo:nth-child(n+3) img { transform: scale(1.1); }
.christmas-photo:nth-child(n+3):hover img { transform: scale(1.14); }
.christmas-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(13,31,25,.9)); }
.christmas-photo figcaption { position: absolute; z-index: 2; right: 20px; bottom: 17px; left: 20px; }
.christmas-photo figcaption span { display: block; color: #f3c96e; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.christmas-photo figcaption strong { display: block; font-family: Georgia, serif; font-size: 20px; }
.christmas-close { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; max-width: 1180px; margin: 55px auto 0; padding: 34px 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; background: rgba(4,23,17,.3); }
.christmas-close h3 { max-width: 690px; font-family: Georgia, serif; font-size: clamp(25px, 3vw, 39px); }
.christmas-kicker { margin: 0 0 8px; color: #e8bd63; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.christmas-button { flex-shrink: 0; color: white; background: #b32931; box-shadow: 0 14px 32px rgba(71,0,6,.24); }
.christmas-button:hover { background: #8f1f25; }
.inspiration-note { position: relative; z-index: 1; max-width: 900px; margin: 20px auto 0; color: rgba(233,240,235,.62); font-size: 10px; text-align: center; }

.content-section { background: var(--sage-pale); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 42px; max-width: 1180px; margin: auto; }
.module-list article { display: grid; grid-template-columns: 110px 1fr; gap: 25px; padding: 29px 0; border-bottom: 1px solid rgba(43,33,27,.18); }
.module-list article:first-child { border-top: 1px solid rgba(43,33,27,.18); }
.module-list article > span { color: var(--clay-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.module-list h3 { font-family: Georgia, serif; font-size: 25px; }
.module-list p { margin: 5px 0 0; color: var(--muted); }
.included-card { align-self: start; padding: 36px; border-radius: var(--radius); color: white; background: var(--ink); box-shadow: var(--shadow); }
.handwritten { margin: 0; color: #f3cfae; font-family: Georgia, serif; font-size: 25px; font-style: italic; }
.included-card ul { margin: 25px 0 30px; padding: 0; list-style: none; }
.included-card li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.included-card li span { margin-right: 9px; color: #f3cfae; }
.curriculum-list { min-width: 0; }
.curriculum-module { border: 1px solid rgba(43,33,27,.15); border-bottom: 0; background: rgba(255,253,248,.46); }
.curriculum-module:first-child { border-radius: 22px 22px 0 0; }
.curriculum-module:last-child { border-bottom: 1px solid rgba(43,33,27,.15); border-radius: 0 0 22px 22px; }
.curriculum-module summary { display: grid; grid-template-columns: 90px 1fr 24px; gap: 16px; padding: 23px 25px; font-family: Inter, sans-serif; font-size: 16px; }
.curriculum-module summary .module-number { color: var(--clay-dark); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.curriculum-module summary strong { font-family: Georgia, serif; font-size: 21px; }
.curriculum-module summary i { color: var(--clay); font-size: 24px; font-style: normal; font-weight: 400; transition: transform .2s ease; }
.curriculum-module[open] summary i { transform: rotate(45deg); }
.curriculum-module > ul { margin: -3px 25px 24px 131px; padding-left: 18px; color: var(--muted); }
.curriculum-module > ul li { margin: 7px 0; }
.lesson-columns { columns: 2; column-gap: 32px; }
.lesson-columns li { break-inside: avoid; }
.module-intro { margin: -4px 25px 20px 131px; color: var(--muted); font-size: 14px; }
.design-chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 25px 26px 131px; }
.design-chip-grid span { padding: 9px 12px; border: 1px solid rgba(43,33,27,.1); border-radius: 10px; color: var(--ink); background: rgba(255,255,255,.45); font-size: 12px; font-weight: 700; }
.curriculum-bonuses { position: sticky; top: 100px; }
.curriculum-bonuses ol { margin: 22px 0; padding: 0; list-style: none; }
.curriculum-bonuses ol li { display: grid; grid-template-columns: 34px 1fr; gap: 9px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 13px; }
.curriculum-bonuses ol li span { color: #f3cfae; font-family: Georgia, serif; }
.exclusive-box { margin: 22px 0 26px; padding: 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.06); }
.exclusive-box strong { color: #f3cfae; font-family: Georgia, serif; font-size: 17px; }
.exclusive-box p { margin: 7px 0 0; color: #d6ccc6; font-size: 11px; line-height: 1.55; }

.bonus-section { background: var(--paper); }
.bonus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 1180px; margin: auto; }
.bonus-card { overflow: hidden; padding-bottom: 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); }
.bonus-card img { aspect-ratio: 1.2; margin-bottom: 20px; object-fit: cover; }
.bonus-card span, .bonus-card h3 { margin-inline: 22px; }
.bonus-card span { color: var(--clay-dark); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.bonus-card h3 { margin-top: 6px; font-family: Georgia, serif; font-size: 21px; }

.results-section { display: grid; grid-template-columns: .8fr 1.1fr; align-items: center; gap: 90px; color: white; background: var(--plum); }
.results-copy h2 { max-width: 650px; }
.results-copy > p:not(.eyebrow) { color: #e6d9db; font-size: 18px; }
.results-copy .disclaimer { margin-top: 26px; font-size: 11px !important; opacity: .72; }
.phone-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: center; }
.phone-gallery img { max-height: 580px; border: 8px solid var(--paper); border-radius: 28px; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,.28); }
.phone-gallery img:nth-child(2) { transform: translateY(30px); }

.instructor-section { display: grid; grid-template-columns: 420px 1fr; align-items: center; gap: 90px; max-width: 1180px; margin: auto; }
.instructor-photo { position: relative; }
.instructor-photo::before { content: ""; position: absolute; inset: 18px -20px -20px 18px; z-index: -1; border-radius: 50% 50% 22% 22%; background: #e6c8b3; }
.instructor-photo img { aspect-ratio: 1; border-radius: 50% 50% 22% 22%; object-fit: cover; }
.lead-quote { max-width: 700px; color: var(--clay-dark); font-family: Georgia, serif; font-size: clamp(23px, 2.5vw, 33px); line-height: 1.35; }
.instructor-copy > p:not(.eyebrow):not(.lead-quote) { max-width: 670px; color: var(--muted); font-size: 17px; }
.signature { margin-top: 18px; color: var(--clay); font-family: cursive; font-size: 34px; transform: rotate(-5deg); }

.offer-section { display: grid; grid-template-columns: 1fr 470px; align-items: center; gap: 90px; color: white; background: var(--ink); }
.offer-copy h2 { max-width: 700px; }
.offer-copy > p:not(.eyebrow) { max-width: 610px; color: #cfc5bf; font-size: 18px; }
.offer-copy ul { margin: 34px 0 0; padding: 0; list-style: none; }
.offer-copy li { margin: 14px 0; color: #eee7e2; }
.offer-copy li span { display: inline-grid; place-items: center; width: 23px; height: 23px; margin-right: 10px; border-radius: 50%; color: var(--ink); background: #e9c59a; font-size: 12px; font-weight: 900; }
.price-card { padding: 38px; border-radius: var(--radius); color: var(--ink); background: var(--paper); box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.price-card > p:first-child { margin: 0 0 8px; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.old-price { color: var(--muted); font-size: 14px; text-decoration: line-through; }
.price { display: flex; align-items: flex-start; margin: 2px 0 -5px; color: var(--clay); font-family: Georgia, serif; font-size: 92px; line-height: 1; }
.price > span { margin-top: 11px; font-size: 34px; }
.price small { align-self: flex-end; margin: 0 0 14px 8px; color: var(--muted); font-family: Inter, sans-serif; font-size: 12px; font-weight: 800; }
.payment-note { margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.secure-row { display: flex; justify-content: center; gap: 20px; margin-top: 16px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.guarantee-mini { display: grid; grid-template-columns: 68px 1fr; align-items: center; gap: 15px; margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--line); }
.guarantee-mini img { width: 68px; height: 68px; object-fit: contain; }
.guarantee-mini p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.faq-section { background: var(--paper); }
.faq-list { max-width: 860px; margin: auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; font-family: Georgia, serif; font-size: 21px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker,
.curriculum-module summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--clay); font-family: Inter, sans-serif; font-size: 28px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 0 26px; padding-right: 50px; color: var(--muted); }

.final-cta { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 600px; padding: 90px max(7vw, 24px); overflow: hidden; color: white; background: var(--clay); }
.final-cta h2 { margin-bottom: 34px; font-size: clamp(45px, 5.5vw, 78px); }
.final-collage { position: relative; height: 470px; }
.final-collage img { position: absolute; width: 250px; height: 330px; border: 8px solid var(--paper); border-radius: 140px 140px 22px 22px; object-fit: cover; box-shadow: 0 20px 45px rgba(70,25,15,.25); }
.final-collage img:nth-child(1) { left: 2%; top: 80px; transform: rotate(-9deg); }
.final-collage img:nth-child(2) { left: 34%; top: 0; z-index: 2; }
.final-collage img:nth-child(3) { right: 0; top: 85px; transform: rotate(9deg); }

footer { display: grid; grid-template-columns: 1fr auto; gap: 18px 50px; align-items: center; padding: 50px clamp(22px, 7vw, 100px) 90px; color: #bfb4ad; background: #191411; font-size: 12px; }
.footer-brand { color: white; }
.legal { grid-column: 1 / -1; max-width: 760px; margin: 0; opacity: .65; }
.mobile-bar { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr 390px; gap: 50px; }
  .proof-strip div { flex-direction: column; gap: 0; text-align: center; }
  .method-section, .results-section { gap: 55px; }
  .offer-section { grid-template-columns: 1fr 410px; gap: 45px; }
  .instructor-section { grid-template-columns: 340px 1fr; gap: 55px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 78px; }
  .site-header { height: 68px; }
  .site-header > .button { display: none; }
  .brand { font-size: 14px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 65px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { width: min(100%, 470px); }
  .trust-list { justify-content: center; }
  .proof-strip { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid, .bonus-grid { grid-template-columns: 1fr 1fr; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .project-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 280px 280px; }
  .project-tall { grid-row: 1 / 3; }
  .project-wide { grid-column: 1 / 3; }
  .method-section, .results-section, .instructor-section, .offer-section { grid-template-columns: 1fr; }
  .method-visual { max-width: 550px; }
  .content-layout { grid-template-columns: 1fr; }
  .included-card { max-width: 500px; width: 100%; justify-self: center; }
  .curriculum-bonuses { position: static; }
  .phone-gallery { max-width: 560px; }
  .instructor-photo { max-width: 430px; }
  .price-card { max-width: 500px; width: 100%; justify-self: center; }
  .season-comparison { grid-template-columns: 1fr; }
  .learned-card { border-radius: 26px 26px 0 0; }
  .imagine-card { border-radius: 0 0 26px 26px; }
  .comparison-bridge { min-height: 90px; flex-direction: row; gap: 18px; }
  .comparison-bridge strong { margin: 0; transform: rotate(90deg); }
  .christmas-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 260px 260px; }
  .christmas-feature { grid-column: 1 / 3; grid-row: auto; }
  .christmas-close { align-items: flex-start; flex-direction: column; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .final-cta .eyebrow { justify-content: center; }
  .final-collage { margin-top: 30px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .legal { justify-self: center; }
  .mobile-bar { position: fixed; z-index: 60; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 78px; padding: 10px 14px; border-top: 1px solid var(--line); background: rgba(255,253,248,.96); backdrop-filter: blur(12px); box-shadow: 0 -10px 30px rgba(43,33,27,.1); }
  .mobile-bar > div { display: flex; flex-direction: column; }
  .mobile-bar span { color: var(--muted); font-size: 10px; }
  .mobile-bar strong { font-family: Georgia, serif; font-size: 22px; }
  .mobile-bar .button { min-height: 48px; padding: 12px 20px; }
}

@media (max-width: 560px) {
  .section { padding-inline: 20px; }
  .hero { padding-inline: 20px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .button { width: 100%; }
  .trust-list { gap: 10px 16px; font-size: 11px; }
  .floating-top { right: -2%; }
  .floating-bottom { left: -2%; }
  .proof-strip strong { font-size: 29px; }
  .proof-strip span { font-size: 10px; }
  .benefit-grid, .bonus-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 240px; }
  .benefit-card h3 { margin-top: 46px; }
  .project-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; margin-right: -20px; padding-right: 20px; scrollbar-width: none; }
  .project-card { min-width: 82vw; height: 430px; scroll-snap-align: start; }
  .project-wide { min-width: 88vw; }
  .method-note { right: -5px; }
  .christmas-gallery { display: flex; overflow-x: auto; gap: 13px; margin-right: -20px; padding-right: 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .christmas-photo, .christmas-feature { min-width: 78vw; height: 430px; scroll-snap-align: start; }
  .christmas-close { padding: 27px 23px; }
  .christmas-close .button { width: 100%; }
  .module-list article { grid-template-columns: 1fr; gap: 8px; }
  .curriculum-module summary { grid-template-columns: 1fr 24px; gap: 8px 12px; padding: 20px; }
  .curriculum-module summary .module-number { grid-column: 1; }
  .curriculum-module summary strong { grid-column: 1; font-size: 19px; }
  .curriculum-module summary i { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .curriculum-module > ul, .module-intro { margin-left: 20px; margin-right: 20px; }
  .lesson-columns { columns: 1; }
  .design-chip-grid { grid-template-columns: 1fr; margin: 0 20px 22px; }
  .phone-gallery { gap: 8px; }
  .phone-gallery img { border-width: 4px; border-radius: 16px; }
  .instructor-section { padding-top: 105px; }
  .price-card { padding: 29px 22px; }
  .secure-row { gap: 8px; }
  .final-collage { height: 360px; }
  .final-collage img { width: 170px; height: 245px; border-width: 5px; }
  .final-collage img:nth-child(1) { left: -5%; }
  .final-collage img:nth-child(2) { left: 29%; }
  .final-collage img:nth-child(3) { right: -8%; }
  .faq-list summary { font-size: 18px; }
  .mobile-bar span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
