:root {
  --green-950: #061c13;
  --green-900: #082418;
  --green-850: #0c2f21;
  --green-800: #123a2b;
  --gold: #d8ad55;
  --gold-soft: #efd79d;
  --straw: #f4efe3;
  --straw-deep: #e8dcc4;
  --wine: #7f2434;
  --wine-dark: #641b29;
  --ink: #17241d;
  --muted: #6c7067;
  --white: #fffaf0;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--green-950);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.narrow {
  width: min(850px, calc(100% - 40px));
}

.section-dark,
.section-light {
  position: relative;
  overflow: hidden;
}

.section-dark {
  background:
    radial-gradient(circle at 12% 14%, rgba(216, 173, 85, 0.08), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-850));
  color: var(--straw);
}

.section-light {
  background: linear-gradient(180deg, var(--straw), #fbf7ec);
  color: var(--ink);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.45rem, 7.2vw, 5.35rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

h3 {
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine);
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.09em;
  min-height: 52px;
  padding: 0 1.6rem;
  text-align: center;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

.btn-wine {
  background: var(--wine);
  box-shadow: 0 14px 30px rgba(127, 36, 52, 0.26);
  color: var(--white);
}

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

.btn-ghost {
  border-color: rgba(216, 173, 85, 0.5);
  color: var(--gold-soft);
}

.btn-outline {
  border-color: rgba(127, 36, 52, 0.35);
  color: var(--wine);
}

.btn-small {
  min-height: 42px;
  padding-inline: 1.15rem;
}

.site-header {
  align-items: center;
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  left: 0;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
  z-index: 30;
}

.site-header.is-scrolled,
.site-header.menu-active {
  backdrop-filter: blur(18px);
  background: rgba(6, 28, 19, 0.86);
  border-bottom-color: rgba(216, 173, 85, 0.22);
}

.brand img {
  aspect-ratio: 1;
  border: 1px solid rgba(216, 173, 85, 0.45);
  border-radius: 50%;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.desktop-nav {
  align-items: center;
  color: rgba(244, 239, 227, 0.74);
  display: flex;
  flex: 1;
  gap: clamp(1rem, 2vw, 2rem);
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold-soft);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 0.85rem;
}

.menu-toggle {
  background: transparent;
  border: 1px solid rgba(216, 173, 85, 0.34);
  border-radius: 999px;
  display: none;
  height: 44px;
  padding: 0;
  position: relative;
  width: 44px;
}

.menu-toggle span {
  background: var(--gold-soft);
  height: 1px;
  left: 12px;
  position: absolute;
  transition: transform 200ms ease, top 200ms ease;
  width: 18px;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-active .menu-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-active .menu-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  background: rgba(6, 28, 19, 0.97);
  border-bottom: 1px solid rgba(216, 173, 85, 0.18);
  display: none;
  left: 0;
  padding: 6rem 1.25rem 1.6rem;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  transition: transform 240ms ease;
  z-index: -1;
}

.mobile-nav a {
  border-top: 1px solid rgba(216, 173, 85, 0.16);
  color: var(--straw);
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 0;
  text-transform: uppercase;
}

.menu-active .mobile-nav {
  transform: translateY(0);
}

.hero {
  min-height: 100svh;
  padding: 9.25rem 0 4.25rem;
}

.hero::after,
.deep-look::after,
.final-cta::after {
  border: 1px solid rgba(216, 173, 85, 0.22);
  border-radius: 50%;
  content: "";
  height: 520px;
  position: absolute;
  right: -190px;
  top: 12%;
  width: 360px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.8rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: calc(100svh - 14rem);
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  color: rgba(244, 239, 227, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  max-width: 650px;
}

.hero-note {
  color: var(--gold-soft);
  font-size: 0.94rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.portrait-stage {
  min-height: 620px;
  position: relative;
}

.portrait-arch {
  background:
    linear-gradient(180deg, rgba(244, 239, 227, 0.08), rgba(244, 239, 227, 0.02)),
    var(--green-900);
  border: 1px solid rgba(216, 173, 85, 0.42);
  border-radius: 48% 48% 8px 8px;
  box-shadow: var(--shadow);
  height: min(64vh, 590px);
  min-height: 470px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.portrait-arch::before {
  border: 1px solid rgba(216, 173, 85, 0.58);
  border-bottom: 0;
  border-radius: 48% 48% 0 0;
  content: "";
  inset: 18px 18px auto;
  height: 54%;
  position: absolute;
}

.photo-placeholder {
  align-items: center;
  background:
    linear-gradient(160deg, rgba(244, 239, 227, 0.12), rgba(216, 173, 85, 0.05)),
    var(--green-800);
  color: rgba(244, 239, 227, 0.74);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
  justify-content: center;
  min-height: 320px;
  padding: 2rem;
  text-align: center;
}

.photo-placeholder span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-placeholder strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 600;
  line-height: 0.95;
}

.portrait-logo {
  border: 1px solid rgba(216, 173, 85, 0.36);
  border-radius: 50%;
  height: 132px;
  object-fit: cover;
  width: 132px;
}

.portrait-photo {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.gold-ring {
  border: 1px solid rgba(216, 173, 85, 0.42);
  border-radius: 50%;
  bottom: 24px;
  height: 180px;
  position: absolute;
  right: -48px;
  width: 180px;
}

.identity {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.identity h2,
.identity blockquote {
  text-align: center;
}

.thoughts {
  display: grid;
  gap: 1.3rem;
  margin: 3.2rem auto;
  max-width: 680px;
}

.thoughts p {
  border-bottom: 1px solid rgba(127, 36, 52, 0.18);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0;
  padding-bottom: 1.3rem;
}

blockquote {
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 760px;
}

.deep-look,
.about,
.timeline-section,
.middle-cta,
.final-cta {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.deep-panel {
  border: 1px solid rgba(216, 173, 85, 0.34);
  padding: clamp(1.6rem, 4vw, 3rem);
}

.deep-panel img {
  border-radius: 50%;
  height: 96px;
  margin-bottom: 2rem;
  object-fit: cover;
  width: 96px;
}

.deep-panel p {
  color: rgba(244, 239, 227, 0.82);
  font-size: 1.08rem;
}

.approach,
.benefits,
.for-whom,
.plans,
.objections,
.faq {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-heading {
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
  max-width: 820px;
}

.card-grid,
.pricing-grid,
.benefit-grid {
  display: grid;
  gap: 1rem;
}

.three,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-card {
  background: linear-gradient(145deg, var(--green-900), var(--green-800));
  border: 1px solid rgba(216, 173, 85, 0.32);
  color: var(--straw);
  min-height: 320px;
  padding: 2rem;
  position: relative;
}

.pillar-card span,
.timeline-item span {
  color: var(--gold);
  display: block;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2.2rem;
}

.pillar-card p {
  color: rgba(244, 239, 227, 0.74);
}

.about-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.6rem, 7vw, 6rem);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.about-photo {
  border: 1px solid rgba(216, 173, 85, 0.4);
  min-height: 560px;
  padding: 0.9rem;
}

.photo-placeholder-small {
  min-height: 540px;
}

.about-portrait-photo {
  display: block;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.about-copy p:not(.eyebrow):not(.signature) {
  color: rgba(244, 239, 227, 0.78);
  font-size: 1.05rem;
}

.signature {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 2rem;
  margin-top: 2rem;
}

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

.benefit {
  border-top: 1px solid rgba(127, 36, 52, 0.22);
  padding: 1.5rem 1.2rem 1.5rem 0;
}

.benefit:nth-child(1),
.benefit:nth-child(2),
.benefit:nth-child(3) {
  grid-column: span 2;
}

.benefit:nth-child(4),
.benefit:nth-child(5) {
  grid-column: span 3;
}

.benefit h3 {
  color: var(--wine);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.benefit p,
.price-card p,
.elegant-list,
.objection-box span,
.accordion p {
  color: var(--muted);
}

.timeline {
  border-left: 1px solid rgba(216, 173, 85, 0.26);
  display: grid;
  gap: 0;
}

.timeline-item {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 128px minmax(0, 1fr);
  padding: 2.2rem 0 2.2rem 2rem;
  position: relative;
}

.timeline-item::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 10px;
  left: -5px;
  position: absolute;
  top: 3.15rem;
  width: 10px;
}

.timeline-item + .timeline-item {
  border-top: 1px solid rgba(216, 173, 85, 0.14);
}

.timeline-item h3 {
  color: var(--straw);
}

.timeline-item p {
  color: rgba(244, 239, 227, 0.72);
  max-width: 620px;
}

.audience {
  color: var(--wine);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.elegant-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.elegant-list li {
  border-bottom: 1px solid rgba(127, 36, 52, 0.16);
  padding: 1rem 0 1rem 2rem;
  position: relative;
}

.elegant-list li::before {
  background: var(--gold);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 1.72rem;
  width: 7px;
}

.plans {
  background: linear-gradient(180deg, #fbf7ec, var(--straw-deep));
}

.price-card {
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(127, 36, 52, 0.16);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 2rem;
}

.price-card.featured {
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  border-color: rgba(216, 173, 85, 0.55);
  box-shadow: var(--shadow);
  color: var(--straw);
  transform: translateY(-18px);
}

.tag {
  align-self: flex-start;
  background: rgba(216, 173, 85, 0.15);
  border: 1px solid rgba(216, 173, 85, 0.42);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1.4rem;
  padding: 0.35rem 0.72rem;
  text-transform: uppercase;
}

.price {
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}

.featured .price {
  color: var(--gold-soft);
}

.featured p {
  color: rgba(244, 239, 227, 0.76);
}

.sessions {
  color: var(--gold-soft) !important;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card .btn {
  margin-top: auto;
}

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

.middle-cta p {
  color: rgba(244, 239, 227, 0.76);
  margin-bottom: 2rem;
}

.objection-box {
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid rgba(127, 36, 52, 0.14);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.objection-box p {
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.objection-box strong,
.objection-box span {
  display: block;
}

.objection-box strong {
  margin-top: 2rem;
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

details {
  background: rgba(255, 250, 240, 0.76);
  border: 1px solid rgba(127, 36, 52, 0.14);
}

summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 1.25rem 3rem 1.25rem 1.25rem;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--gold);
  content: "+";
  font-family: var(--serif);
  font-size: 2rem;
  position: absolute;
  right: 1.25rem;
  top: 0.66rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}

.final-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.final-copy p {
  color: rgba(244, 239, 227, 0.78);
}

.final-copy span {
  color: var(--gold-soft);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 1.4rem;
  text-transform: uppercase;
}

.final-photo {
  border: 1px solid rgba(216, 173, 85, 0.38);
  margin-left: auto;
  max-width: 420px;
  padding: 0.8rem;
  transform: translateY(2rem);
  width: 100%;
}

.photo-placeholder-wide {
  min-height: 420px;
}

.photo-placeholder-wide img {
  border-radius: 50%;
  height: 88px;
  object-fit: cover;
  width: 88px;
}

.final-portrait-photo {
  display: block;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.site-footer {
  background: #04160f;
  color: rgba(244, 239, 227, 0.7);
  padding: 3rem 0;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr auto;
}

.site-footer img {
  border: 1px solid rgba(216, 173, 85, 0.32);
  border-radius: 50%;
  height: 76px;
  margin-bottom: 1rem;
  object-fit: cover;
  width: 76px;
}

.site-footer h2 {
  color: var(--straw);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.site-footer small {
  color: rgba(244, 239, 227, 0.46);
  display: block;
}

.site-footer nav {
  display: grid;
  gap: 0.5rem;
}

.site-footer nav a {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu-toggle,
  .mobile-nav {
    display: block;
  }

  .hero-grid,
  .split,
  .about-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

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

  .portrait-stage {
    min-height: auto;
  }

  .portrait-arch {
    height: auto;
    min-height: 470px;
  }

  .three,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit:nth-child(n) {
    grid-column: auto;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 0.8rem 0.9rem;
  }

  .brand img {
    height: 52px;
    width: 52px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .hero-cta,
  .hero-cta .btn,
  .middle-cta .btn,
  .final-copy .btn,
  .price-card .btn {
    width: 100%;
  }

  .portrait-arch {
    border-radius: 46% 46% 8px 8px;
    min-height: 390px;
  }

  .photo-placeholder strong {
    font-size: 2.6rem;
  }

  .about-photo,
  .photo-placeholder-small {
    min-height: 390px;
  }

  .timeline-item {
    gap: 0.6rem;
    grid-template-columns: 1fr;
    padding-left: 1.2rem;
  }

  .timeline-item span {
    font-size: 2.6rem;
    margin-bottom: 0;
  }

  .price-card {
    min-height: 360px;
  }
}

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