/* ═══════════════════════════════════════════════
   SPEED RABBIT PIZZA — Shared Stylesheet
   Used by all inner pages
═══════════════════════════════════════════════ */
    /* ─── RESET & VARIABLES ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red:    #E5151A;
      --red-dk: #B50F13;
      --cream:  #FFF8F0;
      --cream-dk :  #cc9966;  
      --dark:   #1A1008;
      --warm:   #3D2B1F;
      --gold:   #F4A228;
      --yellow: #ffd900;   
      --text:   #2A1810;
      --muted:  #7A6258;
      --border: rgba(0,0,0,.09);
      --radius: 16px;
      --nav-h:  72px;
    }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(26,16,8,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 900;
  color: #fff; letter-spacing: .5px;
}
.nav-logo .gold { color: var(--yellow); }
.logo-rabbit {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(229,21,26,.45);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .875rem; font-weight: 500; letter-spacing: .3px;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: .5rem 1.3rem; border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 3px 14px rgba(229,21,26,.4);
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--red-dk) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(26,16,8,.97); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.5rem; font-family: 'Playfair Display', serif; font-weight: 700; transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .m-cta { background: var(--red); padding: .7rem 2.2rem; border-radius: 50px; font-size: 1rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 3rem) 5vw 4rem;
  position: relative; overflow: hidden;
}
.page-hero-dark {
  background: linear-gradient(160deg, #1A1008 0%, #2E1810 60%, #1A1008 100%);
}
.page-hero-red {
  background: linear-gradient(160deg, #B50F13 0%, #E5151A 50%, #B50F13 100%);
}
.page-hero-warm {
  background: linear-gradient(160deg, #2E1810 0%, #3D2B1F 60%, #2E1810 100%);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.hero-breadcrumb {
  font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .75rem; position: relative; z-index: 1;
}
.hero-breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.hero-breadcrumb a:hover { color: var(--yellow); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: #fff; line-height: 1.1;
  position: relative; z-index: 1;
}
.page-hero h1 em { color: var(--yellow); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,.6); font-size: 1rem; max-width: 560px;
  margin: 1rem auto 0; line-height: 1.7; position: relative; z-index: 1;
}
.hero-icon {
  font-size: 3.5rem; margin-bottom: 1rem; position: relative; z-index: 1;
}

/* ─── MAIN CONTENT ─── */
.page-body { max-width: 1140px; margin: 0 auto; padding: 5rem 5vw 6rem; }
.page-body-full { padding: 5rem 5vw 6rem; }

/* ─── SECTION ATOMS ─── */
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.12; color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-title em { color: var(--red); font-style: italic; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold); }

/* ─── PROSE ─── */
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--dark);
  margin: 2.5rem 0 .75rem;
}
.prose h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--warm);
  margin: 1.8rem 0 .5rem;
}
.prose p { line-height: 1.8; color: var(--text); margin-bottom: 1rem; font-size: .95rem; }
.prose ul { margin: .75rem 0 1.2rem 1.5rem; }
.prose ul li { line-height: 1.7; color: var(--text); margin-bottom: .35rem; font-size: .92rem; }
.prose blockquote {
  border-left: 3px solid var(--red); padding-left: 1.25rem;
  margin: 1.5rem 0; font-style: italic; color: var(--warm);
  font-size: 1.05rem;
}
.prose a { color: var(--red); border-bottom: 1px solid rgba(229,21,26,.3); transition: border-color .2s; }
.prose a:hover { border-color: var(--red); }
.legal-prose h2 { border-top: 1px solid var(--border); padding-top: 2rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: #fff;
  padding: .85rem 2rem; border-radius: 50px; font-weight: 600;
  font-size: .95rem; letter-spacing: .3px;
  box-shadow: 0 4px 20px rgba(229,21,26,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(229,21,26,.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid rgba(0,0,0,.2); color: var(--dark);
  padding: .85rem 2rem; border-radius: 50px; font-weight: 500;
  font-size: .95rem; transition: border-color .2s, background .2s;
  background: transparent; cursor: pointer; font-family: inherit;
}
.btn-outline:hover { border-color: var(--dark); background: rgba(0,0,0,.04); }
.btn-outline-white {
  border-color: rgba(255,255,255,.4); color: #fff;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); color: #fff; }

/* ─── CARDS ─── */
.card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.1); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem;
}
.card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.menu-card-emoji {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ─── GRID HELPERS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── FORM ─── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--warm); margin-bottom: .4rem; letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: .9rem; background: #fff;
  color: var(--text); outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .75rem; color: var(--muted); margin-top: .3rem; }
