:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #22C55E;
  --color-neutral-dark: #4C1D95;
  --color-neutral-light: #FAF5FF;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow-soft: 0 20px 40px -25px rgba(76, 29, 149, 0.35);
}

/* === 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-neutral-dark); background: var(--color-neutral-light); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 600; color: var(--color-secondary); margin: 0 0 1rem; }

/* === Header === */
.site-header { position: sticky; top: 0; background: rgba(250, 245, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(76, 29, 149, 0.08); z-index: 100; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: none; border: 0; color: var(--color-neutral-dark); cursor: pointer; padding: 0.5rem; }
.site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem; flex-direction: column; gap: 0.5rem; border-bottom: 1px solid rgba(76, 29, 149, 0.08); }
.site-nav.is-open { display: flex; }
.site-nav a { color: var(--color-neutral-dark); font-weight: 500; padding-block: 0.5rem; }
.site-nav a.is-current { color: var(--color-primary); }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .site-nav { display: flex; position: static; flex-direction: row; padding: 0; background: transparent; border: 0; gap: 2rem; }
}

/* === Buttons === */
.btn { display: inline-block; padding: 0.9rem 1.75rem; border-radius: 999px; font-weight: 600; font-family: var(--font-heading); font-size: 1rem; border: 0; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; text-decoration: none; }
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: var(--shadow-soft); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--accent { background: var(--color-accent); color: #05230F; }

/* === Hero fullscreen === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--color-neutral-light); }
.hero--short { min-height: 60vh; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(76, 29, 149, 0.55), rgba(30, 10, 60, 0.75)); z-index: 1; }
.hero__content { position: relative; z-index: 2; text-align: center; padding-block: 4rem; max-width: 780px; }
.hero__content h1 { color: #fff; max-width: 20ch; margin-inline: auto; }
.hero__content .eyebrow { color: rgba(255,255,255,0.75); }
.hero__sub { font-size: 1.125rem; color: rgba(255,255,255,0.9); max-width: 52ch; margin: 0 auto 2rem; }

/* === Sections === */
.section { padding-block: 4rem; }
.section--muted { background: #F3EDFF; }
.section--narrow { max-width: 760px; margin-inline: auto; padding-inline: 1.25rem; padding-block: 4rem; }
.section--narrow h2 { text-align: center; }
.section--narrow p { font-size: 1.0625rem; }
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__sub { color: var(--color-secondary); max-width: 56ch; margin-inline: auto; font-weight: 500; }

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

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

.card { display: block; background: #fff; border-radius: var(--radius); padding: 1.75rem; border: 1px solid rgba(76, 29, 149, 0.08); transition: transform .2s ease, box-shadow .2s ease; }
.card__icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; color: var(--color-neutral-dark); }
.card p { color: #5B4780; margin: 0; font-size: 0.9375rem; }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); text-decoration: none; }

/* === Split === */
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* === Quote === */
.quote { max-width: 720px; margin: 0 auto; text-align: center; padding: 2rem 1rem; }
.quote p { font-family: var(--font-heading); font-size: 1.375rem; line-height: 1.5; color: var(--color-neutral-dark); font-weight: 500; }
.quote cite { display: block; margin-top: 1.25rem; font-style: normal; font-size: 0.9375rem; color: var(--color-secondary); font-weight: 500; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding-block: 4rem; }
.cta-band__inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.0625rem; margin-bottom: 2rem; }

/* === Contact card / grid === */
.contact-card { max-width: 820px; margin-inline: auto; background: #fff; padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow-soft); text-align: center; }
.contact-card address { font-style: normal; margin: 1rem 0 1.75rem; line-height: 1.9; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }
.contact-info address { font-style: normal; margin-bottom: 2rem; line-height: 1.9; }
.hours { border-collapse: collapse; width: 100%; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0; border-bottom: 1px solid rgba(76, 29, 149, 0.08); font-weight: 400; }
.hours th { color: var(--color-neutral-dark); font-weight: 500; }

/* === Form === */
.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(76, 29, 149, 0.08); }
.contact-form h2 { margin-bottom: 1.5rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; color: var(--color-neutral-dark); }
.field input, .field textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1px solid rgba(76, 29, 149, 0.18); border-radius: 8px; font-family: inherit; font-size: 1rem; background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.field textarea { resize: vertical; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.875rem; margin: 1rem 0 1.5rem; }
.form-consent input { margin-top: 3px; }
.form-success { padding: 1rem; background: #E7F9EE; border-radius: 8px; color: #0F5132; font-weight: 500; margin-top: 1rem; }

/* === FAQ === */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid rgba(76, 29, 149, 0.1); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 0.75rem; }
.faq summary { cursor: pointer; font-weight: 600; color: var(--color-neutral-dark); list-style: none; padding-right: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; float: right; color: var(--color-primary); font-size: 1.25rem; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 0.75rem; color: #5B4780; font-size: 0.9375rem; }

/* === Article === */
.article { max-width: 65ch; margin: 3rem auto; padding-inline: 1.25rem; }
.article__head { margin-bottom: 2rem; }
.article__head h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.25rem; }
.article__sub { font-size: 1.1875rem; color: var(--color-secondary); }
.article__hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-block: 2rem; border-radius: 8px; }
.article__body p { font-size: 1.125rem; line-height: 1.75; margin-block: 1.25rem; }
.article__foot { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(76, 29, 149, 0.1); }
.back-link { font-weight: 500; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(250, 245, 255, 0.85); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(250, 245, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.9; margin-bottom: 1rem; }
.site-footer__legal { margin-top: 1rem; }
.site-footer__tag { color: rgba(250, 245, 255, 0.7); font-size: 0.9375rem; }
.logo--footer { display: inline-block; margin-bottom: 1rem; background: rgba(255,255,255,0.06); padding: 0.5rem 0.75rem; border-radius: 8px; }
.logo--footer img { height: 56px; }
.site-footer__bottom { max-width: 1180px; margin: 2rem auto 0; padding: 1.5rem 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.875rem; color: rgba(250, 245, 255, 0.6); }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 3rem; } }

/* === 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); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); max-width: 640px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9375rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button { border: 0; padding: 0.6rem 1rem; border-radius: 6px; font-family: inherit; font-weight: 500; cursor: pointer; font-size: 0.875rem; background: rgba(255,255,255,0.1); color: #fff; }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); color: #05230F; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }
@media (min-width: 640px) { .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }

.site-disclaimer { position: relative; z-index: 1000; background: #f4f6f8; border-bottom: 2px solid #64748b; color: #33404d; padding: 0.875rem 1.5rem; }
.site-disclaimer p { max-width: 68rem; margin: 0 auto; font-size: 0.8125rem; line-height: 1.6; text-align: center; }
.site-disclaimer strong { text-transform: uppercase; letter-spacing: 0.04em; }
.site-disclaimer__icon { font-size: 1rem; }
