:root {
  --color-primary: #0F766E;
  --color-secondary: #14B8A6;
  --color-accent: #0369A1;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 4px 12px -6px rgba(19, 78, 74, 0.18);
  --shadow-md: 0 20px 40px -20px rgba(19, 78, 74, 0.25);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: #ffffff;
  line-height: 1.65;
  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;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container--narrow { max-width: 760px; }
.section { padding-block: 4rem; }
.section--alt { background: var(--color-neutral-light); }
.section--intro { text-align: left; }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section__sub { color: rgba(19, 78, 74, 0.75); font-size: 1.05rem; margin-bottom: 1.5rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(19, 78, 74, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin-inline: auto;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--color-neutral-dark); }
.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(19, 78, 74, 0.08);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.35rem 0;
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    padding: 0;
    border: 0;
    gap: 1.75rem;
  }
}

/* === Hero (fullscreen) === */
.hero--fullscreen {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-neutral-light);
  padding: 4rem 1.5rem;
}
.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(15, 118, 110, 0.55), rgba(19, 78, 74, 0.75));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
}
.hero__content .eyebrow { color: #99F6E4; }
.hero__content h1 { color: #ffffff; margin-bottom: 1.25rem; }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(240, 253, 250, 0.92);
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.hero--simple {
  background: linear-gradient(180deg, var(--color-neutral-light), #ffffff);
  padding: 6rem 1.5rem 3rem;
  text-align: center;
}
.hero--simple .hero__content { color: var(--color-neutral-dark); max-width: 720px; margin-inline: auto; }
.hero--simple h1 { color: var(--color-neutral-dark); }
.hero--simple .hero__sub { color: rgba(19, 78, 74, 0.75); }

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

/* === Grid / cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #ffffff;
  border: 1px solid rgba(19, 78, 74, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: block;
}
.card h3 { margin-top: 0.75rem; }
.card p { margin-bottom: 0; color: rgba(19, 78, 74, 0.85); }
.icon { color: var(--color-primary); }
a.card-link { color: inherit; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease; }
a.card-link:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-secondary); }
a.card-link h3 { color: var(--color-primary); }

/* === Quote === */
.section--quote { background: var(--color-neutral-light); }
blockquote {
  margin: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
}
blockquote p { margin-bottom: 1.25rem; }
blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  color: rgba(19, 78, 74, 0.7);
  letter-spacing: 0.02em;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #ffffff;
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: #ffffff; }
.cta-band p { color: rgba(240, 253, 250, 0.9); max-width: 56ch; margin: 0 auto 1.5rem; }
.cta-band__line { font-size: 0.95rem; opacity: 0.85; margin-bottom: 1.75rem; }

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

/* === Contact grid === */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.contact-details dl { display: grid; gap: 0.35rem 1rem; grid-template-columns: max-content 1fr; margin-bottom: 2rem; }
.contact-details dt { font-weight: 600; color: var(--color-neutral-dark); }
.contact-details dd { margin: 0; color: rgba(19, 78, 74, 0.85); }
.hours { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours th, .hours td { text-align: left; padding: 0.5rem 0.75rem; border-bottom: 1px solid rgba(19, 78, 74, 0.1); }
.hours th { font-weight: 500; color: var(--color-neutral-dark); }

/* === Form === */
.contact-form {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form h2 { margin-bottom: 0.25rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 500; font-size: 0.95rem; }
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(19, 78, 74, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-neutral-dark);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
  border-color: var(--color-secondary);
}
.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(19, 78, 74, 0.85);
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(240, 253, 250, 0.85); padding: 3rem 0 0; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; padding-block: 1rem 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }
.site-footer h4 { color: #ffffff; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1rem; }
.site-footer a { color: rgba(240, 253, 250, 0.85); }
.site-footer a:hover { color: #ffffff; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__tagline { font-size: 0.95rem; opacity: 0.85; margin-top: 0.5rem; }
.logo--footer img { height: 60px; filter: brightness(0) invert(1); }
.footer__legal { margin-top: 1rem; font-size: 0.9rem; }
.footer__copy { border-top: 1px solid rgba(240, 253, 250, 0.12); padding: 1.25rem 0; font-size: 0.85rem; opacity: 0.75; text-align: center; }
.footer__copy p { margin: 0; }

/* === 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 24px 60px -20px rgba(0,0,0,0.5);
  max-width: 640px;
  margin-inline: auto;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.85rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font: inherit;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  background: rgba(240, 253, 250, 0.12);
  color: var(--color-neutral-light);
}
.cookie-banner button[data-cookie-accept] { background: var(--color-accent); color: #ffffff; }
.cookie-banner button:hover { filter: brightness(1.08); }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }

@media (min-width: 600px) { .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; } }
