/* ---------- Tokens ---------- */
:root{
  --cream: #E8E0D5;
  --white: #FFFFFF;
  --ink: #000000;
  --ink-soft: #4A443B;
  --orange: #F26D24;
  --orange-deep: #CC591C;

  --font-display: "Gabarito", sans-serif;

  --pad: 64px;
  --pad-mobile: 24px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus{ left: var(--pad-mobile); top: var(--pad-mobile); }

:focus-visible{
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- Logo wordmark ---------- */
.wordmark-img{
  display: block;
  height: 40px;
  width: auto;
  margin: 0 0 28px;
}

/* ---------- Floating pill nav ---------- */
.pill-nav{
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
}
.pill-icon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.pill-link{
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.pill-link:hover{ color: var(--white); }
.pill-link.is-active{
  background: var(--orange);
  color: var(--white);
}
.pill-cta{
  margin-left: 4px;
  padding: 10px 20px;
  border-radius: 999px 999px 999px 0;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill-cta:hover{ background: var(--orange-deep); }
.arrow{ display: inline-block; }

/* ---------- Mobile nav ---------- */
.nav-toggle{
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 110;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: var(--ink);
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--white);
}
.mobile-nav{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav a{
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  padding: 14px;
}
.mobile-cta{ color: var(--orange) !important; }
body.nav-open .mobile-nav{ display: flex; }

/* ---------- Split-screen sections ---------- */
.split{
  display: grid;
  grid-template-columns: minmax(320px, 33%) 1fr;
  min-height: 100vh;
}
.split-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  max-width: 460px;
}
.split-content--wide{ max-width: 620px; }

.split-media{ position: relative; overflow: hidden; background: var(--cream); }
.split-media--empty{ background: transparent; }

.split-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-hero{ background: var(--orange); }
.split-hero .body-copy{ color: rgba(255,255,255,0.9); }

.split-cream{ background: var(--cream); }
.split-white{ background: var(--white); }
.split-orange-full{ background: var(--orange); }
.split-orange-full .split-media{ background: var(--orange); }

.split-divided{ position: relative; }
.split-divided::after{
  content: "";
  position: absolute;
  left: 33%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.12);
}

/* ---------- Type ---------- */
.display-lg{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.02;
  color: var(--white);
  margin: 0 0 22px;
}
.display-md{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 18px;
}
.display-md--white{ color: var(--white); }

.section-label{
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--orange-deep);
  margin: 0 0 14px;
}

.body-copy{
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 42ch;
}
.body-copy--white{ color: rgba(255,255,255,0.9); }
.fine-print{ font-size: 14px; opacity: 0.8; }

.pull-quote{
  margin: 8px 0 24px;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn-stack{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  max-width: 320px;
}
.btn-pill{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-ink{ background: var(--ink); color: var(--white); }
.btn-ink:hover{ background: #000; }

.btn-orange{ background: var(--orange); color: var(--white); }
.btn-orange:hover{ background: var(--orange-deep); }

.btn-cream{ background: var(--cream); color: var(--ink); }
.btn-cream:hover{ background: #DED2BE; }

.btn-outline-on-orange{
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-on-orange:hover{ background: rgba(255,255,255,0.12); }

/* ---------- Stats ---------- */
.stats-band{
  background: var(--ink);
  padding: 80px var(--pad);
}
.stats-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.stat-number{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--orange);
  line-height: 1;
  margin: 0 0 14px;
}
.stat-label{ color: rgba(255,255,255,0.75); max-width: 34ch; }

/* ---------- Benefits / FAQ lists ---------- */
.benefit-list{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 8px 0 24px;
}
.benefit h3{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px;
}
.faq-list{
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 8px 0 20px;
}
.faq-item h3{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 6px;
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color: rgba(255,255,255,0.75); }
.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px var(--pad) 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-tagline{
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  max-width: 20ch;
  margin: 4px 0 14px;
}
.footer-email{
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
}
.footer-heading{
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin: 0 0 14px;
}
.footer-col{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ font-size: 15px; }
.footer-col a:hover{ color: var(--orange); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px var(--pad);
  font-size: 13px;
}

/* ---------- Legal pages ---------- */
.legal-page{ background: var(--cream); min-height: 100vh; }
.legal-content{
  max-width: 720px;
  margin: 0 auto;
  padding: 140px var(--pad-mobile) 100px;
}
.legal-back{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange-deep);
  margin-bottom: 24px;
}
.legal-content h1{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 8px;
}
.legal-updated{
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 40px;
}
.legal-section{ margin-bottom: 36px; }
.legal-content h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 12px;
}
.legal-content h3{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 20px 0 8px;
}
.legal-content p{
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  max-width: 60ch;
}
.legal-content ul{
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 15px;
}
.legal-content li{ margin-bottom: 6px; }
.inline-link{ color: var(--orange-deep); font-weight: 600; }
.legal-divider{
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 48px 0;
}
.legal-doc-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 20px;
  color: var(--orange-deep);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .pill-nav{ display: none; }
  .nav-toggle{ display: flex; }

  .split{
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .split-content{
    max-width: none;
    padding: 72px var(--pad-mobile) 40px;
  }
  .split-content--wide{ max-width: none; }
  .split-media{ min-height: 320px; }
  .split-media--empty{ display: none; }
  .split-divided::after{ display: none; }

  .display-lg{ font-size: 44px; }
  .footer-inner{
    grid-template-columns: 1fr 1fr;
    padding: 56px var(--pad-mobile) 32px;
  }
  .footer-bottom{ padding: 18px var(--pad-mobile); }
}

@media (max-width: 520px){
  .footer-inner{ grid-template-columns: 1fr; }
  .btn-stack{ max-width: none; }
}
