:root {
  color-scheme: light;
  --orange: #ff7a1a;
  --ivory: #fff7ed;
  --espresso: #241c18;
  --border: #e9ddd3;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--espresso);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.65;
}

main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 4px solid var(--espresso);
  border-top-color: transparent;
  border-radius: 8px;
}

.mark::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
}

.hero, article {
  margin-top: 64px;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(36, 28, 24, 0.08);
}

.eyebrow {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 { margin: 12px 0 16px; font-size: clamp(2.2rem, 8vw, 4.8rem); line-height: 0.98; }
h2 { margin-top: 2rem; line-height: 1.2; }
p, li { color: #554841; }
a { color: #a84200; }

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  font-size: 0.9rem;
}
