:root {
  --color-primary: #0891B2;
  --color-secondary: #22D3EE;
  --color-accent: #22C55E;
  --color-neutral-dark: #164E63;
  --color-neutral-light: #ECFEFF;
  --color-text: #0f2b34;
  --color-muted: #4a6b78;
  --color-border: rgba(22, 78, 99, 0.14);
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 20px rgba(15, 43, 52, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 43, 52, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(15, 43, 52, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
blockquote { margin: 0; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--color-muted); }
.small { font-size: 0.9rem; }

.section { padding-block: 4rem; }
.section-alt { background: var(--color-neutral-light); }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head p { color: var(--color-muted); max-width: 60ch; margin-inline: auto; }

.two-col { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.figure img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.lede { font-size: 1.15rem; color: var(--color-muted); max-width: 56ch; }

/* === Header / Nav (glass) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(236, 254, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.9rem; gap: 1rem;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-neutral-dark);
  border-radius: 10px; padding: 0.5rem;
}
.primary-nav {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1px solid var(--color-border);
  padding: 1rem 1.25rem 1.5rem; box-shadow: var(--shadow-md);
  flex-direction: column; gap: 0.4rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark); font-weight: 500;
  padding: 0.6rem 0.25rem; border-radius: 8px;
  text-decoration: none;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav .nav-cta {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; text-align: center; padding: 0.7rem 1rem;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex; position: static; flex-direction: row;
    background: transparent; border: 0; box-shadow: none; padding: 0;
    gap: 0.4rem; align-items: center;
  }
  .primary-nav a { position: relative; padding: 0.5rem 0.85rem; }
  .primary-nav a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.3rem;
    height: 2px; background: var(--color-primary); border-radius: 2px;
    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); }
  .primary-nav .nav-cta {
    margin-top: 0; margin-left: 0.5rem;
    padding: 0.6rem 1.1rem; border-radius: 999px;
    box-shadow: 0 6px 20px -6px rgba(8, 145, 178, 0.55);
  }
  .primary-nav .nav-cta:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 10px 26px -8px rgba(8, 145, 178, 0.6); }
}

/* === Buttons === */
.btn {
  display: inline-block; padding: 0.85rem 1.5rem;
  border-radius: 999px; font-weight: 600;
  text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(8, 145, 178, 0.6);
}
.btn-primary:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(8, 145, 178, 0.7); }
.btn-ghost {
  background: transparent; color: var(--color-neutral-dark);
  border-color: var(--color-border);
}
.btn-ghost:hover { text-decoration: none; background: var(--color-neutral-light); transform: translateY(-2px); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* === Hero card === */
.hero-band {
  position: relative;
  padding-block: 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(34, 197, 94, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 100%, rgba(34, 211, 238, 0.16), transparent 60%),
    linear-gradient(180deg, var(--color-neutral-light), #ffffff);
  overflow: hidden;
}
@media (min-width: 768px) { .hero-band { padding-block: 5rem; } }

.hero-card {
  max-width: 880px;
  margin-inline: auto;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
@media (min-width: 768px) { .hero-card { padding: 3.5rem; } }

.hero-card h1 { max-width: 22ch; }
.hero-card__figure { margin: 2rem 0 0; }
.hero-card__figure img {
  width: 100%; border-radius: var(--radius-md);
  aspect-ratio: 16/9; object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(34, 211, 238, 0.22));
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); margin: 0; }

/* === Testimonial === */
.testimonial blockquote {
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
}
.testimonial blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
  max-width: 60ch; margin-inline: auto;
  font-weight: 500;
}
.testimonial cite {
  display: block; margin-top: 1.25rem;
  font-style: normal; font-size: 0.95rem;
  color: var(--color-muted); font-weight: 500;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 40% at 80% 0%, rgba(34, 197, 94, 0.28), transparent 60%);
  pointer-events: none;
}
.cta-band h2, .cta-band p { color: #fff; position: relative; }
.cta-band .btn-primary {
  background: #fff; color: var(--color-neutral-dark);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.35);
}
.cta-band .btn-primary:hover { background: var(--color-neutral-light); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); }

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

/* === Contact page === */
.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.5rem; line-height: 1.7; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td { text-align: left; padding: 0.55rem 0; border-bottom: 1px solid var(--color-border); }
.hours th { font-weight: 500; color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); text-align: right; }

/* === Contact form === */
.contact-form {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form h2 { margin-top: 0; }
.contact-form label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.92rem; font-weight: 500; color: var(--color-neutral-dark);
}
.contact-form input,
.contact-form textarea {
  font: inherit; padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: #fff; color: var(--color-text);
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-consent {
  flex-direction: row; align-items: flex-start; gap: 0.6rem;
  font-weight: 400; font-size: 0.88rem; color: var(--color-muted);
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; }
.contact-form .btn-primary { align-self: flex-start; border: 0; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(236, 254, 255, 0.88);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 0.9rem; }
.site-footer a { color: rgba(236, 254, 255, 0.88); }
.site-footer a:hover { color: #fff; }
.site-footer .muted { color: rgba(236, 254, 255, 0.65); }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.4rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 0.5rem; font-size: 0.88rem; }
.copyright {
  text-align: center; margin: 2.5rem 0 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(236, 254, 255, 0.15);
  color: rgba(236, 254, 255, 0.6); font-size: 0.85rem;
}
.logo--footer img { height: 64px; }

/* === 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-lg);
  max-width: 640px; margin-inline: auto;
  font-size: 0.92rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button {
  border: 1px solid rgba(236, 254, 255, 0.3); background: transparent;
  color: var(--color-neutral-light);
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.88rem;
  transition: background .15s;
}
.cookie-banner__actions button:hover { background: rgba(236, 254, 255, 0.1); }
.cookie-banner__actions [data-cookie-accept] {
  background: var(--color-accent); border-color: var(--color-accent); color: #fff;
}
.cookie-banner__actions [data-cookie-accept]:hover { background: #1ba24a; }
.cookie-banner__prefs {
  margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem;
  padding-top: 1rem; border-top: 1px solid rgba(236, 254, 255, 0.15);
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs button {
  margin-top: 0.5rem; align-self: flex-start;
  background: var(--color-accent); color: #fff; border: 0;
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.88rem;
}

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