:root {
  --color-primary: #0891B2;
  --color-secondary: #22D3EE;
  --color-accent: #22C55E;
  --color-neutral-dark: #164E63;
  --color-neutral-light: #ECFEFF;
  --color-ink: #0B2A33;
  --color-muted: #4B7A85;
  --color-line: rgba(22, 78, 99, 0.12);
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 2px 20px rgba(11, 42, 51, 0.06);
  --shadow-lift: 0 30px 60px -30px rgba(8, 145, 178, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-ui: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & base === */
*, *::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-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-ui); }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.01em; margin: 0 0 .75rem; }
h1 { font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }
address { font-style: normal; line-height: 1.7; }

/* === Header (glass nav) === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  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 .3s var(--ease-ui), box-shadow .3s var(--ease-ui), border-color .3s var(--ease-ui);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px -18px rgba(11, 42, 51, 0.35);
  border-bottom-color: var(--color-line);
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 64px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: .5rem .9rem;
  cursor: pointer;
  color: var(--color-neutral-dark);
  font-family: var(--font-body);
  font-size: .95rem;
}
.nav-toggle__bar { width: 18px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; display: none; }
.nav-toggle__label { font-weight: 500; }

.primary-nav { display: none; flex-direction: column; gap: .25rem; }
.primary-nav[data-open="true"] { display: flex; }
.primary-nav a {
  padding: .6rem .25rem;
  color: var(--color-neutral-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--color-line);
  position: relative;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav .nav-cta {
  border-bottom: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  border-radius: 999px;
  padding: .55rem 1.1rem;
  margin-top: .5rem;
  text-align: center;
}

@media (min-width: 900px) {
  .site-header__inner { padding: 1rem 2rem; }
  .nav-toggle { display: none; }
  .logo img { height: 96px; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; gap: 1.75rem; }
  .primary-nav a {
    padding: .25rem 0;
    border-bottom: 0;
  }
  .primary-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease-ui);
  }
  .primary-nav a:hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .primary-nav .nav-cta { margin-top: 0; }
  .primary-nav .nav-cta::after { display: none; }
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 0;
  transition: transform .2s var(--ease-ui), box-shadow .25s var(--ease-ui), background .25s var(--ease-ui);
  text-align: center;
  line-height: 1.2;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  box-shadow: 0 12px 30px -14px rgba(8, 145, 178, 0.6);
}
.btn--primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 20px 40px -18px rgba(8, 145, 178, 0.75); }
.btn--ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border: 1px solid var(--color-line);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--color-primary); color: var(--color-primary); }
.btn--small { padding: .55rem 1rem; font-size: .9rem; }
.btn:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; }

/* === Hero (hero-card archetype) === */
.hero {
  position: relative;
  padding: 3rem 1rem 2.5rem;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(34, 211, 238, 0.22), transparent 60%),
    radial-gradient(900px 400px at -10% 20%, rgba(34, 197, 94, 0.12), transparent 60%),
    linear-gradient(180deg, var(--color-neutral-light) 0%, #fff 100%);
  overflow: hidden;
}
.hero-card__glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(600px 300px at 50% 10%, rgba(8, 145, 178, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-card__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  box-shadow: var(--shadow-lift);
  text-align: left;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 .75rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 52ch;
  margin: 0 0 1.75rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}
.hero__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(11, 42, 51, 0.35);
}
.hero__image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

@media (min-width: 768px) {
  .hero { padding: 5rem 1.5rem 4rem; }
  .hero-card__inner { padding: 3.5rem 3rem; }
}

