:root {
  --color-primary: #1E293B;
  --color-secondary: #334155;
  --color-accent: #DC2626;
  --color-neutral-dark: #0F172A;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(15, 23, 42, 0.10);
  --color-muted: #64748B;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 2px 20px rgba(15,23,42,0.06);
  --shadow-lift: 0 24px 60px -20px rgba(15,23,42,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1180px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; 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%; 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-primary); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 .75rem; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 780px; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(248, 250, 252, 0.75); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom: 1px solid transparent; transition: background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.site-header.scrolled { background: rgba(248, 250, 252, 0.92); border-bottom-color: var(--color-border); box-shadow: 0 6px 30px -20px rgba(15,23,42,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; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--color-border); border-radius: 10px; padding: .5rem; color: var(--color-primary); cursor: pointer; }
.primary-nav { display: none; }
.primary-nav a { display: block; padding: .5rem .25rem; font-weight: 500; color: var(--color-secondary); position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.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); }
.primary-nav.is-open { display: flex; flex-direction: column; gap: .25rem; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem; box-shadow: var(--shadow-lift); }

/* === 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: .95rem; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease); text-align: center; line-height: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(220, 38, 38, 0.35); outline-offset: 2px; }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); box-shadow: 0 12px 28px -14px rgba(15,23,42,0.6); }
.btn--primary:hover { color: var(--color-neutral-light); box-shadow: 0 18px 36px -14px rgba(15,23,42,0.75); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 12px 28px -14px rgba(220, 38, 38, 0.55); }
.btn--accent:hover { color: #fff; background: #b91c1c; }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { color: var(--color-primary); background: rgba(15,23,42,0.04); }
.btn--nav { padding: .55rem 1rem; font-size: .875rem; }

/* === Hero === */
.hero { position: relative; padding-block: 3.5rem 3rem; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 60% at 15% 20%, rgba(220,38,38,0.08), transparent 60%), radial-gradient(50% 50% at 85% 30%, rgba(30,41,59,0.08), transparent 60%); pointer-events: none; z-index: 0; }
.hero > * { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }
.hero__sub { font-size: 1.15rem; color: var(--color-secondary); max-width: 52ch; margin-bottom: 1.75rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }
.hero--stack { text-align: center; }
.hero__stack { max-width: 640px; margin-inline: auto; text-align: center; }
.check-badge { display: inline-flex; align-items: center; justify-content: center; width: 88px; height: 88px; border-radius: 50%; background: rgba(220,38,38,0.10); color: var(--color-accent); margin-bottom: 1.25rem; }

/* === Sections === */
.section { padding-block: 4rem; }
.section--narrow .container { max-width: 780px; }
.section--tinted { background: #fff; }
.section__head { text-align: center; margin-bottom: 2.5rem; }
.section__sub { color: var(--color-secondary); font-size: 1.1rem; margin-bottom: 1rem; }
.section__body { color: var(--color-secondary); font-size: 1.05rem; }

/* === Grid === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }

/* === Cards === */
.card { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -20px rgba(15,23,42,0.25); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(30,41,59,0.08), rgba(220,38,38,0.10)); color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-secondary); margin: 0; font-size: .975rem; }

/* === Quote === */
.quote { max-width: 780px; margin: 0 auto; padding: 2rem; background: #fff; border-left: 4px solid var(--color-accent); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.quote p { font-size: 1.15rem; color: var(--color-primary); font-style: italic; }
.quote cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-secondary); font-weight: 600; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: var(--color-neutral-light); padding-block: 3rem; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 80% 20%, rgba(220,38,38,0.25), transparent 60%); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: #fff; margin: 0 0 .5rem; }
.cta-band p { color: rgba(248,250,252,0.85); margin: 0; }

/* === FAQ === */
.faq details { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-bottom: .75rem; box-shadow: var(--shadow-soft); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-primary); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); transition: transform .25s var(--ease); }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: .75rem 0 .25rem; color: var(--color-secondary); }

/* === Contact === */
.contact-band { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.contact-card { background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.contact-card h3 { margin-top: 0; }
.contact-card address { font-style: normal; color: var(--color-secondary); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .35rem 0; color: var(--color-secondary); font-weight: 400; }
.hours th { color: var(--color-primary); font-weight: 600; }

/* === Contact form === */
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 600; color: var(--color-primary); font-size: .925rem; }
.form-row input, .form-row textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-primary); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(220,38,38,0.15); }
.form-consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .875rem; color: var(--color-secondary); line-height: 1.5; }
.form-consent input { margin-top: .2rem; flex-shrink: 0; }
.form-consent a { color: var(--color-primary); text-decoration: underline; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248,250,252,0.85); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer__grid h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.footer__tagline { color: rgba(248,250,252,0.65); }
.footer__nav { display: flex; flex-direction: column; gap: .35rem; }
.footer__nav a, .footer__contact a { color: rgba(248,250,252,0.85); }
.footer__nav a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact address { font-style: normal; color: rgba(248,250,252,0.7); margin-bottom: .75rem; }
.footer__legal { font-size: .85rem; color: rgba(248,250,252,0.6); margin-top: 1rem; }
.footer__legal a { color: rgba(248,250,252,0.75); }
.footer__copy { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(248,250,252,0.12); color: rgba(248,250,252,0.6); font-size: .85rem; }
.logo--footer img { height: 60px; width: auto; filter: brightness(0) invert(1); opacity: .9; margin-bottom: .75rem; }

/* === 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-md); box-shadow: var(--shadow-lift); max-width: 720px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; color: rgba(248,250,252,0.9); font-size: .925rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(248,250,252,0.25); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(248,250,252,0.08); color: var(--color-neutral-light); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(248,250,252,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: .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; } }

/* === Responsive === */
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: 1.75rem; }
  .primary-nav.is-open { position: static; flex-direction: row; padding: 0; background: transparent; border: none; box-shadow: none; }
  .hero { padding-block: 5.5rem 4.5rem; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .section { padding-block: 5.5rem; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; }
  .cta-band { padding-block: 4rem; }
}

@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
