/* ============================================================
   Roaring For Eli — shared stylesheet (DARK THEME)
   Palette pulled from the lion logo:
   gold #F6A800 · charcoal #232120 · brain pink #E97285 · ribbon gray #8C8C8C
   ============================================================ */

:root {
  --gold: #f6a800;
  --gold-bright: #ffb61c;
  --gold-soft: rgba(246, 168, 0, 0.15);
  --ink: #f0eae0;          /* main text (light on dark) */
  --text-soft: #b8b0a4;    /* secondary text */
  --pink: #e97285;
  --gray: #8c8c8c;
  --paper: #171514;        /* page background */
  --panel: #211e1c;        /* raised panels / alt bands */
  --card: #262220;         /* cards */
  --line: #3a3530;         /* borders */
  --radius: 14px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --maxw: 1080px;   /* keeps the site from feeling huge/zoomed on desktop */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--gold-bright); }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 600;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 760px; }

section { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: #171514;
  box-shadow: 0 4px 14px rgba(246, 168, 0, 0.3);
}
.btn-gold:hover { background: var(--gold-bright); color: #171514; }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #171514; }
.btn-dark { background: var(--ink); color: #171514; }
.btn-dark:hover { background: #fff; color: #171514; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 21, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand img { width: 46px; height: 46px; }
.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { text-decoration: none; border-bottom-color: var(--gold); color: var(--ink); }
.nav-links a.active { border-bottom-color: var(--gold); font-weight: 700; }
.nav-links .nav-cta {
  background: var(--gold);
  color: #171514;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  border-bottom: none;
}
.nav-links .nav-cta:hover { background: var(--gold-bright); color: #171514; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(246, 168, 0, 0.12), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(233, 114, 133, 0.08), transparent 60%),
    var(--paper);
  padding: 72px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero h1 .gold { color: var(--gold); }
.hero-tag {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 34em;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-logo {
  width: min(320px, 70%);
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}
.hero-photo {
  width: min(400px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  border: 4px solid var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transform: rotate(1.5deg);
}
.hero-hashtag {
  margin-top: 26px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ---------- Story strip ---------- */
.story { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story p { margin-bottom: 16px; color: #cdc5b8; }
.story p:last-child { margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.gallery-grid a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--panel);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.gallery-grid a:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 8, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card h3 { font-size: 1.25rem; }
.card p { color: var(--text-soft); flex-grow: 1; }
.card .btn { align-self: flex-start; }
.card-icon { font-size: 1.9rem; }
.card-featured { border-top: 5px solid var(--gold); }
.card-soon { border-style: dashed; box-shadow: none; background: var(--paper); }
.badge-soon {
  align-self: flex-start;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---------- Stat cards (Eli's Fight) ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin: 36px 0 10px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.stat-number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-soft); font-size: 0.95rem; }
.stat-footnote {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 16px;
}
.prose h3 { font-size: 1.35rem; margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; color: #cdc5b8; }
.callout {
  background: var(--panel);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 24px 0;
  color: #d5cdc0;
}

/* ---------- Accordion (FAQ) ---------- */
.accordion { margin-top: 26px; }
.accordion details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.2s;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details[open] summary { border-bottom: 1px solid var(--line); }
.accordion .acc-body { padding: 16px 22px 20px; color: var(--text-soft); }

/* ---------- Blog ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 30px;
}
.post-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease;
}
.post-card:hover { transform: translateY(-4px); text-decoration: none; }
.post-card img { width: 100%; height: 210px; object-fit: cover; }
.post-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.post-date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.post-card h3 { font-size: 1.2rem; color: var(--ink); }
.post-card p { color: var(--text-soft); font-size: 0.95rem; flex-grow: 1; }
.read-more { font-weight: 600; color: var(--gold); }

/* Single post */
.post-hero {
  max-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.post-hero img { width: 100%; object-fit: cover; }
.post-body h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 8px; }
.post-body .post-date { display: block; margin-bottom: 24px; }
.post-body p { margin-bottom: 18px; color: #d5cdc0; }
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ---------- Banner note ---------- */
.note-band { background: var(--panel); text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.note-band p { max-width: 46em; margin: 0 auto 10px; font-size: 1.1rem; color: #cdc5b8; }
.note-band .hashtag { font-weight: 800; color: var(--gold); font-size: 1.2rem; letter-spacing: 0.02em; }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact .contact-logo { width: 150px; margin: 0 auto 18px; }
.contact-email {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(246, 168, 0, 0.1), transparent 60%),
    var(--paper);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 10px; }
.page-hero p { color: var(--text-soft); max-width: 40em; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #111010;
  color: #cfc9c0;
  padding: 56px 0 28px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { width: 90px; margin-bottom: 14px; }
.footer-brand .brand-name { color: #fff; display: block; margin-bottom: 8px; }
.site-footer h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #cfc9c0; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: #9a948b;
}
.footer-bottom .hashtag { color: var(--gold); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-logo { order: -1; width: min(220px, 55%); }
  .hero-photo { order: -1; width: min(300px, 75%); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  section { padding: 48px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    display: none;
    padding: 10px 0 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: inline-block; padding: 12px 0; }
  .nav-links .nav-cta { margin-top: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
