@import url("/assets/external/fonts.googleapis.com/css-40a5d9c8.css");

:root {
  --forest: #1c402b;
  --forest-deep: #0f2418;
  --gold: #d8a93b;
  --focus: #8b6508;
  --cream: #faf6ee;
  --cream-deep: #f2ebdd;
  --ink: #1f1f1f;
  --muted: #6b6359;
  --line: #e4dcc9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 400 1rem/1.7 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--forest); text-underline-offset: 3px; }
a:hover { color: var(--forest-deep); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--forest-deep);
}

.skip-link:focus { top: 1rem; }

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 246, 238, .97);
}

.header-inner, .footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 2rem;
}

.brand img { display: block; width: 82px; height: 82px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); }
.nav a { color: var(--ink); font-size: .95rem; font-weight: 600; text-decoration: none; }
.nav .button { color: var(--cream); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  color: var(--cream);
  background: var(--forest);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.button:hover { color: #fff; background: var(--forest-deep); }
.button.secondary { color: var(--forest); background: transparent; box-shadow: inset 0 0 0 1px var(--forest); }

.hero {
  padding: clamp(3rem, 8vw, 6rem) 1rem clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.eyebrow {
  margin: 0 0 .5rem;
  color: #765100;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2 {
  color: var(--forest);
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

h1 { max-width: 18ch; margin: 0 auto; font-size: clamp(2.35rem, 6vw, 4.5rem); }
h2 { margin: 2.25rem 0 .65rem; font-size: clamp(1.45rem, 3vw, 2rem); }

.lede { max-width: 62ch; margin: 1rem auto 0; color: var(--muted); font-size: 1.08rem; }

.content-wrap { width: min(880px, calc(100% - 2rem)); margin: -1.75rem auto 4rem; }

.content-card {
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 36, 24, .07);
}

.content-card > :first-child { margin-top: 0; }
.content-card p, .content-card li { color: var(--muted); }
.content-card strong { color: var(--ink); }
.content-card ul { padding-left: 1.4rem; }
.effective { padding-bottom: 1rem; border-bottom: 1px solid var(--line); font-size: .9rem; }
.notice { margin: 1.5rem 0; padding: 1rem 1.1rem; border-left: 4px solid var(--gold); background: var(--cream); }

.success-card { max-width: 720px; margin-inline: auto; text-align: center; }
.success-mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 1.8rem;
}
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.5rem; }

.site-footer { padding: 2.25rem 1rem; color: rgba(250, 246, 238, .78); background: var(--forest-deep); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.site-footer p { margin: 0; font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-footer a { color: var(--cream); }

@media (max-width: 720px) {
  .header-inner { min-height: 88px; }
  .brand img { width: 66px; height: 66px; }
  .nav a:not(.button) { display: none; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
