:root {
  --color-primary: #7C3AED;
  --color-secondary: #A78BFA;
  --color-accent: #06B6D4;
  --color-neutral-dark: #1E1B4B;
  --color-neutral-light: #FAF5FF;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --border-soft: rgba(30, 27, 75, 0.12);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-neutral-dark); margin-block: 0 1rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin-block: 0 1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 600; color: var(--color-accent); margin-bottom: 0.75rem; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 760px; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 245, 255, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-soft); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.25rem; max-width: 1200px; margin-inline: auto; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: transparent; border: 0; cursor: pointer; display: inline-flex; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-neutral-dark); display: block; }
.site-nav { display: none; }
.site-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; border-bottom: 1px solid var(--border-soft); gap: 0.75rem; }
.site-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: 0.95rem; }
.site-nav a[aria-current="page"] { color: var(--color-primary); }

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

/* === Hero fullscreen === */
.hero-full { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-full__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-full__overlay { position: absolute; inset: 0; background: linear-gradient(rgba(30, 27, 75, 0.55), rgba(30, 27, 75, 0.75)); z-index: 1; }
.hero-full__content { position: relative; z-index: 2; text-align: center; color: var(--color-neutral-light); max-width: 820px; padding: 6rem 1.5rem; }
.hero-full__content h1 { color: var(--color-neutral-light); max-width: 22ch; margin-inline: auto; }
.hero-full__content .eyebrow { color: var(--color-accent); }
.hero-full__sub { font-size: 1.15rem; color: rgba(250, 245, 255, 0.88); max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }

/* === Buttons === */
.btn { display: inline-block; padding: 0.9rem 1.75rem; font-family: var(--font-body); font-weight: 600; font-size: 1rem; border-radius: 4px; border: 2px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #6d28d9; }
.btn--accent { background: var(--color-accent); color: var(--color-neutral-dark); }
.btn--accent:hover { background: #0891b2; color: var(--color-neutral-light); }

/* === Sections === */
.section { padding-block: 4rem; }
.section--alt { background: #f3ecff; }
.section--intro { text-align: center; }
.section--intro h2 { max-width: 22ch; margin-inline: auto; }
.section--intro p { max-width: 62ch; margin-inline: auto; text-align: left; }
.section__title { text-align: center; margin-bottom: 2.5rem; }
.section__figure { margin-top: 2.5rem; border-radius: 12px; overflow: hidden; }
.section__figure img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

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

/* === Cards / Grid === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card { background: var(--color-neutral-light); border: 1px solid var(--border-soft); border-radius: 12px; padding: 1.75rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -18px rgba(30, 27, 75, 0.25); }
.card .icon { color: var(--color-accent); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; color: var(--color-primary); }
.card p { font-size: 0.95rem; margin-bottom: 0; }

/* === Testimonial === */
.section--quote { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 5rem; }
.section--quote blockquote { margin: 0; text-align: center; }
.section--quote blockquote p { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.5; color: var(--color-neutral-light); font-style: italic; max-width: 60ch; margin-inline: auto; }
.section--quote cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: 0.9rem; color: var(--color-secondary); letter-spacing: 0.08em; text-transform: uppercase; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); padding-block: 4rem; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250, 245, 255, 0.9); max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }

/* === FAQ === */
.faq details { border-bottom: 1px solid var(--border-soft); padding: 1.25rem 0; }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-neutral-dark); list-style: none; position: relative; padding-right: 2rem; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--color-accent); font-size: 1.5rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 0.75rem; color: rgba(30, 27, 75, 0.85); }

/* === Contact band (about) === */
.contact-band { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.contact-band__figure { border-radius: 12px; overflow: hidden; margin: 0; }
.contact-band__figure img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (min-width: 768px) {
  .contact-band { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

/* === Form === */
.contact-form { display: grid; gap: 1.25rem; margin-top: 2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-weight: 500; font-size: 0.95rem; color: var(--color-neutral-dark); }
.form-field input, .form-field textarea { font-family: var(--font-body); font-size: 1rem; padding: 0.75rem 0.9rem; border: 1px solid var(--border-soft); border-radius: 6px; background: #fff; color: var(--color-neutral-dark); }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--color-accent); outline-offset: 1px; border-color: var(--color-accent); }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: rgba(30, 27, 75, 0.85); flex-wrap: wrap; }
.form-consent input { margin-top: 0.25rem; }

/* === Thank you === */
.section--thankyou { padding-block: 6rem 3rem; text-align: center; }
.section--thankyou .lead { font-size: 1.15rem; color: rgba(30, 27, 75, 0.8); max-width: 52ch; margin-inline: auto; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding-block: 3.5rem 1.5rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.site-footer h3 { color: var(--color-neutral-light); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; font-size: 0.95rem; }
.site-footer__tagline { margin-top: 0.75rem; color: var(--color-secondary); font-style: italic; }
.site-footer__legal { flex-direction: row; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: 0.9rem; }
.site-footer__base { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(250, 245, 255, 0.15); font-size: 0.85rem; color: rgba(250, 245, 255, 0.7); }
.site-footer .logo img { filter: brightness(0) invert(1); }
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; 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: 12px; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 1rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button { font-family: var(--font-body); font-size: 0.85rem; padding: 0.55rem 1rem; border-radius: 6px; border: 1px solid rgba(250,245,255,0.2); background: transparent; color: var(--color-neutral-light); cursor: pointer; }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); color: var(--color-neutral-dark); border-color: var(--color-accent); font-weight: 600; }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs button { justify-self: start; margin-top: 0.5rem; background: var(--color-accent); color: var(--color-neutral-dark); border: 0; padding: 0.55rem 1rem; border-radius: 6px; font-weight: 600; cursor: pointer; }
