:root {
  color-scheme: light;
  --brand: #b23212;
  --brand-dark: #87270f;
  --ink: #1f2937;
  --muted: #4b5563;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --warm: #fff7ed;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f3f4f6;
  font-family: Arial, Helvetica, sans-serif;
}

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

a:hover,
a:focus-visible {
  color: var(--brand-dark);
}

.page {
  min-height: 100vh;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.topbar-inner,
.section {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
  font-size: 0.92rem;
}

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

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--brand);
  text-decoration: underline;
}

.hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.5rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.1rem, 6vw, 4.1rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-copy p {
  max-width: 760px;
  font-size: 1.1rem;
}

.callout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  background: var(--warm);
  border: 1px solid #fed7aa;
  border-radius: 8px;
}

.callout strong {
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1;
}

.callout span {
  margin-top: 0.35rem;
  color: #9a3412;
  font-weight: 800;
}

.section {
  padding: 2rem 0;
}

.intro {
  max-width: 760px;
  margin-top: 0.8rem;
}

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

.card {
  padding: 1.2rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.card p,
.card ul {
  margin-bottom: 0;
}

.card ul {
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

.band {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 1.5rem;
  align-items: start;
}

.cta {
  padding: 1.3rem;
  background: var(--brand);
  border-radius: 8px;
}

.cta h2,
.cta p {
  color: #ffffff;
}

.cta a {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 0.95rem;
  color: var(--brand);
  background: #ffffff;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.footer {
  padding: 1.5rem 0 2rem;
  color: #ffffff;
  background: #1f2937;
}

.footer p,
.footer a {
  color: #ffffff;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .hero-grid,
  .grid,
  .two-column {
    grid-template-columns: 1fr;
  }

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

  .topnav {
    justify-content: flex-start;
  }
}
