/* === Tokens === */
:root {
  --color-primary: #059669;
  --color-secondary: #10B981;
  --color-accent: #F97316;
  --color-neutral-dark: #064E3B;
  --color-neutral-light: #ECFDF5;
  --color-bg: #ffffff;
  --color-text: #0f2a20;
  --color-muted: #4b6a5f;
  --color-border: rgba(6, 78, 59, 0.12);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(6, 78, 59, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(6, 78, 59, 0.18);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 .5rem; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-top: 0; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.tc { text-align: center; }
.eyebrow { text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.14em; font-weight: 600; color: var(--color-primary); margin: 0 0 .75rem; }
.lede { font-size: 1.15rem; color: var(--color-muted); max-width: 48ch; }
.sub { color: var(--color-muted); font-size: 1.05rem; max-width: 60ch; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .75rem; gap: 1rem; }
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; display: block; }
.primary-nav { display: none; gap: 1.5rem; align-items: center; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: 0.98rem; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.nav-toggle { background: transparent; border: 0; padding: .5rem; display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); }
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem 1.25rem; border-bottom: 1px solid var(--color-border); }

/* === Buttons === */
.btn { display: inline-block; padding: .85rem 1.4rem; border-radius: 8px; font-weight: 600; font-size: 1rem; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-accent { background: var(--color-accent); color: #fff; }

/* === Hero split === */
.hero { padding-block: 3rem; background: linear-gradient(180deg, var(--color-neutral-light), #ffffff); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-media img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-md); width: 100%; }

/* === Sections === */
.section { padding-block: 3.5rem; }
.section-alt { background: var(--color-neutral-light); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.25rem; }
.section-head .sub { margin-inline: auto; }
.figure { margin: 2rem 0 0; }
.figure img { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; }

/* === Grid cards === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); display: block; }
.card h3 { margin-top: .75rem; color: var(--color-neutral-dark); }
.card p { color: var(--color-muted); margin-bottom: 0; font-size: 0.98rem; }
.card .icon { width: 28px; height: 28px; color: var(--color-primary); }
a.card-link { color: inherit; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
a.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
a.card-link .read-more { display: inline-block; margin-top: 1rem; color: var(--color-primary); font-weight: 600; }

/* === Quote === */
.quote { border-left: 3px solid var(--color-accent); padding: .25rem 0 .25rem 1.25rem; margin: 0; font-size: 1.1rem; color: var(--color-neutral-dark); }
.quote p { font-style: italic; margin-bottom: .75rem; }
.quote cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

/* === CTA band === */
.cta-band { background: var(--color-primary); color: #fff; padding-block: 3rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 60ch; margin: 0 auto 1.5rem; }

/* === Article detail === */
.article-detail { max-width: 65ch; margin-inline: auto; padding: 2.5rem 1.25rem; }
.article-detail h1 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); line-height: 1.18; margin-bottom: 1.25rem; }
.article-detail .article-sub { font-size: 1.15rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.article-hero { margin: 2rem 0; }
.article-hero img { aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; }
.article-detail p { font-size: 1.08rem; line-height: 1.75; margin-block: 1.25rem; }
.article-foot { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.back-link { color: var(--color-primary); font-weight: 600; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; background: #fff; padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--color-border); }
.contact-form label { display: flex; flex-direction: column; font-weight: 600; font-size: 0.95rem; color: var(--color-neutral-dark); gap: .35rem; }
.contact-form input, .contact-form textarea { font: inherit; padding: .7rem .85rem; border: 1px solid var(--color-border); border-radius: 8px; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: .6rem !important; font-weight: 400 !important; font-size: 0.9rem !important; color: var(--color-muted) !important; }
.form-consent input { margin-top: .25rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: #cfe9dd; padding-block: 3rem 1.5rem; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: .75rem; }
.site-footer a { color: #cfe9dd; }
.site-footer a:hover { color: #fff; }
.footer-nav { display: flex; flex-direction: column; gap: .4rem; }
.footer-contact { font-style: normal; }
.footer-contact p { margin: 0 0 .5rem; }
.legal-links { margin-top: 1rem; font-size: 0.9rem; }
.tagline { color: #a7ccbc; margin-top: .5rem; }
.logo-footer img { height: 56px; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 2rem; padding-top: 1.25rem; font-size: 0.88rem; color: #a7ccbc; }










/* === Responsive === */
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
  .hero { padding-block: 5rem; }
  .section { padding-block: 5rem; }
}
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .primary-nav { display: flex; position: static; padding: 0; background: transparent; border: 0; flex-direction: row; }
  .nav-toggle { display: none; }
}

:root { --brand-accent: hsl(57 72% 44%); --brand-ink: hsl(128 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(57 72% 44%); --brand-ink: hsl(128 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(57 72% 44%); --brand-ink: hsl(128 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(57 72% 44%); --brand-ink: hsl(128 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.reveal, .fade-in, .animate-in, [data-reveal], [data-animate], .scroll-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }
