:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #F97316;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --color-text: #1E1B4B;
  --color-muted: #6B7280;
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 2px 20px rgba(76, 29, 149, 0.08);
  --shadow-lift: 0 20px 60px -20px rgba(76, 29, 149, 0.28);
  --radius: 18px;
}

/* === 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-text); 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; }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1rem; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

/* === Header / Nav === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 245, 255, 0.7); 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 .25s var(--ease), box-shadow .25s var(--ease); }
.site-header.scrolled { background: rgba(250, 245, 255, 0.92); box-shadow: 0 6px 24px -12px rgba(76, 29, 149, 0.2); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1200px; margin-inline: auto; padding: .75rem 1.25rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { display: inline-flex; background: transparent; border: 1px solid rgba(76, 29, 149, 0.15); border-radius: 10px; padding: .4rem; color: var(--color-neutral-dark); }
.primary-nav { display: none; }
.primary-nav.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px); padding: 1rem 1.25rem 1.5rem; gap: .25rem; border-bottom: 1px solid rgba(76, 29, 149, 0.08); box-shadow: 0 12px 32px -12px rgba(76, 29, 149, 0.25); }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: .6rem 0; font-size: .98rem; position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: .35rem; 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 .nav-cta { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding: .55rem 1.1rem; border-radius: 999px; margin-top: .25rem; }
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { color: #fff; box-shadow: 0 8px 20px -8px rgba(124, 58, 237, 0.6); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; gap: 1.5rem; position: static; background: transparent; padding: 0; box-shadow: none; border: 0; }
  .primary-nav.is-open { position: static; }
}

/* === Hero === */
.hero { position: relative; overflow: hidden; padding-block: 3rem 4rem; background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(167, 139, 250, 0.14)); }
.hero__glow { position: absolute; top: -20%; right: -10%; width: 60vmax; height: 60vmax; background: radial-gradient(circle at center, rgba(249, 115, 22, 0.18), transparent 60%); pointer-events: none; z-index: 0; }
.hero__inner { position: relative; z-index: 1; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }
.hero h1 { margin-bottom: 1.25rem; max-width: 22ch; }
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--color-text); max-width: 56ch; margin-bottom: 1.75rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero__visual { margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lift); position: relative; }
.hero__visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hero--inner .hero__visual img { aspect-ratio: 16 / 9; }
.proof-strip { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(76, 29, 149, 0.12); font-size: .9rem; color: var(--color-muted); }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 1rem; border: 1px solid transparent; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 10px 24px -10px rgba(124, 58, 237, 0.6); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(124, 58, 237, 0.7); }
.btn--ghost { background: rgba(255, 255, 255, 0.7); color: var(--color-neutral-dark); border-color: rgba(76, 29, 149, 0.2); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: #fff; transform: translateY(-2px); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 24px -10px rgba(249, 115, 22, 0.55); }
.btn--accent:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(249, 115, 22, 0.7); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Sections === */
.section { padding-block: 4rem; }
.section--tint { background: linear-gradient(180deg, rgba(167, 139, 250, 0.08), rgba(250, 245, 255, 0)); }
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__sub { color: var(--color-muted); max-width: 56ch; margin-inline: auto; }

/* === Grids / Cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .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-soft); transition: transform .25s var(--ease), box-shadow .25s var(--ease); display: flex; flex-direction: column; gap: .5rem; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { color: inherit; }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(249, 115, 22, 0.12)); color: var(--color-primary); margin-bottom: .5rem; }
.card p { color: var(--color-text); margin: 0; font-size: .96rem; }

/* === Quote === */
.quote { margin: 0; padding: 2rem; background: #fff; border-left: 4px solid var(--color-accent); border-radius: var(--radius); box-shadow: var(--shadow-soft); text-align: left; }
.quote p { font-size: 1.15rem; font-family: var(--font-heading); font-weight: 500; color: var(--color-neutral-dark); margin-bottom: 1rem; line-height: 1.5; }
.quote cite { font-style: normal; font-weight: 600; color: var(--color-muted); font-size: .95rem; }

/* === CTA Band === */
.cta-band { padding-block: 3.5rem; background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; }
.cta-band__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; }
@media (min-width: 800px) { .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; } }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; } }
.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; background: #fff; padding: 1rem 1.1rem; border-radius: 14px; box-shadow: var(--shadow-soft); }
.contact-list p { margin: .2rem 0 0; color: var(--color-muted); }
.contact-list strong { color: var(--color-neutral-dark); }
.hours-title { margin-top: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-soft); }
.hours th, .hours td { padding: .7rem 1rem; text-align: left; border-bottom: 1px solid rgba(76, 29, 149, 0.06); font-size: .95rem; }
.hours th { color: var(--color-neutral-dark); font-weight: 600; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

/* === Form === */
.contact-form-wrap { background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid rgba(76, 29, 149, 0.08); }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .35rem; font-size: .92rem; font-weight: 500; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea { font: inherit; padding: .7rem .85rem; border: 1px solid rgba(76, 29, 149, 0.18); border-radius: 10px; background: var(--color-neutral-light); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18); }
.form-consent { display: flex !important; flex-direction: row; align-items: flex-start; gap: .55rem; font-size: .85rem; color: var(--color-muted); font-weight: 400; }
.form-consent input { margin-top: .2rem; }

/* === FAQ === */
.faq { display: grid; gap: .5rem; }
.faq details { background: #fff; border: 1px solid rgba(76, 29, 149, 0.08); border-radius: 12px; padding: 1rem 1.25rem; box-shadow: var(--shadow-soft); }
.faq summary { cursor: pointer; font-weight: 600; color: var(--color-neutral-dark); list-style: none; position: relative; padding-right: 1.5rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.4rem; color: var(--color-primary); line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .75rem; color: var(--color-text); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255, 255, 255, 0.85); padding-top: 3rem; padding-bottom: 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; margin-bottom: .75rem; }
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.footer-tag { color: rgba(255, 255, 255, 0.7); }
.logo--footer img { height: 56px; filter: brightness(0) invert(1); }
.legal-links { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: .88rem; }
.copyright { padding-top: 1.25rem; 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.1rem 1.25rem; border-radius: 16px; box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .85rem; font-size: .92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner button { border: 1px solid rgba(255, 255, 255, 0.25); background: transparent; color: #fff; padding: .5rem 1rem; border-radius: 999px; font-size: .88rem; font-weight: 500; }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner [data-cookie-accept]:hover { background: #ea6a10; }
.cookie-banner button:hover { background: rgba(255, 255, 255, 0.12); }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.15); font-size: .9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .55rem; }
.cookie-banner__prefs button { justify-self: start; margin-top: .5rem; background: #fff; color: var(--color-neutral-dark); border-color: #fff; }

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