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

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
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);
  font-weight: 600;
  color: var(--color-neutral-dark);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.eyebrow--light { color: var(--color-secondary); }
.lede { font-size: 1.15rem; color: var(--color-muted); margin-bottom: 1.5rem; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.25rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle__bar { width: 26px; height: 2px; background: var(--color-neutral-dark); display: block; }
.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.5rem 0;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
  }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.98rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); text-decoration: none; transform: translateY(-1px); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #024976; text-decoration: none; transform: translateY(-1px); }

/* === Hero fullscreen === */
.hero-fullscreen {
  position: relative;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-fullscreen--short { min-height: 60vh; }
.hero-fullscreen__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-fullscreen__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19, 78, 74, 0.55), rgba(15, 42, 42, 0.75));
  z-index: 1;
}
.hero-fullscreen__inner {
  position: relative; z-index: 2;
  padding: 5rem 1.25rem;
  max-width: 820px;
}
.hero-fullscreen h1 { color: #fff; margin-bottom: 1rem; }
.hero-sub {
  color: rgba(240, 253, 250, 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  max-width: 56ch;
  margin-bottom: 2rem;
}

/* === Sections === */
.section { padding: 4rem 0; }
.section--muted { background: var(--color-neutral-light); }
.section--narrow .container { max-width: 760px; }
.section-head { margin-bottom: 2.5rem; }
.section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section-figure { margin: 2.5rem 0 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.section-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* === Grid & cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2, .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); }
}

.card {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: block;
  color: inherit;
}
.card__icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-top: 0; }
.card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.card-link { text-decoration: none; }
.card-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
  text-decoration: none;
}

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

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem 0;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: rgba(240, 253, 250, 0.9); margin: 0; }
.cta-band__meta { font-size: 0.9rem; margin-top: 0.75rem !important; }
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* === Article === */
.article {
  max-width: 65ch;
  margin: 3rem auto 4rem;
  padding: 0 1.25rem;
}
.article__header { margin-bottom: 2rem; }
.article__sub { font-size: 1.2rem; color: var(--color-muted); margin-top: 0.75rem; }
.article__hero { margin: 2rem 0; border-radius: var(--radius); overflow: hidden; }
.article__hero img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.article p { font-size: 1.1rem; line-height: 1.75; margin-block: 1.5rem; }
.article__footer { margin-top: 3rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
.back-link { color: var(--color-primary); font-weight: 500; }

/* === Contact === */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; }
}
.contact-info h2 { margin-bottom: 1rem; }
.hours { list-style: none; padding: 0; margin: 0.5rem 0 0; border-top: 1px solid var(--color-border); }
.hours li {
  display: flex; justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { margin-top: 0; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-row label { font-size: 0.9rem; font-weight: 500; color: var(--color-neutral-dark); }
.form-row input, .form-row textarea {
  font: inherit;
  color: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}
.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;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  margin: 1rem 0 1.5rem;
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-neutral-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--color-primary); line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(240, 253, 250, 0.85);
  padding: 3.5rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 1rem; }
.site-footer a { color: rgba(240, 253, 250, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 0.3rem 0; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.footer-tagline { color: rgba(240, 253, 250, 0.75); font-family: var(--font-heading); font-style: italic; margin-top: 0.75rem; }
.logo--footer img { height: 64px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-legal { margin-top: 1rem; font-size: 0.85rem; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(240, 253, 250, 0.65);
}

/* === Thank-you === */
.section--hero-thanks { padding-top: 6rem; text-align: left; }

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