.form-success {
  display: none; background: #E8F5E9; border: 1px solid #A5D6A7;
  color: #1B5E20; border-radius: 10px; padding: 1rem 1.25rem;
  font-size: .9rem; font-weight: 500; margin-top: 1rem;
}

/* ─── DARK SECTION ─── */
.section-dark {
  background: var(--dark); padding: 5rem 5vw;
}
.section-red {
  background: var(--red); padding: 5rem 5vw;
}

/* ─── DIVIDER ─── */
.divider {
  width: 48px; height: 3px; background: var(--red);
  border-radius: 2px; margin: 1.25rem 0 1.75rem;
}
.divider.gold { background: var(--gold); }
.divider.center { margin-left: auto; margin-right: auto; }

/* ─── TAGS ─── */
.tag {
  display: inline-block; background: rgba(229,21,26,.1); color: var(--red);
  font-size: .72rem; font-weight: 700; letter-spacing: .5px;
  padding: .22rem .7rem; border-radius: 50px; text-transform: uppercase;
}
.tag.gold { background: rgba(244,162,40,.15); color: #B5760A; }
.tag.dark { background: rgba(0,0,0,.08); color: var(--warm); }

/* ─── ACCORDION ─── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%; background: #fff; border: none; cursor: pointer;
  padding: 1.2rem 1.5rem; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--text);
  transition: background .2s;
}
.accordion-btn:hover { background: rgba(229,21,26,.04); }
.accordion-btn span { font-size: 1.1rem; transition: transform .3s; }
.accordion-btn.open span { transform: rotate(45deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 1.5rem;
  font-size: .9rem; line-height: 1.75; color: var(--muted); background: #fff;
}
.accordion-body.open { max-height: 600px; padding: 1rem 1.5rem 1.5rem; }

/* ─── STAT BAND ─── */
.stat-band {
  display: flex; flex-wrap: wrap; gap: 0;
}
.stat-band-item {
  flex: 1 1 180px; padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 900; color: var(--gold);
  display: block;
}
.stat-band-label { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: .3rem; }

/* ─── TABLE ─── */
.srp-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.srp-table th {
  background: var(--dark); color: #fff; padding: .9rem 1rem;
  text-align: left; font-weight: 600; font-size: .8rem; letter-spacing: .5px;
}
.srp-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.srp-table tr:hover td { background: rgba(229,21,26,.03); }
.srp-table td strong { color: var(--red); }

/* ─── FOOTER ─── */
footer {
  background: #0E0705; color: rgba(255,255,255,.5);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; color: #fff;
}
.footer-brand-logo .gold { color: var(--gold); }
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: background .2s; color: #fff;
}
.social-btn:hover { background: var(--red); }
.footer-col h4 { color: #fff; font-size: .85rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul a { font-size: .82rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; }
.health-msg { font-size: .72rem; color: rgba(255,255,255,.25); font-style: italic; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: .75rem; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--red), var(--gold));
  border-radius: 1px;
}
.timeline-item { position: relative; margin-bottom: 2.2rem; }
.timeline-dot {
  position: absolute; left: -2.05rem; top: .25rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px rgba(229,21,26,.2);
}
.timeline-year {
  font-size: .75rem; font-weight: 700; color: var(--red);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: .2rem;
}
.timeline-text { font-size: .9rem; color: var(--text); line-height: 1.65; }
.timeline-text strong { color: var(--dark); font-weight: 600; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 280px; }
}