:root {
  --paper: #f6f1ec;
  --paper-deep: #ebe2d9;
  --ink: #271a18;
  --muted: #796762;
  --wine: #6e2634;
  --wine-dark: #4b1822;
  --rose: #c98f92;
  --line: rgba(39, 26, 24, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 16px;
  padding: 12px 16px;
  color: #fff;
  background: var(--wine-dark);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
}

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

.brand {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  font-style: italic;
  font-weight: 500;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.site-navigation a,
.site-footer a:not(.brand) {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-navigation a {
  position: relative;
}

.site-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before {
  position: absolute;
  top: -6px;
}

.menu-toggle-icon::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 80px);
  padding: 64px 0 72px;
  background: linear-gradient(115deg, #f6f1ec 0%, #f6f1ec 48%, #e8d6ce 100%);
}

.hero::after {
  position: absolute;
  right: -14vw;
  bottom: -30vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(110, 38, 52, 0.15);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - 216px);
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(44px, 8vw, 140px);
}

.hero-copy {
  min-width: 0;
  padding: 24px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.2vw, 116px);
}

.hero h1 em,
h2 em {
  font-weight: 500;
}

.hero-text {
  max-width: 480px;
  margin: 34px 0 32px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--wine);
}

.button-primary:hover {
  background: var(--wine-dark);
}

.button-light {
  color: var(--wine-dark);
  background: #fff8f4;
}

.button-light:hover {
  color: #fff;
  background: var(--wine-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--wine);
}

.text-link-dark {
  margin-top: 30px;
}

