:root {
  color-scheme: light;
  --ink: #17211e;
  --muted: #566360;
  --paper: #ffffff;
  --paper-soft: #f5f8f6;
  --line: #dce5e0;
  --green-900: #062a23;
  --green-800: #0b2f27;
  --green-700: #154b3e;
  --green-100: #dff0e9;
  --amber: #c47b14;
  --amber-soft: #fff6e5;
  --focus: #0b6b58;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(6, 42, 35, 0.09);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green-700);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 5px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.container.narrow {
  width: min(820px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--green-800);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 229, 224, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
  font-weight: 750;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green-800);
  color: #fff;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--green-800);
}

.site-nav a[aria-current="page"] {
  color: var(--green-800);
}

.nav-contact {
  padding: 10px 16px;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  color: var(--green-800) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 11vw, 128px) 0;
  background:
    radial-gradient(circle at 82% 15%, rgba(21, 75, 62, 0.12), transparent 28%),
    radial-gradient(circle at 10% 85%, rgba(196, 123, 20, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.hero h1 {
  max-width: 920px;
  margin: 18px 0;
  font-size: clamp(2.28rem, 6vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--green-900);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 7px 13px;
  border: 1px solid #c9d9d0;
  border-radius: 999px;
  background: #fff;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lede {
  max-width: 760px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.3vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 23px;
  border-radius: 999px;
  background: var(--green-800);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(11, 47, 39, 0.16);
}

.button:hover {
  background: var(--green-700);
}

.button.secondary {
  background: transparent;
  border: 1px solid #b9cbc1;
  color: var(--green-800) !important;
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--green-700);
  background: #fff;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chip-list li {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 650;
}

.section {
  padding: clamp(58px, 8vw, 92px) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: clamp(1.62rem, 3.8vw, 2.42rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.section-intro {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: 0 1px 2px rgba(6, 42, 35, 0.03);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--green-800);
  font-size: 1.05rem;
  line-height: 1.35;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.card.muted {
  background: #fff;
  border-style: dashed;
}

.status-section {
  background: var(--amber-soft);
}

.status-section h2 {
  color: #6d4407;
}

.status-section p,
.status-section li {
  color: #61421f;
}

.plain-list {
  margin: 22px 0 0;
  padding-left: 22px;
}

.plain-list li + li {
  margin-top: 10px;
}

.contact-panel {
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid #c9d9d0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(21, 75, 62, 0.12), transparent 25%),
    var(--green-800);
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel p {
  color: #fff;
}

.contact-panel p {
  max-width: 720px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f7faf8;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-inner a {
  color: var(--green-700);
  text-decoration: none;
}

.footer-inner a:hover {
  text-decoration: underline;
}

.legal-main {
  padding: clamp(56px, 8vw, 90px) 0 80px;
}

.legal-main h1 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.legal-meta {
  margin: 0 0 34px;
  color: var(--muted);
}

.legal-content {
  width: min(780px, 100%);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: #314039;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.info-box {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper-soft);
}

.info-box h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--green-800);
}

.info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.note {
  padding: 18px 20px;
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: var(--amber-soft);
  color: #5d421d;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
    gap: 14px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .card-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}
