:root {
  --green-950: #071910;
  --green-900: #0A2E20;
  --green-800: #0F4A34;
  --green-700: #166B4A;
  --green-100: #E8F2ED;
  --gold: #F7BA10;
  --gold-deep: #D9A00C;
  --white: #FFFFFF;
  --off: #F7F9F8;
  --ink: #122018;
  --muted: #5A6B62;
  --line: rgba(15, 74, 52, 0.12);
  --serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --sans: "Outfit", "Manrope", ui-sans-serif, system-ui, sans-serif;
  --max: 800px;
  --max-wide: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--green-950);
  padding: 10px 14px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
  outline: none;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--green-900);
}

.wrap {
  width: min(var(--max-wide), calc(100% - 48px));
  margin-inline: auto;
}
.wrap-narrow {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0;
  background: rgba(10, 46, 32, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo-word { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.logo-word .logo-name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--white);
  font-weight: 500;
}
.logo-word .logo-sub {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a:not(.btn) {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.88);
  padding: 8px 12px;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn)[aria-current="page"] {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--green-950);
  box-shadow: 0 10px 28px rgba(247, 186, 16, 0.28);
}
.btn-gold:hover { background: #ffc933; }
.btn-line {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-line:hover { border-color: var(--white); }
.btn-line-dark {
  background: transparent;
  color: var(--green-800);
  border: 1px solid var(--line);
}
.btn-line-dark:hover {
  border-color: var(--green-800);
  background: var(--off);
}
.nav-cta {
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 11px 18px;
  background: #C8E6D4;
  color: var(--green-900);
  box-shadow: 0 8px 22px rgba(15, 74, 52, 0.18);
}
.nav-cta:hover { background: #D8F0E2; }
.nav-links .mobile-only { display: none; }
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
}

.page-hero {
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(247,186,16,0.14), transparent 55%),
    linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 55%, #0c3a28 100%);
  color: var(--white);
  padding: 72px 0 64px;
}
.page-hero .crumb {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 18px;
}
.page-hero .crumb a { color: var(--gold); }
.page-hero .section-label {
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 48px);
  max-width: 18ch;
  margin-bottom: 18px;
}
.page-hero .lede {
  max-width: 42ch;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 0 0 28px;
}
.page-hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 12px;
}
.prose {
  padding: 64px 0 40px;
}
.prose h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 40px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 22px;
  margin: 28px 0 10px;
}
.prose p { margin: 0 0 16px; color: var(--ink); }
.prose .muted { color: var(--muted); }
.prose ul, .prose ol {
  margin: 0 0 20px;
  padding-left: 1.2em;
  color: var(--ink);
}
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--green-900); }
.answer-box {
  background: var(--off);
  border-left: 3px solid var(--gold);
  padding: 20px 22px;
  margin: 0 0 28px;
}
.answer-box p { margin: 0; font-size: 18px; line-height: 1.55; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 22px 22px 24px;
}
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card a { color: var(--green-800); font-weight: 600; }

.faq-list { margin: 24px 0 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
.faq-item p { margin: 0; color: var(--muted); }

.cta-band {
  background: var(--green-900);
  color: var(--white);
  padding: 64px 0;
  margin-top: 24px;
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 42ch; margin: 0 0 24px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }

.related {
  padding: 48px 0 72px;
  background: var(--off);
}
.related h2 { font-size: 28px; margin-bottom: 18px; }

footer {
  background: var(--green-950);
  color: rgba(255,255,255,0.65);
  padding: 28px 0;
  font-size: 14px;
}
footer a { color: rgba(255,255,255,0.85); }
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.lang-switch {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
}
.lang-switch a[aria-current="page"] {
  color: var(--green-950);
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: grid; place-items: center; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--green-950);
    padding: 100px 32px 40px;
    gap: 12px;
    z-index: 50;
    align-items: stretch;
  }
  .nav-links.open a:not(.btn) {
    font-size: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .nav-links.open .mobile-only { display: inline-flex; align-self: flex-start; margin-top: 12px; }
  .card-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 0 48px; }
  .wrap, .wrap-narrow { width: min(var(--max-wide), calc(100% - 40px)); }
}

.site-header .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 4px;
  border: 1px solid rgba(255,255,255,0.28);
  padding: 2px;
  margin-bottom: 0;
}
.site-header .lang-switch a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 0;
  padding: 7px 9px;
  background: transparent;
}
.site-header .lang-switch a[aria-current="page"] {
  background: var(--gold);
  color: var(--green-950);
  border: 0;
}
.logo picture, .logo img { height: 44px; width: auto; display: block; }
