:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --text: #1c1f1d;
  --muted: #5d645f;
  --line: #d8ddd8;
  --brand: #0f7a3f;
  --brand-dark: #0b5d30;
  --accent: #f0c36d;
  --maxw: 1080px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: var(--brand-dark);
}

.container {
  width: min(var(--maxw), 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 247, 244, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  display: inline-block;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 999px;
  font-size: 0.92rem;
}

.nav-list a[aria-current="page"] {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  padding: 4.4rem 0 3.2rem;
  background:
    radial-gradient(circle at 88% 20%, rgba(240, 195, 109, 0.3), transparent 35%),
    linear-gradient(180deg, #f4f6f0 0%, #f7f7f4 60%);
}

.hero-small {
  padding: 3.3rem 0 2.4rem;
}

.eyebrow {
  margin: 0 0 0.4rem;
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  line-height: 1.25;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.lead {
  max-width: 65ch;
  color: var(--muted);
  margin: 0.9rem 0 1.5rem;
}

.section {
  padding: 2.8rem 0;
}

.section-soft {
  background: #f0f3ed;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: 1fr;
}

.cards-2 {
  grid-template-columns: 1fr;
}

.two-cols {
  grid-template-columns: 1fr;
}

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

.card-full {
  grid-column: 1 / -1;
}

.section-cta {
  margin-top: 1.3rem;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 12px;
  padding: 0.72rem 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-dark);
}

.btn-secondary {
  color: #fff;
  background: #26342a;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

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

th {
  background: #f4f5f1;
}

.note {
  color: var(--muted);
  margin-top: 0.8rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.7rem;
}

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

form {
  display: grid;
  gap: 0.6rem;
}

input,
button,
textarea {
  font: inherit;
}

input[type="text"] {
  padding: 0.6rem 0.7rem;
  border: 1px solid #c8cec9;
  border-radius: 10px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.94rem;
}

.site-footer {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  background: #eef2ec;
}

.footer-wrap {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
  padding: 1.1rem 0;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 760px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
