/* ══════════════════════════════════════
   THE SAUCY ROLLER — Global Stylesheet
   thesaucyroller.com
══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --red:     #D42B2B;
  --red2:    #B01E1E;
  --yellow:  #F5C518;
  --yellow2: #E0B000;
  --cream:   #F9F2E0;
  --offwhite:#FDF8ED;
  --navy:    #1A2744;
  --navy2:   #0F1A30;
  --green:   #1B5E35;
  --green2:  #134526;
  --black:   #111111;

  --display: 'Bebas Neue', 'Oswald', sans-serif;
  --hand:    'Permanent Marker', cursive;
  --type:    'Special Elite', 'Courier New', monospace;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Oswald', sans-serif;
}

body {
  background: var(--offwhite);
  color: var(--black);
  font-family: var(--type);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='none'/%3E%3Ccircle cx='1' cy='1' r='0.5' fill='rgba(0,0,0,0.05)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: var(--navy);
  border-bottom: 5px solid var(--yellow);
  padding: 0 40px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-badge {
  background: var(--red);
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 2px solid var(--yellow);
  line-height: 1.2;
  text-align: center;
  transform: rotate(-1deg);
  display: inline-block;
}
.nav-logo-badge span { display: block; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--cream); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 8px 18px;
  transition: background .15s, color .15s;
  border-right: 1px solid rgba(255,255,255,0.08);
  height: 68px;
  display: flex; align-items: center;
}
.nav-links a:hover, .nav-links a.active { background: var(--yellow); color: var(--navy); }
.nav-cta {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 24px;
  text-decoration: none;
  border: 2px solid var(--yellow2);
  transition: all .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red); color: var(--yellow); border-color: var(--red2); }

/* ── TICKER ── */
.ticker {
  background: var(--navy);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: ticker-roll 25s linear infinite; }
.ticker-item {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-right: 56px;
}
.ticker-bullet { color: var(--yellow); margin-right: 56px; font-size: 0.7rem; }
@keyframes ticker-roll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--red);
  padding: 130px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--navy);
}
.page-hero::before {
  content: '';
  position: absolute; top: 68px; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 24px, var(--navy) 24px, var(--navy) 48px);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 24px, var(--navy) 24px, var(--navy) 48px);
}
.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 5px 20px;
  display: inline-block;
}
.page-hero-h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--red2), 8px 8px 0 rgba(0,0,0,0.15);
  margin-bottom: 16px;
}
.page-hero-sub {
  font-family: var(--type);
  font-size: 1rem;
  color: rgba(249,242,224,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SECTION GLOBALS ── */
section { padding: 80px 40px; }
.container { max-width: 1160px; margin: 0 auto; }
.section-kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.section-kicker::before, .section-kicker::after {
  content: ''; flex: 1; max-width: 40px; height: 2px; background: var(--red);
}
.section-h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-sub {
  font-family: var(--type);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  max-width: 580px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--navy);
  padding: 14px 44px;
  text-decoration: none;
  border: 4px solid var(--navy);
  box-shadow: 5px 5px 0 var(--navy);
  transition: all .12s;
  display: inline-block;
}
.btn-primary:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--navy); }
.btn-outline {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--navy);
  padding: 14px 36px;
  text-decoration: none;
  border: 4px solid var(--navy);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.12);
  transition: all .12s;
  display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: var(--yellow); transform: translate(-2px,-2px); }

