:root {
  --indigo-deep: #14122b;
  --indigo: #1e1b3f;
  --indigo-soft: #2a2654;
  --gold: #d4a94e;
  --gold-bright: #e8c274;
  --cream: #f7f1e6;
  --cream-soft: #efe6d4;
  --ink: #2b2740;
  --ink-soft: #5a5478;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }

h2 { font-size: clamp(2rem, 4.5vw, 3rem); text-align: center; margin-bottom: 0.6rem; }

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 auto 3rem;
}

section { padding: 5.5rem 1.5rem; }

/* ── Nav ─────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 18, 43, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 169, 78, 0.25);
}
.nav-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.25rem; letter-spacing: 0.04em;
  color: var(--cream); text-decoration: none; white-space: nowrap;
}
.nav-logo span { color: var(--gold-bright); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: 0.85rem;
  font-weight: 400; letter-spacing: 0.05em; opacity: 0.85;
}
.nav-links a:hover { opacity: 1; color: var(--gold-bright); }
.nav-cta {
  border: 1px solid var(--gold); border-radius: 2rem;
  padding: 0.45rem 1.1rem; opacity: 1 !important; color: var(--gold-bright) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--indigo-deep) !important; }

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 55% at 50% 115%, rgba(212, 169, 78, 0.35), transparent 65%),
    radial-gradient(ellipse 60% 45% at 50% 108%, rgba(232, 194, 116, 0.28), transparent 60%),
    linear-gradient(175deg, #0e0c20 0%, var(--indigo-deep) 35%, var(--indigo) 70%, #3a2f52 100%);
  color: var(--cream);
  padding: 6rem 1.5rem;
}
.hero-rings { position: absolute; inset: 0; pointer-events: none; }
.hero-rings span {
  position: absolute; left: 50%; top: 88%;
  width: 24rem; height: 24rem;
  border: 1px solid rgba(232, 194, 116, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  animation: ring 9s linear infinite;
}
.hero-rings span:nth-child(2) { animation-delay: 1.8s; }
.hero-rings span:nth-child(3) { animation-delay: 3.6s; }
.hero-rings span:nth-child(4) { animation-delay: 5.4s; }
.hero-rings span:nth-child(5) { animation-delay: 7.2s; }
@keyframes ring {
  0%   { transform: translate(-50%, -50%) scale(0.15); opacity: 0; }
  12%  { opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}
.hero-content { position: relative; max-width: 46rem; }
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 1.4rem; font-weight: 400;
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 5.8rem);
  font-weight: 500; letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(247, 241, 230, 0.85);
  max-width: 36rem; margin: 0 auto 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 1.6rem; font-size: 0.85rem; font-style: italic;
  color: rgba(247, 241, 230, 0.6); font-family: var(--serif); font-size: 1.05rem;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-block; text-decoration: none;
  padding: 0.85rem 2.1rem; border-radius: 2rem;
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.06em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: var(--indigo-deep);
  box-shadow: 0 6px 24px rgba(212, 169, 78, 0.35);
}
.btn-ghost {
  border: 1px solid rgba(247, 241, 230, 0.5); color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-dark { background: var(--indigo-deep); color: var(--cream); }

/* ── Mission ─────────────────────────────── */
.mission {
  background: var(--cream); text-align: center;
  padding: 5rem 1.5rem 4rem;
}
.mission p {
  font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic; max-width: 46rem; margin: 0 auto 1.2rem;
  color: var(--ink);
}
.mission-sig { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); }

/* ── Offerings ─────────────────────────────── */
.offerings { background: var(--cream-soft); }
.cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  max-width: 72rem; margin: 0 auto;
}
.card {
  background: #fffdf8; border-radius: 1rem;
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(212, 169, 78, 0.25);
  box-shadow: 0 4px 20px rgba(43, 39, 64, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(43, 39, 64, 0.12); }
.card-icon { width: 3rem; height: 3rem; color: var(--gold); margin-bottom: 1.1rem; }
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ── Signature ─────────────────────────────── */
.signature {
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(212, 169, 78, 0.25), transparent 60%),
    linear-gradient(160deg, var(--indigo-deep), var(--indigo-soft));
  color: var(--cream); text-align: center;
}
.signature-inner { max-width: 42rem; margin: 0 auto; }
.eyebrow-gold {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 1rem;
}
.signature h2 { color: var(--cream); }
.signature p { color: rgba(247, 241, 230, 0.85); margin: 1.2rem 0 2rem; }

