:root {
  --bg: #efe6d6;
  --paper: rgba(255, 251, 245, 0.94);
  --paper-strong: #fffdf8;
  --ink: #18231f;
  --muted: #49564d;
  --line: rgba(24, 35, 31, 0.1);
  --forest: #234338;
  --forest-deep: #183228;
  --forest-soft: #d8e5dd;
  --clay: #b85d2e;
  --clay-soft: rgba(184, 93, 46, 0.12);
  --sand: #dcc4a0;
  --shadow: 0 22px 50px rgba(55, 40, 20, 0.12);
  --radius: 20px;
  --max: 1140px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(220, 196, 160, 0.55), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(35, 67, 56, 0.1), transparent 24%),
    linear-gradient(180deg, #f6efe5 0%, #efe6d6 42%, #ebe1cf 100%);
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
.container { width: min(100%, var(--max)); margin: 0 auto; padding: 0 20px; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 239, 229, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 76px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 15px;
  background: linear-gradient(135deg, var(--forest), #3d6a58);
  color: #fff; box-shadow: var(--shadow);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
}
.nav a:hover, .nav a.active {
  background: rgba(35, 67, 56, 0.08);
  color: var(--ink);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d2723c, var(--clay));
  color: #fff8f1;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(184, 93, 46, 0.24);
  white-space: nowrap;
}
main { padding: 32px 0 56px; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(35, 67, 56, 0.98), rgba(24, 50, 40, 0.96)), #234338;
  color: #f9f4eb;
  box-shadow: var(--shadow);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.42), transparent 55%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 196, 160, 0.3), transparent 70%);
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #ebdfcf;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}
h1 { font-size: clamp(2.3rem, 5vw, 4.3rem); max-width: 13ch; }
h2 { font-size: clamp(1.45rem, 2vw, 2rem); }
h3 { font-size: 1.16rem; }
.lead, .hero p {
  max-width: 64ch;
  color: rgba(249, 244, 235, 0.94);
  font-size: 1.08rem;
}
.hero-grid, .grid-2, .grid-3, .split-banner {
  display: grid;
  gap: 18px;
}
.hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr); align-items: start; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split-banner { grid-template-columns: 1.08fr 0.92fr; }
.card, .panel {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.hero .panel {
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(241, 234, 220, 0.94));
  border-color: rgba(220, 196, 160, 0.38);
  color: var(--ink);
}
.hero .panel h2,
.hero .panel p,
.hero .panel li,
.hero .panel strong {
  color: var(--ink);
}
.hero .panel .kpi {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,241,230,0.98));
  border-color: rgba(35, 67, 56, 0.14);
}
.muted { color: var(--muted); }
.link-list .muted,
.path-list .muted,
.card .muted,
.faq-item .muted {
  color: #465249;
  font-weight: 500;
}
.notice {
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.22);
  color: rgba(249, 244, 235, 0.92);
}
.cta-row, .footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 18px; border-radius: 16px;
  border: 1px solid transparent; font-weight: 700;
}
.btn.primary {
  background: linear-gradient(180deg, #d2723c, var(--clay));
  color: #fff8f1;
  box-shadow: 0 14px 30px rgba(184, 93, 46, 0.28);
}
.btn.secondary {
  background: rgba(255,255,255,0.1);
  color: #fff8f1;
  border-color: rgba(255,255,255,0.14);
}
.btn.light {
  background: var(--paper-strong);
  border-color: var(--line);
  color: var(--ink);
}
.stack { display: flex; flex-direction: column; gap: 12px; }
.bullets { margin: 0; padding-left: 18px; }
.bullets li { margin: 8px 0; font-weight: 500; color: var(--ink); }
.kpi, .link-list a, .path-list a, .faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,251,245,1));
}
.kpi { padding: 16px; }
.kpi strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.65rem;
  font-family: Georgia, "Times New Roman", serif;
}
.path-list a, .link-list a {
  display: block;
  padding: 17px 18px;
}
.link-list a strong,
.path-list a strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
  color: var(--forest-deep);
}
.link-list a:hover, .path-list a:hover {
  border-color: rgba(35, 67, 56, 0.28);
  background: #fffef9;
}
.callout {
  padding: 18px;
  border-radius: 18px;
  background: var(--clay-soft);
  border: 1px solid rgba(184, 93, 46, 0.16);
}
.section-accent {
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,248,240,0.92));
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item { padding: 18px; }
.faq-item h3 { margin-bottom: 8px; }
.geo-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(35, 67, 56, 0.08), rgba(35, 67, 56, 0.04));
  border: 1px solid rgba(35, 67, 56, 0.12);
}
.site-footer { border-top: 1px solid var(--line); color: var(--muted); }
@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 12px 0;
    min-height: auto;
  }
  .nav { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .hero-grid, .grid-2, .grid-3, .split-banner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .footer-inner {
    min-height: auto;
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero, .card, .panel { padding: 20px; }
  .cta-row .btn, .header-cta { width: 100%; }
  .nav { width: 100%; }
  .nav a { padding: 8px 12px; }
}
