:root {
  --bg: #f8f0e5;
  --paper: #fffdf8;
  --ink: #171412;
  --muted: #657174;
  --green: #067853;
  --green-dark: #0f2f26;
  --yellow: #f8df3a;
  --line: rgba(23, 20, 18, 0.12);
  --shadow: 0 24px 80px rgba(23, 20, 18, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(6, 120, 83, 0.08), transparent 34rem),
    linear-gradient(180deg, #fbf6ed 0%, var(--bg) 52%, #f4eadc 100%);
  line-height: 1.7;
}

a {
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 240, 229, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner,
.page,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo {
  display: block;
  width: min(360px, 62vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(6, 120, 83, 0.32);
  box-shadow: 0 10px 24px rgba(23, 20, 18, 0.1);
}

.btn.primary {
  border-color: var(--yellow);
  background: var(--yellow);
}

.page {
  padding: clamp(42px, 7vw, 86px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  margin-bottom: clamp(24px, 5vw, 42px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.trust-panel {
  border: 1px solid rgba(6, 120, 83, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 22px;
  box-shadow: 0 18px 50px rgba(23, 20, 18, 0.07);
}

.trust-panel strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.05rem;
  line-height: 1.35;
}

.trust-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
}

.summary {
  background: var(--green-dark);
  color: #ffffff;
  padding: clamp(24px, 4vw, 38px);
}

.summary h2,
.content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.summary p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.summary-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.content {
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
}

.content-section {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.content-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.content p,
.content ul {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.content ul {
  padding-left: 1.15rem;
}

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

.note {
  margin-top: 28px;
  border: 1px solid rgba(248, 223, 58, 0.58);
  border-radius: 8px;
  background: #fff8cd;
  padding: 18px;
  color: #514712;
  font-weight: 750;
}

.footer {
  background: #090908;
  color: #ffffff;
  padding: 34px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  text-align: center;
}

.footer-logo {
  display: block;
  width: 210px;
  max-width: 52vw;
  height: auto;
}

.footer-copy {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .card-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .page,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .nav,
  .btn {
    width: 100%;
  }

  .brand {
    width: 100%;
  }

  .logo {
    width: 100%;
  }
}
