/* === Tokens === */
:root {
  --color-primary: #1E293B;
  --color-secondary: #334155;
  --color-accent: #DC2626;
  --color-neutral-dark: #0F172A;
  --color-neutral-light: #F8FAFC;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --shadow-sm: 0 2px 20px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, 0.25);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
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;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-primary); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.container.center { text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 .75rem; }
.lede { font-size: 1.125rem; color: var(--color-secondary); }

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .95rem 1.6rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body); font-size: .95rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--color-primary); border-color: rgba(15, 23, 42, .15); }
.btn-ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(220, 38, 38, .35); outline-offset: 3px; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(248, 250, 252, 0.72); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid rgba(15, 23, 42, .06); transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(248, 250, 252, 0.92); box-shadow: 0 6px 24px -18px rgba(15, 23, 42, .35); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 1200px; margin-inline: auto; padding: .85rem 1.25rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { display: inline-flex; background: transparent; border: 0; padding: .5rem; color: var(--color-primary); cursor: pointer; }
.primary-nav { display: none; gap: .25rem; align-items: center; }
.primary-nav a { position: relative; padding: .5rem .85rem; font-weight: 500; color: var(--color-secondary); font-size: .95rem; }
.primary-nav a::after { content: ''; position: absolute; left: .85rem; right: .85rem; bottom: .35rem; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav a:hover { color: var(--color-primary); }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav a.nav-cta { background: var(--color-primary); color: #fff; border-radius: 999px; margin-left: .5rem; padding: .55rem 1.1rem; }
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover { background: var(--color-neutral-dark); }
.primary-nav.is-open { display: flex; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; position: static; background: none; padding: 0; flex-direction: row; }
}
@media (max-width: 899px) {
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: rgba(248, 250, 252, 0.98); backdrop-filter: blur(16px); padding: .75rem 1rem 1.25rem; border-bottom: 1px solid rgba(15, 23, 42, .08); }
  .primary-nav a { padding: .85rem 1rem; border-radius: 10px; }
  .primary-nav a::after { display: none; }
  .primary-nav a.nav-cta { text-align: center; margin: .5rem 0 0; }
}
@media (min-width: 768px) { .logo img { height: 96px; } }

/* === Hero (split) === */
.hero { position: relative; padding: 3.5rem 0 4rem; background:
  radial-gradient(1200px 500px at 100% 0%, rgba(220, 38, 38, .07), transparent 60%),
  linear-gradient(180deg, rgba(30, 41, 59, .04), transparent 40%),
  var(--color-neutral-light);
  overflow: hidden;
}
.hero-inner { display: grid; gap: 2.5rem; align-items: center; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.hero-copy h1 { max-width: 20ch; }
.hero-copy .lede { max-width: 44ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-visual img { border-radius: 20px; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lg); }

@media (min-width: 900px) {
  .hero { padding: 6rem 0 6.5rem; }
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

.hero-thanks { padding: 5rem 0 3rem; text-align: center; }
.hero-thanks h1 { margin-inline: auto; }

/* === Sections === */
section { padding: 3.5rem 0; }
@media (min-width: 900px) { section { padding: 5rem 0; } }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--color-secondary); }
.intro h2 { margin-bottom: 1rem; }
.intro p { color: var(--color-secondary); font-size: 1.05rem; }

/* === Cards / Highlights === */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .card-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card { background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(15, 23, 42, .06); transition: transform .25s var(--ease), box-shadow .25s var(--ease); display: block; color: inherit; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-link { text-decoration: none; }
.card-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(30,41,59,.08), rgba(220,38,38,.12)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-secondary); margin: 0; font-size: .95rem; }

/* === Testimonial === */
.testimonial { background: linear-gradient(180deg, transparent, rgba(30, 41, 59, .04)); }
.testimonial blockquote { margin: 0; text-align: center; position: relative; padding: 0 1rem; }
.testimonial blockquote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.5; color: var(--color-primary); font-weight: 500; }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-secondary); font-size: .95rem; letter-spacing: .02em; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; text-align: center; border-radius: 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(248, 250, 252, .8); max-width: 52ch; margin: 0 auto 1.75rem; }

/* === Stats === */
.stats-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; padding: 1.5rem; background: #fff; border-radius: var(--radius); border: 1px solid rgba(15, 23, 42, .06); box-shadow: var(--shadow-sm); }
.stat-num { font-family: var(--font-heading); font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--color-accent); margin: 0 0 .5rem; letter-spacing: -0.02em; }
.stat-label { color: var(--color-secondary); margin: 0; font-size: .95rem; }

/* === FAQ === */
.faq details { background: #fff; border-radius: 12px; border: 1px solid rgba(15, 23, 42, .08); padding: 1rem 1.25rem; margin-bottom: .75rem; box-shadow: var(--shadow-sm); }
.faq summary { font-weight: 600; cursor: pointer; 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; color: var(--color-accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .75rem; color: var(--color-secondary); }

/* === Contact === */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-info address { font-style: normal; line-height: 1.9; color: var(--color-secondary); margin-bottom: 1.5rem; }
.contact-info a { color: var(--color-primary); }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th { text-align: left; font-weight: 500; padding: .5rem 0; color: var(--color-secondary); border-bottom: 1px solid rgba(15, 23, 42, .08); }
.hours td { text-align: right; padding: .5rem 0; color: var(--color-primary); border-bottom: 1px solid rgba(15, 23, 42, .08); }

.contact-form { display: grid; gap: 1rem; background: #fff; padding: 1.75rem; border-radius: var(--radius); border: 1px solid rgba(15, 23, 42, .06); box-shadow: var(--shadow-sm); }
.contact-form label { display: grid; gap: .35rem; font-size: .9rem; font-weight: 500; color: var(--color-secondary); }
.contact-form input, .contact-form textarea { font: inherit; padding: .75rem .85rem; border: 1px solid rgba(15, 23, 42, .15); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-neutral-dark); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(220, 38, 38, .15); }
.contact-form .btn { justify-self: start; }
.form-consent { display: flex; align-items: flex-start; gap: .5rem; flex-wrap: wrap; font-size: .85rem; font-weight: 400; color: var(--color-secondary); }
.form-consent input { margin-top: .2rem; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248, 250, 252, .78); padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, .78); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-logo img { height: 64px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: .75rem; }
.footer-tagline { color: rgba(248, 250, 252, .65); font-size: .95rem; max-width: 34ch; }
.site-footer address { font-style: normal; line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; font-size: .9rem; }
.copyright { border-top: 1px solid rgba(248, 250, 252, .1); padding-top: 1.25rem; margin-top: 2.5rem; font-size: .85rem; color: rgba(248, 250, 252, .55); }

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

/* === 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: 14px; box-shadow: var(--shadow-lg); max-width: 560px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .85rem; font-size: .9rem; line-height: 1.5; color: rgba(248, 250, 252, .88); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button, .cookie-banner__prefs button { font: inherit; font-weight: 600; font-size: .85rem; padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(248, 250, 252, .2); background: transparent; color: var(--color-neutral-light); cursor: pointer; transition: background .2s, transform .2s; }
.cookie-banner__actions button:hover, .cookie-banner__prefs button:hover { transform: translateY(-1px); }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner__prefs { margin-top: .9rem; display: grid; gap: .4rem; padding-top: .9rem; border-top: 1px solid rgba(248, 250, 252, .12); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(248, 250, 252, .88); }
.cookie-banner__prefs button { justify-self: start; margin-top: .35rem; background: var(--color-neutral-light); color: var(--color-neutral-dark); border-color: var(--color-neutral-light); }
