:root {
  --bg: #f6f3ee;
  --paper: rgba(255, 252, 247, 0.88);
  --surface: #fffdfa;
  --surface-soft: rgba(255, 250, 243, 0.92);
  --text: #211d19;
  --muted: #6c6256;
  --line: rgba(67, 53, 36, 0.14);
  --accent: #8a5f2a;
  --accent-strong: #744d1d;
  --accent-soft: rgba(138, 95, 42, 0.1);
  --shadow: 0 28px 80px rgba(72, 52, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 148, 86, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(117, 146, 120, 0.09), transparent 26%),
    linear-gradient(180deg, #faf7f1 0%, #efe8dc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  opacity: 0.28;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

a:hover {
  text-decoration-thickness: 2px;
}

code {
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
  background: rgba(63, 50, 35, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.site-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 26px auto 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(72, 52, 28, 0.06);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.topnav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topnav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

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

.hero,
.section-card,
.contact-strip,
.policy-callout,
.content section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 95, 42, 0.22), transparent 72%);
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 24px;
  padding: 34px;
}

.hero-policy {
  padding: 32px;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-panel {
  align-self: start;
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.panel-label,
.eyebrow,
.section-tag {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.96;
  max-width: 11ch;
}

.hero-policy h1 span {
  display: block;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.06;
}

.lede,
p,
li,
dd,
dt {
  font-size: 1rem;
  line-height: 1.76;
}

.lede {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

p {
  margin: 0;
  color: #2c251d;
}

p + p,
ul {
  margin-top: 14px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #fffdfa;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.button-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.summary-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.summary-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.summary-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

dt {
  color: var(--muted);
  font-weight: 600;
}

dd {
  margin: 2px 0 0;
  font-weight: 700;
  color: var(--text);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.section-card,
.contact-strip,
.policy-callout,
.content section {
  padding: 26px;
}

.feature-list {
  padding-left: 20px;
}

.contact-strip,
.policy-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.contact-link {
  white-space: nowrap;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent-strong);
}

.page-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}

.meta-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.meta-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(138, 95, 42, 0.12);
}

.meta-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 860px) {
  .hero-home,
  .section-grid,
  .contact-strip,
  .policy-callout {
    grid-template-columns: 1fr;
  }

  .contact-strip,
  .policy-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-link {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1080px);
    margin: 10px auto 24px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topnav {
    gap: 14px;
  }

  .hero-home,
  .hero-policy,
  .section-card,
  .contact-strip,
  .policy-callout,
  .content section {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
