:root {
  --color-primary: #0D9488;
  --color-secondary: #14B8A6;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --color-text: #0f2b2a;
  --color-muted: #4b6b6a;
  --color-border: rgba(19, 78, 74, 0.12);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-soft: 0 2px 20px rgba(19, 78, 74, 0.06);
  --shadow-lift: 0 20px 40px -20px rgba(19, 78, 74, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 .75rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }

/* === Header === */
.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 var(--color-border);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,0.92); box-shadow: 0 6px 24px -18px rgba(19,78,74,0.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .75rem; }
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--color-border); border-radius: 10px; padding: .5rem; color: var(--color-neutral-dark); cursor: pointer; }
.primary-nav { display: none; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; padding: .5rem .25rem; position: relative; }
.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 { text-decoration: none; }
.primary-nav a:hover::after, .primary-nav a.is-current::after { transform: scaleX(1); }
.primary-nav a.nav-cta { background: var(--color-primary); color: #fff; padding: .55rem 1rem; border-radius: 999px; }
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover { background: var(--color-neutral-dark); }
.primary-nav.is-open { display: flex; flex-direction: column; gap: .25rem; position: absolute; left: 0; right: 0; top: 100%; padding: 1rem 1.25rem 1.5rem; background: #fff; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-soft); }

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

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-family: var(--font-heading); letter-spacing: .01em; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); cursor: pointer; border: 1px solid transparent; text-decoration: none; }
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: #fff; box-shadow: 0 12px 28px -14px rgba(13,148,136,0.55); }
.btn-primary:hover { box-shadow: 0 20px 34px -16px rgba(13,148,136,0.7); }
.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 12px 28px -14px rgba(249,115,22,0.55); }
.btn-accent:hover { background: #ea580c; }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* === Hero — split === */
.hero { position: relative; overflow: hidden; padding-block: 3.5rem 3rem; background: linear-gradient(180deg, var(--color-neutral-light), #fff); }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 80%; background: radial-gradient(closest-side, rgba(249,115,22,0.14), transparent 70%); pointer-events: none; z-index: 0; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -15%; width: 60%; height: 80%; background: radial-gradient(closest-side, rgba(20,184,166,0.18), transparent 70%); pointer-events: none; z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; align-items: center; }
.hero-text h1 { margin-bottom: 1rem; }
.hero-sub { font-size: 1.15rem; color: var(--color-muted); max-width: 48ch; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-proof { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; border-top: 1px solid var(--color-border); padding-top: 1.25rem; }
.hero-proof strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-primary); }
.hero-proof span { font-size: .85rem; color: var(--color-muted); }
.hero-visual img { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }

@media (min-width: 900px) {
  .hero { padding-block: 5.5rem 4.5rem; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section-alt { background: var(--color-neutral-light); }
.section-head { text-align: left; margin-bottom: 2.5rem; max-width: 640px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; margin: 0; }
.lede { font-size: 1.1rem; color: var(--color-text); line-height: 1.75; }

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

/* === Cards === */
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-soft); transition: transform .2s var(--ease), box-shadow .2s var(--ease); display: block; }
.card h3 { color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); margin: 0; }
.card p + p { margin-top: .5rem; }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); text-decoration: none; }
.card-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(13,148,136,0.12), rgba(20,184,166,0.18)); color: var(--color-primary); margin-bottom: 1rem; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2rem 1.5rem; border-left: 4px solid var(--color-accent); background: var(--color-neutral-light); border-radius: var(--radius-md); }
.testimonial p { font-size: 1.15rem; line-height: 1.65; color: var(--color-neutral-dark); font-style: italic; }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-muted); font-size: .95rem; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding-block: 3.5rem; margin-block: 0; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band-detail { margin-top: 1rem; font-size: .95rem; color: rgba(255,255,255,0.85); }
.cta-inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 800px) { .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; } }

/* === Two col === */
.two-col { display: grid; gap: 2rem; align-items: center; }
.two-col-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); aspect-ratio: 4/3; object-fit: cover; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }

/* === Contact grid === */
.contact-grid { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: .45rem 0; border-bottom: 1px dashed var(--color-border); font-weight: 400; }
.hours th { color: var(--color-neutral-dark); font-weight: 600; width: 45%; }

/* === Contact form === */
.contact-form { display: grid; gap: 1rem; background: #fff; padding: 1.75rem; border-radius: var(--radius-md); border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; font-weight: 500; color: var(--color-neutral-dark); }
.contact-form input, .contact-form textarea { font: inherit; padding: .75rem .9rem; border: 1px solid var(--color-border); border-radius: 10px; background: #fff; color: var(--color-text); transition: border .2s var(--ease), box-shadow .2s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(13,148,136,0.15); outline: none; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: .6rem !important; font-weight: 400 !important; font-size: .88rem; color: var(--color-muted); }
.form-consent input { margin-top: .2rem; }
.contact-form .btn { justify-self: start; }

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

.link-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.link-list li { padding: .6rem 0; border-bottom: 1px solid var(--color-border); }
.link-list a { font-weight: 500; color: var(--color-primary); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(255,255,255,0.85); padding-block: 3rem 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-grid h3 { color: #fff; font-size: 1rem; margin-bottom: .75rem; }
.footer-nav { display: flex; flex-direction: column; gap: .35rem; }
.footer-nav a { color: rgba(255,255,255,0.75); }
.footer-nav a:hover { color: #fff; }
.footer-tagline { color: rgba(255,255,255,0.7); margin-top: .75rem; font-size: .95rem; }
.logo-footer img { height: 60px; filter: brightness(0) invert(1); }
.footer-contact address { font-style: normal; color: rgba(255,255,255,0.75); line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-legal { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 1rem; font-size: .88rem; }
.footer-legal a { color: rgba(255,255,255,0.65); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 2rem; padding-top: 1rem; font-size: .85rem; color: rgba(255,255,255,0.6); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.3fr; gap: 3rem; } }

/* === 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.4rem; border-radius: var(--radius-md); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5); max-width: 640px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 .9rem; font-size: .92rem; line-height: 1.55; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-banner__actions button { font: inherit; font-weight: 600; padding: .55rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: #fff; cursor: pointer; transition: background .2s var(--ease); }
.cookie-banner__actions button:hover { background: rgba(255,255,255,0.1); }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #ea580c; }
.cookie-banner__prefs { margin-top: 1rem; display: grid; gap: .5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.cookie-banner__prefs button { justify-self: start; margin-top: .5rem; padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--color-accent); background: var(--color-accent); color: #fff; cursor: pointer; font-weight: 600; }

/* === 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; } html { scroll-behavior: auto; } }
