:root {
  --ink: #17201f;
  --muted: #59635f;
  --paper: #f4f1e9;
  --surface: #fffdf8;
  --line: #d9d5ca;
  --accent: #146c5b;
  --accent-dark: #0d4c40;
  --accent-soft: #dcebe5;
  --max-width: 1120px; }

* {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased; }

a {
  color: var(--accent-dark);
  text-underline-offset: 0.18em; }

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

.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%); }

.skip-link:focus {
  transform: translateY(0); }

.site-header {
  border-bottom: 1px solid var(--line); }

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px; }

.header-inner {
  min-height: 84px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-decoration: none; }

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--accent);
  font-weight: 750; }

.brand strong {
  font-weight: 750; }

.site-header nav,
.site-footer nav {
  display: flex;
  gap: 24px; }

.site-header nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none; }

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--ink); }

.hero {
  padding-block: clamp(90px, 14vw, 165px); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase; }

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.035em;
  line-height: 1.12; }

h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 11vw, 8.5rem);
  font-weight: 780; }

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.8vw, 3.6rem); }

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem; }

.lead {
  max-width: 810px;
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.4; }

.hero-copy {
  max-width: 710px;
  margin: 0 0 36px;
  color: var(--muted); }

.button {
  display: inline-block;
  padding: 13px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: white;
  background: var(--accent);
  font-size: 0.95rem;
  font-weight: 720;
  text-decoration: none; }

.button:hover {
  color: white;
  background: var(--accent-dark);
  border-color: var(--accent-dark); }

.button-secondary {
  color: var(--accent-dark);
  background: transparent; }

.section {
  padding-block: clamp(70px, 10vw, 120px);
  border-top: 1px solid var(--line); }

.section-last {
  padding-bottom: clamp(100px, 14vw, 170px); }

.section-heading {
  max-width: 760px;
  margin-bottom: 54px; }

.section-heading > p:last-child,
.narrow > p {
  color: var(--muted); }

.narrow {
  max-width: 720px;
  margin-bottom: 0; }

.narrow .button {
  margin-top: 16px; }

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

.card {
  min-height: 285px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface); }

.card-number {
  display: block;
  margin-bottom: 62px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800; }

.card p {
  margin-bottom: 0;
  color: var(--muted); }

.notice {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 110px);
  padding: clamp(36px, 7vw, 72px);
  border-radius: 24px;
  background: var(--accent-soft); }

.notice p:first-child {
  margin-top: 0; }

.text-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 720; }

.legal {
  max-width: 820px;
  padding-block: clamp(70px, 10vw, 120px); }

.legal-short {
  min-height: 70vh; }

.legal h1 {
  margin-bottom: 50px;
  font-size: clamp(3rem, 7vw, 5rem); }

.legal h2 {
  margin-top: 60px;
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 3vw, 2rem); }

.legal p,
.legal li {
  color: #39423f; }

.legal address {
  color: #39423f;
  font-style: normal; }

.legal li + li {
  margin-top: 10px; }

.legal strong {
  color: var(--ink); }

.site-footer {
  padding-block: 36px;
  border-top: 1px solid var(--line); }

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem; }

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

  .header-inner {
    padding-block: 20px; }

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

  .card {
    min-height: 0; }

  .card-number {
    margin-bottom: 42px; } }
@media (max-width: 480px) {
  .shell {
    width: min(calc(100% - 28px), var(--max-width)); }

  .site-header nav,
  .site-footer nav {
    gap: 18px; }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.5rem); } }
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto; } }
