:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  --max-width: 1200px;
}

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  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 { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 1rem; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

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

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; flex-direction: row; gap: 1.5rem; position: static; padding: 0; background: transparent; border: none; }
}

/* === Hero (split) === */
.hero { padding: 2.5rem 0 3rem; background: var(--color-neutral-light); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.hero-text .eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: var(--color-primary); font-weight: 700; margin-bottom: 0.5rem; }
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text .lede { font-size: 1.15rem; color: rgba(6,78,59,0.85); max-width: 48ch; margin-bottom: 1.75rem; }
.hero-media img { aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; width: 100%; }

@media (min-width: 768px) {
  .hero { padding: 4.5rem 0 5.5rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-grid--reverse .hero-text { order: 2; }
  .hero-grid--reverse .hero-media { order: 1; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: #ffffff; }
.btn-primary:hover { background: var(--color-neutral-dark); }
.btn-accent { background: var(--color-accent); color: #ffffff; }
.btn-accent:hover { background: #ea580c; }

/* === Sections === */
.section { padding: 4rem 0; }
.section-alt { background: var(--color-neutral-light); }
.section-narrow .container { max-width: 720px; }
.section-narrow p { font-size: 1.075rem; }
.section-title { text-align: center; margin-bottom: 2.5rem; }

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

/* === Cards === */
.card {
  background: #ffffff;
  border: 1px solid rgba(6,78,59,0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -15px rgba(6,78,59,0.2); }
.card .icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; color: rgba(6,78,59,0.85); font-size: 0.98rem; }

/* === Testimonial === */
.testimonial { background: var(--color-neutral-light); }
.testimonial blockquote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.testimonial blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--color-neutral-dark);
  margin-bottom: 1.25rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #ffffff; padding: 3.5rem 0; text-align: center; }
.cta-band h2 { color: #ffffff; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; }
.cta-inner { max-width: 720px; }

/* === Contact card / about === */
.contact-card { max-width: 720px; padding: 2.25rem; background: var(--color-neutral-light); border-radius: 12px; }
.contact-card p { margin: 0.35rem 0; }

/* === Form === */
.form-wrap { max-width: 640px; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--color-neutral-dark); }
.field input, .field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(6,78,59,0.2);
  border-radius: 6px;
  background: #ffffff;
  color: var(--color-neutral-dark);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: rgba(6,78,59,0.85); }
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 3rem 0 1.5rem; margin-top: 3rem; }
.site-footer p { color: rgba(236, 253, 245, 0.85); margin: 0.35rem 0; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; color: #ffffff; margin-bottom: 0.25rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { color: var(--color-neutral-light); }
.footer-nav a:hover { color: var(--color-secondary); }
.legal-links { margin-top: 0.75rem; font-size: 0.9rem; }
.legal-links a { color: var(--color-neutral-light); }
.copyright { text-align: center; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(236,253,245,0.15); font-size: 0.85rem; color: rgba(236,253,245,0.7); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; 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;
  border-radius: 12px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.4);
  max-width: 520px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.9rem; font-size: 0.9rem; color: rgba(236,253,245,0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font: inherit;
  font-size: 0.85rem;
  padding: 0.5rem 0.95rem;
  border-radius: 6px;
  border: 1px solid rgba(236,253,245,0.25);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner [data-cookie-accept] { background: var(--color-accent); color: #ffffff; border-color: var(--color-accent); font-weight: 700; }
.cookie-banner__prefs { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs [data-cookie-save] { align-self: flex-start; margin-top: 0.5rem; background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