/* ── CTA BAND (shared) ── */
.cta-band {
  background: var(--navy2);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 8px solid var(--red);
}
.cta-band::before, .cta-band::after {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute;
  font-size: 0.9rem; color: rgba(245,197,24,0.1);
  letter-spacing: 2rem; white-space: nowrap; left:0; right:0; text-align:center;
}
.cta-band::before { top:20px; } .cta-band::after { bottom:20px; }
.cta-inner { position:relative; z-index:1; }
.cta-eyebrow { font-family:var(--sans); font-size:0.72rem; letter-spacing:0.3em; text-transform:uppercase; color:rgba(245,197,24,0.45); margin-bottom:12px; }
.cta-h2 { font-family:var(--display); font-size:clamp(2.5rem,6vw,5.5rem); line-height:0.9; color:var(--yellow); text-shadow:4px 4px 0 rgba(0,0,0,0.2); margin-bottom:14px; }
.cta-sub { font-family:var(--hand); font-size:1.3rem; color:var(--cream); margin-bottom:40px; display:inline-block; transform:rotate(-1deg); }
.cta-phone { font-family:var(--display); font-size:clamp(1.8rem,4.5vw,4rem); color:var(--yellow); text-decoration:none; display:block; margin-bottom:28px; text-shadow:3px 3px 0 rgba(0,0,0,0.2); transition:color .15s; }
.cta-phone:hover { color:var(--cream); }
.cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn-cta { font-family:var(--display); font-size:1.2rem; letter-spacing:0.08em; background:var(--yellow); color:var(--navy); padding:16px 48px; text-decoration:none; border:4px solid var(--cream); box-shadow:6px 6px 0 rgba(255,255,255,0.1); transition:all .12s; }
.btn-cta:hover { background:var(--cream); transform:translate(-3px,-3px); box-shadow:9px 9px 0 rgba(255,255,255,0.1); }
.btn-cta-outline { font-family:var(--display); font-size:1.2rem; letter-spacing:0.08em; background:transparent; color:var(--yellow); padding:16px 36px; text-decoration:none; border:4px solid var(--yellow); box-shadow:6px 6px 0 rgba(245,197,24,0.15); transition:all .12s; }
.btn-cta-outline:hover { background:var(--yellow); color:var(--navy); transform:translate(-3px,-3px); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 6px solid var(--yellow);
  padding: 64px 40px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 2px dashed rgba(245,197,24,0.2);
  margin-bottom: 36px;
}
.footer-brand { font-family:var(--display); font-size:2rem; color:var(--yellow); letter-spacing:0.04em; margin-bottom:8px; line-height:1; text-shadow:3px 3px 0 rgba(0,0,0,0.3); }
.footer-brand-sub { font-family:var(--hand); font-size:0.9rem; color:rgba(245,197,24,0.4); margin-bottom:18px; }
.footer-desc { font-family:var(--type); font-size:0.78rem; color:rgba(249,242,224,0.35); line-height:1.7; max-width:260px; margin-bottom:18px; }
.footer-contact a { display:block; font-family:var(--type); font-size:0.78rem; color:rgba(249,242,224,0.4); text-decoration:none; margin-bottom:6px; transition:color .15s; }
.footer-contact a:hover { color:var(--yellow); }
.footer-col-h { font-family:var(--sans); font-size:0.62rem; font-weight:600; letter-spacing:0.25em; text-transform:uppercase; color:var(--yellow); margin-bottom:16px; padding-bottom:8px; border-bottom:1px solid rgba(245,197,24,0.2); }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:7px; }
.footer-links a { font-family:var(--type); font-size:0.78rem; color:rgba(249,242,224,0.35); text-decoration:none; transition:color .15s; }
.footer-links a:hover { color:var(--yellow); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.footer-copy { font-family:var(--type); font-size:0.7rem; color:rgba(249,242,224,0.2); }
.footer-seo { display:flex; flex-wrap:wrap; gap:14px; }
.footer-seo a { font-family:var(--type); font-size:0.66rem; color:rgba(249,242,224,0.15); text-decoration:none; transition:color .15s; }
.footer-seo a:hover { color:rgba(245,197,24,0.5); }

/* ── MENU BOARD ── */
.menu-board { background:var(--navy); border:6px solid var(--yellow); box-shadow:8px 8px 0 var(--navy2); overflow:hidden; }
.menu-board-header { background:var(--yellow); padding:14px 40px; text-align:center; border-bottom:4px solid var(--navy); }
.menu-board-title { font-family:var(--display); font-size:2rem; color:var(--navy); letter-spacing:0.06em; }
.menu-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0; }
.menu-item { padding:32px 28px; border-right:2px solid rgba(245,197,24,0.15); border-bottom:2px solid rgba(245,197,24,0.15); position:relative; transition:background .2s; }
.menu-item:hover { background:rgba(245,197,24,0.05); }
.menu-item:nth-child(3n) { border-right:none; }
.menu-item:nth-last-child(-n+3) { border-bottom:none; }
.menu-item-num { font-family:var(--display); font-size:3rem; color:rgba(245,197,24,0.1); position:absolute; top:10px; right:18px; line-height:1; }
.menu-item-icon { font-size:1.8rem; margin-bottom:14px; display:block; }
.menu-item-name { font-family:var(--display); font-size:1.35rem; color:var(--yellow); letter-spacing:0.03em; margin-bottom:10px; line-height:1.1; }
.menu-item-desc { font-family:var(--type); font-size:0.8rem; color:rgba(249,242,224,0.6); line-height:1.65; margin-bottom:16px; }
.menu-item-tags { display:flex; flex-wrap:wrap; gap:5px; }
.menu-tag { font-family:var(--sans); font-size:0.58rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--yellow); border:1px solid rgba(245,197,24,0.3); padding:2px 8px; }
.menu-item-link { display:inline-block; margin-top:14px; font-family:var(--sans); font-size:0.72rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--yellow); text-decoration:none; border-bottom:1px solid rgba(245,197,24,0.4); padding-bottom:2px; transition:border-color .15s; }
.menu-item-link:hover { border-color:var(--yellow); }

