:root {
  --color-primary: #0D9488;
  --color-secondary: #14B8A6;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --color-text: #0f2a29;
  --color-muted: #4a6663;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow-sm: 0 4px 14px -6px rgba(19,78,74,0.18);
  --shadow-md: 0 20px 40px -20px rgba(19,78,74,0.35);
}

/* === Reset === */
*, *::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: 17px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
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 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }

/* === Header === */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding-block: 1rem;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(19,78,74,0.15);
  border-radius: 10px;
  padding: 0.4rem;
  color: var(--color-neutral-dark);
  cursor: pointer;
}
.primary-nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 1.25rem;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 0.75rem;
  min-width: 200px;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.35rem 0;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .site-header { padding-block: 1.5rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 2rem;
  }
  .primary-nav a { color: #ffffff; text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
  .primary-nav a[aria-current="page"] { color: var(--color-neutral-light); border-bottom: 2px solid var(--color-accent); }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn--primary { background: var(--color-accent); color: #ffffff; }
.btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn--accent { background: var(--color-accent); color: #ffffff; }
.btn--accent:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); text-decoration: none; }

/* === Hero fullscreen === */
.hero--fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  padding-block: 8rem 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,78,74,0.55), rgba(19,78,74,0.75));
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__content h1 { color: #ffffff; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 56ch; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero--fullscreen .eyebrow { color: #ffd7b8; }

.hero--compact {
  background: linear-gradient(140deg, var(--color-neutral-dark), var(--color-primary));
  color: #ffffff;
  padding: 9rem 0 5rem;
}
.hero--compact h1 { color: #ffffff; }
.hero--compact .hero__sub { color: rgba(255,255,255,0.9); }

/* === Sections === */
.section { padding-block: 4rem; }
.section--narrow .container { max-width: 760px; }
.section--tint { background: var(--color-neutral-light); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-muted); }
.lede { font-size: 1.08rem; color: var(--color-text); line-height: 1.75; }

@media (min-width: 900px) {
  .section { padding-block: 6rem; }
}

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

.card {
  background: #ffffff;
  border: 1px solid rgba(19,78,74,0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-neutral-light);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.card p { color: var(--color-muted); margin-bottom: 0; }

/* === Quote === */
.quote-wrap { max-width: 760px; margin-inline: auto; text-align: center; }
.quote { margin: 0; padding: 2rem 1rem; }
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-style: italic;
  color: var(--color-neutral-dark);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.quote cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary), var(--color-neutral-dark));
  color: #ffffff;
  padding-block: 3.5rem;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.cta-band h2 { color: #ffffff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }
@media (min-width: 780px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-band__inner > div { max-width: 60%; }
}

/* === Figure === */
.figure { margin: 2rem 0; }
.figure--wide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* === FAQ === */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid rgba(19,78,74,0.12);
  padding: 1.25rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--color-accent);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0.75rem 0 0; color: var(--color-muted); }

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

/* === Form === */
.contact-form { max-width: 640px; margin-inline: auto; }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 0.4rem;
  color: var(--color-neutral-dark);
  font-size: 0.95rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(19,78,74,0.2);
  border-radius: 10px;
  font: inherit;
  color: inherit;
  background: #ffffff;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
  border-color: var(--color-secondary);
}
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 1rem 0 1.5rem;
  flex-wrap: wrap;
}
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(240,253,250,0.85);
  padding-block: 3.5rem 1.5rem;
  margin-top: 4rem;
}
.site-footer h4 {
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 780px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; }
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.logo--footer img { height: 72px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.legal-links { margin-top: 1.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.legal-links a { font-size: 0.85rem; opacity: 0.8; }
.site-footer__copy {
  border-top: 1px solid rgba(240,253,250,0.15);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* === 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-md);
  max-width: 640px;
  margin-inline: auto;
  font-size: 0.92rem;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner button {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(240,253,250,0.3);
  background: transparent;
  color: var(--color-neutral-light);
  font: inherit;
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  font-weight: 600;
}
.cookie-banner__prefs {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(240,253,250,0.2);
  padding-top: 1rem;
}
.cookie-banner__prefs label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs [data-cookie-save] {
  align-self: flex-start;
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-neutral-dark);
  font-weight: 600;
  margin-top: 0.5rem;
}