.hero-signature {
  margin: 60px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.hero-visual {
  position: relative;
  width: min(100%, 480px);
  margin: 0 0 0 auto;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.71;
  background: #d6b5ae;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(51, 20, 25, 0.03), rgba(51, 20, 25, 0.14));
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-accent {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-accent-one {
  top: -35px;
  right: -38px;
  width: 140px;
  height: 140px;
  background: var(--wine);
}

.hero-accent-two {
  bottom: 43px;
  left: -54px;
  width: 112px;
  height: 112px;
  border: 1px solid var(--wine);
}

.intro-section {
  padding: clamp(88px, 12vw, 170px) 0 0;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 42px;
}

.intro-grid h2,
.section-heading h2,
.format-heading h2,
.about-copy h2,
.faq-grid h2,
.closing-inner h2 {
  font-size: clamp(45px, 5.2vw, 82px);
}

.intro-copy {
  max-width: 650px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(66px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.outcome-card {
  min-height: 250px;
  padding: 31px 36px 30px 0;
  border-right: 1px solid var(--line);
}

.outcome-card + .outcome-card {
  padding-left: 36px;
}

.outcome-card:last-child {
  border-right: 0;
}

.outcome-number,
.format-item > span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.outcome-card h3,
.format-item h3 {
  margin: 44px 0 9px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.outcome-card p,
.format-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.detail-section {
  padding: clamp(92px, 13vw, 190px) 0;
  background: var(--paper);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.8fr;
  align-items: center;
  gap: clamp(42px, 9vw, 136px);
}

.detail-image-wrap {
  overflow: hidden;
  aspect-ratio: 1.22;
  background: #d7c1b9;
}

.detail-image-wrap img,
.bonus-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy h2,
.bonus-copy h2 {
  font-size: clamp(42px, 4.4vw, 68px);
}

.detail-copy p:not(.section-label),
.bonus-copy p:not(.section-label),
.about-copy p:not(.section-label) {
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.program-section {
  padding: clamp(88px, 11vw, 164px) 0;
  color: #fff7f2;
  background: var(--wine-dark);
}

.program-section .section-label {
  color: #dfb3ae;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 32px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: #d6bab4;
  font-size: 14px;
  line-height: 1.7;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 77px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 247, 242, 0.25);
  border-left: 1px solid rgba(255, 247, 242, 0.25);
}

.program-card {
  min-height: 230px;
  padding: 27px 27px 30px;
  border-right: 1px solid rgba(255, 247, 242, 0.25);
  border-bottom: 1px solid rgba(255, 247, 242, 0.25);
  transition: background 180ms ease;
}

.program-card:hover {
  background: rgba(255, 247, 242, 0.08);
}

.program-card span {
  color: #dda6a1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.program-card h3 {
  margin: 46px 0 11px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.program-card p {
  margin: 0;
  color: #d6bab4;
  font-size: 13px;
  line-height: 1.65;
}

.bonus-section {
  padding: clamp(88px, 11vw, 160px) 0;
  background: #d6b4aa;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: clamp(42px, 9vw, 138px);
}

.bonus-image-wrap {
  overflow: hidden;
  aspect-ratio: 1.12;
  background: #b7938c;
}

.bonus-copy .section-label {
  color: var(--wine-dark);
}

.bonus-mark {
  display: block;
  margin: 25px 0 9px;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 0.8;
}

.bonus-copy h2 {
  color: var(--wine-dark);
}

.bonus-copy p:not(.section-label) {
  color: #592f30;
}

.format-section {
  padding: clamp(90px, 12vw, 172px) 0;
  background: #fffaf5;
}

.format-heading {
  max-width: 900px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 75px;
}

.format-item {
  min-height: 242px;
  padding: 30px;
  background: var(--paper);
}

.format-item h3 {
  margin-top: 60px;
}

.about-section {
  padding: clamp(90px, 12vw, 174px) 0;
  background: var(--paper-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr;
  align-items: center;
  gap: clamp(42px, 10vw, 155px);
}

.video-placeholder {
  display: flex;
  aspect-ratio: 1.24;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 55px);
  color: #fff8f3;
  background: radial-gradient(circle at 78% 20%, #c38683 0 7%, transparent 7.4%), radial-gradient(circle at 38% 82%, #9d5358 0 13%, transparent 13.4%), linear-gradient(135deg, #672331, #35141d);
}

.video-placeholder-kicker,
.video-placeholder-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.video-placeholder-title {
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 78px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.video-placeholder-note {
  color: #e7b9ad;
}

.about-note {
  color: #967f78 !important;
  font-size: 13px !important;
}

.faq-section {
  padding: clamp(90px, 12vw, 170px) 0;
  background: #fffaf5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(44px, 9vw, 140px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 40px 23px 0;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 2px;
  color: var(--wine);
  content: "+";
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 0.8;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 610px;
  margin: 0;
  padding: 0 32px 23px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.closing-section {
  padding: clamp(95px, 13vw, 192px) 0;
  color: #fff9f4;
  background: var(--wine);
  text-align: center;
}

.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closing-inner .section-label {
  color: #e7bdb6;
}

.closing-inner h2 {
  max-width: 860px;
}

.closing-inner .button {
  margin-top: 44px;
}

.site-footer {
  padding: 28px 0;
  color: #e9d8cf;
  background: var(--wine-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-footer {
  color: #fff6ef;
}

.site-footer p {
  margin: 0;
  color: #d3b0a7;
  font-size: 11px;
}

.site-footer a:not(.brand) {
  color: #fff6ef;
}

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 4px;
}

.button:focus-visible,
.site-footer a:focus-visible,
.closing-section a:focus-visible {
  outline-color: #fff;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-navigation {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 24px 26px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 22px rgba(60, 37, 31, 0.07);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-navigation a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .detail-grid,
  .bonus-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    width: min(100%, 480px);
    margin: 0;
  }

  .detail-copy {
    max-width: 650px;
  }

  .bonus-image-wrap {
    order: 2;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 36px, 1240px);
  }

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

  .site-navigation {
    top: 69px;
  }

  .hero {
    min-height: 0;
    padding: 48px 0 56px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 70px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-text {
    margin: 27px 0;
    font-size: 15px;
  }

  .hero-signature {
    margin-top: 38px;
  }

  .hero-accent-one {
    top: -22px;
    right: -22px;
    width: 92px;
    height: 92px;
  }

  .hero-accent-two {
    bottom: 38px;
    left: -30px;
    width: 70px;
    height: 70px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .intro-grid h2,
  .section-heading h2,
  .format-heading h2,
  .about-copy h2,
  .faq-grid h2,
  .closing-inner h2 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .intro-copy {
    margin-top: 27px;
    font-size: 16px;
  }

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

  .outcome-grid {
    margin-top: 55px;
    border-bottom: 1px solid var(--line);
  }

  .outcome-card,
  .outcome-card + .outcome-card {
    min-height: 0;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome-card:last-child {
    border-bottom: 0;
  }

  .outcome-card h3 {
    margin-top: 27px;
  }

  .detail-grid,
  .bonus-grid,
  .about-grid,
  .faq-grid {
    gap: 45px;
  }

  .program-grid {
    margin-top: 52px;
  }

  .program-card {
    min-height: 0;
    padding: 25px;
  }

  .program-card h3 {
    margin-top: 35px;
  }

  .bonus-copy h2,
  .detail-copy h2 {
    font-size: clamp(40px, 12vw, 57px);
  }

  .format-grid {
    gap: 1px;
    margin-top: 52px;
  }

  .format-item {
    min-height: 0;
    padding: 28px;
  }

  .format-item h3 {
    margin-top: 43px;
  }

  .video-placeholder {
    aspect-ratio: 1.06;
  }

  .faq-list summary {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 19px;
  }

  .faq-list summary::after {
    top: 21px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

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

.lead-section {
  padding: clamp(80px, 11vw, 160px) 0;
  background: var(--paper-deep);
}

.lead-inner {
  max-width: 880px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.lead-copy h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.12;
  color: var(--ink);
  margin: 14px 0 18px;
}

.lead-copy h2 em {
  font-style: italic;
  color: var(--wine);
}

.lead-note {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.lead-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.lead-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.lead-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-field input:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(110, 38, 52, 0.14);
}

.lead-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}

.lead-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 18px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}

.lead-consent input {
  margin-top: 2px;
  accent-color: var(--wine);
  width: 16px;
  height: 16px;
  flex: none;
}

.lead-form-status {
  min-height: 20px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--wine-dark);
}

.lead-form-status:empty {
  min-height: 0;
}

.lead-form-status.is-error {
  color: var(--wine);
}

.lead-success {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  padding: 24px 0 8px;
}

@media (max-width: 820px) {
  .lead-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
