:root {
  color-scheme: dark;
  --coal: #17130f;
  --coal-raised: #241a15;
  --steel: #423c36;
  --parchment: #f4ead7;
  --muted: #b8aa96;
  --ember: #e86d32;
  --gold: #e8b84a;
  --line: rgba(232, 184, 74, 0.24);
  --max: 760px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--coal);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% -15%, rgba(232, 109, 50, 0.18), transparent 38rem),
    linear-gradient(180deg, #1e1712 0, var(--coal) 26rem);
  color: var(--parchment);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #ffd56e;
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--parchment);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(232, 184, 74, 0.45);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--coal-raised), #2d1b12);
  color: var(--ember);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  font-size: 1.1rem;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
  font-weight: 700;
}

main {
  padding-block: clamp(52px, 10vw, 88px) 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  text-wrap: balance;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.lede {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.updated {
  display: inline-block;
  margin-top: 24px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero {
  display: grid;
  gap: clamp(56px, 10vw, 96px);
}

.hero-copy {
  max-width: 700px;
}

.status {
  display: inline-block;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(232, 109, 50, 0.42);
  border-radius: 999px;
  background: rgba(232, 109, 50, 0.09);
  color: #ffb085;
  font-size: 0.78rem;
  font-weight: 750;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 12px;
  background: var(--ember);
  color: #1c100b;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: #ff8250;
  color: #1c100b;
}

.text-link {
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(66, 60, 54, 0.28), rgba(36, 26, 21, 0.7));
}

.feature > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 12px;
  background: rgba(232, 109, 50, 0.12);
  color: var(--ember);
  font-size: 1.25rem;
}

.feature h2 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.content {
  margin-top: clamp(48px, 8vw, 76px);
}

section + section {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 14px;
  color: var(--parchment);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p,
ul {
  margin-block: 0 1em;
}

ul {
  padding-left: 1.25em;
}

li + li {
  margin-top: 0.55em;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(66, 60, 54, 0.32), rgba(36, 26, 21, 0.72));
}

.contact-card strong {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  width: fit-content;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 560px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

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

@media (min-width: 561px) and (max-width: 820px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
