:root {
  --paper: #f6f1e8;
  --paper-strong: #fffaf2;
  --ink: #19202a;
  --muted: #5e6674;
  --line: rgba(25, 32, 42, 0.12);
  --accent: #d46436;
  --accent-deep: #9f3f1c;
  --accent-soft: rgba(212, 100, 54, 0.14);
  --card: rgba(255, 250, 242, 0.76);
  --shadow: 0 22px 60px rgba(38, 29, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 100, 54, 0.18), transparent 26rem),
    radial-gradient(circle at bottom right, rgba(27, 73, 101, 0.14), transparent 24rem),
    linear-gradient(180deg, #efe2cf 0%, #f6f1e8 38%, #f8f4ec 100%);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 2.75rem;
}

.page-shell--narrow {
  width: min(860px, calc(100% - 2rem));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fffaf2;
  box-shadow: var(--shadow);
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.eyebrow,
.kicker,
.section-label,
.call-card-label,
.card-number {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: var(--muted);
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.02;
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif;
}

h1 {
  font-size: 1.4rem;
}

h2 {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  max-width: 12ch;
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.8);
  color: var(--muted);
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif;
  text-decoration: none;
}

.status-pill--link {
  transition: background-color 180ms ease, color 180ms ease;
}

.status-pill--link:hover {
  background: var(--accent-soft);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.8fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.hero-copy,
.call-card,
.info-card,
.detail-block,
.policy-section {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.kicker {
  margin-bottom: 0.9rem;
}

.lede {
  max-width: 45rem;
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #2c3340;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Avenir Next Condensed", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

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

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.9);
  color: var(--ink);
}

.call-card {
  padding: 1.5rem;
  align-self: end;
}

.call-card ul,
.policy ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
}

.call-card li,
.policy li {
  margin-bottom: 0.6rem;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-card,
.detail-block,
.policy-section {
  padding: 1.4rem;
}

.info-card h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.65rem;
}

.detail-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-block p:last-child {
  margin-top: 0.65rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 0 0.35rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.policy {
  display: grid;
  gap: 1rem;
}

.policy-section h2 {
  max-width: none;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.8rem;
}

@media (max-width: 900px) {
  .hero,
  .grid-section,
  .detail-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .page-shell,
  .page-shell--narrow {
    width: min(100% - 1rem, 100%);
  }

  h2 {
    max-width: none;
  }
}
