:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe3;
  --card: #ffffff;
  --text: #2c2419;
  --muted: #6b5f52;
  --accent: #c45c26;
  --accent-dark: #9a4518;
  --line: #e4ddd3;
  --shadow: 0 12px 40px rgba(44, 36, 25, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-icon { font-size: 1.6rem; }

.nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}

.nav a:hover { color: var(--accent); }

.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at top right, rgba(196, 92, 38, 0.12), transparent 40%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
}

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

.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.ferret-illustration {
  position: relative;
  height: 180px;
  margin-bottom: 1rem;
}

.ferret-body {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 180px;
  height: 70px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #8b5e3c, #b07a4f);
  border-radius: 40px;
}

.ferret-tail {
  position: absolute;
  right: 18%;
  top: 38%;
  width: 90px;
  height: 24px;
  background: #7a5235;
  border-radius: 20px;
  transform: rotate(-18deg);
}

.ferret-face {
  position: absolute;
  left: 22%;
  top: 38%;
  width: 58px;
  height: 58px;
  background: #c48a5b;
  border-radius: 50%;
  box-shadow: inset -8px -6px 0 rgba(0,0,0,0.08);
}

.ferret-face::before,
.ferret-face::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 8px;
  height: 8px;
  background: #2c2419;
  border-radius: 50%;
}

.ferret-face::before { left: 14px; }
.ferret-face::after { right: 14px; }

.stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  text-align: center;
  font-family: system-ui, sans-serif;
}

.stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
}

.stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-alt); }

h2 {
  font-size: 2rem;
  margin: 0 0 1.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 46rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  color: var(--accent-dark);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.checklist {
  padding-left: 1.2rem;
}

.checklist li { margin-bottom: 0.6rem; }

.note-box {
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: system-ui, sans-serif;
}

th, td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: #fff8f2;
  color: var(--accent-dark);
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: bold;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.muted { color: var(--muted); }

@media (max-width: 860px) {
  .hero-grid,
  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .nav { display: none; }
}
