/* === Tokens === */
:root {
  --color-primary: #18181B;
  --color-secondary: #3F3F46;
  --color-accent: #EC4899;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-border: rgba(9, 9, 11, 0.10);
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 40px -20px rgba(0,0,0,0.20);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.30);
  --maxw: 1160px;
}

/* === 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;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; margin: 0 0 1rem; line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; color: var(--color-secondary); }
ul { padding: 0; margin: 0; list-style: none; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 780px; }

/* === Header === */
.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 transparent;
  transition: background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 24px -18px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: none; border: 1px solid var(--color-border); border-radius: 10px;
  padding: .5rem; cursor: pointer; color: var(--color-primary);
}
.primary-nav { display: none; }
.primary-nav.is-open {
  display: flex; flex-direction: column;
  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);
  gap: .25rem;
}
.primary-nav a {
  padding: .75rem 0;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
}
.primary-nav a[aria-current="page"] { color: var(--color-accent); }
.primary-nav .nav-cta {
  background: var(--color-primary); color: var(--color-neutral-light);
  border-radius: 999px; padding: .6rem 1.25rem; margin-top: .5rem;
  text-align: center;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: 1.75rem; position: static; padding: 0; background: transparent; border: none; flex-direction: row; }
  .primary-nav a { padding: 0; }
  .primary-nav a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 2px; background: var(--color-accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav a:not(.nav-cta):hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .primary-nav .nav-cta { margin-top: 0; }
  .primary-nav .nav-cta:hover { background: var(--color-accent); }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  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), #27272A);
  color: var(--color-neutral-light);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(236, 72, 153, 0.5); background: linear-gradient(135deg, var(--color-accent), #DB2777); }
.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 var(--color-accent); outline-offset: 3px; }

/* === Hero (centered) === */
.hero {
  position: relative;
  padding-block: 4rem 3rem;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute; inset: -10%;
  background: radial-gradient(600px 400px at 50% 20%, rgba(236, 72, 153, 0.15), transparent 60%),
              radial-gradient(500px 300px at 80% 60%, rgba(63, 63, 70, 0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-accent); font-weight: 600; margin-bottom: 1rem;
}
.hero h1 { max-width: 28ch; margin-inline: auto; }
.hero-sub {
  max-width: 56ch; margin: 1.25rem auto 2rem;
  font-size: 1.15rem; color: var(--color-secondary);
}
.hero-ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-image {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

@media (min-width: 768px) {
  .hero { padding-block: 6rem 4rem; }
}

/* === Sections === */
.section { padding-block: 4rem; position: relative; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.intro { text-align: center; }
.intro p { font-size: 1.08rem; max-width: 60ch; margin-inline: auto; }

/* === Cards grid === */
.grid { display: grid; gap: 1.25rem; }
.grid-cards { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-cards { grid-template-columns: repeat(4, 1fr); } .grid-cards.three { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .75rem; }
.card p { font-size: .95rem; margin-bottom: 0; }
.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(24, 24, 27, 0.06));
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* === Testimonial === */
.testimonial blockquote {
  margin: 0; text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.45; color: var(--color-primary);
  position: relative; padding: 2rem 1rem 0;
}
.testimonial blockquote::before {
  content: '“';
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  font-size: 5rem; color: var(--color-accent); line-height: 1;
  font-family: var(--font-heading);
}
.testimonial cite {
  display: block; margin-top: 1.5rem;
  font-family: var(--font-body); font-style: normal;
  font-size: .95rem; color: var(--color-secondary);
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  text-align: center;
  border-radius: 0;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250, 250, 250, 0.75); max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.cta-band .btn-primary:hover { background: #DB2777; }

.contact-band { text-align: center; }
.contact-band p { font-size: 1rem; }
.contact-band a { color: var(--color-accent); font-weight: 500; }

/* === FAQ === */
.faq details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: .75rem;
  background: #fff;
  transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 600; font-family: var(--font-heading);
  font-size: 1.05rem; list-style: none; color: var(--color-primary);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; color: var(--color-accent); font-weight: 400;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 1rem; margin-bottom: 0; }

/* === Contact form === */
.contact-form { display: grid; gap: 1.25rem; margin-top: 2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 500; font-size: .95rem; color: var(--color-primary); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  color: var(--color-primary);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15);
}
.form-consent {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .9rem; color: var(--color-secondary);
  flex-wrap: wrap;
}
.form-consent a { color: var(--color-accent); text-decoration: underline; }
.form-consent input { margin-top: .25rem; }
.contact-form .btn { justify-self: start; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 250, 250, 0.7);
  padding-block: 4rem 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.site-footer h4 {
  color: var(--color-neutral-light);
  font-size: 1rem; margin-bottom: 1rem;
}
.site-footer a { color: rgba(250, 250, 250, 0.75); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer .logo img { height: 60px; filter: brightness(0) invert(1); }
.footer-tag { margin-top: 1rem; color: rgba(250, 250, 250, 0.65); }
.site-footer ul li { padding: .3rem 0; }
.site-footer address { font-style: normal; line-height: 1.8; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; }
.copyright {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: .85rem; color: rgba(250, 250, 250, 0.5);
}

/* === 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: 0 20px 60px -10px rgba(0,0,0,0.5);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { color: rgba(250, 250, 250, 0.85); font-size: .92rem; margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: .6rem 1rem; font-size: .9rem; }
.cookie-banner__actions .btn-ghost { color: var(--color-neutral-light); border-color: rgba(255,255,255,0.25); }
.cookie-banner__actions .btn-ghost:hover { border-color: var(--color-neutral-light); }
.cookie-banner__prefs {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: .6rem;
}
.cookie-banner__prefs label { display: flex; gap: .5rem; align-items: center; font-size: .9rem; color: rgba(250, 250, 250, 0.85); }
.cookie-banner__prefs .btn { margin-top: .5rem; align-self: flex-start; }

/* === Reveal === */
.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; }
}
