:root {
  --color-primary: #0F766E;
  --color-secondary: #14B8A6;
  --color-accent: #0369A1;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --color-ink: #0B2A28;
  --color-muted: #4a6a67;
  --color-border: rgba(19, 78, 74, 0.12);
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 20px rgba(15, 118, 110, 0.08);
  --shadow-md: 0 10px 30px -12px rgba(19, 78, 74, 0.25);
  --shadow-lg: 0 30px 60px -30px rgba(19, 78, 74, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1160px;
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-neutral-light);
  -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); }
a:hover { color: var(--color-accent); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .6em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--color-neutral-dark); }
p { margin: 0 0 1em; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

/* === Header / nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240, 253, 250, 0.75);
  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), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(240, 253, 250, 0.92); box-shadow: 0 6px 24px -18px rgba(19,78,74,.4); border-bottom-color: var(--color-border); }
.nav-inner { max-width: var(--container); margin-inline: auto; padding: .9rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: none; border: 0; color: var(--color-neutral-dark); padding: .5rem; cursor: pointer; display: inline-flex; }
.primary-nav { display: none; flex-direction: column; gap: 0; }
.primary-nav.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: .7rem 0; border-bottom: 1px solid var(--color-border); position: relative; }
.primary-nav a:last-child { border-bottom: 0; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-cta { color: var(--color-primary) !important; font-weight: 600; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .logo img { height: 96px; }
  .primary-nav { display: flex; flex-direction: row; align-items: center; gap: 1.75rem; position: static; padding: 0; background: none; border: 0; box-shadow: none; }
  .primary-nav a { padding: .35rem 0; border: 0; }
  .primary-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; 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); }
  .nav-cta { padding: .55rem 1.1rem !important; border-radius: 999px; background: var(--color-primary); color: #fff !important; }
  .nav-cta::after { display: none; }
  .nav-cta:hover { background: var(--color-neutral-dark); color: #fff !important; }
}

/* === Buttons === */
.btn { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 1rem; padding: .95rem 1.6rem; border-radius: 999px; border: 0; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease); line-height: 1.1; text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 12px 28px -14px rgba(15,118,110,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -14px rgba(15,118,110,.7); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn-ghost:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn-link { background: none; color: var(--color-neutral-dark); text-decoration: underline; padding: .5rem .75rem; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Hero (centered) === */
.hero {
  position: relative;
  padding: 4rem 1.25rem 3rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(600px circle at 15% 10%, rgba(20, 184, 166, 0.18), transparent 60%),
    radial-gradient(700px circle at 85% 0%, rgba(3, 105, 161, 0.13), transparent 60%),
    var(--color-neutral-light);
}
.hero-inner { max-width: 780px; margin-inline: auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1.1rem; }
.hero h1 { max-width: 24ch; margin-inline: auto; }
.hero .sub { max-width: 52ch; margin: 1rem auto 1.75rem; color: var(--color-muted); font-size: 1.15rem; }
.hero-cta { margin: 0; }
.hero-figure { max-width: 1080px; margin: 3rem auto 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.hero-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.thankyou-icon { margin: 0 auto 1.5rem; width: 96px; height: 96px; }
.thankyou-icon img { width: 100%; height: 100%; object-fit: contain; }

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

/* === Sections === */
.section { padding: 4rem 0; }
.section-tinted { background: linear-gradient(180deg, #fff 0%, #eafcf7 100%); }
.section-title { text-align: center; margin-bottom: 2.5rem; }

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

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column; gap: .5rem;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(15,118,110,.35); }
.card h3 { margin: 0; color: var(--color-neutral-dark); }
.card p { margin: 0; color: var(--color-muted); font-size: .98rem; }
.card-link { text-decoration: none; color: inherit; }
.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,.18), rgba(3,105,161,.12)); color: var(--color-primary); margin-bottom: .5rem; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2.25rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); text-align: center; position: relative; }
.testimonial p { font-family: var(--font-heading); font-size: 1.2rem; line-height: 1.5; color: var(--color-neutral-dark); font-weight: 500; margin-bottom: 1.2rem; }
.testimonial cite { font-style: normal; color: var(--color-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band { padding: 4rem 1.25rem; background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; text-align: center; margin: 2rem 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 46ch; margin-inline: auto; }
.cta-band .btn-ghost { color: #fff; border-color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--color-neutral-dark); }

/* === Contact band grid === */
.contact-band-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 800px) { .contact-band-grid { grid-template-columns: 1.2fr 1fr; gap: 3rem; } }
.contact-band-grid figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-band-grid figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.hours-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.hours-table caption { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); text-align: left; padding: 1rem 1.25rem; background: var(--color-neutral-light); }
.hours-table th, .hours-table td { padding: .8rem 1.25rem; text-align: left; border-top: 1px solid var(--color-border); }
.hours-table th { font-weight: 500; color: var(--color-neutral-dark); }
.hours-table td { color: var(--color-muted); }

/* === FAQ === */
.faq details { background: #fff; border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: .75rem; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); cursor: pointer; list-style: none; padding-right: 1.5rem; position: relative; }
.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); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: .8rem 0 0; color: var(--color-muted); }

/* === Contact form === */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; background: #fff; padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-weight: 500; color: var(--color-neutral-dark); font-size: .95rem; }
.form-row input, .form-row textarea { font-family: var(--font-body); font-size: 1rem; padding: .8rem .95rem; border: 1.5px solid var(--color-border); border-radius: 10px; background: var(--color-neutral-light); color: var(--color-ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(15,118,110,.18); }
.form-consent { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; color: var(--color-muted); line-height: 1.5; }
.form-consent input { margin-top: .25rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: #cfeae6; padding: 3rem 0 1.5rem; margin-top: 3rem; }
.site-footer h4 { color: #fff; margin-bottom: .8rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; } }
.logo-footer img { height: 72px; filter: brightness(0) invert(1); }
.tagline { color: #a7d6d1; max-width: 32ch; font-size: .95rem; }
.site-footer a { color: #cfeae6; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .45rem; }
.site-footer address { font-style: normal; color: #cfeae6; margin-bottom: 1rem; font-size: .95rem; }
.legal-links { margin-top: 1rem !important; font-size: .88rem; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.25rem; text-align: center; color: #8fb9b5; font-size: .85rem; }

/* === 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.2rem 1.4rem;
  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 .9rem; font-size: .92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn { padding: .6rem 1.1rem; font-size: .9rem; }
.cookie-banner__actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cookie-banner__actions .btn-ghost:hover { background: #fff; color: var(--color-neutral-dark); }
.cookie-banner__actions .btn-link { color: var(--color-neutral-light); }
.cookie-banner__prefs { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs .btn { align-self: flex-start; margin-top: .3rem; }

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