/* === Tokens === */
:root {
  --color-primary: #0D9488;
  --color-secondary: #14B8A6;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --color-text: #0f2a2a;
  --color-muted: #4b6a68;
  --color-border: rgba(19, 78, 74, 0.12);
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(19,78,74,0.06);
  --shadow-md: 0 10px 30px -12px rgba(19,78,74,0.18);
  --shadow-lg: 0 30px 60px -30px rgba(19,78,74,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hover-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1160px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-neutral-dark); }
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 .75em; font-weight: 700; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.25rem; }
address { font-style: normal; line-height: 1.7; }
.skip { position: absolute; left: -9999px; top: auto; }
.skip:focus { left: 1rem; top: 1rem; background: var(--color-neutral-dark); color: #fff; padding: .5rem 1rem; border-radius: 8px; z-index: 10000; }

/* === Layout === */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }
.muted { color: var(--color-muted); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: .8rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }

/* === Header (glass nav) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  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 transparent;
  transition: background .25s var(--hover-ease), box-shadow .25s var(--hover-ease), border-color .25s var(--hover-ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}
.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; display: block; }
.nav-toggle { background: transparent; border: 0; color: var(--color-neutral-dark); cursor: pointer; padding: .5rem; display: inline-flex; }
.primary-nav { display: none; }
.primary-nav a { display: block; padding: .5rem 0; color: var(--color-neutral-dark); font-weight: 500; position: relative; }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: .1rem; width: 100%; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--hover-ease); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 100%; background: #fff; padding: 1rem 1.25rem; border-top: 1px solid var(--color-border); box-shadow: var(--shadow-md); }
.nav-cta { background: var(--color-neutral-dark); color: #fff !important; padding: .5rem 1rem !important; border-radius: 999px; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--color-primary); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: 1.75rem; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn { display: inline-block; padding: .95rem 1.5rem; border-radius: 999px; font-weight: 600; font-family: var(--font-heading); font-size: 1rem; line-height: 1; cursor: pointer; border: 0; transition: transform .2s var(--hover-ease), box-shadow .2s var(--hover-ease), background .2s var(--hover-ease); }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 10px 24px -12px rgba(13,148,136,0.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(13,148,136,0.7); color: #fff; }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(249,115,22,0.6); }
.btn--accent:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 32px -14px rgba(249,115,22,0.7); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border: 1px solid var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
.btn--sm { padding: .55rem 1rem; font-size: .875rem; }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

/* === Hero (centered) === */
.hero { position: relative; overflow: hidden; padding-block: 3.5rem 2rem; background: linear-gradient(180deg, #ffffff, var(--color-neutral-light)); }
.hero__glow { position: absolute; inset: -20% 10% auto 10%; height: 60%; background: radial-gradient(closest-side, rgba(249,115,22,0.12), transparent 70%); z-index: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 1; text-align: center; }
.hero h1 { max-width: 28ch; margin-inline: auto; font-weight: 700; }
.hero .lede { max-width: 56ch; margin-inline: auto; color: var(--color-muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.75rem; }
.hero .tagline { margin-top: 2rem; color: var(--color-primary); font-style: italic; }
.hero__media { margin-top: 3rem; }
.hero__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 16/9; object-fit: cover; }

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

/* === Sections === */
.section { padding-block: 3.5rem; }
.section--tinted { background: var(--color-neutral-light); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__sub { color: var(--color-muted); }
@media (min-width: 768px) { .section { padding-block: 5rem; } }

/* === Grids & cards === */
.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--hover-ease), box-shadow .25s var(--hover-ease), border-color .25s var(--hover-ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(13,148,136,0.35); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(249,115,22,0.15)); color: var(--color-primary); margin-bottom: 1rem; }
.card p { color: var(--color-muted); margin-bottom: 0; }
a.card-link { color: inherit; text-decoration: none; display: block; }
a.card-link h3 { color: var(--color-neutral-dark); }
a.card-link:hover h3 { color: var(--color-primary); }

/* === Split === */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }

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

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding-block: 3rem; margin-block: 0; }
.cta-band__inner { display: grid; gap: 1.5rem; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band a { justify-self: start; }
@media (min-width: 800px) { .cta-band__inner { grid-template-columns: 1fr auto; gap: 3rem; } .cta-band a { justify-self: end; } }

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); border-radius: 12px; padding: 1rem 1.25rem; background: #fff; margin-bottom: .75rem; transition: box-shadow .2s var(--hover-ease); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); 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: -.1rem; font-size: 1.5rem; color: var(--color-primary); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--color-muted); margin: .75rem 0 0; }

/* === Stats === */
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-heading); font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 800; color: var(--color-accent); line-height: 1; margin-bottom: .5rem; }
.stat h3 { margin-bottom: .5rem; }

/* === Contact === */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: .55rem 0; text-align: left; border-bottom: 1px solid var(--color-border); }
.hours th { color: var(--color-muted); font-weight: 500; }

/* === Form === */
.contact-form { display: grid; gap: 1rem; background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; color: var(--color-neutral-dark); font-size: .95rem; }
.field input, .field textarea { font: inherit; padding: .8rem 1rem; border: 1px solid var(--color-border); border-radius: 10px; background: #fff; color: var(--color-text); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(13,148,136,0.15); }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: var(--color-muted); line-height: 1.5; }
.form-consent input { margin-top: .25rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240,253,250,0.85); padding-block: 3rem 1.5rem; margin-top: 0; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .75rem; }
.site-footer a { color: rgba(240,253,250,0.85); }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1.3fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .4rem; }
.legal-links { margin-top: 1rem; font-size: .875rem; }
.logo--footer img { height: 64px; filter: brightness(0) invert(1); }
.footer__base { border-top: 1px solid rgba(240,253,250,0.15); padding-top: 1.5rem; margin-top: 2rem; font-size: .875rem; color: rgba(240,253,250,0.65); }

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

/* === 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: 0 20px 60px -20px rgba(0,0,0,0.5); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: .925rem; line-height: 1.55; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions .btn--ghost { color: var(--color-neutral-light); border-color: rgba(240,253,250,0.35); }
.cookie-banner__actions .btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.cookie-banner__prefs { display: grid; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(240,253,250,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
