:root {
  --bg: #f4efe4;
  --bg-accent: #efe7d6;
  --panel: rgba(255, 252, 246, 0.78);
  --panel-strong: #fffaf0;
  --text: #1d1711;
  --muted: #6e6257;
  --line: rgba(66, 48, 28, 0.14);
  --brand: #a1431a;
  --brand-dark: #792d0f;
  --shadow: 0 24px 80px rgba(77, 48, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(161, 67, 26, 0.12), transparent 32%),
    radial-gradient(circle at right 15% bottom 10%, rgba(123, 95, 54, 0.14), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #fbf7ef 100%);
}

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

a {
  color: var(--brand-dark);
}

code {
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  background: rgba(121, 45, 15, 0.08);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.95em;
}

.page-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero,
.subpage-header,
.card,
.policy-section {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero,
.subpage-header {
  padding: 34px;
  border-radius: 30px;
}

.hero h1,
.subpage-header h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lede {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.lede span {
  color: var(--text);
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: #fff8f1;
  box-shadow: 0 12px 32px rgba(161, 67, 26, 0.26);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.74);
  color: var(--text);
}

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

.card,
.policy-section {
  padding: 24px;
  border-radius: 24px;
}

.card h2,
.policy-section h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.card p,
.policy-section p,
.card li,
.policy-section li {
  color: var(--muted);
}

.contact-line {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.muted {
  margin-top: 10px;
  font-size: 0.95rem;
}

.policy {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1080px);
    padding: 20px 0 40px;
  }

  .hero,
  .subpage-header,
  .card,
  .policy-section {
    border-radius: 22px;
  }

  .hero,
  .subpage-header {
    padding: 24px 20px;
  }

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

  .card,
  .policy-section {
    padding: 20px;
  }
}
