:root {
  --color-primary: #1E3A8A;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E40AF;
  --color-neutral-light: #EFF6FF;
  --color-ink: #0F172A;
  --color-muted: #475569;
  --color-line: rgba(30, 58, 138, 0.12);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 36px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(30, 58, 138, 0.35);
}

/* === Reset & base === */
*, *::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-ink);
  background: #ffffff;
  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 { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }

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

/* === Header / nav (glass) === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 24px -12px rgba(15, 23, 42, 0.18);
  border-bottom-color: var(--color-line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.logo--footer img { height: 64px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform .2s; }

.primary-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-line);
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  padding: 0.75rem 0.25rem;
  color: var(--color-ink);
  font-weight: 500;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--color-line);
}
.primary-nav a:hover { text-decoration: none; color: var(--color-primary); }
.primary-nav .is-current { color: var(--color-primary); }
.primary-nav .nav-cta {
  background: var(--color-primary);
  color: #fff;
  border-radius: 10px;
  border: none;
  text-align: center;
  margin-top: 0.5rem;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
    border-bottom: none;
  }
  .primary-nav a {
    padding: 0.5rem 0.9rem;
    border-bottom: none;
    position: relative;
  }
  .primary-nav a::after {
    content: '';
    position: absolute;
    left: 0.9rem; right: 0.9rem; bottom: 0.3rem;
    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.is-current::after { transform: scaleX(1); }
  .primary-nav .nav-cta {
    padding: 0.55rem 1.1rem;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  }
  .primary-nav .nav-cta::after { display: none; }
  .primary-nav .nav-cta:hover { color: #fff; box-shadow: var(--shadow-md); }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(30, 58, 138, 0.5);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(30, 58, 138, 0.55); text-decoration: none; }
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-line);
}
.btn--ghost:hover { background: var(--color-neutral-light); text-decoration: none; }
.btn--link { background: transparent; border: none; color: var(--color-primary); padding: 0.9rem 0.5rem; }
.btn--on-dark { box-shadow: 0 12px 24px -12px rgba(0,0,0,0.4); }

/* === Hero (centered) === */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 3.5rem 4rem;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 80%);
}
@media (min-width: 768px) { .hero { padding-block: 5.5rem 5rem; } }
.hero__glow {
  position: absolute;
  top: -20%; left: 50%;
  width: 900px; height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(249, 115, 22, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(30, 58, 138, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin: 0 0 1.5rem;
}
.hero h1 {
  max-width: 22ch;
  margin-inline: auto;
  font-weight: 700;
}
.hero__sub {
  max-width: 52ch;
  margin: 1rem auto 2rem;
  font-size: 1.15rem;
  color: var(--color-muted);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.hero__figure {
  margin: 2rem 0 0;
  max-width: 1080px;
  margin-inline: auto;
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* === Sections === */
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
.section--narrow .container { max-width: 780px; }
.section--narrow h2 { text-align: center; }
.section--narrow p { font-size: 1.075rem; color: var(--color-muted); text-align: center; }
.section--tinted { background: var(--color-neutral-light); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section__sub { color: var(--color-muted); font-size: 1.075rem; }

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

.card {
  display: block;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  color: inherit;
}
.card h3 { margin-top: 0.25rem; color: var(--color-primary); }
.card p { color: var(--color-muted); margin-bottom: 0; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,58,138,0.1), rgba(59,130,246,0.15));
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* === Quote === */
.section--quote { background: linear-gradient(180deg, #fff, var(--color-neutral-light)); }
.section--quote blockquote {
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}
.section--quote blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--color-ink);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.section--quote cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; inset: -30% -10% auto auto;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(249,115,22,0.35), transparent 70%);
  pointer-events: none;
}
.cta-band__inner { text-align: center; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 60ch; margin-inline: auto; }
.btn--on-dark { background: #fff; color: var(--color-primary); }
.btn--on-dark:hover { background: var(--color-accent); color: #fff; }

/* === Contact card & form === */
.contact-card {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
@media (min-width: 768px) { .contact-card { grid-template-columns: repeat(3, 1fr); } }
.contact-card h3 { color: var(--color-primary); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }

.form-wrap {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .form-wrap { grid-template-columns: 1.4fr 1fr; align-items: start; } }

.contact-form {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { margin-top: 0; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--color-ink);
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--color-ink);
  background: #fff;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-block: 1rem 1.25rem;
  line-height: 1.4;
}
.form-consent input { margin-top: 0.2rem; }

.contact-aside {
  background: var(--color-neutral-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-aside h2 { font-size: 1.5rem; }
.contact-aside h3 { color: var(--color-primary); margin-top: 1.5rem; }
.hours { margin: 0; }
.hours div {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.95rem;
}
.hours dt { color: var(--color-ink); font-weight: 500; margin: 0; }
.hours dd { margin: 0; color: var(--color-muted); }

/* === FAQ === */
.faq details {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-primary);
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 0; top: 0;
  font-size: 1.4rem; line-height: 1;
  color: var(--color-accent);
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details[open] { border-color: var(--color-secondary); }
.faq p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* === Footer === */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.8);
  padding-block: 3rem 1.5rem;
  margin-top: 3rem;
}
.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1.2fr; } }
.footer__tag { color: rgba(255,255,255,0.65); margin-top: 0.75rem; }
.site-footer h3 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a, .footer__contact a { color: rgba(255,255,255,0.8); }
.footer__nav a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact p { margin-bottom: 0.75rem; }
.footer__legal { font-size: 0.9rem; }
.footer__legal a { color: rgba(255,255,255,0.65); margin-right: 0.25rem; }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  display: none;
  z-index: 9999;
  background: var(--color-ink);
  color: var(--color-neutral-light);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(255,255,255,0.25); background: transparent; }
.cookie-banner__actions .btn--link { color: var(--color-neutral-light); }
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: 0.5rem; }

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