:root {
  --ink: #0a0c0e;
  --panel: #15181b;
  --panel-alt: #1d2125;
  --cream: #f3f0e9;
  --cream-deep: #e8e3da;
  --orange: #ff5a1f;
  --text: #17191c;
  --muted: #5a6067;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overscroll-behavior-x: none;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;
  padding: 0 clamp(24px, 5vw, 72px);
  background: rgba(10,12,14,.97);
}
.logo {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}
.book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-left: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-tabs { display: none; }

.hero {
  padding: clamp(132px, 14vw, 190px) clamp(24px, 7vw, 110px) clamp(74px, 9vw, 120px);
  background: var(--ink);
  color: #fff;
}
.hero-inner { max-width: 1000px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 38px; height: 1px; background: var(--orange); }
h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
h1 {
  max-width: 920px;
  font-size: clamp(54px, 8vw, 104px);
  line-height: .92;
  letter-spacing: -.5px;
}
.hero p {
  max-width: 700px;
  margin-top: 28px;
  color: rgba(255,255,255,.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}
.ticker {
  overflow: hidden;
  padding: 13px 0;
  background: var(--orange);
  white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: ticker 25s linear infinite; }
.ticker span {
  padding: 0 34px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(70px, 9vw, 120px) clamp(24px, 7vw, 110px); }
.section.dark { background: var(--ink); color: #fff; }
.section.light { background: var(--cream); }
.section.deep { background: var(--cream-deep); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
  max-width: 1220px;
  margin: 0 auto 52px;
}
h2 { font-size: clamp(44px, 6vw, 74px); line-height: .96; }
.section-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.dark .section-copy { color: rgba(255,255,255,.68); }
.rows { max-width: 1220px; margin: 0 auto; }
.row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(23,25,28,.14);
}
.dark .row { border-color: rgba(255,255,255,.1); }
.row-num {
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
}
.row h3 { margin-bottom: 9px; font-size: 20px; }
.row p { max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.68; }
.dark .row p { color: rgba(255,255,255,.66); }
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1220px;
  margin: 0 auto;
}
.split > div { padding: clamp(34px, 5vw, 62px); }
.split > div:first-child { background: var(--panel); color: #fff; }
.split > div:last-child { background: var(--orange); color: var(--ink); }
.split h3 { margin-bottom: 16px; font-size: 24px; }
.split p { font-size: 16px; line-height: 1.7; }
.facts { display: grid; gap: 12px; margin-top: 22px; list-style: none; }
.facts li { padding-left: 20px; position: relative; font-size: 16px; line-height: 1.5; }
.facts li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.split > div:last-child .facts li::before { color: var(--ink); }

.faq { max-width: 900px; margin: 0 auto; }
.faq details { border-top: 1px solid rgba(23,25,28,.16); }
.faq details:last-child { border-bottom: 1px solid rgba(23,25,28,.16); }
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}
.faq summary::after { content: '+'; color: var(--orange); font-size: 22px; }
.faq details[open] summary::after { content: '−'; }
.faq p { max-width: 760px; padding: 0 0 24px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.cta {
  padding: clamp(70px, 9vw, 110px) 24px;
  background: var(--orange);
  color: var(--ink);
  text-align: center;
}
.cta h2 { max-width: 820px; margin: 0 auto; }
.cta p { max-width: 620px; margin: 20px auto 28px; font-size: 17px; line-height: 1.65; }
.cta .book { margin: 0; background: var(--ink); color: #fff; }
footer {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 32px clamp(24px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255,255,255,.62);
}
footer nav { display: flex; flex-wrap: wrap; gap: 18px; margin-left: auto; }
footer a { font-size: 13px; text-decoration: none; }

@media (max-width: 760px) {
  html { scroll-padding-top: 98px; }
  .site-nav { height: 58px; padding: 0 18px; }
  .logo { font-size: 10px; letter-spacing: 2.3px; }
  .nav-links { display: none; }
  .book { min-height: 34px; margin-left: auto; padding: 0 16px; font-size: 10px; }
  .mobile-tabs {
    position: fixed;
    z-index: 999;
    top: 58px;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    height: 40px;
    background: var(--ink);
  }
  .mobile-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .hero { padding: 136px 22px 62px; }
  h1 { font-size: clamp(50px, 15vw, 70px); }
  .hero p { font-size: 17px; }
  .section { padding: 64px 22px; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .section-copy { margin-top: 20px; }
  h2 { font-size: clamp(42px, 13vw, 58px); }
  .row { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; padding: 25px 0; }
  .row-num { font-size: 32px; }
  .row h3 { font-size: 18px; }
  .split { display: block; margin-inline: -22px; }
  .split > div { padding: 38px 22px; }
  .cta { padding: 64px 22px; }
  footer { display: block; padding: 34px 22px; }
  footer nav { margin-top: 22px; }
}


/* Shared production refinements */
img { display: block; max-width: 100%; }
a:focus-visible, summary:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
}
