:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #22C55E;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --color-ink: #1F1147;
  --color-muted: #5B4C7A;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
  --shadow-sm: 0 2px 20px rgba(76, 29, 149, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(76, 29, 149, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(76, 29, 149, 0.28);
}

/* === 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-ink); background: #fff; 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; transition: color .2s ease; }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
p { margin: 0 0 1rem; }
button { font: inherit; cursor: pointer; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 245, 255, 0.72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid rgba(76, 29, 149, 0.08); transition: background .3s ease, box-shadow .3s ease; }
.site-header.scrolled { background: rgba(250, 245, 255, 0.92); box-shadow: 0 4px 24px -12px rgba(76, 29, 149, 0.2); }
.site-header__inner { max-width: 1200px; margin: 0 auto; padding: .75rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: transparent; border: 1px solid rgba(76, 29, 149, 0.15); border-radius: 10px; padding: .5rem; color: var(--color-neutral-dark); display: inline-flex; }
.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; gap: .25rem; border-bottom: 1px solid rgba(76, 29, 149, 0.08); box-shadow: var(--shadow-md); }
.primary-nav a { padding: .65rem .5rem; color: var(--color-neutral-dark); font-weight: 500; border-radius: 8px; position: relative; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex !important; position: static; flex-direction: row; align-items: center; gap: .25rem; padding: 0; background: transparent; box-shadow: none; border: 0; }
  .primary-nav a { padding: .5rem .9rem; }
  .primary-nav a::after { content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .25rem; height: 2px; background: var(--color-primary); 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); }
  .logo img { height: 96px; }
}

/* === Hero card === */
.hero-band { position: relative; padding: 3rem 1rem 4rem; background: radial-gradient(ellipse at 20% 0%, rgba(167, 139, 250, 0.35), transparent 55%), radial-gradient(ellipse at 100% 40%, rgba(34, 197, 94, 0.14), transparent 55%), linear-gradient(180deg, var(--color-neutral-light), #fff); overflow: hidden; }
.hero-card { max-width: 880px; margin: 0 auto; padding: 2.25rem 1.5rem; border-radius: 24px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, 0.6); text-align: left; }
.hero-card--compact { padding-bottom: 2rem; }
.hero-card .eyebrow { font-family: var(--font-heading); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--color-primary); margin: 0 0 1rem; }
.hero-card h1 { margin-bottom: 1.25rem; }
.hero-card .lede { font-size: 1.1rem; color: var(--color-muted); max-width: 60ch; margin-bottom: 1.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin: 0 0 2rem; }
.hero-card__figure { margin: 1.5rem 0 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.hero-card__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

@media (min-width: 768px) {
  .hero-band { padding: 5rem 1.5rem 6rem; }
  .hero-card { padding: 3.5rem 3rem; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.5rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600; font-size: .98rem; border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease; cursor: pointer; text-decoration: none; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.5); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(124, 58, 237, 0.55); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: rgba(76, 29, 149, 0.25); }
.btn--ghost:hover { background: rgba(124, 58, 237, 0.08); color: var(--color-neutral-dark); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; }

/* === Section shell === */
.section { max-width: 1200px; margin: 0 auto; padding: 4rem 1rem; }
.section--narrow { max-width: 760px; }
.section--narrow p { font-size: 1.05rem; color: var(--color-ink); }
.section__head { text-align: center; margin: 0 auto 2.5rem; max-width: 720px; }
.section__sub { color: var(--color-muted); font-size: 1.05rem; margin-bottom: 1rem; }

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

/* === Grid & cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .grid--2, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: #fff; border: 1px solid rgba(76, 29, 149, 0.08); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(124, 58, 237, 0.25); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(34, 197, 94, 0.12)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-muted); margin: 0; font-size: .98rem; }

/* === Testimonial === */
.testimonial { max-width: 820px; }
.testimonial blockquote { margin: 0; padding: 2.5rem 2rem; background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(167, 139, 250, 0.1)); border-radius: var(--radius); border-left: 4px solid var(--color-primary); position: relative; }
.testimonial blockquote p { font-size: 1.25rem; line-height: 1.55; color: var(--color-ink); font-family: var(--font-heading); font-weight: 500; margin-bottom: 1rem; }
.testimonial blockquote cite { font-style: normal; color: var(--color-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band { padding: 3rem 1rem; margin: 3rem 0; }
.cta-band__inner { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); border-radius: 24px; text-align: center; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band__inner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(34, 197, 94, 0.35), transparent 60%); pointer-events: none; }
.cta-band__inner h2 { color: #fff; }
.cta-band__inner p { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; margin-bottom: 1.5rem; }
.cta-band__inner .btn--primary { background: #fff; color: var(--color-neutral-dark); }
.cta-band__inner .btn--primary:hover { background: var(--color-accent); color: #fff; }
.contact-lines { font-family: var(--font-heading); font-size: 1rem; }

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

/* === FAQ === */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid rgba(76, 29, 149, 0.1); border-radius: 14px; padding: 1.1rem 1.25rem; margin-bottom: .75rem; transition: box-shadow .2s ease, border-color .2s ease; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: rgba(124, 58, 237, 0.3); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); cursor: pointer; list-style: none; 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; font-weight: 400; color: var(--color-primary); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: .75rem; color: var(--color-muted); }

/* === Contact grid === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr .8fr; gap: 3rem; } }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-family: var(--font-heading); font-weight: 600; font-size: .92rem; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea { font: inherit; padding: .8rem 1rem; border: 1px solid rgba(76, 29, 149, 0.18); border-radius: 12px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15); }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--color-muted); line-height: 1.5; }
.form-consent input { margin-top: .2rem; }
.contact-card { background: var(--color-neutral-light); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(76, 29, 149, 0.08); }
.contact-card address { font-style: normal; margin-bottom: 1.5rem; }
.contact-card h3 { margin-top: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; margin: .5rem 0 1.5rem; }
.hours th, .hours td { padding: .5rem .25rem; text-align: left; border-bottom: 1px solid rgba(76, 29, 149, 0.08); font-size: .95rem; }
.hours th { color: var(--color-neutral-dark); font-weight: 600; font-family: var(--font-heading); }
.hours td { color: var(--color-muted); text-align: right; }
.map-figure { margin: 1rem 0 0; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255, 255, 255, 0.82); padding: 3.5rem 1rem 2rem; margin-top: 3rem; }
.site-footer__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 3rem; } }
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer-tagline { color: rgba(255, 255, 255, 0.7); font-size: .95rem; }
.logo--footer { display: inline-flex; margin-bottom: 1rem; background: rgba(255, 255, 255, 0.95); padding: .5rem .75rem; border-radius: 10px; }
.logo--footer img { height: 56px; }
.legal-links { margin-top: 1rem; font-size: .88rem; }
.copyright { max-width: 1200px; margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: .88rem; color: rgba(255, 255, 255, 0.6); text-align: center; }

/* === 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: 16px; box-shadow: var(--shadow-lg); max-width: 640px; margin-left: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; line-height: 1.55; color: rgba(250, 245, 255, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { padding: .6rem 1.1rem; border-radius: 999px; border: 0; font-family: var(--font-heading); font-weight: 600; font-size: .88rem; }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-reject] { background: rgba(255, 255, 255, 0.12); color: #fff; }
.cookie-banner [data-cookie-settings] { background: transparent; color: #fff; text-decoration: underline; }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.cookie-banner__prefs label { display: flex; gap: .5rem; align-items: center; font-size: .9rem; }
.cookie-banner [data-cookie-save] { background: var(--color-primary); color: #fff; align-self: flex-start; margin-top: .5rem; }

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

/* === Utils === */
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 600; color: var(--color-primary); font-family: var(--font-heading); }
