:root {
  --color-primary: #D946EF;
  --color-secondary: #E879F9;
  --color-accent: #F97316;
  --color-neutral-dark: #86198F;
  --color-neutral-light: #FDF4FF;
  --color-ink: #2A0B33;
  --color-muted: #6B4B70;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 20px 50px -30px rgba(134, 25, 143, 0.35);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-neutral-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 0.7em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

/* === Layout === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding-block: 3.5rem; }
.section-alt { background: #F7E7FA; }
.section-narrow .container { max-width: 760px; }
.section-narrow p { font-size: 1.1rem; color: var(--color-muted); }
.center { text-align: center; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 244, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(134, 25, 143, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.site-nav { display: none; gap: 1.5rem; align-items: center; }
.site-nav a {
  font-size: 0.95rem;
  color: var(--color-ink);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover { text-decoration: none; border-bottom-color: var(--color-primary); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--color-primary); }
.nav-toggle {
  background: none;
  border: none;
  width: 44px; height: 44px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-ink);
  transition: transform 0.2s ease;
}
.site-nav.is-open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1.5rem 1.25rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(134, 25, 143, 0.12);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* === Hero (hero-split) === */
.hero { padding-block: 3rem 2.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy .eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-copy h1 { margin-top: 0; max-width: 20ch; }
.hero-copy .lede {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 42ch;
  margin-bottom: 1.8rem;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .hero { padding-block: 5rem 4rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
}
.btn-primary:hover { background: var(--color-primary); text-decoration: none; transform: translateY(-1px); }
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover { background: #ea640c; text-decoration: none; transform: translateY(-1px); }

/* === Section head === */
.section-head { text-align: center; margin-bottom: 2.5rem; max-width: 640px; margin-inline: auto; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }

/* === Card grid === */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .card-grid.card-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(134, 25, 143, 0.14);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: inherit;
  display: block;
}
.card h3 { color: var(--color-neutral-dark); margin-top: 0.25rem; }
.card p { color: var(--color-muted); margin-bottom: 0; font-size: 0.98rem; }
.card .icon {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.card-link { text-decoration: none; }
.card-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--color-primary);
}

/* === Testimonial === */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--color-ink);
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === CTA band === */
.cta-band {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 3rem;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.4em; }
.cta-band p { color: rgba(253, 244, 255, 0.85); margin-bottom: 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .cta-inner { grid-template-columns: 1fr auto; gap: 2rem; }
}

/* === Contact form === */
.form-wrap { max-width: 640px; }
.contact-form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.9rem; font-weight: 700; color: var(--color-neutral-dark); }
.field input, .field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(134, 25, 143, 0.25);
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.45;
  flex-wrap: wrap;
}
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer {
  background: #2A0B33;
  color: rgba(253, 244, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer a { color: rgba(253, 244, 255, 0.85); }
.site-footer .logo img { height: 72px; filter: brightness(1.05); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
}
.tagline { font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; margin-top: 0.75rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact { font-style: normal; line-height: 1.7; }
.legal-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.85rem; }
.legal-links a { font-size: 0.88rem; }
.copyright {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(253, 244, 255, 0.55);
  border-top: 1px solid rgba(253, 244, 255, 0.12);
  padding-top: 1.25rem;
  margin: 0;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  display: none;
  z-index: 9999;
  background: #2A0B33;
  color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  max-width: 620px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin-top: 0; font-size: 0.92rem; color: rgba(253, 244, 255, 0.88); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.cookie-banner__actions button {
  font: inherit;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 244, 255, 0.35);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-weight: 700;
}
.cookie-banner__prefs { display: grid; gap: 0.5rem; margin-top: 1rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs button {
  justify-self: start;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font: inherit;
  cursor: pointer;
}