/* ── FAQ ── */
.faq-list { max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:0; }
.faq-item { border:3px solid var(--navy); border-bottom:none; background:var(--offwhite); transition:background .15s; }
.faq-item:last-child { border-bottom:3px solid var(--navy); }
.faq-item.open { background:var(--navy); }
.faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 28px; cursor:pointer; gap:16px; }
.faq-q:hover { background:rgba(0,0,0,0.04); }
.faq-item.open .faq-q:hover { background:rgba(255,255,255,0.03); }
.faq-q-text { font-family:var(--display); font-size:1.05rem; color:var(--navy); letter-spacing:0.03em; line-height:1.3; }
.faq-item.open .faq-q-text { color:var(--yellow); }
.faq-q-icon { width:28px; height:28px; background:var(--yellow); color:var(--navy); border:2px solid var(--navy); display:flex; align-items:center; justify-content:center; font-size:1.1rem; font-weight:700; flex-shrink:0; transition:transform .3s; }
.faq-item.open .faq-q-icon { transform:rotate(45deg); background:var(--red); color:var(--yellow); border-color:var(--red2); }
.faq-a { display:none; padding:0 28px 20px; font-family:var(--type); font-size:0.86rem; color:rgba(249,242,224,0.7); line-height:1.75; }
.faq-item.open .faq-a { display:block; }

/* ── PROOF CARDS ── */
.proof-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.proof-card { background:var(--cream); border:4px solid var(--navy); box-shadow:5px 5px 0 var(--navy2); padding:28px; position:relative; transition:transform .2s, box-shadow .2s; }
.proof-card:hover { transform:translate(-3px,-3px); box-shadow:8px 8px 0 var(--navy2); }
.proof-card::before { content:'"'; font-family:var(--serif); font-size:4.5rem; color:var(--red); position:absolute; top:-8px; left:18px; line-height:1; opacity:0.35; }
.proof-stars { color:var(--red); font-size:0.85rem; letter-spacing:2px; margin-bottom:14px; }
.proof-quote { font-family:var(--type); font-size:0.86rem; color:#333; line-height:1.75; margin-bottom:20px; font-style:italic; }
.proof-author-name { font-family:var(--display); font-size:0.95rem; color:var(--navy); letter-spacing:0.05em; }
.proof-author-loc { font-family:var(--sans); font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--red); margin-top:3px; }

/* ── SCROLL ANIM ── */
.fade-in { opacity:0; transform:translateY(20px); transition:opacity .55s ease, transform .55s ease; }
.fade-in.vis { opacity:1; transform:none; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  nav { padding:0 20px; }
  .nav-links { display:none; }
  section { padding:64px 24px; }
  .menu-grid { grid-template-columns:1fr 1fr; }
  .menu-item:nth-child(2n) { border-right:none; }
  .menu-item:nth-child(3n) { border-right:2px solid rgba(245,197,24,0.15); }
  .proof-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
}
@media (max-width:640px) {
  section { padding:56px 20px; }
  .page-hero { padding:110px 20px 64px; }
  .menu-grid { grid-template-columns:1fr; }
  .menu-item { border-right:none !important; }
  .footer-top { grid-template-columns:1fr; }
  .cta-band { padding:56px 20px; }
  footer { padding:48px 20px 32px; }
}
