@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --ivory: #faf6f1;
  --ivory-2: #fffaf6;
  --wine: #6d2948;
  --wine-deep: #541c36;
  --rose: #c98b8b;
  --gold: #c6a15b;
  --charcoal: #292326;
  --muted: #6f686b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Montserrat", Arial, sans-serif;
}

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

.site-header {
  width: min(1440px, calc(100% - 96px));
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 54px;
  position: relative;
  z-index: 5;
}

.brand {
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.main-nav { display: flex; gap: 44px; }

.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: .98rem;
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}

.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }

.header-cta {
  border: 1px solid var(--wine);
  padding: 16px 28px;
  color: var(--wine);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover, .header-cta:focus-visible { background: var(--wine); color: white; }

.hero {
  width: min(1440px, calc(100% - 96px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 52px 0 76px;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  align-items: center;
  gap: clamp(40px, 6vw, 94px);
  overflow: hidden;
}

.hero-copy { max-width: 720px; animation: enter-up 650ms ease both; }

.eyebrow {
  margin: 0 0 24px;
  color: var(--rose);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #591d35;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 5.7vw, 6.25rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .91;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 30px;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-right: 1px solid #d8cbc0;
  font-size: .9rem;
}

.hero-benefits li:first-child { padding-left: 0; }
.hero-benefits li:last-child { border: 0; }
.hero-benefits span { color: var(--gold); font-size: 1.35rem; }

.hero-offer { max-width: 440px; }

.price {
  margin: 0 0 12px;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: .8;
}

.price span { font-size: .43em; margin-right: 5px; }
.price sup { font-size: .54em; vertical-align: top; line-height: 1.3; }
.price-old {
  display: block;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: .34em !important;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: var(--rose);
}

.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(198, 161, 91, .12);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.limited-badge.dark {
  border-color: #e1bd7e;
  color: #f7eee9;
  background: rgba(255, 255, 255, .08);
}

.final-price s { margin-right: 6px; opacity: .7; }

.primary-cta {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 14px 28px rgba(109, 41, 72, .15);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-cta:hover, .primary-cta:focus-visible {
  background: var(--wine-deep);
  box-shadow: 0 18px 34px rgba(84, 28, 54, .22);
  transform: translateY(-2px);
}

.secure-note { margin: 14px 0 0; color: var(--muted); font-size: .85rem; }
.secure-note span { margin-right: 7px; }
.secure-note b { margin: 0 6px; color: var(--gold); }

.portrait-wrap {
  width: min(100%, 620px);
  aspect-ratio: 1 / 1.03;
  justify-self: center;
  position: relative;
  animation: portrait-in 800ms 120ms ease both;
}

.portrait-accent {
  position: absolute;
  inset: 10% -2% -3% 7%;
  border-radius: 48% 52% 42% 58% / 45% 38% 62% 55%;
  background: var(--rose);
  transform: rotate(7deg);
}

.portrait {
  width: 92%;
  height: 92%;
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 56% 44% 50% 50% / 43% 50% 50% 57%;
}

.portrait-ring {
  position: absolute;
  inset: 4% -7% 1% -7%;
  z-index: 2;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: rotate(18deg);
  pointer-events: none;
}

.intro-strip {
  min-height: 150px;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  border-top: 1px solid #eaded7;
  background: linear-gradient(90deg, #faefeb, #fffaf6 52%, #faefeb);
}

.intro-strip p {
  margin: 0;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 600;
}

.intro-strip span { width: 90px; height: 1px; margin: auto; background: var(--gold); }

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

.section-kicker {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-kicker.light { color: #e3bd9e; }

h2 {
  margin: 0;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.85rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}

.visual-story { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: center; }
.story-photo { position: relative; margin: 0; overflow: hidden; background: #ead7cd; }
.story-photo-large { min-height: 570px; }
.story-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.story-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: rgba(250, 246, 241, .92);
  color: var(--wine);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.story-message > p:not(.section-kicker) { margin: 24px 0; color: #655c60; line-height: 1.65; }

.benefits-section { background: #f2e2dd; }
.benefits-inner { width: min(1180px, calc(100% - 96px)); }
.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto 56px; text-align: center; }
.section-heading > p:last-child { max-width: 650px; margin: 22px auto 0; color: #645a5f; line-height: 1.7; }

.benefit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-cards article {
  min-height: 305px;
  padding: 38px 34px;
  border: 1px solid rgba(109, 41, 72, .12);
  background: rgba(255, 250, 246, .72);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.benefit-cards article:hover { transform: translateY(-5px); box-shadow: 0 18px 35px rgba(109, 41, 72, .08); }
.benefit-cards span { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.7rem; }
.benefit-cards h3, .module-list h3, .experience-grid h3 {
  margin: 60px 0 12px;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}
.benefit-cards p, .module-list p, .experience-grid p { margin: 0; color: #665d61; line-height: 1.7; }

.curriculum-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; }
.curriculum-intro { position: sticky; top: 40px; align-self: start; }
.curriculum-intro > p:not(.section-kicker) { margin: 24px 0; color: #655c60; line-height: 1.75; }
.curriculum-photo { width: 100%; aspect-ratio: 4 / 3; margin: 12px 0 26px; display: block; object-fit: cover; }
.text-link { display: inline-flex; gap: 10px; padding-bottom: 7px; border-bottom: 1px solid var(--gold); color: var(--wine); font-weight: 700; }
.module-list article { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid #dfd1c8; }
.module-list article:last-child { border-bottom: 1px solid #dfd1c8; }
.module-number { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; }
.module-list h3 { margin: 0 0 8px; }

.fit-section { min-height: 700px; display: grid; grid-template-columns: 1fr 1fr; background: var(--wine); color: white; }
.fit-visual { min-height: 700px; position: relative; overflow: hidden; background: #bd8387; }
.fit-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .9; }
.fit-ring { position: absolute; inset: 8% 7%; z-index: 1; border: 1px solid #e1bd7e; border-radius: 50%; transform: rotate(-14deg); }
.fit-copy { max-width: 620px; align-self: center; padding: 90px clamp(40px, 7vw, 120px); }
.fit-copy h2 { color: white; }
.fit-copy ul { margin: 42px 0 0; padding: 0; list-style: none; }
.fit-copy li { position: relative; padding: 18px 0 18px 38px; border-bottom: 1px solid rgba(255,255,255,.16); line-height: 1.55; }
.fit-copy li::before { content: "✓"; position: absolute; left: 0; color: #e1bd7e; font-weight: 700; }

.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.experience-grid article { padding: 30px 20px 20px 0; border-top: 1px solid var(--gold); }
.experience-grid strong { color: var(--rose); font-size: .8rem; letter-spacing: .12em; }
.experience-grid h3 { margin: 40px 0 10px; font-size: 1.75rem; }

.guarantee-section {
  width: min(1080px, calc(100% - 96px));
  margin: 20px auto 118px;
  padding: 72px 86px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 58px;
  align-items: center;
  background: var(--wine);
  color: #f7eee9;
}
.guarantee-section h2 { color: white; }
.guarantee-section p:last-child { max-width: 700px; margin: 24px 0 0; line-height: 1.75; }
.guarantee-seal { width: 150px; height: 150px; display: grid; place-content: center; border: 1px solid #d6ac67; border-radius: 50%; text-align: center; }
.guarantee-seal strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 4.8rem; line-height: .7; }
.guarantee-seal span { margin-top: 10px; color: #e3bd9e; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-intro > p:last-child { max-width: 400px; margin-top: 22px; color: #665d61; line-height: 1.7; }
.faq-list details { border-top: 1px solid #d8cbc3; }
.faq-list details:last-child { border-bottom: 1px solid #d8cbc3; }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 26px 0; cursor: pointer; color: var(--wine); font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -6px 40px 26px 0; color: #655c60; line-height: 1.7; }

.final-offer { padding: 118px 24px; text-align: center; background: #5b203a; color: white; }
.final-offer h2 { max-width: 800px; margin: 0 auto; color: white; }
.final-lead { margin: 22px auto 34px; font-size: 1.05rem; }
.final-price { display: flex; flex-direction: column; gap: 3px; margin-bottom: 24px; }
.final-price span { color: #e3bd9e; font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.final-price strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 4.6rem; font-weight: 600; }
.light-cta { width: min(430px, 100%); margin: 0 auto; background: #fff7f2; color: var(--wine); }
.light-cta:hover, .light-cta:focus-visible { background: #ecd9ce; color: var(--wine-deep); }
.final-note { margin: 18px 0 0; color: #d8c5cb; font-size: .76rem; }
.final-note span { margin: 0 8px; color: var(--gold); }

footer { min-height: 220px; display: grid; place-items: center; place-content: center; gap: 12px; padding: 38px 24px; text-align: center; background: #24191f; color: #cdbdc4; }
footer .brand { color: #f6e9e2; }
footer p { margin: 0; font-size: .85rem; }
footer small { margin-top: 20px; color: #8f7f87; font-size: .7rem; }

@keyframes enter-up { from { opacity: 0; transform: translateY(12px); } }
@keyframes portrait-in { from { opacity: 0; transform: scale(1.025); } }

@media (max-width: 980px) {
  .site-header { width: min(100% - 40px, 760px); grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { width: min(100% - 40px, 760px); min-height: auto; grid-template-columns: 1fr; padding-top: 48px; }
  .hero-copy { max-width: 680px; }
  .portrait-wrap { grid-row: 1; width: min(92vw, 520px); }
  .section { width: min(100% - 40px, 760px); }
  .visual-story, .curriculum-section, .faq-section { grid-template-columns: 1fr; gap: 52px; }
  .story-photo-large { min-height: 500px; }
  .story-message { max-width: 620px; }
  .benefit-cards { grid-template-columns: 1fr; }
  .benefit-cards article { min-height: auto; }
  .benefit-cards h3 { margin-top: 30px; }
  .curriculum-intro { position: static; }
  .fit-section { grid-template-columns: 1fr; }
  .fit-visual { min-height: 520px; }
  .fit-copy { max-width: 760px; padding: 80px 40px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-section { width: min(100% - 40px, 760px); padding: 58px; }
}

@media (max-width: 560px) {
  .site-header { height: 76px; width: calc(100% - 32px); gap: 12px; }
  .brand { font-size: 1.65rem; }
  .header-cta { padding: 12px 14px; font-size: .66rem; }
  .hero { width: calc(100% - 32px); padding: 28px 0 58px; gap: 42px; }
  h1 { font-size: clamp(3.35rem, 17vw, 4.4rem); }
  .eyebrow { font-size: .72rem; }
  .hero-lead { font-size: .97rem; }
  .hero-benefits { gap: 12px 18px; }
  .hero-benefits li { padding: 0; border: 0; font-size: .8rem; }
  .primary-cta { min-height: 64px; font-size: .93rem; }
  .portrait-wrap { width: 100%; }
  .section { width: calc(100% - 32px); padding: 82px 0; }
  .section-heading.centered { margin-bottom: 38px; }
  .benefits-inner { width: calc(100% - 32px); }
  .visual-story, .curriculum-section, .faq-section { gap: 38px; }
  .story-photo-large { min-height: 360px; }
  .benefit-cards article { padding: 30px 26px; }
  .module-list article { grid-template-columns: 48px 1fr; gap: 14px; }
  .fit-visual { min-height: 430px; }
  .fit-copy { padding: 68px 24px; }
  .experience-grid { grid-template-columns: 1fr; }
  .guarantee-section { width: calc(100% - 32px); margin-bottom: 82px; padding: 48px 28px; grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .guarantee-seal { margin: auto; }
  .final-offer { padding: 88px 20px; }
  .final-price strong { font-size: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
