:root {
  --color-primary: #1E40AF;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E3A8A;
  --color-neutral-light: #EFF6FF;
  --color-ink: #0F172A;
  --color-muted: #475569;
  --color-border: rgba(30, 58, 138, 0.12);
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 20px 40px -20px rgba(30, 64, 175, 0.25);
  --shadow-lg: 0 30px 60px -30px rgba(30, 64, 175, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease-io); }
a:hover { color: var(--color-secondary); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .75rem; }
h1 { font-weight: 800; }
h2 { font-weight: 700; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-weight: 700; font-size: 1.25rem; }
p { margin: 0 0 1rem; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  padding: .4rem .8rem;
  border-radius: 999px;
  margin: 0 0 1.25rem;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s var(--ease-io), box-shadow .2s var(--ease-io), background .2s, color .2s;
  text-align: center;
  line-height: 1.2;
}
.btn--sm { padding: .55rem 1rem; font-size: .9rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(30, 64, 175, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(30, 64, 175, 0.7); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover { background: var(--color-neutral-light); transform: translateY(-2px); }
.btn--accent {
  background: var(--color-accent);
  color: #fff;
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(249, 115, 22, 0.6); color: #fff; }
.btn--link { background: transparent; color: var(--color-primary); padding: .55rem .8rem; }
.btn--link:hover { text-decoration: underline; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .75rem;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}
.primary-nav a {
  position: relative;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .95rem;
  padding: .25rem 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-io);
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  border-radius: 12px;
  padding: .5rem;
  cursor: pointer;
}
.primary-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .25rem;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.primary-nav.is-open a { padding-block: .75rem; border-bottom: 1px solid var(--color-border); }
.primary-nav.is-open a:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .primary-nav { display: flex; position: static; padding: 0; background: transparent; box-shadow: none; border: none; }
  .nav-toggle { display: none; }
  .primary-nav a { border-bottom: none !important; padding-block: 0 !important; }
}

/* === Hero === */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: 4rem 3rem;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 100%);
}
.hero--sm { padding-block: 3rem 2rem; }
.hero__glow {
  position: absolute;
  inset: -20% 20% auto -20%;
  height: 400px;
  background: radial-gradient(closest-side, rgba(249, 115, 22, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  max-width: 22ch;
  margin: 0 auto 1.25rem;
  font-weight: 800;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--color-muted);
  max-width: 52ch;
  margin: 0 auto 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero__image {
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
}
.hero__image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

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

/* === Sections === */
.section { padding-block: 4rem; }
.section--narrow .container { max-width: 780px; }
.section__title { text-align: center; margin-bottom: 1rem; }
.section__sub { text-align: center; color: var(--color-muted); max-width: 60ch; margin: 0 auto 2.5rem; }
.section__body { color: var(--color-ink); font-size: 1.05rem; }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section--narrow .section__body { max-width: 65ch; margin-inline: auto; }

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

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

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-io), box-shadow .25s var(--ease-io);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card--lg { padding: 2rem; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-neutral-light);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-muted); margin: 0; }

/* === Testimonial === */
.section--quote { background: var(--color-neutral-light); }
.quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-neutral-dark);
}
.quote__mark { color: var(--color-accent); opacity: .5; margin: 0 auto .5rem; }
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--color-neutral-dark);
  margin-bottom: 1.5rem;
}
.quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-muted);
}

/* === 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::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(249, 115, 22, 0.35), transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; max-width: 60ch; }
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: .75rem; }
.faq details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: #fff;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  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;
  color: var(--color-primary);
  line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 1rem 0 0; color: var(--color-muted); }

/* === Form === */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form__row { display: flex; flex-direction: column; gap: .4rem; }
.form label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--color-neutral-dark);
}
.form input, .form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  color: var(--color-ink);
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.12);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 400 !important;
  color: var(--color-muted) !important;
  line-height: 1.5;
  flex-wrap: wrap;
}
.form-consent input { margin-top: .2rem; }
.form-consent a { text-decoration: underline; }

/* === Contact card === */
.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.contact-card address { font-style: normal; line-height: 1.7; }
.hours { width: 100%; border-collapse: collapse; }
.hours caption {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-neutral-dark);
  margin-bottom: .5rem;
}
.hours th, .hours td {
  padding: .5rem 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-size: .95rem;
}
.hours th { color: var(--color-neutral-dark); font-weight: 600; }
.hours td { color: var(--color-muted); text-align: right; }
@media (min-width: 768px) {
  .contact-card { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(255,255,255,0.85);
  padding-block: 3.5rem 1.5rem;
  margin-top: 4rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.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; }
.site-footer__tagline { color: rgba(255,255,255,0.75); }
.site-footer__legal { margin-top: 1rem !important; padding-top: 1rem !important; border-top: 1px solid rgba(255,255,255,0.15); font-size: .875rem; }
.logo--footer img { height: 64px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.site-footer__base {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: .85rem;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1.5fr; 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 20px 50px -20px rgba(0,0,0,0.5);
  max-width: 520px;
  margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .9rem; line-height: 1.5; color: rgba(255,255,255,0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(255,255,255,0.1); }
.cookie-banner__actions .btn--link { color: #fff; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: rgba(255,255,255,0.9); }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: .5rem; }

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