:root {
  --ink: #102620;
  --moss: #1d4c3d;
  --pine: #0b1b17;
  --fjord: #d9ebe3;
  --paper: #fbf7ee;
  --sand: #eadfc9;
  --clay: #b8643d;
  --line: rgba(16, 38, 32, 0.16);
  --shadow: 0 24px 70px rgba(16, 38, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 100, 61, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 2%, rgba(29, 76, 61, 0.2), transparent 24rem),
    linear-gradient(135deg, var(--paper), var(--fjord));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(16, 38, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 38, 32, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-content: center;
  padding: clamp(40px, 8vw, 96px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3)),
    linear-gradient(160deg, rgba(234, 223, 201, 0.8), rgba(217, 235, 227, 0.82));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(16, 38, 32, 0.09);
  border: 1px solid rgba(16, 38, 32, 0.08);
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 12px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: 0.84;
  letter-spacing: -0.09em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

p,
li {
  font-size: 1.06rem;
  line-height: 1.65;
}

.lead {
  max-width: 720px;
  font-size: clamp(1.35rem, 2.8vw, 2.4rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 26px rgba(16, 38, 32, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.panel,
.contact-card {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 44px rgba(16, 38, 32, 0.08);
  backdrop-filter: blur(14px);
}

.identity {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.identity-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.identity-grid div,
.policy-grid div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(251, 247, 238, 0.64);
}

.identity-grid strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.35;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 22px;
}

.dark-card {
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 0%, rgba(184, 100, 61, 0.32), transparent 16rem),
    linear-gradient(145deg, var(--pine), #17352d);
}

.dark-card .section-kicker {
  color: #f1b07f;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(184, 100, 61, 0.12);
}

.access {
  background:
    linear-gradient(135deg, rgba(29, 76, 61, 0.08), rgba(184, 100, 61, 0.1)),
    rgba(255, 255, 255, 0.58);
}

.contact-card {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.contact-card p {
  max-width: 700px;
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 20px, 1120px);
    padding: 18px 0;
  }

  .hero,
  .panel,
  .contact-card {
    border-radius: 22px;
  }

  .identity,
  .two-column,
  .identity-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
