:root {
  --bg: #f6f2ea;
  --bg-soft: #efe8dc;
  --surface: rgba(255, 255, 255, 0.46);
  --text: #241d17;
  --muted: #5f5449;
  --line: rgba(78, 61, 44, 0.14);
  --gold: #b89a63;
  --gold-deep: #8f7343;
  --shadow: 0 18px 48px rgba(36, 29, 23, 0.08);
  --radius: 22px;
  --container: 1180px;
  --container-narrow: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(184, 154, 99, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #f4efe7 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1300;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(248, 244, 237, 0.92), rgba(248, 244, 237, 0.76));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(78, 61, 44, 0.08);
}

.header-inner,
.footer-inner,
.container,
.container.narrow {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
}

.header-right { justify-self: end; }
.brand { justify-self: center; grid-column: 2; }

.brand-logo {
  width: clamp(120px, 12vw, 168px);
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  appearance: none;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(78, 61, 44, 0.12);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.menu-toggle span {
  width: 18px;
  height: 1.8px;
  border-radius: 999px;
  background: var(--text);
  display: block;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

.site-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  background: rgba(248, 244, 237, 0.96);
  border: 1px solid rgba(78, 61, 44, 0.12);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(36, 29, 23, 0.14);
  padding: 16px;
  display: grid;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.96rem;
  color: var(--text);
}

.site-menu a:hover { background: rgba(184, 154, 99, 0.10); }

.site-menu .menu-cta {
  margin-top: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fffdf8;
  text-align: center;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02) brightness(0.90);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(20, 15, 10, 0.30) 0%, rgba(95, 70, 40, 0.18) 35%, rgba(16, 13, 10, 0.62) 100%),
    radial-gradient(circle at center, rgba(201, 169, 108, 0.12), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 900px);
  padding-top: 120px;
  padding-bottom: 80px;
  text-align: center;
  color: #f8f3ea;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero .eyebrow { color: #dfc18c; }

h1, h2, h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  max-width: 12ch;
  margin: 0 auto 18px;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  margin-bottom: 12px;
  text-align: center;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

h3 { font-size: 1.15rem; }

.hero-subtitle {
  margin: 0 auto;
  max-width: 670px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: rgba(248, 243, 234, 0.92);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fffdf8;
  box-shadow: 0 14px 34px rgba(143, 115, 67, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #fff8ec;
  border: 1px solid rgba(255, 248, 236, 0.26);
}

.button-gold-dark {
  background: linear-gradient(135deg, #b89a63, #7c643a);
  color: #fff9ef;
  box-shadow: 0 14px 34px rgba(124, 100, 58, 0.22);
}

.button-outline-dark {
  background: transparent;
  border: 1px solid rgba(78, 61, 44, 0.18);
  color: var(--text);
}

main { position: relative; }
.section { padding: 104px 0; }
#goddesses {
  scroll-margin-top: 120px;
}
.section-alt {
  background: linear-gradient(180deg, rgba(239, 232, 220, 0.72), rgba(246, 242, 234, 0.72));
  border-top: 1px solid rgba(78, 61, 44, 0.06);
  border-bottom: 1px solid rgba(78, 61, 44, 0.06);
}

.container { width: min(calc(100% - 40px), var(--container)); }
.container.narrow, .narrow {
  width: min(calc(100% - 40px), var(--container-narrow));
  margin: 0 auto;
}

.lead {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.34;
  letter-spacing: 0.01em;
  color: var(--text);
  text-align: center;
  max-width: 18ch;
  margin: 0 auto 30px;
}

.intro p {
  max-width: 34ch;
  margin: 0 auto 18px;
  text-align: center;
  font-size: 1.04rem;
  line-height: 1.82;
}

.intro p:last-child {
  margin-bottom: 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading.left { text-align: left; }

.section-intro {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  text-align: center;
}

.section p {
  margin-left: auto;
  margin-right: auto;
}

.split-copy p,
.special-panel-copy p,
.cta-copy,
.anastasia-block p {
  text-align: center;
  max-width: 34ch;
}

.info-card p,
.audience-block p,
.footer-contact p {
  text-align: center;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card,
.quiet-panel,
.goddess-card,
.audience-block,
.anastasia-block,
.special-panel,
.anastasia-copy-card,
.footer-contact-block {
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(78, 61, 44, 0.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 30px;
  text-align: center;
}

.info-card h3,
.info-card p {
  text-align: center;
}

.info-card p:last-child { margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.quiet-panel { padding: 30px; }

.quiet-title {
  margin-top: 0;
  margin-bottom: 18px;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
}

.quiet-panel ul { margin: 0; padding-left: 18px; }
.quiet-panel li + li { margin-top: 10px; }

.goddess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.goddess-card {
  padding: 28px 24px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.goddess-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 154, 99, 0.35);
  background: rgba(255,255,255,0.66);
}

.goddess-name {
  font-family: "Cinzel", serif;
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.goddess-quality {
  color: var(--muted);
  max-width: 18ch;
}

.special-panel {
  padding: 44px 40px;
  background: linear-gradient(145deg, rgba(255,255,255,0.64), rgba(239,232,220,0.72));
  text-align: center;
}

.special-panel-copy {
  max-width: 760px;
  margin: 0 auto;
}

.special-panel-copy p {
  margin-top: 0;
  margin-bottom: 16px;
}

.special-panel-copy .button {
  margin-top: 8px;
}

.audience-block,
.anastasia-block {
  padding: 38px 34px;
}

.audience-block p,
.anastasia-block p {
  margin-top: 0;
  margin-bottom: 16px;
}

.audience-block p:last-child,
.anastasia-block p:last-child { margin-bottom: 0; }

.anastasia-main-heading {
  text-align: center;
  margin-bottom: 34px;
}

.anastasia-feature {
  display: grid;
  grid-template-columns: 180px minmax(0, 620px);
  gap: 30px;
  justify-content: center;
  align-items: start;
}

.anastasia-photo-wrap {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.anastasia-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(78, 61, 44, 0.12);
  box-shadow: var(--shadow);
}

.anastasia-copy-card {
  padding: 32px;
  text-align: center;
}

.anastasia-block {
  text-align: center;
}

.anastasia-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.muted { color: var(--muted); }

.cta-section {
  padding-top: 96px;
  padding-bottom: 118px;
}

.centered { text-align: center; }

.cta-copy {
  margin: 10px auto 26px;
  max-width: 520px;
  color: var(--muted);
}

.site-footer {
  padding: 40px 0 56px;
  border-top: 1px solid rgba(78, 61, 44, 0.08);
  background: rgba(248, 244, 237, 0.82);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-brand .brand-logo {
  width: 130px;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 28px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.footer-title {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
}

.footer-contact p {
  margin: 6px 0;
  color: var(--muted);
}

.footer-contact a:hover { color: var(--gold-deep); }

@media (max-width: 980px) {
  .three-column,
  .goddess-grid,
  .split,
  .anastasia-feature {
    grid-template-columns: 1fr;
  }

  .section { padding: 84px 0; }

  .anastasia-photo-wrap {
    justify-content: center;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 14px; }

  .header-inner,
  .container,
  .container.narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner { min-height: 64px; }
  .brand-logo { width: 118px; }

  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  h1 { max-width: 10.5ch; }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button { width: 100%; }

  .lead {
    font-size: clamp(1.5rem, 7.2vw, 2rem);
    line-height: 1.38;
    max-width: 12ch;
    margin-bottom: 22px;
  }

  .intro p,
  .split-copy p,
  .special-panel-copy p,
  .cta-copy,
  .anastasia-block p,
  .section p {
    max-width: 26ch;
    text-align: center;
    font-size: 1rem;
    line-height: 1.78;
  }

  .info-card,
  .quiet-panel,
  .audience-block,
  .anastasia-block,
  .anastasia-copy-card,
  .special-panel,
  .footer-contact-block {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .goddess-card {
    min-height: 138px;
    padding: 22px 20px;
    border-radius: 18px;
  }

  .section-heading { margin-bottom: 30px; }

  .section-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    max-width: 12ch;
  }

  .site-menu {
    right: 0;
    width: calc(100vw - 24px);
  }

  .anastasia-photo {
    width: 112px;
    height: 112px;
    border-radius: 16px;
  }
}

/* === ENTRY SECTION — FINAL COMBINED THRESHOLD + CTA === */

.entry-section {
  background: #f7f1e8;
  padding: 96px 0 104px;
  text-align: center;
}

.entry-section .entry-container {
  width: min(calc(100% - 40px), var(--container-narrow));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.entry-section .eyebrow {
  margin: 0 0 14px;
  text-align: center;
}

.entry-title {
  max-width: 16ch;
  margin: 0 auto 12px;
}

.entry-copy {
  max-width: 34ch;
  margin: 10px auto 26px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--muted);
  text-align: center;
}

.entry-section .button {
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 720px) {
  .entry-section {
    padding: 76px 0 84px;
  }

  .entry-section .entry-container {
    width: min(calc(100% - 24px), var(--container));
  }

  .entry-copy {
    max-width: 26ch;
    font-size: 1rem;
    line-height: 1.78;
  }
}
/* === CTA SYSTEM (GLOBAL — used everywhere) */

.g-cta {
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(78, 61, 44, 0.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 38px 34px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-copy {
  max-width: 34ch;
  margin: 10px auto 26px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--muted);
  text-align: center;
}

.g-cta .button {
  margin-top: 8px;
}

/* === HOMEPAGE ENTRY SECTION ONLY */

.entry-section {
  background: #f7f1e8;
  padding: 96px 0 104px;
  text-align: center;
}

.entry-section .entry-container {
  width: min(calc(100% - 40px), var(--container-narrow));
  margin: 0 auto;
}

.entry-title {
  max-width: 16ch;
  margin: 0 auto 12px;
}

.entry-copy {
  max-width: 34ch;
  margin: 10px auto 18px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--muted);
  text-align: center;
}