:root {
  --night: #152126;
  --road: #25363b;
  --cream: #f5f0e5;
  --paper: #fffdf6;
  --orange: #e96a37;
  --muted: #657278;
  --rule: #d9d7cf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--night);
  background: repeating-linear-gradient(135deg, rgba(37,54,59,.025) 0 2px, transparent 2px 14px), var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px clamp(20px, 5vw, 72px);
  color: var(--paper);
  background: var(--night);
  border-bottom: 4px solid var(--orange);
}
.brand, .nav a, .eyebrow, h1, h2, h3, .button, .tag {
  font-family: "Arial Narrow", "Franklin Gothic Medium", sans-serif;
}
.brand {
  font-size: clamp(16px, 2vw, 23px);
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav { display: flex; gap: 20px; flex-wrap: wrap; }
.nav a { font-size: 13px; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.nav a:hover, .nav a:focus { color: var(--orange); }
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: 66vh;
  padding: 70px max(22px, calc((100vw - 1100px) / 2));
  color: var(--paper);
  background: radial-gradient(circle at 79% 26%, rgba(233,106,55,.37), transparent 23%), linear-gradient(120deg, #152126, #293e43 70%, #17282d);
}
.hero::after {
  content: "";
  position: absolute;
  right: -4%;
  bottom: -15%;
  width: 50%;
  height: 120%;
  opacity: .28;
  transform: skewX(-26deg);
  border-left: 12px solid var(--orange);
  border-right: 2px solid var(--paper);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 750px; }
.eyebrow { margin: 0 0 18px; color: #ff956d; font-size: 14px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(44px, 8vw, 92px); line-height: .98; letter-spacing: -.04em; text-transform: uppercase; }
.hero p:last-child { max-width: 620px; margin-top: 28px; color: #e4ebea; font-size: clamp(17px, 2vw, 22px); }
.rail { width: 110px; height: 7px; margin-top: 28px; background: var(--orange); transform: skewX(-28deg); }
.section, .legal { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 68px 0 84px; }
.section-heading { margin: 0 0 28px; font-size: 31px; text-transform: uppercase; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; border-top: 5px solid var(--orange); background: var(--paper); box-shadow: 0 10px 28px rgba(21,33,38,.07); }
.card h2 { margin: 0 0 12px; font-size: 22px; text-transform: uppercase; }
.card p { margin: 0; color: #46565d; }
.legal { max-width: 880px; padding: 64px 0 90px; }
.legal h1 { font-size: clamp(38px, 6vw, 62px); }
.legal h2 { margin: 42px 0 10px; font-size: 25px; }
.legal p, .legal li { font-size: 16px; }
.legal li { margin-bottom: 7px; }
.updated { margin: 14px 0 42px; color: var(--muted); font-style: italic; }
.notice { margin: 30px 0; padding: 20px 24px; background: var(--paper); border-left: 5px solid var(--orange); }
footer { padding: 28px 20px; color: #dce4e3; text-align: center; background: var(--night); font-size: 14px; }
footer a { color: var(--paper); }
@media (max-width: 720px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav { gap: 12px; }
  .grid { grid-template-columns: 1fr; }
  .hero { min-height: 58vh; padding: 64px 22px; }
  .hero::after { opacity: .12; }
}
