:root {
  --bg:#f6f3ef;
  --paper:#fbfaf8;
  --text:#111114;
  --muted:#5e5f68;
  --line:rgba(17,17,20,.08);
  --purple:#b04cff;
  --pink:#f26ab7;
  --shadow:0 30px 80px rgba(48, 20, 77, 0.10);
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(176,76,255,.08), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(242,106,183,.08), transparent 24%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
.container { width:min(1100px, calc(100% - 40px)); margin:0 auto; }

/* NAV */
.nav {
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(18px);
  background:rgba(246,243,239,.78);
  border-bottom:1px solid var(--line);
}
.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:16px 0;
}
.brand {
  display:inline-flex; align-items:center; gap:14px;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Helvetica Neue",Arial,sans-serif;
  font-size:28px; font-weight:800; letter-spacing:.08em;
  text-transform:uppercase;
  background:linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.nav-links { display:flex; align-items:center; gap:18px; color:var(--muted); font-size:14px; }
.nav-links a:hover { color:var(--text); }
.button {
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 20px; border-radius:999px; border:1px solid transparent;
  font-size:14px; font-weight:600; transition:transform .25s ease, box-shadow .25s ease;
}
.button.primary {
  background:linear-gradient(135deg, var(--purple), var(--pink));
  color:white; box-shadow:0 14px 34px rgba(176,76,255,.28);
}
.button.secondary {
  background:rgba(255,255,255,.65); border:1px solid var(--line); color:var(--text);
}
.button:hover { transform:translateY(-2px); }

/* BACK PILL + BREADCRUMB */
.back-bar {
  padding:18px 0 0;
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.back-pill {
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px; border-radius:999px;
  background:rgba(176,76,255,.10);
  border:1px solid rgba(176,76,255,.25);
  color:#7b34b5; font-size:13px; font-weight:700;
  transition:background .2s ease, transform .2s ease;
}
.back-pill:hover { background:rgba(176,76,255,.18); transform:translateX(-2px); }
.back-pill::before { content:"←"; font-size:15px; }

.breadcrumb {
  font-size:12px;
  color:var(--muted);
  letter-spacing:.04em;
}
.breadcrumb a { color:var(--muted); }
.breadcrumb a:hover { color:var(--text); }
.breadcrumb span[aria-current="page"] { color:var(--text); font-weight:600; }

@media (max-width: 600px) {
  .back-bar { gap:10px; }
  .breadcrumb { display:none; }
}

/* HERO */
.hero { padding:42px 0 36px; }
.hero-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:38px; align-items:center; }
.kicker {
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 14px; border:1px solid rgba(176,76,255,.18);
  border-radius:999px; background:rgba(176,76,255,.08);
  color:#7b34b5; font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.12em;
  margin-bottom:18px;
}
.kicker::before {
  content:""; width:8px; height:8px; border-radius:50%;
  background:linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow:0 0 16px rgba(176,76,255,.7);
}
.hero h1 {
  margin:8px 0 18px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(40px, 5.4vw, 64px);
  line-height:1.02;
  letter-spacing:-.025em;
  font-weight:500;
}
.hero h1 em {
  font-style:italic;
  background:linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
.hero .lead {
  font-size:18px; line-height:1.6; color:#3b3a44; max-width:540px;
}
.hero-actions {
  display:flex; gap:12px; flex-wrap:wrap; margin-top:24px;
}
.hero-media {
  position:relative; border-radius:32px; overflow:hidden;
  background:#efe6f3; aspect-ratio:4/5; max-height:560px;
  box-shadow:var(--shadow);
}
.hero-media img { width:100%; height:100%; object-fit:cover; }

/* SECTION */
.section { padding:48px 0; }
.section h2 {
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(32px, 4vw, 44px);
  line-height:1.05; letter-spacing:-.02em; font-weight:500;
  margin:0 0 18px;
}
.section h2 em {
  font-style:italic;
  background:linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
.section .intro {
  font-size:17px; line-height:1.6; color:#3b3a44; max-width:680px;
}
.eyebrow {
  display:inline-block;
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.18em;
  color:#7b34b5; margin-bottom:14px;
}

/* GRID CARDS */
.grid-3 { display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; margin-top:30px; }
.grid-2 { display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; margin-top:30px; }
.card {
  background:var(--paper); border:1px solid var(--line); border-radius:24px;
  padding:24px;
}
.card h3 {
  margin:0 0 10px;
  font-size:18px; font-weight:700; letter-spacing:-.01em;
}
.card p { margin:0; color:var(--muted); font-size:14px; line-height:1.6; }
.card .num {
  display:inline-flex; align-items:center; justify-content:center;
  width:32px; height:32px; border-radius:50%;
  background:linear-gradient(135deg, var(--purple), var(--pink)); color:white;
  font-weight:700; font-size:13px; margin-bottom:12px;
}

/* QUOTE */
.quote-band {
  margin:40px 0; padding:36px 28px;
  background:linear-gradient(135deg, rgba(176,76,255,.06), rgba(242,106,183,.04));
  border:1px solid rgba(176,76,255,.12);
  border-radius:28px; text-align:center;
}
.quote-band blockquote {
  margin:0; font-family:"Cormorant Garamond", Georgia, serif;
  font-style:italic; font-size:clamp(22px, 2.6vw, 28px); line-height:1.4;
  color:var(--text); max-width:720px; margin-inline:auto;
}
.quote-band cite {
  display:block; margin-top:14px;
  font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.18em;
  color:var(--muted); font-style:normal;
}

/* FAQ */
.faq { display:grid; gap:12px; margin-top:24px; }
.faq details {
  background:var(--paper); border:1px solid var(--line); border-radius:18px;
  padding:18px 22px; transition:border-color .2s ease;
}
.faq details[open] { border-color:rgba(176,76,255,.35); }
.faq summary {
  cursor:pointer; list-style:none;
  font-weight:600; font-size:15px; color:var(--text);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after {
  content:"+"; font-size:22px; font-weight:300; color:var(--purple);
  transition:transform .2s ease;
}
.faq details[open] summary::after { content:"−"; }
.faq details p { margin:12px 0 0; color:var(--muted); font-size:14px; line-height:1.65; }

/* CTA BAND */
.cta-band {
  margin:40px 0; padding:42px 32px;
  background:linear-gradient(180deg, #151329 0%, #0f0d1f 100%);
  border-radius:30px; color:white; text-align:center; position:relative; overflow:hidden;
}
.cta-band::before {
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 78% 15%, rgba(176,76,255,.28), transparent 32%),
             radial-gradient(circle at 20% 80%, rgba(242,106,183,.14), transparent 32%);
  pointer-events:none;
}
.cta-band > * { position:relative; z-index:1; }
.cta-band h2 {
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(28px, 3.4vw, 40px); margin:0 0 14px;
  font-weight:500; letter-spacing:-.02em;
}
.cta-band p { color:rgba(255,255,255,.7); max-width:520px; margin:0 auto 22px; }
.cta-band .button.primary { font-size:15px; padding:14px 26px; }

/* RELATED */
.related { padding:36px 0 24px; border-top:1px solid var(--line); }
.related .grid-3 { margin-top:18px; }
.related .card { padding:18px; }
.related .card a { color:var(--text); font-weight:600; }
.related .card a:hover { color:var(--purple); }
.related .card p { margin-top:6px; }

/* FOOTER */
.footer {
  padding:34px 0; margin-top:20px;
  border-top:1px solid var(--line);
  font-size:13px; color:var(--muted);
}
.footer-inner {
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:20px; align-items:center;
}
.footer a:hover { color:var(--text); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-media { aspect-ratio:4/3; max-height:420px; }
  .grid-3 { grid-template-columns:1fr; }
  .grid-2 { grid-template-columns:1fr; }
}
@media (max-width: 600px) {
  .nav-links a:not(.button) { display:none; }
  .section { padding:34px 0; }
  .hero { padding:28px 0; }
  .cta-band { padding:28px 20px; border-radius:22px; }
  .quote-band { padding:24px 18px; }
}
