/* === Tokens === */
:root {
  --color-primary: #15803D;
  --color-secondary: #22C55E;
  --color-accent: #0369A1;
  --color-neutral-dark: #14532D;
  --color-neutral-light: #F0FDF4;
  --color-text: #1a2e22;
  --color-muted: #4b6b57;
  --color-border: rgba(20, 83, 45, 0.14);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 20px 40px -24px rgba(20, 83, 45, 0.25);
}

/* === Reset === */
*, *::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: #ffffff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--color-neutral-dark); }

h1, h2, h3 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 0.6em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

/* === Layout — sidebar nav === */
.layout { min-height: 100vh; }

.sidebar {
  background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.sidebar .logo { display: inline-block; }
.sidebar .logo img { height: 72px; width: auto; }
.sidebar__nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
}
.sidebar__nav.is-open { display: flex; }
.sidebar__nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-neutral-dark);
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  border-radius: 6px;
}
.sidebar__nav a:hover { background: rgba(21, 128, 61, 0.08); }
.sidebar__nav a.is-active { color: var(--color-primary); border-left: 3px solid var(--color-primary); padding-left: 0.75rem; }
.sidebar__foot { display: none; font-size: 0.75rem; color: var(--color-muted); margin: 0; }

.nav-toggle {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--color-neutral-dark); }

.main { padding: 2rem 1.25rem 4rem; max-width: 1100px; margin: 0 auto; }

@media (min-width: 900px) {
  .layout { display: grid; grid-template-columns: 240px 1fr; align-items: start; }
  .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    gap: 2rem;
  }
  .sidebar .logo img { height: 96px; }
  .sidebar__nav {
    display: flex !important;
    width: 100%;
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    gap: 0.25rem;
  }
  .sidebar__foot { display: block; margin-top: auto; }
  .nav-toggle { display: none; }
  .main { padding: 3rem 3rem 5rem; max-width: 960px; }
}

/* === Hero === */
.hero { padding: 1rem 0 2.5rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem;
}
.hero h1 { max-width: 22ch; }
.lede { font-size: 1.15rem; color: var(--color-muted); max-width: 60ch; }
.hero__figure { margin: 2rem 0 0; }
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: var(--color-neutral-dark); color: var(--color-neutral-light); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #024e7d; color: #fff; }
.btn--ghost { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--ghost:hover { background: var(--color-primary); color: var(--color-neutral-light); }

/* === Sections === */
.section { padding: 3rem 0; border-top: 1px solid var(--color-border); }
.section:first-of-type { border-top: none; }
.section.narrow { max-width: 65ch; }
.section__head { margin-bottom: 2rem; }
.section__head h2 { margin-bottom: 0.35em; }
.section__more { margin-top: 2rem; }

/* === Grid === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 800px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* === Card === */
.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card__icon { color: var(--color-primary); margin-bottom: 0.25rem; }
.card h3 { margin: 0 0 0.35em; }
.card p { margin: 0; color: var(--color-muted); font-size: 0.98rem; }
.card-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--color-secondary);
}
.card-link h3 { color: var(--color-neutral-dark); }

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

/* === Quote === */
.quote-section { text-align: center; }
.quote {
  max-width: 62ch;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--color-neutral-dark);
  font-style: italic;
  padding: 0;
  border: 0;
}
.quote p { margin: 0 0 1rem; }
.quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 500;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  text-align: center;
  margin: 2.5rem 0;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(240, 253, 244, 0.9); max-width: 55ch; margin-left: auto; margin-right: auto; }
.cta-band__meta { font-size: 0.9rem; }
.cta-band .btn--accent { background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.cta-band .btn--accent:hover { background: #fff; }
.cta-band a { color: var(--color-neutral-light); }

/* === Article detail === */
.article {
  max-width: 68ch;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}
.article h1 { max-width: none; margin-bottom: 1rem; }
.article__sub { font-size: 1.2rem; color: var(--color-muted); margin-bottom: 1.5rem; }
.article__hero { margin: 2rem 0; }
.article__hero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}
.article p { font-size: 1.1rem; line-height: 1.75; margin-block: 1.25rem; }
.article__foot { margin-top: 3rem; border-top: 1px solid var(--color-border); padding-top: 1.5rem; }
.back-link { font-weight: 500; text-decoration: none; color: var(--color-primary); }
.back-link:hover { color: var(--color-neutral-dark); }

/* === Form === */
.form { display: flex; flex-direction: column; gap: 1rem; max-width: 60ch; }
.form__row { display: flex; flex-direction: column; gap: 0.35rem; }
.form label { font-weight: 500; font-size: 0.92rem; color: var(--color-neutral-dark); }
.form input, .form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  color: var(--color-text);
  width: 100%;
}
.form input:focus, .form 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.55rem;
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 400;
  line-height: 1.5;
}
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.footer {
  margin-top: 4rem;
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0 1.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  color: var(--color-muted);
  font-size: 0.92rem;
}
.footer .logo img { height: 60px; width: auto; margin-bottom: 0.75rem; }
.footer h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-neutral-dark); margin-bottom: 0.75rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer a { color: var(--color-muted); text-decoration: none; }
.footer a:hover { color: var(--color-primary); }
.footer address { font-style: normal; margin-bottom: 0.75rem; }
.footer__legal { margin-top: 0.75rem; font-size: 0.85rem; }
.footer__copy {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}
@media (min-width: 700px) {
  .footer { grid-template-columns: 1.2fr 1fr 1.4fr; }
}












:root { --brand-accent: hsl(85 72% 44%); --brand-ink: hsl(194 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(85 72% 44%); --brand-ink: hsl(194 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(85 72% 44%); --brand-ink: hsl(194 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(85 72% 44%); --brand-ink: hsl(194 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; } }
