:root {
  color-scheme: light;
  --ink: #101310;
  --paper: #fbfaf5;
  --surface: #ffffff;
  --muted: #5b645e;
  --line: rgba(16, 19, 16, .14);
  --line-strong: rgba(16, 19, 16, .28);
  --green: #0d7b45;
  --green-deep: #07542f;
  --gold: #a77d30;
  --max: 1180px;
  --measure: 760px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16,19,16,.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(16,19,16,.03) 1px, transparent 1px) 0 0 / 96px 96px,
    radial-gradient(circle at 80% 0%, rgba(13,123,69,.11), transparent 32rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; overflow-wrap: anywhere; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: .5rem;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  width: min(calc(100% - 24px), var(--max));
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 60px rgba(16,19,16,.11);
  backdrop-filter: blur(18px);
}
.brand {
  width: clamp(240px, 23vw, 360px);
  height: 74px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  font-size: 13px;
  color: #2c332e;
}
.site-nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(13,123,69,.08);
}
.language-menu {
  position: relative;
  justify-self: end;
  font-size: 12px;
}
.language-menu summary {
  width: 48px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary:after {
  content: "v";
  margin-left: 5px;
  font-size: 9px;
  color: var(--muted);
}
.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(16,19,16,.16);
}
.language-options a {
  min-height: 42px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 6px;
}
.language-options a:hover,
.language-options a[aria-current="true"] {
  background: rgba(13,123,69,.08);
}
.language-options span {
  font-weight: 850;
  color: var(--green-deep);
}
.language-options small {
  color: var(--muted);
  font-size: 12px;
}
.header-cta {
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}
.nav-toggle { display: none; }

.hero,
.subhero,
.prospectus-band,
.section,
.pitch-panels,
.ledger,
.final-cta,
.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin-left: auto;
  margin-right: auto;
}
.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(52px, 8vh, 96px) 0 72px;
}
.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: 76px 0 56px;
}
.hero-copy,
.subhero > div { min-width: 0; }
.eyebrow,
.section-heading span,
.final-cta span {
  display: block;
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
h1 {
  max-width: 860px;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 88px);
  line-height: .98;
  font-weight: 650;
}
.subhero h1 {
  font-size: clamp(38px, 5.6vw, 70px);
}
h2 {
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 650;
}
h3 {
  font-size: 18px;
  line-height: 1.25;
}
.hero-lead,
.subhero p {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
}
.button-primary { background: var(--ink); color: #fff; }
.button-secondary { border: 1px solid var(--line-strong); background: rgba(255,255,255,.55); }
.trust-line {
  margin-top: 22px;
  max-width: 620px;
  color: #3f4741;
  font-size: 15px;
}

.media-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: clamp(12px, 1.5vw, 18px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 28px 90px rgba(16,19,16,.13);
}
.media-figure img {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
  border-radius: 6px;
  background: #eef2ea;
}
.media-figure figcaption {
  display: grid;
  gap: 6px;
  padding: 0 4px 4px;
}
.media-figure figcaption strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
}
.media-figure figcaption span {
  color: #4f5a52;
  font-size: 15px;
  line-height: 1.45;
}
.media-section .media-figure img {
  height: clamp(300px, 36vw, 460px);
}

.prospectus-band {
  display: grid;
  grid-template-columns: 260px minmax(0, var(--measure));
  gap: clamp(24px, 5vw, 72px);
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-kicker {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.long-copy {
  display: grid;
  gap: 20px;
  font-size: 19px;
}
.section {
  padding: 76px 0;
}
.section-heading {
  margin-bottom: 30px;
}
.prospect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}
.prospect-card {
  min-height: 260px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}
.prospect-card span,
.ledger-row > span,
.pitch-panels span {
  color: var(--gold);
  font-weight: 850;
  font-size: 13px;
}
.prospect-card p,
.ledger-row p {
  color: var(--muted);
}
.pitch-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.pitch-panels article {
  min-height: 180px;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.pitch-panels article:last-child { border-right: 0; }
.pitch-panels p {
  margin-top: 12px;
  font-size: 17px;
}
.ledger {
  display: grid;
  border-top: 1px solid var(--line-strong);
}
.ledger-row {
  display: grid;
  grid-template-columns: 92px minmax(0, var(--measure));
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.ledger-row p { margin-top: 8px; font-size: 18px; }
.final-cta {
  margin-top: 64px;
  margin-bottom: 64px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
}
.final-cta h2 { font-size: clamp(28px, 3vw, 42px); }
.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.site-footer div {
  max-width: 520px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.site-footer img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.site-footer a { color: var(--ink); font-weight: 750; }

.cookie-panel {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  width: min(calc(100% - 32px), 820px);
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 60px rgba(16,19,16,.18);
}
.cookie-panel[hidden] { display: none; }
.cookie-panel p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-actions a,
.cookie-actions button {
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}
.cookie-actions a { border: 1px solid var(--line); }
.cookie-actions button {
  border: 0;
  background: var(--green);
  color: #fff;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    align-items: start;
  }
  .brand { width: 250px; height: 68px; }
  .nav-toggle {
    justify-self: end;
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle span,
  .nav-toggle span:before,
  .nav-toggle span:after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }
  .nav-toggle span:before { transform: translateY(-6px); }
  .nav-toggle span:after { transform: translateY(4px); }
  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: flex-start; }
  .language-menu {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 52px;
  }
  .header-cta { display: none; }
  .hero,
  .subhero,
  .prospectus-band {
    grid-template-columns: 1fr;
  }
  .media-figure img { height: 360px; }
  .pitch-panels { grid-template-columns: repeat(2, 1fr); }
  .pitch-panels article:nth-child(2) { border-right: 0; }
}

@media (max-width: 620px) {
  .hero,
  .subhero { padding-top: 42px; }
  h1 { font-size: 42px; }
  .brand { width: min(218px, calc(100vw - 150px)); height: 62px; }
  .language-menu { margin-right: 50px; }
  .language-options { right: -48px; min-width: 176px; }
  .media-figure { padding: 10px; }
  .media-figure img { height: 245px; }
  .media-figure figcaption strong { font-size: 22px; }
  .media-figure figcaption span { font-size: 14px; }
  .prospect-grid,
  .pitch-panels { grid-template-columns: 1fr; }
  .pitch-panels article { border-right: 0; border-bottom: 1px solid var(--line); }
  .ledger-row { grid-template-columns: 1fr; gap: 10px; }
  .final-cta,
  .site-footer,
  .site-footer div,
  .cookie-panel,
  .cookie-actions { display: grid; }
  .cookie-panel { grid-template-columns: 1fr; }
}
