:root {
  --color-primary: #18181B;
  --color-secondary: #3F3F46;
  --color-accent: #EC4899;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-surface: #FFFFFF;
  --color-border: rgba(9, 9, 11, 0.10);
  --color-muted: #71717A;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 20px rgba(9, 9, 11, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(9, 9, 11, 0.20);
  --shadow-lg: 0 30px 60px -20px rgba(9, 9, 11, 0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

/* === Layout === */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 4rem; }
.section--tint { background: linear-gradient(180deg, rgba(236, 72, 153, 0.04), rgba(236, 72, 153, 0.00)); }
.section--narrow { max-width: 780px; margin-inline: auto; padding-inline: 1.25rem; padding-block: 3rem; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-secondary); font-size: 1.05rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }
.muted { color: var(--color-muted); font-size: 0.95rem; }

/* === Header (glass nav) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(250, 250, 250, 0.92); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a { position: relative; font-weight: 500; font-size: 0.95rem; color: var(--color-secondary); padding-block: 0.25rem; }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--color-accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-cta {
  background: var(--color-primary); color: var(--color-neutral-light) !important;
  padding: 0.55rem 1rem !important; border-radius: 999px; font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--color-accent); }
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0; background: transparent; border: 1px solid var(--color-border); border-radius: 10px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--color-primary); margin-inline: auto; transition: transform .2s; }
.primary-nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 0.5rem; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); }
.primary-nav.is-open a { padding-block: 0.6rem; border-bottom: 1px solid var(--color-border); }
.primary-nav.is-open a:last-child { border-bottom: none; }

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

/* === Hero spotlight === */
.hero-spotlight {
  position: relative; overflow: hidden;
  padding-block: 4rem 2rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(236, 72, 153, 0.12), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(63, 63, 70, 0.10), transparent 60%),
    linear-gradient(180deg, #FAFAFA, #FFFFFF);
}
.hero-spotlight__inner { max-width: 1080px; margin-inline: auto; padding-inline: 1.25rem; text-align: left; }
.hero-spotlight h1 { max-width: 22ch; }
.hero-spotlight .lede { font-size: 1.15rem; color: var(--color-secondary); max-width: 56ch; margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }

.hero-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 1rem;
  position: relative;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(24, 24, 27, 0.10));
}
.hero-visual::after {
  content: ""; position: absolute; inset: -40% -20% auto auto; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35), transparent 65%);
  filter: blur(30px); pointer-events: none;
}
.hero-visual img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.proof-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
  padding: 1.5rem; margin-top: 2rem;
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  color: var(--color-secondary); font-size: 0.95rem;
}
.proof-strip strong { color: var(--color-primary); font-family: var(--font-heading); font-size: 1.15rem; margin-right: 0.35rem; }

@media (min-width: 768px) {
  .hero-spotlight { padding-block: 6rem 3rem; }
  .hero-visual img { aspect-ratio: 21/9; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-align: center;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), #2a2a30);
  color: var(--color-neutral-light);
  box-shadow: 0 6px 20px -8px rgba(24, 24, 27, 0.6);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--color-accent), #d0357b); color: var(--color-neutral-light); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(236, 72, 153, 0.6); }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(236, 72, 153, 0.4); outline-offset: 2px; }

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(236, 72, 153, 0.25); }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--color-secondary); margin: 0; font-size: 0.97rem; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(236, 72, 153, 0.04));
  color: var(--color-accent);
  margin-bottom: 1rem;
}
a.card-link { color: inherit; display: block; }
a.card-link:hover { color: inherit; }

/* === Split === */
.split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* === Testimonial === */
.testimonial { max-width: 780px; margin-inline: auto; text-align: center; padding: 2rem 1rem; }
.testimonial .quote-mark { color: var(--color-accent); opacity: 0.6; margin-bottom: 0.5rem; }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.5; color: var(--color-primary); }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  margin-block: 2rem;
  background: linear-gradient(135deg, var(--color-primary), #27272a);
  color: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  margin-inline: 1.25rem;
  overflow: hidden;
  position: relative;
}
.cta-band::before {
  content: ""; position: absolute; inset: auto -10% -50% auto; width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.35), transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.cta-band__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  align-items: flex-start;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.4rem; }
.cta-band p { color: rgba(250, 250, 250, 0.8); margin: 0; }
.cta-band .btn--primary { background: var(--color-accent); box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.7); }
.cta-band .btn--primary:hover { background: #f472b6; }
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; justify-content: space-between; align-items: center; padding: 3rem 2.5rem; }
  .cta-band { margin-inline: auto; max-width: 1180px; }
}

/* === FAQ === */
.faq { max-width: 780px; margin-inline: auto; }
.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: rgba(236, 72, 153, 0.25); }
.faq summary {
  cursor: pointer; font-weight: 600; font-family: var(--font-heading); font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--color-primary);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 400; color: var(--color-accent); font-size: 1.5rem;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--color-secondary); margin: 0.75rem 0 0; }

/* === Contact page === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 6fr; gap: 3rem; align-items: start; } }
.contact-card, .contact-form {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm);
}
.contact-card address { font-style: normal; margin-bottom: 1rem; color: var(--color-secondary); }
.contact-card a { color: var(--color-primary); font-weight: 500; }
.contact-card a:hover { color: var(--color-accent); }
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: 0.95rem; }
.hours caption { text-align: left; font-family: var(--font-heading); font-weight: 700; margin-bottom: 0.5rem; color: var(--color-primary); }
.hours th, .hours td { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); text-align: left; font-weight: 500; color: var(--color-secondary); }
.hours th { font-weight: 600; color: var(--color-primary); }

.contact-form label { display: block; margin-bottom: 1rem; }
.contact-form label > span { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--color-primary); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border); border-radius: 10px;
  font: inherit; background: var(--color-neutral-light); color: var(--color-primary);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
}
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--color-secondary); margin-bottom: 1.25rem; flex-wrap: wrap; }
.form-consent input { margin-top: 0.2rem; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 250, 250, 0.75);
  padding: 3.5rem 0 1.5rem;
  margin-top: 3rem;
}
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; margin-bottom: 0.75rem; }
.site-footer a { color: rgba(250, 250, 250, 0.75); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.tagline { color: rgba(250, 250, 250, 0.7); margin-top: 0.5rem; max-width: 30ch; }
.legal-links { margin-top: 1rem; }
.legal-links li { display: inline-block; margin-right: 1rem; font-size: 0.9rem; }
.logo--footer img { height: 64px; filter: brightness(0) invert(1); opacity: 0.9; }
.copyright { color: rgba(250, 250, 250, 0.5); margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(250, 250, 250, 0.1); font-size: 0.88rem; text-align: center; }

/* === Reveal on scroll === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  display: none; z-index: 9999;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; color: rgba(250, 250, 250, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button, .cookie-banner__prefs button {
  padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid rgba(250, 250, 250, 0.2);
  background: transparent; color: var(--color-neutral-light); font-weight: 600; font-size: 0.88rem;
  transition: background .2s, transform .2s;
}
.cookie-banner__actions button:hover, .cookie-banner__prefs button:hover { background: rgba(250, 250, 250, 0.08); transform: translateY(-1px); }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner [data-cookie-accept]:hover { background: #f472b6; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(250, 250, 250, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }
