: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-border: rgba(30, 58, 138, 0.14);
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(30, 58, 138, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(30, 58, 138, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
}

/* === Reset === */
*, *::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; transition: color .2s var(--ease); }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-ink); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .75rem; }
p { margin: 0 0 1rem; }

.container { width: min(1160px, 100% - 2rem); margin-inline: auto; }

/* === Header / Nav === */
.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); border-bottom-color: var(--color-border); box-shadow: 0 4px 20px -12px rgba(30, 58, 138, 0.25); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 64px; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-primary); padding: .5rem; border-radius: 10px; cursor: pointer;
}
.primary-nav { display: none; }
.primary-nav.is-open { display: flex; flex-direction: column; gap: .25rem; position: absolute; top: 100%; left: 1rem; right: 1rem; padding: 1rem; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.primary-nav a { padding: .6rem .75rem; border-radius: 8px; color: var(--color-ink); font-weight: 500; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: var(--color-neutral-light); color: var(--color-primary); }
.primary-nav .nav-cta { background: var(--color-primary); color: #fff; }
.primary-nav .nav-cta:hover { background: var(--color-accent); color: #fff; }

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

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; border-radius: 999px; font-family: var(--font-heading); font-weight: 600;
  font-size: 1rem; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #fff; }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-md); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); 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--sm { padding: .55rem .95rem; font-size: .9rem; }
.btn:focus-visible { outline: 3px solid rgba(59, 130, 246, 0.45); outline-offset: 2px; }

/* === Hero === */
.hero { position: relative; padding-block: 4.5rem 3rem; text-align: center; overflow: hidden; background: linear-gradient(180deg, var(--color-neutral-light) 0%, #ffffff 90%); }
.hero__glow { position: absolute; inset: -20% 10% auto 10%; height: 60%; background: radial-gradient(circle at 50% 30%, rgba(249, 115, 22, 0.12), transparent 60%); pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.eyebrow { font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--color-secondary); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; max-width: 22ch; margin-inline: auto; }
.hero__sub { max-width: 52ch; margin: 1rem auto 1.75rem; font-size: 1.125rem; color: var(--color-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 3rem; }
.hero__figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 1000px; margin-inline: auto; }
.hero__figure 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__title { font-size: clamp(1.75rem, 3.2vw, 2.5rem); text-align: center; margin-bottom: 2.5rem; }
.intro__inner { max-width: 720px; margin-inline: auto; text-align: center; }
.intro__inner h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.intro__inner p { color: var(--color-muted); font-size: 1.075rem; }

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

.card {
  background: #fff; padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: block; color: inherit;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(59, 130, 246, 0.35); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--color-neutral-light), #dbeafe);
  color: var(--color-primary); margin-bottom: 1rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.card p { color: var(--color-muted); margin: 0; }
.card-link { text-decoration: none; }
.card-link:hover h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial { background: var(--color-neutral-light); }
.testimonial__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.testimonial__mark { color: var(--color-secondary); opacity: .6; margin-inline: auto; }
.testimonial blockquote { margin: 0; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 500; line-height: 1.5; color: var(--color-ink); }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band__inner {
  text-align: center; padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band__inner::after { content: ""; position: absolute; inset: auto -10% -60% auto; width: 60%; height: 120%; background: radial-gradient(circle, rgba(249,115,22,.25), transparent 60%); pointer-events: none; }
.cta-band__inner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.25rem); position: relative; }
.cta-band__inner p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto 1.5rem; position: relative; }
.cta-band__inner .btn { position: relative; }

/* === FAQ === */
.faq__list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: .75rem; }
.faq__list details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease); }
.faq__list details[open] { box-shadow: var(--shadow-md); }
.faq__list summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; font-size: 1.5rem; color: var(--color-secondary); font-weight: 400; transition: transform .2s var(--ease); }
.faq__list details[open] summary::after { content: "−"; }
.faq__list p { margin-top: .75rem; color: var(--color-muted); }

/* === Contact grid === */
.contact-grid__inner { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .contact-grid__inner { grid-template-columns: 1fr 1.1fr; } }
.contact-info h2, .contact-form h2 { font-size: 1.5rem; }
.contact-info address { font-style: normal; color: var(--color-muted); margin-bottom: 1.5rem; }
.hours-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--color-border); }
.hours-list li { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--color-border); color: var(--color-muted); }
.hours-list span:first-child { color: var(--color-ink); font-weight: 500; }

.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-weight: 500; font-size: .95rem; color: var(--color-ink); }
.contact-form input, .contact-form textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-ink); transition: border-color .2s var(--ease), background .2s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-secondary); background: #fff; }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: .6rem; font-weight: 400; font-size: .875rem; color: var(--color-muted); }
.form-consent input { margin-top: .25rem; }

/* === Contact band / card === */
.contact-band .contact-card { background: var(--color-neutral-light); border-radius: var(--radius-lg); padding: 2rem; text-align: center; max-width: 780px; margin-inline: auto; color: var(--color-muted); font-size: 1.05rem; }

.map-placeholder { background: linear-gradient(135deg, #dbeafe, var(--color-neutral-light)); border-radius: var(--radius-lg); min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; color: var(--color-primary); border: 1px dashed rgba(30, 58, 138, 0.25); }
.map-placeholder p { margin: 0; color: var(--color-muted); font-size: .95rem; }

/* === Footer === */
.site-footer { background: var(--color-ink); color: rgba(255,255,255,.75); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 800px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer a { color: rgba(255,255,255,.75); display: block; padding: .2rem 0; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer__brand p { color: rgba(255,255,255,.65); margin-top: .5rem; }
.site-footer__brand .logo img { filter: brightness(0) invert(1); }
.site-footer__contact address { font-style: normal; margin-bottom: 1rem; line-height: 1.7; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .5rem; }
.site-footer__legal a { display: inline-block; font-size: .9rem; }
.site-footer__copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1rem; font-size: .85rem; color: rgba(255,255,255,.5); }

/* === 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: 0 30px 60px -20px rgba(0,0,0,.5);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .85rem; font-size: .95rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }

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