: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);
  --color-tint: #F4F4F5;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 40px -10px rgba(0,0,0,0.15);
  --shadow-lg: 0 30px 60px -20px rgba(0,0,0,0.25);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
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; }

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 1rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 4rem; }
.section-narrow { max-width: 780px; margin-inline: auto; }
.section-tinted { background: var(--color-tint); position: relative; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-secondary); }

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

/* === Header / 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 transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 6px 24px -18px rgba(0,0,0,0.25);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.nav-toggle { background: transparent; border: 0; padding: 0.5rem; color: var(--color-primary); display: inline-flex; }
.primary-nav { display: none; gap: 1.75rem; align-items: center; }
.primary-nav a { position: relative; font-weight: 500; color: var(--color-secondary); padding: 0.25rem 0; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease); }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
}
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.25rem; gap: 1rem; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body); text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); border: 1px solid transparent; cursor: pointer; font-size: 0.95rem; }
.btn:focus-visible { outline: 3px solid rgba(236, 72, 153, 0.35); outline-offset: 2px; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-neutral-light); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.4); }
.btn-primary:hover { color: var(--color-neutral-light); transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.5); }
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 12px 30px -12px rgba(236,72,153,0.55); }
.btn-accent:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(236,72,153,0.7); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: var(--color-neutral-light); transform: translateY(-2px); }

/* === Hero === */
.hero {
  position: relative;
  padding-block: 4rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto -10%; height: 60%;
  background: radial-gradient(ellipse at center, rgba(236,72,153,0.12), transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 1rem auto 2rem; color: var(--color-secondary); font-size: 1.125rem; }
.hero__image { margin-top: 3rem; }
.hero__image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 16/9; object-fit: cover; }
.hero-compact { padding-bottom: 2rem; }
@media (min-width: 768px) {
  .hero { padding-block: 6rem; }
  .hero-compact { padding-block: 5rem 2rem; }
}

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

.card {
  background: var(--color-neutral-light);
  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);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(236,72,153,0.10); color: var(--color-accent); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-secondary); margin: 0; font-size: 0.95rem; }

/* === Quote === */
.quote { max-width: 780px; margin-inline: auto; padding: 2rem 1rem; text-align: center; border: 0; }
.quote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.4; color: var(--color-primary); font-weight: 500; margin-bottom: 1.25rem; }
.quote cite { color: var(--color-secondary); font-style: normal; font-size: 0.95rem; }
.quote-with-portrait { display: grid; gap: 1.5rem; align-items: center; }
.quote__portrait { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto; box-shadow: var(--shadow-md); }
@media (min-width: 768px) {
  .quote-with-portrait { grid-template-columns: 160px 1fr; gap: 2.5rem; text-align: left; }
  .quote-with-portrait .quote { text-align: left; padding: 0; margin: 0; }
  .quote__portrait { width: 160px; height: 160px; margin: 0; }
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  padding-block: 3.5rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(236,72,153,0.25), transparent 55%); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(250,250,250,0.8); margin: 0; max-width: 60ch; }
@media (min-width: 768px) { .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; } }

/* === Pricing === */
.pricing-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { position: relative; display: flex; flex-direction: column; padding: 2.25rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); background: var(--color-neutral-light); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured { border: 2px solid var(--color-accent); box-shadow: 0 20px 50px -20px rgba(236,72,153,0.4); }
.pricing-card__badge { position: absolute; top: -14px; right: 20px; background: var(--color-accent); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.35rem 0.85rem; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; }
.pricing-card__plan { margin-bottom: 0.35rem; }
.pricing-card__price { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--color-primary); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.pricing-card__lede { color: var(--color-secondary); font-size: 0.95rem; margin-bottom: 1.25rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-card__features li { display: flex; gap: 0.5rem; font-size: 0.95rem; color: var(--color-secondary); align-items: flex-start; }
.pricing-card__features li span { color: var(--color-accent); font-weight: 700; flex: 0 0 auto; }
.pricing-card__cta { margin-top: auto; text-align: center; }

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 0.75rem; background: var(--color-neutral-light); transition: box-shadow .2s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--color-primary); font-family: var(--font-heading); }
.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: 0.75rem; color: var(--color-secondary); }

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-grid h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent); margin-bottom: 0.75rem; }
.contact-grid address { font-style: normal; color: var(--color-secondary); line-height: 1.7; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { padding: 0.4rem 0; text-align: left; border-bottom: 1px dashed var(--color-border); color: var(--color-secondary); font-weight: 400; }
.hours th { color: var(--color-primary); font-weight: 500; }
.contact-band__body { max-width: 720px; margin: 0 auto; color: var(--color-secondary); text-align: center; }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 500; font-size: 0.9rem; color: var(--color-primary); }
.form-row input, .form-row textarea { font: inherit; padding: 0.75rem 0.9rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; color: var(--color-primary); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(236,72,153,0.15); }
.form-row textarea { resize: vertical; min-height: 140px; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.875rem; color: var(--color-secondary); line-height: 1.5; }
.form-consent input { margin-top: 0.25rem; }
.form-consent a { color: var(--color-accent); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250,250,250,0.7); padding-top: 4rem; margin-top: 3rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: var(--color-neutral-light); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.site-footer .logo img { filter: invert(1) brightness(1.2) contrast(0.9); }
.footer__tag { color: rgba(250,250,250,0.6); margin-top: 0.75rem; max-width: 32ch; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { color: rgba(250,250,250,0.7); }
.footer-nav a:hover { color: var(--color-accent); }
.footer-contact address { font-style: normal; line-height: 1.7; color: rgba(250,250,250,0.7); }
.footer-contact address a { color: rgba(250,250,250,0.85); }
.footer-contact address a:hover { color: var(--color-accent); }
.legal-nav { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 1rem; font-size: 0.875rem; }
.legal-nav a { color: rgba(250,250,250,0.6); }
.legal-nav a:hover { color: var(--color-accent); }
.footer__copy { border-top: 1px solid rgba(250,250,250,0.1); padding-block: 1.5rem; font-size: 0.85rem; color: rgba(250,250,250,0.5); }

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

/* === 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;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; color: rgba(250,250,250,0.85); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions 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: 500; font-size: 0.875rem; }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner__actions button:hover { border-color: var(--color-accent); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(250,250,250,0.15); font-size: 0.875rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; padding: 0.55rem 1rem; border-radius: 999px; border: 0; background: var(--color-accent); color: #fff; font-weight: 600; font-size: 0.875rem; }