/* === Section base === */
.section { padding: 3.5rem 1rem; }
.section--tinted { background: linear-gradient(180deg, var(--color-neutral-light), #fff); }
.section__inner { max-width: 1120px; margin: 0 auto; }
.section__inner--narrow { max-width: 760px; }
.section__header { margin-bottom: 2rem; }
.section__header--centered { text-align: center; }
.section__lede { color: var(--color-muted); font-size: 1.05rem; max-width: 60ch; }
.section__header--centered .section__lede { margin-left: auto; margin-right: auto; }

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

/* === Cards grid === */
.grid--cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 620px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--cards { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease-ui), box-shadow .25s var(--ease-ui), border-color .25s var(--ease-ui);
  display: block;
  color: inherit;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -22px rgba(11, 42, 51, 0.28); border-color: rgba(8, 145, 178, 0.35); }
.card-link { text-decoration: none; }
.card-link:hover h3 { color: var(--color-primary); }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(34, 211, 238, 0.18));
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { transition: color .2s var(--ease-ui); }
.card p { color: var(--color-muted); margin: 0; font-size: .95rem; }

/* === Testimonial === */
.testimonial {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.06), rgba(34, 211, 238, 0.08));
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 0;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin: 0 0 1rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-muted);
  font-size: .95rem;
}

/* === CTA band === */
.cta-band {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
}
.cta-band__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 60ch; margin: 0 auto 1.75rem; }
@media (min-width: 768px) { .cta-band { padding: 4.5rem 1.5rem; } }

/* === Stats === */
.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }
.stat {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat__figure {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 0 .5rem;
  letter-spacing: -0.02em;
}
.stat__body { color: var(--color-muted); font-size: .95rem; margin: 0; }
.stats__figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.stats__figure img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

/* === Contact card / hours === */
.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .contact-card { grid-template-columns: 1.2fr 1fr; padding: 3rem; } }
.hours { display: grid; grid-template-columns: max-content 1fr; gap: .35rem 1.25rem; margin: 0; }
.hours dt { font-weight: 600; color: var(--color-neutral-dark); }
.hours dd { margin: 0; color: var(--color-muted); }

/* === Contact form === */
.contact-form {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.form-row { display: flex; flex-direction: column; gap: .35rem; }
.form-row label { font-weight: 600; color: var(--color-neutral-dark); font-size: .95rem; }
.form-row input,
.form-row textarea {
  font: inherit;
  color: var(--color-ink);
  padding: .75rem .9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  background: #fff;
  transition: border-color .2s var(--ease-ui), box-shadow .2s var(--ease-ui);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.15);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.form-consent input { margin-top: .25rem; flex-shrink: 0; }
.contact-form .btn { justify-self: start; }

/* === FAQ === */
.faq { display: grid; gap: .75rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: box-shadow .2s var(--ease-ui);
}
.faq details[open] { box-shadow: var(--shadow-soft); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-neutral-dark);
  list-style: none;
  padding: .25rem 0;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform .2s var(--ease-ui);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: .75rem 0 0; color: var(--color-muted); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(236, 254, 255, 0.85);
  padding: 3.5rem 1rem 1.5rem;
  margin-top: 4rem;
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; } }
.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
}
.site-footer a { color: rgba(236, 254, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer__tagline { color: rgba(236, 254, 255, 0.7); margin-top: 1rem; }
.site-footer__nav { display: flex; flex-direction: column; gap: .5rem; }
.site-footer__legal {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .9rem;
}
.site-footer__copy {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  border-top: 1px solid rgba(236, 254, 255, 0.14);
  padding-top: 1.25rem;
  color: rgba(236, 254, 255, 0.6);
  font-size: .85rem;
  text-align: center;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  z-index: 9999;
  max-width: 620px;
  margin: 0 auto;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .9rem; font-size: .95rem; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(236, 254, 255, 0.15);
  display: grid;
  gap: .5rem;
}
.cookie-banner__prefs label {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .9rem;
}
.cookie-banner__prefs .btn { justify-self: start; margin-top: .5rem; }
.cookie-banner .btn--ghost {
  color: var(--color-neutral-light);
  border-color: rgba(236, 254, 255, 0.35);
}
.cookie-banner .btn--ghost:hover { color: #fff; border-color: var(--color-secondary); }

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