:root {
  --orange: #f96d0a;
  --green: #08811c;
  --olive: #a19940;
  --ink: #213326;
  --muted: #64715f;
  --sand: #e8dcc7;
  --oat: #d4b895;
  --surface: #f7f1e4;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(33, 51, 38, 0.14);
  --shadow: 0 24px 70px rgba(44, 57, 35, 0.14);
  --radius: 28px;
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(249, 109, 10, 0.14), transparent 34rem),
    radial-gradient(circle at 88% 18%, rgba(8, 129, 28, 0.12), transparent 30rem),
    linear-gradient(135deg, #f7f1e4 0%, #eadfc8 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(120deg, transparent 0 24px, rgba(33, 51, 38, 0.05) 25px, transparent 26px),
    radial-gradient(circle, rgba(33, 51, 38, 0.12) 1px, transparent 1px);
  background-size: 180px 180px, 26px 26px;
}

a {
  color: inherit;
  text-decoration-color: rgba(8, 129, 28, 0.5);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--orange);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  padding-block: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(11rem, 20vw, 15rem);
  height: auto;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(33, 51, 38, 0.08));
}

nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

main {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 4rem;
}

.hero,
.legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  z-index: 0;
}

.hero {
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 1rem;
  padding: clamp(2rem, 6vw, 5rem);
}

.hero::before {
  position: absolute;
  inset: 1.2rem;
  z-index: 0;
  content: "";
  border-radius: calc(var(--radius) - 10px);
  background:
    linear-gradient(135deg, rgba(249, 109, 10, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(8, 129, 28, 0.11), transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-content: center;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  margin-top: 2rem;
  color: var(--green);
  font-size: 1.2rem;
}

.lede {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.notice {
  max-width: 44rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(249, 109, 10, 0.28);
  border-radius: 20px;
  background: rgba(249, 109, 10, 0.08);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--green));
  box-shadow: 0 16px 34px rgba(8, 129, 28, 0.18);
  font-weight: 800;
  text-decoration: none;
}

.preview-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(8, 129, 28, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 240, 0.52)),
    radial-gradient(circle at 100% 0%, rgba(249, 109, 10, 0.16), transparent 13rem);
  box-shadow: 0 18px 60px rgba(33, 51, 38, 0.12);
}

.preview-card::before {
  display: block;
  width: 5.6rem;
  height: 0.42rem;
  margin-bottom: 1.4rem;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

.preview-card h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.topic-grid {
  display: grid;
  gap: 0.8rem;
}

.topic-grid div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.topic-grid span {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: var(--green);
  font-weight: 900;
}

.topic-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.small-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-card {
  margin-top: 1.4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.65;
}

address {
  font-style: normal;
  line-height: 1.65;
}

dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0 0;
}

dl div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

dt {
  color: var(--muted);
  font-size: 0.88rem;
}

dd {
  margin: 0.25rem 0 0;
  font-weight: 700;
}

ul {
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.35rem;
}

.site-footer {
  align-items: flex-start;
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer span {
  max-width: 24rem;
}

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

  nav {
    justify-content: flex-start;
  }

  .brand {
    width: 10rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  dl {
    grid-template-columns: 1fr;
  }
}
