/* ============================================================
   Believers On Deen — SHARED DESIGN SYSTEM
   Editorial / warm off-white, Zilla Slab display + Archivo body.
   Extracted from the homepage so every page shares one design language.
   Fonts are loaded per-page via a <link> to Google Fonts (Archivo + Zilla Slab).
   ============================================================ */
:root {
  --bg:       #faf8f4;   /* warm off-white page */
  --ink:      #111111;   /* primary text */
  --ink-soft: #555555;   /* secondary text */
  --muted:    #8a8a86;   /* eyebrows, captions, meta */
  --line:     rgba(0,0,0,0.12);   /* hairline borders */
  --surface:  #f5f5f3;   /* cards / elevated panels */
  --on-dark:  #ffffff;   /* text over dark media */
  --accent:   #ff003c;   /* brand red */

  --f-head: 'Zilla Slab', Georgia, serif;
  --f-body: 'Archivo', system-ui, sans-serif;

  --container: 1280px;
  --gutter: 24px;
  --section-pad: clamp(56px, 9vw, 120px);
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  background: var(--bg); color: var(--ink); font-family: var(--f-body);
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-pad) 0; }
.container--narrow { max-width: 820px; }

/* ---------- shared type ---------- */
.eyebrow { font-family: var(--f-body); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.h2 { font-family: var(--f-head); font-weight: 700; font-size: clamp(26px, 4.5vw, 44px); line-height: 1.0; letter-spacing: -0.01em; }
.section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head .h2 { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.lede { font-size: 16px; color: var(--ink-soft); max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  padding: 11px 20px; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: opacity 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
              transform 0.25s cubic-bezier(0.19,1,0.22,1), box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.08s; }
.btn svg { width: 15px; height: 15px; transition: transform 0.25s cubic-bezier(0.19,1,0.22,1); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #d4002f; box-shadow: 0 6px 20px rgba(255,0,60,0.35); }
.btn-secondary { background: transparent; color: var(--ink); border-color: rgba(0,0,0,0.28); }
.btn-secondary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .btn, .btn svg { transition: none; } .btn:hover { transform: none; } }

/* ---------- announcement bar ---------- */
.announce { background: var(--surface); color: var(--ink); border-bottom: 1px solid var(--line); font-size: 13px; letter-spacing: 0.04em; text-align: center; position: relative; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 38px; padding: 7px 44px; }
.announce a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.announce-close { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--ink); opacity: 0.6; font-size: 16px; line-height: 1; cursor: pointer; padding: 8px; }
.announce-close:hover { opacity: 1; }
@media (max-width: 600px) { .announce-mobile-hide { display: none; } .announce-inner { padding: 7px 40px; font-size: 12px; } }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--bg); transition: box-shadow 0.18s ease, border-color 0.18s ease; border-bottom: 1px solid transparent; }
.site-header.scrolled { border-bottom-color: var(--line); }
body.menu-open .site-header { background: transparent; border-bottom-color: transparent; }
body.menu-open .nav-logo img { filter: invert(1); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.nav-logo img { height: 26px; width: auto; }
.nav-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: none; padding: 10px; cursor: pointer; min-width: 44px; min-height: 44px; position: relative; z-index: 210; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.open span { background: var(--on-dark); }

/* ---------- fullscreen stairs menu ---------- */
.menu-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 150; pointer-events: none; transform: translateY(-100%); will-change: transform; display: flex; }
.menu-overlay.is-open { transform: translateY(0); transition: transform 0.6s cubic-bezier(0.76,0,0.24,1); }
.menu-overlay.gsap-mode { transform: none; }
.stairs__bar { width: 20%; height: 100%; background: var(--ink); }
.menu-panel { position: fixed; inset: 0; z-index: 160; display: flex; visibility: hidden; pointer-events: none; }
.menu-panel.is-open { visibility: visible; pointer-events: auto; }
.menu-panel__col { display: flex; flex-direction: column; justify-content: center; height: 100%; padding: 5rem 0; }
.menu-panel__col--primary { flex: 3; align-items: center; }
.menu-panel__col--secondary { flex: 2; align-items: center; row-gap: clamp(60px, 14vh, 200px); }
.menu-panel__list { display: flex; flex-direction: column; gap: 1.5rem; }
.menu-panel__list--top, .menu-panel__list--bottom { gap: 1.25rem; }
.menu-panel__item { position: relative; overflow: hidden; line-height: 1; }
.menu-link { position: relative; top: 100%; display: inline-flex; align-items: baseline; gap: 1rem; color: var(--on-dark); text-decoration: none; }
.menu-panel.is-open .menu-link { top: 0; }
.menu-link--primary { font-family: var(--f-head); font-weight: 700; font-size: clamp(52px, 8vw, 116px); text-transform: uppercase; letter-spacing: -0.01em; line-height: 0.9; }
.menu-link--secondary { font-family: var(--f-body); font-weight: 600; font-size: clamp(22px, 3vw, 34px); text-transform: uppercase; letter-spacing: 0.02em; }
.menu-link--primary:hover, .menu-link--secondary:hover { color: var(--accent); }
.menu-link__num { font-family: var(--f-body); font-size: 1rem; font-weight: 600; color: var(--accent); }
@media (max-width: 768px) {
  .menu-panel { flex-direction: column; justify-content: center; gap: 2.75rem; padding: 88px var(--gutter) 48px; }
  .menu-panel__col { height: auto; flex: none; padding: 0; align-items: flex-start; }
  .menu-panel__col--secondary { row-gap: 1.75rem; }
  .menu-panel__list { gap: 0.85rem; }
  .menu-link--primary { font-size: clamp(46px, 15vw, 72px); }
  .menu-link--secondary { font-size: 19px; }
  .menu-link__num { font-size: 0.8rem; }
}

