:root {
  color-scheme: light;
  --ink: #201b18;
  --muted: #665f58;
  --paper: #f7f2ed;
  --white: #fffdfa;
  --red: #b92d28;
  --red-dark: #7d1f1b;
  --red-soft: #f3d9d6;
  --charcoal: #24201e;
  --clay: #8c6f5d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.58;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: #201b18;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
  background: white;
}

.links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--red);
  color: white;
  font-weight: 850;
}

.hero {
  padding: 88px 0 70px;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(185, 45, 40, 0.28), transparent 34%),
    linear-gradient(135deg, #201b18 0%, #342723 54%, #6f211e 100%);
}

.hero-inner {
  max-width: 820px;
}

.eyebrow {
  color: var(--red-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

section {
  padding: 72px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  border-top: 3px solid var(--red);
  padding-top: 18px;
}

.muted {
  color: var(--muted);
}

.dark {
  background: var(--charcoal);
  color: white;
}

.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.list li {
  border-top: 1px solid rgba(185, 45, 40, 0.32);
  padding-top: 12px;
  font-weight: 750;
}

.cta {
  background: var(--red-dark);
  color: white;
}

.cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

footer {
  padding: 30px 0;
  background: #201b18;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

@media (max-width: 780px) {
  .links {
    display: none;
  }

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