:root {
  --blue: #355070;
  --purple: #6d597a;
  --rose: #b56576;
  --coral: #e56b6f;
  --peach: #eaac8b;
  --cream: #fff8f0;
  --paper: #fffaf5;
  --ink: #20202a;
  --muted: #6a6070;
  --line: rgba(53, 80, 112, 0.16);
  --shadow: 0 24px 70px rgba(32, 32, 42, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(234, 172, 139, 0.42), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(229, 107, 111, 0.22), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(109, 89, 122, 0.2), transparent 32%);
  z-index: -2;
}

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

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

.narrow {
  max-width: 840px;
}

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

.section-pad-sm {
  padding: 64px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 248, 240, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
}

.brand-logo {
  display: block;
  width: clamp(76px, 8vw, 104px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--blue);
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
  color: var(--coral);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--cream) !important;
  opacity: 1 !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 75px);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.eyebrow,
.tag,
.script-label {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.script-label {
  font-family: 'Inter', sans-serif;
  color: var(--peach);
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 0.96;
  margin: 0;
  color: var(--blue);
}

h1 {
  max-width: 850px;
  font-size: clamp(4rem, 10vw, 8.8rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--cream);
  box-shadow: 0 16px 34px rgba(53, 80, 112, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.56);
  color: var(--blue);
  border: 1px solid var(--line);
}

.hero-card,
.offering-card,
.method-card,
.book-box,
.about-panel {
  position: relative;
  background: rgba(255, 250, 245, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
}

.card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: rgba(234, 172, 139, 0.5);
  filter: blur(8px);
  z-index: -1;
}

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

.method-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.method-list li:first-child {
  border-top: 0;
}

.method-list span,
.number {
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.method-list strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.method-list em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
}

.orb-one,
.orb-two {
  position: absolute;
  border-radius: 999px;
  z-index: -1;
  filter: blur(2px);
}

.orb-one {
  width: 420px;
  height: 420px;
  left: -170px;
  bottom: 8%;
  background: rgba(181, 101, 118, 0.16);
}

.orb-two {
  width: 260px;
  height: 260px;
  right: 10%;
  top: 10%;
  background: rgba(234, 172, 139, 0.24);
}

.intro {
  background: linear-gradient(135deg, rgba(53, 80, 112, 0.96), rgba(109, 89, 122, 0.94));
  color: var(--cream);
}

.intro p {
  color: rgba(255, 248, 240, 0.82);
  font-size: 1.08rem;
}

.large-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.2vw, 4rem) !important;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--cream) !important;
  margin: 0 0 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.method-cards,
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.method-card h3 {
  margin-top: 22px;
}

.method-card p {
  color: var(--muted);
}

.who {
  background: rgba(255, 255, 255, 0.34);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 250, 245, 0.74);
  color: var(--muted);
}

.offering-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius-lg);
  min-height: 100%;
}

.offering-card.featured {
  background: linear-gradient(145deg, rgba(53, 80, 112, 0.98), rgba(109, 89, 122, 0.96));
  color: var(--cream);
  transform: translateY(-10px);
}

.offering-card.featured h3,
.offering-card.featured .price {
  color: var(--cream);
}

.offering-card.featured p,
.offering-card.featured li {
  color: rgba(255, 248, 240, 0.82);
}

.offering-card.featured .tag,
.offering-card.featured .text-link {
  color: var(--peach);
}

.ribbon {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offering-top {
  margin-bottom: 12px;
}

.price {
  margin: 14px 0 0;
  color: var(--purple);
  font-weight: 900;
  font-size: 1.15rem;
}

.offering-card p {
  color: var(--muted);
}

.offering-card ul {
  padding-left: 18px;
  margin: 8px 0 24px;
  color: var(--muted);
}

.offering-card li + li {
  margin-top: 9px;
}

.text-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: ' →';
}

.theme-band {
  background:
    linear-gradient(135deg, rgba(229, 107, 111, 0.92), rgba(234, 172, 139, 0.88)),
    var(--coral);
  color: var(--ink);
}

.theme-band h2 {
  color: var(--blue);
}

.theme-band p:not(.eyebrow) {
  max-width: 860px;
  font-size: 1.13rem;
  color: rgba(32, 32, 42, 0.72);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.about-panel {
  min-height: 520px;
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(234, 172, 139, 0.8), transparent 24%),
    radial-gradient(circle at 65% 70%, rgba(181, 101, 118, 0.45), transparent 28%),
    linear-gradient(145deg, var(--blue), var(--purple));
}

.about-logo {
  width: min(78%, 360px);
  height: auto;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 248, 240, 0.9);
  box-shadow: 0 18px 54px rgba(32, 32, 42, 0.18);
}

.about-copy p {
  color: var(--muted);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.credential-row span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(53, 80, 112, 0.09);
  color: var(--blue);
  font-size: 0.87rem;
  font-weight: 800;
}

.book {
  padding-top: 32px;
}

.book-box {
  text-align: center;
  border-radius: var(--radius-xl);
  padding: clamp(34px, 6vw, 72px);
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 172, 139, 0.44), transparent 28%),
    rgba(255, 250, 245, 0.82);
}

.book-box p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--blue);
  font-weight: 700;
}

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

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

.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }

@media (max-width: 900px) {
  .section-pad { padding: 72px 0; }
  .section-pad-sm { padding: 52px 0; }

  .hero {
    min-height: auto;
  }

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

  .method-cards,
  .offering-grid {
    grid-template-columns: 1fr;
  }

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

  .about-panel {
    min-height: 300px;
  }

  .about-logo {
    width: min(100%, 340px);
  }
}

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

  .site-header {
    align-items: center;
    flex-direction: row;
    padding: 12px 14px;
  }

  .brand-logo {
    width: 72px;
    height: auto;
  }

  .nav {
    width: auto;
    justify-content: flex-end;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.82rem;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-actions,
  .hero-actions.centered {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-card,
  .method-card,
  .offering-card {
    padding: 24px;
  }

  .method-list li {
    grid-template-columns: 36px 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}

.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; padding: 10px 14px; background: var(--blue); color: var(--cream); z-index: 100; border-radius: 999px; }
