:root {
  --color-primary: #0D9488;
  --color-secondary: #14B8A6;
  --color-accent: #F97316;
  --color-neutral-dark: #134E4A;
  --color-neutral-light: #F0FDFA;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --maxw: 1160px;
}

/* === 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.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 1rem; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }

/* === Header === */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(19, 78, 74, 0.08);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.75rem;
}
.logo img { height: 72px; width: auto; }
.footer-logo img { height: 64px; }
.primary-nav { display: none; gap: 1.75rem; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  font-size: 0.95rem;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-toggle {
  background: none; border: 1px solid rgba(19, 78, 74, 0.15);
  border-radius: 8px; padding: 0.5rem;
  color: var(--color-neutral-dark); cursor: pointer;
}
.primary-nav.is-open {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(19, 78, 74, 0.08);
  gap: 1rem;
}

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .footer-logo img { height: 80px; }
  .primary-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-neutral-dark); text-decoration: none; }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #ea6a0e; text-decoration: none; }

/* === Hero split === */
.hero { padding-block: 3rem; background: var(--color-neutral-light); }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-copy .lede { font-size: 1.1rem; color: #385552; max-width: 48ch; margin-bottom: 1.5rem; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 50px -25px rgba(19, 78, 74, 0.35);
}
@media (min-width: 768px) {
  .hero { padding-block: 5rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section-narrow p { font-size: 1.05rem; }
.section-alt { background: var(--color-neutral-light); }
.section-title { text-align: center; margin-bottom: 2.5rem; }

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

.card {
  background: #fff;
  border: 1px solid rgba(19, 78, 74, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card h3 { margin-bottom: 0.5rem; color: var(--color-neutral-dark); }
.card p { color: #385552; font-size: 0.98rem; margin: 0; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--color-neutral-light); color: var(--color-primary);
  margin-bottom: 1rem;
}
a.card-link { display: block; color: inherit; }
a.card-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -20px rgba(19, 78, 74, 0.35);
}
a.card-link h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); }
.testimonial { margin: 0; text-align: center; }
.testimonial p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding-block: 3.5rem;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; }

/* === Contact band === */
.contact-band { padding-block: 3rem; text-align: center; }
.contact-band h2 { margin-bottom: 1rem; }
.contact-band p { color: #385552; margin-bottom: 1.5rem; }

/* === Article detail === */
.article-detail {
  max-width: 65ch;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}
.article-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.article-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.article-sub {
  font-size: 1.2rem;
  color: #385552;
  line-height: 1.5;
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-block: 2rem;
  border-radius: 8px;
}
.article-detail h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.article-detail p {
  font-size: 1.075rem;
  line-height: 1.75;
  margin-block: 1.25rem;
  color: #1f3a37;
}
.article-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(19, 78, 74, 0.1); }
.back-link { color: var(--color-primary); font-weight: 600; }

/* === Forms === */
.contact-form { display: block; margin-top: 1.5rem; }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-weight: 600; margin-bottom: 0.4rem;
  color: var(--color-neutral-dark); font-size: 0.95rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(19, 78, 74, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.form-consent {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: #385552;
  margin-block: 1rem 1.5rem;
  line-height: 1.5;
  flex-wrap: wrap;
}
.form-consent input { margin-top: 0.2rem; flex: 0 0 auto; }

/* === Eyebrow reused === */
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.8rem; color: var(--color-primary);
  font-weight: 600; margin-bottom: 0.75rem;
}
.thank-you .lede { font-size: 1.15rem; color: #385552; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(240, 253, 250, 0.85);
  padding-block: 3rem 1.5rem;
  margin-top: 3rem;
}
.site-footer h3 {
  color: var(--color-neutral-light);
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.site-footer a { color: var(--color-neutral-light); }
.site-footer p, .site-footer address { color: rgba(240, 253, 250, 0.75); font-style: normal; }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 3rem; }
}
.footer-logo img { filter: brightness(0) invert(1); opacity: 0.95; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.4rem; }
.legal-links { margin-top: 1rem; }
.legal-links li { font-size: 0.9rem; }
.copyright {
  border-top: 1px solid rgba(240, 253, 250, 0.12);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(240, 253, 250, 0.6);
}

/* === 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: 12px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.4);
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  font-size: 0.92rem;
}
.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 {
  background: transparent;
  color: var(--color-neutral-light);
  border: 1px solid rgba(240,253,250,0.3);
  padding: 0.55rem 1rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240,253,250,0.15);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
