:root {
  --color-primary: #18181B;
  --color-secondary: #3F3F46;
  --color-accent: #2563EB;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-border: rgba(9, 9, 11, 0.10);
  --color-muted: rgba(63, 63, 70, 0.72);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lift: 0 20px 60px -20px rgba(0,0,0,0.25);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin: 0 0 1rem; color: var(--color-secondary); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-primary); color: var(--color-neutral-light);
  padding: .75rem 1rem; z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* === Header / Nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .2s, box-shadow .2s, border-color .2s;
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .75rem; gap: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.nav-toggle {
  background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px; display: inline-flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px; padding: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--color-primary); border-radius: 2px; transition: transform .2s, opacity .2s; }
.primary-nav {
  position: fixed; inset: 64px 0 0 0; background: var(--color-neutral-light);
  padding: 2rem 1.5rem; display: none; flex-direction: column; gap: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.primary-nav.open { display: flex; }
.primary-nav a { color: var(--color-primary); font-weight: 500; font-size: 1.05rem; }
.primary-nav a[aria-current="page"] { color: var(--color-accent); }
.primary-nav .nav-cta {
  background: var(--color-primary); color: var(--color-neutral-light);
  padding: .65rem 1.1rem; border-radius: 999px; text-align: center;
  align-self: flex-start;
}
.primary-nav .nav-cta:hover { text-decoration: none; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static; inset: auto; padding: 0; display: flex; flex-direction: row;
    align-items: center; gap: 1.75rem; border: 0; background: transparent;
  }
  .primary-nav a { position: relative; }
  .primary-nav a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
    height: 2px; background: var(--color-accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav a:not(.nav-cta):hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.4rem; border-radius: 999px; font-weight: 600;
  font-family: var(--font-body); font-size: 1rem; cursor: pointer;
  border: 1px solid transparent; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  box-shadow: 0 10px 30px -12px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover { box-shadow: 0 18px 40px -14px rgba(37, 99, 235, 0.5); }
.btn-accent {
  background: var(--color-accent); color: #fff;
  box-shadow: 0 10px 30px -12px rgba(37, 99, 235, 0.5);
}
.btn-ghost {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-border);
}
.btn-ghost:hover { background: rgba(9,9,11,0.04); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 6px; }

/* === Hero === */
.hero {
  position: relative; overflow: hidden;
  padding-block: 3.5rem 3rem;
  background:
    radial-gradient(1000px 500px at 50% -100px, rgba(37,99,235,0.10), transparent 60%),
    linear-gradient(180deg, #F4F4F5 0%, var(--color-neutral-light) 70%);
}
@media (min-width: 768px) { .hero { padding-block: 6rem 4rem; } }
.hero-inner { text-align: center; }
.eyebrow {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--color-accent); margin: 0 0 1rem;
}
.hero h1 { max-width: 22ch; margin-inline: auto; }
.hero-sub {
  max-width: 52ch; margin: 1.25rem auto 1.75rem;
  font-size: 1.125rem; color: var(--color-secondary);
}
.hero-ctas { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-image {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  max-width: 1000px; margin-inline: auto;
}
.hero-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* === Sections === */
.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }
.section-alt { background: #F4F4F5; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }
.prose { font-size: 1.075rem; line-height: 1.75; color: var(--color-secondary); }

.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); aspect-ratio: 4/3; object-fit: cover; }

/* === Cards === */
.cards-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(37,99,235,0.10); color: var(--color-accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--color-secondary); margin: 0; }

/* === Testimonial === */
.testimonial {
  margin: 0; padding: 2.5rem 1.75rem;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); text-align: center;
  border: 1px solid var(--color-border);
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--color-primary);
  line-height: 1.45; margin-bottom: 1.25rem; font-weight: 500;
}
.testimonial cite {
  font-style: normal; font-size: .95rem; color: var(--color-muted); font-weight: 500;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), #27272A);
  color: var(--color-neutral-light);
  padding-block: 3.5rem;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: -50% -20% auto auto;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(250,250,250,0.72); margin: 0; }
.cta-inner {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start; position: relative;
}
@media (min-width: 768px) {
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}

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

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; } }
.contact-info address { font-style: normal; margin-bottom: 1.75rem; line-height: 1.8; }
.contact-info h3 { margin-top: 1rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .6rem 0; border-bottom: 1px solid var(--color-border); font-weight: 500; color: var(--color-secondary); }
.hours th { color: var(--color-primary); }

.contact-form {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-soft);
}
.contact-form h2 { margin-bottom: .5rem; }
.contact-form label { display: block; margin-bottom: 1rem; }
.contact-form label > span { display: block; font-size: .9rem; font-weight: 500; margin-bottom: .35rem; color: var(--color-primary); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--color-border);
  border-radius: 10px; font-family: inherit; font-size: 1rem;
  background: var(--color-neutral-light); color: var(--color-primary);
  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(37,99,235,0.15);
}
.form-consent {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .875rem; color: var(--color-secondary);
  margin-bottom: 1.25rem !important;
}
.form-consent input { width: auto !important; margin-top: .25rem; }
.form-consent span { flex: 1; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark); color: rgba(250,250,250,0.75);
  padding-block: 3.5rem 1.5rem; margin-top: 4rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 3rem; } }
.site-footer h4 {
  color: #fff; font-size: .95rem; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 1rem;
}
.site-footer a { color: rgba(250,250,250,0.75); display: inline-block; padding: .2rem 0; }
.site-footer a:hover { color: #fff; }
.site-footer nav { display: flex; flex-direction: column; }
.site-footer address { font-style: normal; line-height: 1.8; margin-bottom: 1rem; }
.legal-links { display: flex; flex-direction: column; margin-top: .5rem; }
.footer-logo img { height: 72px; filter: brightness(0) invert(1); }
.footer-tag { margin-top: .5rem; color: rgba(250,250,250,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(250,250,250,0.10);
  padding-top: 1.5rem; margin-top: 2.5rem;
  font-size: .9rem; color: rgba(250,250,250,0.55);
}
.footer-bottom p { color: inherit; margin: 0; }

/* === 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);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  max-width: 560px; margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { color: rgba(250,250,250,0.85); margin: 0 0 1rem; font-size: .95rem; }
.cookie-banner__actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: .55rem 1rem; font-size: .9rem; }
.cookie-banner__actions .btn-ghost { color: var(--color-neutral-light); border-color: rgba(250,250,250,0.25); }
.cookie-banner__actions .btn-ghost:hover { background: rgba(250,250,250,0.08); }
.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; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: .5rem; }

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