
:root {
  --green: #183c2f;
  --green-soft: #244f3f;
  --cream: #f7f0dd;
  --yellow: #e6c85c;
  --ink: #111111;
  --muted: #706b61;
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 28px clamp(20px, 6vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: currentColor;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 64px clamp(20px, 8vw, 96px) 88px;
}

.hero-card {
  width: min(980px, 100%);
  background: var(--green);
  color: var(--cream);
  border-radius: 28px;
  padding: clamp(32px, 7vw, 84px);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
  position: relative;
  overflow: hidden;
}

.hero-card:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(230,200,92,0.24), rgba(230,200,92,0));
  right: -100px;
  top: -120px;
}

.kicker {
  font-family: Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--yellow);
  margin-bottom: 18px;
  position: relative;
}

h1 {
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.95;
  margin: 0 0 28px;
  max-width: 820px;
  position: relative;
  font-weight: 500;
}

.lede {
  font-size: clamp(18px, 2.4vw, 25px);
  max-width: 690px;
  color: rgba(247, 240, 221, 0.88);
  margin: 0 0 36px;
  position: relative;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid var(--yellow);
}

.button.primary {
  background: var(--yellow);
  color: var(--green);
}

.button.secondary {
  color: var(--cream);
}

.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px clamp(20px, 6vw, 72px) 84px;
}

.legal h1 {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1;
  margin-bottom: 24px;
  color: var(--green);
}

.legal h2 {
  margin-top: 34px;
  font-size: 22px;
  color: var(--green);
}

.legal p, .legal li {
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.note {
  background: var(--white);
  border-left: 4px solid var(--yellow);
  padding: 16px 18px;
  margin: 24px 0;
}

.footer {
  padding: 24px clamp(20px, 6vw, 72px);
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  margin-right: 14px;
}

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

  .nav {
    flex-wrap: wrap;
  }
}