/* ── Method ─────────────────────────────── */
.steps {
  list-style: none; max-width: 72rem; margin: 0 auto;
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.steps li { text-align: center; padding: 1rem; }
.steps span {
  font-family: var(--serif); font-size: 2.6rem; color: var(--gold);
  display: block; margin-bottom: 0.4rem;
}
.steps h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.steps p { font-size: 0.9rem; color: var(--ink-soft); }

/* ── Private ─────────────────────────────── */
.private { background: var(--cream-soft); }
.private-inner { max-width: 44rem; margin: 0 auto; text-align: center; }
.private p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.private-list {
  list-style: none; margin: 0 auto 2rem; max-width: 28rem; text-align: left;
}
.private-list li {
  padding: 0.55rem 0 0.55rem 1.8rem; position: relative;
  border-bottom: 1px solid rgba(212, 169, 78, 0.3);
  font-size: 0.95rem;
}
.private-list li::before {
  content: "◦"; color: var(--gold); position: absolute; left: 0.4rem;
  font-size: 1.2rem; line-height: 1.4;
}

/* ── Testimonials ─────────────────────────────── */
.quotes {
  display: grid; gap: 1.5rem; max-width: 66rem; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.quotes blockquote {
  background: #fffdf8; border-left: 3px solid var(--gold);
  border-radius: 0 0.8rem 0.8rem 0; padding: 1.6rem 1.5rem;
}
.quotes p { font-family: var(--serif); font-size: 1.25rem; font-style: italic; margin-bottom: 0.7rem; }
.quotes cite { font-size: 0.8rem; color: var(--ink-soft); font-style: normal; letter-spacing: 0.08em; }

/* ── FAQ ─────────────────────────────── */
.faq { background: var(--cream-soft); }
.faq details {
  max-width: 44rem; margin: 0 auto 0.8rem;
  background: #fffdf8; border-radius: 0.7rem;
  border: 1px solid rgba(212, 169, 78, 0.25);
  padding: 1.1rem 1.4rem;
}
.faq summary {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  cursor: pointer; list-style-position: outside;
}
.faq details p { padding-top: 0.7rem; font-size: 0.92rem; color: var(--ink-soft); }
.faq h2 { margin-bottom: 2.4rem; }

/* ── Contact ─────────────────────────────── */
.contact {
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% -20%, rgba(212, 169, 78, 0.18), transparent 60%),
    linear-gradient(200deg, var(--indigo), var(--indigo-deep));
  color: var(--cream);
}
.contact h2 { color: var(--cream); }
.contact > p { color: rgba(247, 241, 230, 0.8); max-width: 32rem; margin: 0.8rem auto 2rem; }
.contact-note { font-size: 0.8rem; color: rgba(247, 241, 230, 0.5); margin-top: 1.4rem; }

/* ── Footer ─────────────────────────────── */
.footer { background: #0e0c20; color: rgba(247, 241, 230, 0.7); text-align: center; padding: 3rem 1.5rem; }
.footer-logo { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); margin-bottom: 0.8rem; }
.footer-logo span { color: var(--gold-bright); font-style: italic; }
.footer-area { font-size: 0.85rem; margin-bottom: 1.4rem; }
.footer-fine { font-size: 0.72rem; opacity: 0.55; }

/* ── Sticky mobile book button ─────────────────────────────── */
.sticky-book {
  display: none;
  position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  z-index: 60;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: var(--indigo-deep); text-decoration: none;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;
  padding: 0.85rem 2.4rem; border-radius: 2rem;
  box-shadow: 0 8px 28px rgba(14, 12, 32, 0.45);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .sticky-book { display: block; }
  section { padding: 4rem 1.25rem; }
  .hero { min-height: 88vh; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rings span { animation: none; opacity: 0.25; transform: translate(-50%, -50%) scale(1.5); }
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}
