:root {
  --green: #286e4f;
  --green-dark: #10533c;
  --gold: #c8a86e;
  --ink: #111111;
  --body: #3f3f3f;
  --muted: #6b6b6b;
  --line: #ddd8ce;
  --wash: #e8f3ee;
  --paper: #fffefa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f7f5ef;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 22px 28px;
  background: var(--paper);
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 24px;
  min-height: 98px;
  margin: 0 -22px 56px;
  padding: 10px 22px;
  background: rgba(255, 254, 250, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 10px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: cover;
}
.site-header p {
  margin: 0;
  color: rgba(115, 115, 115, .78);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.accepting {
  justify-self: end;
  min-width: 318px;
  padding: 13px 22px 12px;
  background:
    repeating-linear-gradient(108deg, rgba(255,255,255,.18) 0 2px, transparent 2px 6px),
    var(--green-dark);
  color: #fff;
  border-radius: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(260px, 26vw, 390px);
  gap: 46px;
  align-items: start;
  padding-bottom: 72px;
  border-bottom: 2px solid var(--line);
}
.hero-copy { max-width: 835px; }
.hero-mark {
  margin: 8px 0 0;
  justify-self: end;
  width: min(100%, 390px);
  opacity: .92;
}
.hero-mark img {
  display: block;
  width: 100%;
  height: auto;
}
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.2vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero h1 span { color: var(--green); }
.hero p {
  max-width: 850px;
  margin: 30px 0 0;
  color: var(--body);
  font-size: clamp(22px, 2.45vw, 31px);
  line-height: 1.43;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid var(--green-dark);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}
.button.primary { background: var(--green-dark); color: #fff; }
.button.secondary { background: transparent; color: var(--green-dark); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 70px 0 66px;
  border: 2px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}
.stats article { min-height: 184px; padding: 30px 36px; border-right: 2px solid var(--line); }
.stats article:last-child { border-right: 0; }
.stats strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: .94;
}
.stats span { display: block; margin-top: 10px; color: #656565; font-size: 21px; font-weight: 700; line-height: 1.18; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  padding-bottom: 66px;
  border-bottom: 2px solid var(--line);
}
h2 {
  margin: 0 0 25px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
ul { margin: 0; padding: 0; list-style: none; }
li { color: var(--body); font-size: 24px; line-height: 1.35; }
.dash-list li::before { content: "—"; margin-right: 13px; color: var(--gold); }
.check-list li::before { content: "✓"; margin-right: 17px; color: var(--green); font-weight: 900; }

.receive { padding: 56px 0 68px; border-bottom: 2px solid var(--line); }
.receive-list { display: grid; gap: 3px; }
.receive article { padding: 32px 34px 30px; border-radius: 5px; background: var(--wash); }
.receive h3 { margin: 0 0 13px; color: var(--green); font-family: Georgia, "Times New Roman", serif; font-size: 25px; }
.receive p { margin: 0; color: var(--body); font-size: 24px; line-height: 1.36; }


.bottom-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-top: 62px;
}
.bottom-cta span:first-child {
  display: block;
  margin-bottom: 12px;
  color: #747474;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bottom-cta h2 {
  margin: 0 0 8px;
  color: #0d0d0d;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0;
  text-transform: none;
}
.bottom-cta p { margin: 0; color: #696969; font-size: 22px; font-weight: 750; }
.bottom-cta small { display: block; margin-top: 34px; color: #777; font-size: 18px; line-height: 1.35; }
address { font-style: normal; text-align: right; }
.footer-logo {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 0 12px auto;
  border-radius: 4px;
  object-fit: cover;
}
address strong { display: block; margin-bottom: 12px; font-family: Georgia, "Times New Roman", serif; font-size: 29px; }
address span { display: block; color: #737373; font-size: 23px; font-weight: 750; line-height: 1.25; }
address a { display: block; margin-top: 8px; color: var(--green); font-size: 23px; font-weight: 800; text-decoration: none; }

@media (max-width: 900px) {
  .page-shell { width: min(100%, calc(100% - 20px)); padding: 0 18px 24px; }
  .site-header { grid-template-columns: auto 1fr; margin: 0 -18px 42px; padding: 10px 18px; }
  .site-header p { grid-column: 1 / -1; font-size: 15px; line-height: 1.45; }
  .accepting { justify-self: end; min-width: 0; width: auto; font-size: 13px; }
  .hero { grid-template-columns: 1fr; gap: 26px; padding-bottom: 48px; }
  .hero-mark { width: min(72vw, 300px); justify-self: start; margin-top: 0; opacity: .9; }
  .hero p { font-size: 20px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; margin: 42px 0; }
  .stats article { min-height: 140px; padding: 24px; }
  .stats article:nth-child(2) { border-right: 0; }
  .stats article:nth-child(-n+2) { border-bottom: 2px solid var(--line); }
  .stats strong { font-size: 38px; }
  .stats span, li, .receive p { font-size: 18px; }
  .compare-grid, .bottom-cta { grid-template-columns: 1fr; gap: 34px; }
  address { text-align: left; }
  .footer-logo { margin-left: 0; }
}

@media (max-width: 520px) {
  .brand { width: 76px; height: 76px; padding: 10px; }
  .brand img { width: 56px; height: 56px; }
  .hero h1 { font-size: 40px; }
  .stats { grid-template-columns: 1fr; }
  .stats article { border-right: 0; border-bottom: 2px solid var(--line); }
  .stats article:last-child { border-bottom: 0; }
}
