﻿:root {
  --ink: #0b1b12;
  --ink-soft: #213027;
  --muted: #5a6a61;
  --bg: #f6f1e8;
  --bg-soft: #efe7d8;
  --accent: #1e6a3b;
  --accent-2: #c97b3c;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(14, 27, 18, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fef9f2 0%, #f4ead7 45%, #efe3d2 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 10;
}

.skip-link:focus {
  left: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 25, 18, 0.08);
  z-index: 9;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: var(--ink-soft);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(15, 25, 18, 0.15);
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  gap: 6px;
}

.menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: sticky;
  top: 64px;
  z-index: 8;
  background: rgba(246, 241, 232, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 25, 18, 0.08);
  padding: 14px 0 20px;
}

.mobile-nav a {
  display: block;
  padding: 10px 4vw;
  font-weight: 600;
  color: var(--ink-soft);
}

.mobile-nav a:hover {
  background: rgba(15, 25, 18, 0.05);
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 12px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 16px;
}

.hero-note {
  background: #f4ead7;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.stat {
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(15, 25, 18, 0.15);
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 64px 0;
}

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

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0 0 8px;
}

.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.checklist div {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.panel {
  background: #183225;
  color: #edf6f0;
  padding: 26px;
  border-radius: var(--radius);
}

.plain {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.step-count {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.portal-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.notice {
  background: #fff5e9;
  border: 1px solid #f2d3b6;
  color: #7a4d2d;
  padding: 12px 14px;
  border-radius: 12px;
  margin: 16px 0 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row input,
.form-row select {
  padding: 12px 14px;
  border: 1px solid rgba(15, 25, 18, 0.2);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row.checkbox {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.form-row.checkbox input {
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(15, 25, 18, 0.2);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(15, 25, 18, 0.1);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--card);
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.sources {
  display: grid;
  gap: 12px;
}

.sources a {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.footer {
  background: #141f18;
  color: #dce7df;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.footer a {
  display: block;
  margin-bottom: 6px;
  color: #dce7df;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  margin-top: 32px;
  border-top: 1px solid rgba(220, 231, 223, 0.2);
  padding-top: 16px;
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f2b22;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 20;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav.open {
    display: block;
  }

  .nav {
    padding: 12px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
