:root {
  --color-primary: #18181B;
  --color-secondary: #27272A;
  --color-accent: #F8FAFC;
  --color-neutral-dark: #09090B;
  --color-neutral-light: #FAFAFA;
  --color-line: rgba(9, 9, 11, 0.10);
  --color-muted: rgba(9, 9, 11, 0.62);
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(9, 9, 11, 0.06);
  --shadow-md: 0 12px 36px -12px rgba(9, 9, 11, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(9, 9, 11, 0.28);
  --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 { 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%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .75rem;
  font-weight: 600;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
.muted { color: var(--color-muted); }
.text-center { text-align: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.lede { font-size: 1.125rem; line-height: 1.75; color: var(--color-secondary); }

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

/* === Header === */
.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 .3s var(--ease-io), border-color .3s var(--ease-io), box-shadow .3s var(--ease-io);
}
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.92);
  border-bottom-color: var(--color-line);
  box-shadow: 0 6px 24px -18px rgba(9, 9, 11, 0.35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 72px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: .5rem;
  color: var(--color-neutral-dark);
  cursor: pointer;
}
.site-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-line);
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  gap: .25rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  padding: .65rem .25rem;
  color: var(--color-secondary);
  font-weight: 500;
  border-bottom: 1px solid var(--color-line);
}
.site-nav a:last-child { border-bottom: none; }
.site-nav .nav-cta {
  margin-top: .75rem;
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border-radius: 999px;
  padding: .7rem 1.2rem;
  text-align: center;
  border: none;
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    gap: 2rem;
  }
  .site-nav a { padding: .25rem 0; border: none; position: relative; }
  .site-nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease-io);
  }
  .site-nav a:not(.nav-cta):hover::after,
  .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav .nav-cta { margin-top: 0; }
  .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.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s var(--ease-io), box-shadow .2s var(--ease-io), background .2s;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border-color: var(--color-line);
}
.btn--ghost:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }

/* === Hero === */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
}
.hero--sub { padding-bottom: 2rem; }
.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 500px;
  background: radial-gradient(closest-side, rgba(24, 24, 27, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero h1 { max-width: 22ch; margin-inline: auto; margin-bottom: 1.25rem; }
.hero__sub {
  max-width: 56ch;
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--color-secondary);
}
.hero__actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__visual {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.proof-strip {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  color: var(--color-muted);
  font-size: .95rem;
  font-weight: 500;
}
.proof-strip li { position: relative; padding-left: 1.25rem; }
.proof-strip li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translateY(-50%);
  opacity: .4;
}

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

/* === Sections === */
.section { padding: 4rem 0; }
.section--tinted { background: #f4f4f5; }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__header p { color: var(--color-muted); }

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

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

.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-line);
  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: 2.25rem; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #18181B 0%, #27272A 100%);
  color: var(--color-neutral-light);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; color: var(--color-secondary); font-size: .98rem; }

/* === Quote === */
.quote {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}
.quote cite { font-style: normal; color: var(--color-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-neutral-light);
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250, 250, 250, 0.78); max-width: 52ch; margin: 0 auto 1.75rem; }
.cta-band .btn--primary {
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}

/* === FAQ === */
.faq details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin-bottom: .75rem;
  background: var(--color-neutral-light);
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-muted);
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: .9rem 0 0; color: var(--color-secondary); }

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-card address { font-style: normal; margin-bottom: 1rem; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--color-line); }
.hours th { font-weight: 500; color: var(--color-secondary); }

/* === Form === */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; font-weight: 500; color: var(--color-secondary); }
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: .8rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-neutral-dark);
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: .6rem !important;
  font-size: .85rem;
  color: var(--color-muted);
  font-weight: 400 !important;
}
.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(250, 250, 250, 0.78);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.site-footer h4 {
  color: var(--color-neutral-light);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: rgba(250, 250, 250, 0.78); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer address { font-style: normal; margin-bottom: 1rem; }
.site-footer .logo--footer img { filter: brightness(0) invert(1); opacity: .95; }
.site-footer .muted { color: rgba(250, 250, 250, 0.55); }
.legal-links { margin-top: 1rem; }
.legal-links li { display: inline-block; margin-right: 1rem; font-size: .85rem; }
.site-footer__base {
  border-top: 1px solid rgba(250, 250, 250, 0.10);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: .85rem;
  color: rgba(250, 250, 250, 0.55);
}

/* === 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);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn { padding: .55rem 1.1rem; font-size: .9rem; }
.cookie-banner__actions .btn--primary { background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(250, 250, 250, 0.25); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; }
.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; }
  html { scroll-behavior: auto; }
}
