:root {
  --ink: #241f20;
  --muted: #68615d;
  --orange: #ff7115;
  --orange-dark: #d94f00;
  --cream: #fcfaf6;
  --line: rgba(36, 31, 32, 0.12);
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--orange-dark); }
a:hover { color: var(--orange); }
a:focus-visible { outline: 3px solid rgba(255, 113, 21, 0.35); outline-offset: 3px; }

.site-header { position: relative; overflow: hidden; background: var(--orange); color: var(--white); }
.site-header::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.05), 0 0 0 140px rgba(255,255,255,.04);
  content: '';
}

.nav-shell, .hero-shell, .content-shell, .footer-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-shell {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand img { display: block; width: 176px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--white); font-size: 14px; font-weight: 800; letter-spacing: .04em; text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

.hero-shell { position: relative; z-index: 1; padding: 78px 0 92px; }
.eyebrow { margin: 0 0 16px; font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-size: clamp(44px, 7vw, 76px); font-weight: 900; letter-spacing: -.045em; line-height: 1.02; }
.modified { display: inline-flex; margin: 30px 0 0; padding: 9px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(255,255,255,.12); font-size: 14px; font-weight: 700; }

.content-shell { display: grid; grid-template-columns: 250px minmax(0, 780px); justify-content: space-between; gap: 72px; padding: 76px 0 110px; }
.policy-nav { align-self: start; position: sticky; top: 28px; }
.policy-nav p { margin: 0 0 14px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.policy-nav ol { margin: 0; padding: 0; list-style: none; }
.policy-nav li { border-top: 1px solid var(--line); }
.policy-nav li:last-child { border-bottom: 1px solid var(--line); }
.policy-nav a { display: block; padding: 11px 0; color: var(--ink); font-size: 13px; font-weight: 700; line-height: 1.35; text-decoration: none; }
.policy-nav a:hover { color: var(--orange-dark); }

.policy-copy { min-width: 0; }
.policy-copy section { scroll-margin-top: 28px; }
.policy-copy section + section { margin-top: 52px; padding-top: 52px; border-top: 1px solid var(--line); }
.policy-copy h2 { margin: 0 0 20px; font-size: clamp(25px, 3vw, 34px); font-weight: 900; letter-spacing: -.025em; line-height: 1.2; }
.policy-copy h3 { margin: 32px 0 12px; font-size: 19px; font-weight: 900; line-height: 1.35; }
.policy-copy p { margin: 0 0 18px; }
.policy-copy strong { font-weight: 900; }

.contact-card { margin: 34px 0 0; padding: 24px 26px; border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; background: var(--white); box-shadow: 0 14px 40px rgba(36,31,32,.06); }
.contact-card p { margin: 0; }
.contact-card strong { display: block; margin-bottom: 4px; }

.site-footer { background: var(--ink); color: rgba(255,255,255,.72); }
.footer-shell { display: flex; min-height: 150px; align-items: center; justify-content: space-between; gap: 30px; }
.footer-shell img { width: 135px; }
.footer-shell p { margin: 0; font-size: 13px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--white); font-size: 13px; font-weight: 800; text-decoration: none; }

@media (max-width: 860px) {
  .content-shell { grid-template-columns: 1fr; gap: 42px; }
  .policy-nav { position: static; padding: 24px; border-radius: 14px; background: var(--white); box-shadow: 0 12px 32px rgba(36,31,32,.05); }
  .policy-nav ol { columns: 2; column-gap: 30px; }
  .policy-nav li { break-inside: avoid; }
}

@media (max-width: 600px) {
  .nav-shell, .hero-shell, .content-shell, .footer-shell { width: min(100% - 32px, 1180px); }
  .nav-shell { min-height: 76px; }
  .brand img { width: 145px; }
  .nav-links { gap: 18px; }
  .nav-links a:first-child { display: none; }
  .hero-shell { padding: 54px 0 68px; }
  .content-shell { padding: 44px 0 72px; }
  .policy-nav ol { columns: 1; }
  .policy-copy section + section { margin-top: 38px; padding-top: 38px; }
  .footer-shell { flex-direction: column; justify-content: center; padding: 40px 0; text-align: center; }
}

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