/* ---------- interior page header (banner for non-home pages) ---------- */
.page-hero { padding: clamp(48px, 8vw, 96px) 0 clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--f-head); font-weight: 700; font-size: clamp(34px, 6vw, 60px); line-height: 1.0; letter-spacing: -0.01em; }
.page-hero .lede { margin-top: 18px; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }

/* ---------- prose (legal, FAQ answers, articles) ---------- */
.prose { max-width: 720px; color: var(--ink-soft); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--f-head); font-weight: 700; font-size: clamp(22px, 3.2vw, 30px); color: var(--ink); line-height: 1.1; margin-top: 2em; letter-spacing: -0.01em; }
.prose h3 { font-family: var(--f-body); font-weight: 600; font-size: 18px; color: var(--ink); margin-top: 1.6em; }
.prose p, .prose li { font-size: 16px; line-height: 1.7; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.5em; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose .muted { font-size: 14px; color: var(--muted); }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 72px) 0 32px; }
.footer-trust { text-align: center; font-size: 14px; color: var(--ink-soft); padding-bottom: 36px; border-bottom: 1px solid var(--line); margin-bottom: 36px; }
.footer-trust a { color: var(--ink); text-underline-offset: 3px; }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-logo { height: 44px; width: auto; display: block; }
.footer-brand p { font-size: 14px; color: var(--ink-soft); max-width: 30ch; margin-top: 12px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; text-decoration: none; color: var(--ink-soft); padding: 5px 0; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.footer-bottom .copy { font-size: 13px; color: var(--muted); }
.pay-icons { display: flex; align-items: center; gap: 10px; }
.pay-icons img { height: 22px; width: auto; opacity: 0.8; }
@media (max-width: 768px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col a { padding: 10px 0; font-size: 15px; }
  .footer-col h4 { margin-bottom: 8px; }
}

/* ---------- sale treatment ---------- */
.sale-hot { color: var(--accent); font-weight: 700; letter-spacing: 0.03em; }
.announce s, .price .was, .price s, .prose s, .was { color: var(--muted); font-weight: 400; }
.price .now { color: var(--accent); font-weight: 700; }
.sale-badge {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 9px; border-radius: 4px;
}

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
.reveal.in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }
