:root {
  --color-primary: #0D9488;
  --color-secondary: #14B8A6;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(19, 78, 74, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(19, 78, 74, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(19, 78, 74, 0.35);
  --content: 1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-neutral-dark); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 .75rem; }
h1 { font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 3rem; }
.section.narrow .container { max-width: 780px; }
.section-head { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.section-head p { color: #467A75; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(240, 253, 250, 0.7);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(19, 78, 74, 0.08);
  transition: background .2s var(--ease), box-shadow .2s var(--ease);
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.9); box-shadow: 0 6px 24px -18px rgba(19, 78, 74, 0.4); }
.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; }
@media (min-width: 768px) { .logo img { height: 96px; } }
.nav-toggle { background: none; border: 0; color: var(--color-neutral-dark); padding: .5rem; cursor: pointer; border-radius: 8px; }
.nav-toggle:hover { background: rgba(19, 78, 74, 0.08); }
.primary-nav { display: none; flex-direction: column; gap: .25rem; }
.primary-nav.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; padding: 1rem 1.25rem 1.25rem; background: #fff; border-bottom: 1px solid rgba(19, 78, 74, 0.08); box-shadow: var(--shadow-sm); }
.primary-nav a { padding: .6rem .25rem; font-weight: 500; color: var(--color-neutral-dark); position: relative; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-cta { display: inline-block; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; gap: 1.5rem; position: static; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .primary-nav a { padding: .25rem 0; }
  .primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-primary); 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 .nav-cta { background: var(--color-primary); color: #fff; padding: .55rem 1.1rem; border-radius: 999px; }
  .primary-nav .nav-cta::after { display: none; }
  .primary-nav .nav-cta:hover { background: var(--color-neutral-dark); color: #fff; }
}

/* === Hero === */
.hero { position: relative; padding-block: 3rem 4rem; overflow: hidden; background: linear-gradient(135deg, rgba(240, 253, 250, 1) 0%, rgba(204, 251, 241, 0.6) 100%); }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto auto; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.14), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: -10%; bottom: -30%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.eyebrow { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-primary); margin: 0 0 1rem; }
.hero-copy h1 { font-size: clamp(2.1rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 1.25rem; }
.hero-copy .lede { font-size: 1.15rem; color: #365f5c; max-width: 46ch; margin: 0 0 1.75rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.proof-line { font-size: .9rem; color: #467A75; margin-top: .5rem; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@media (min-width: 768px) {
  .hero { padding-block: 5rem 6rem; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600; font-family: var(--font-body);
  border: 1px solid transparent; cursor: pointer; font-size: .98rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn:focus-visible { outline: 3px solid rgba(20, 184, 166, 0.4); outline-offset: 3px; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 10px 24px -12px rgba(13, 148, 136, 0.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(13, 148, 136, 0.7); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border-color: rgba(19, 78, 74, 0.2); }
.btn-ghost:hover { background: rgba(19, 78, 74, 0.06); color: var(--color-neutral-dark); transform: translateY(-2px); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #ea580c; color: #fff; transform: translateY(-2px); }

/* === Grid & Cards === */
.grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: #fff; border-radius: var(--radius);
  padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19, 78, 74, 0.06);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { color: var(--color-neutral-dark); }
.card h3 { margin-top: .75rem; }
.card p { color: #365f5c; margin: 0; font-size: .96rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(249, 115, 22, 0.12));
  color: var(--color-primary);
}
.stat-card h3 { font-size: 1.5rem; color: var(--color-primary); }

/* === Quote === */
.quote-section { background: var(--color-neutral-light); }
blockquote { margin: 0; padding: 0; text-align: center; position: relative; }
blockquote p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2.5vw, 1.6rem); line-height: 1.45; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1.25rem; }
blockquote cite { font-style: normal; font-weight: 600; color: var(--color-primary); font-size: .95rem; }

/* === CTA Band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding-block: 3rem;
}
.cta-band-inner { 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(240, 253, 250, 0.85); margin: 0; max-width: 60ch; }
@media (min-width: 768px) { .cta-band-inner { flex-direction: row; justify-content: space-between; align-items: center; } }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-details address { font-style: normal; line-height: 1.7; margin-bottom: 1.5rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px solid rgba(19, 78, 74, 0.08); font-weight: 400; }
.hours th { color: var(--color-neutral-dark); font-weight: 600; }

.contact-form { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid rgba(19, 78, 74, 0.06); }
.contact-form label { display: block; font-weight: 500; margin-bottom: 1rem; font-size: .92rem; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: .35rem; padding: .7rem .85rem;
  border: 1px solid rgba(19, 78, 74, 0.18); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--color-neutral-dark);
  background: #fbfffe; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-consent { display: flex; gap: .5rem; align-items: flex-start; font-size: .85rem; color: #467A75; margin: 1rem 0 1.25rem !important; }
.form-consent input { width: auto; margin: .2rem 0 0; }
.contact-form .btn { width: 100%; }
@media (min-width: 640px) { .contact-form .btn { width: auto; } }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240, 253, 250, 0.85); padding: 3rem 0 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .75rem; }
.footer-nav { display: flex; flex-direction: column; gap: .4rem; }
.footer-nav a, .footer-contact a { color: rgba(240, 253, 250, 0.85); }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-tagline { margin-top: .75rem; max-width: 30ch; color: rgba(240, 253, 250, 0.75); }
.logo-footer img { filter: brightness(0) invert(1); opacity: 0.95; }
.footer-contact address { font-style: normal; line-height: 1.7; margin-bottom: .75rem; }
.legal-links { font-size: .88rem; color: rgba(240, 253, 250, 0.7); }
.legal-links a { color: rgba(240, 253, 250, 0.85); }
.copyright { text-align: center; margin: 2rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(240, 253, 250, 0.12); font-size: .85rem; color: rgba(240, 253, 250, 0.65); }

/* === 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);
  box-shadow: var(--shadow-lg);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button {
  padding: .5rem 1rem; border-radius: 999px; border: 1px solid rgba(240, 253, 250, 0.25);
  background: transparent; color: var(--color-neutral-light); font-family: var(--font-body); font-weight: 500; cursor: pointer; font-size: .9rem;
  transition: background .2s var(--ease);
}
.cookie-banner__actions button:hover { background: rgba(240, 253, 250, 0.1); }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #ea580c; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs label { display: flex; gap: .5rem; align-items: center; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: .5rem; padding: .45rem .9rem; border-radius: 999px; background: var(--color-primary); border: 0; color: #fff; cursor: pointer; font-family: var(--font-body); font-weight: 500; }

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