/* ------------------------------------------------------------------
   Guat-A-Taco — inspired by Arizona Taco Co.
   Palette: navy, birria red, cream, birria orange
------------------------------------------------------------------ */

:root{
  --navy:      #0f2340;
  --navy-2:    #16305a;
  --navy-3:    #0a1a30;
  --red:       #c8202e;
  --red-2:     #a51823;
  --cream:     #f4ebd0;
  --cream-2:   #f9f2dc;
  --orange:    #f3a52a;
  --orange-2:  #e08a15;
  --ink:       #1a1a1a;
  --ink-2:     #333;
  --muted:     #6b6b6b;
  --line:      #e6ddc0;

  --f-display:'Anton', 'Bebas Neue', Impact, sans-serif;
  --f-body:   'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-hand:   'Caveat', cursive;

  --wrap: 1240px;
  --radius: 14px;
  --shadow-lg: 0 20px 60px rgba(10,20,40,0.25);
  --shadow: 0 8px 24px rgba(10,20,40,0.12);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:#fff;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

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

.eyebrow{
  font-family:var(--f-body);
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--red);
  margin:0 0 12px;
}
.section-title{
  font-family:var(--f-display);
  font-weight:400;
  letter-spacing:0.01em;
  font-size:clamp(38px, 6vw, 72px);
  line-height:0.95;
  margin:0 0 18px;
  color:var(--navy);
}
.section-head{ text-align:center; max-width:780px; margin:0 auto 48px }
.section-head--left{ text-align:left; margin:0 0 32px }
.section-sub{ color:var(--muted); font-size:17px; margin:0 auto }
.lead{ font-size:18px; color:var(--ink-2); margin:0 0 16px }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 22px;
  border-radius:999px;
  font-family:var(--f-body);
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-size:13px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{ background:var(--red); color:#fff; box-shadow:0 6px 18px rgba(200,32,46,0.35) }
.btn--primary:hover{ background:var(--red-2) }
.btn--outline{ background:transparent; color:var(--navy); border-color:var(--navy) }
.btn--outline:hover{ background:var(--navy); color:#fff }
.btn--ghost{
  background:rgba(255,255,255,0.12);
  color:#fff;
  border-color:rgba(255,255,255,0.7);
  backdrop-filter:blur(4px);
}
.btn--ghost:hover{ background:#fff; color:var(--navy) }
.btn--lg{ padding:16px 30px; font-size:14px }

/* ---------- Top strip ---------- */
.topstrip{ background:var(--navy-3); color:var(--cream); font-size:13px }
.topstrip__inner{
  display:flex; align-items:center; gap:14px;
  padding:8px 24px;
  flex-wrap:wrap;
}
.topstrip__item{ display:inline-flex; align-items:center; gap:4px }
.topstrip__sep{ opacity:0.4 }
.topstrip__socials{ margin-left:auto; display:flex; gap:14px }
.topstrip__socials a{ color:var(--cream); font-weight:600; letter-spacing:.04em }
.topstrip__socials a:hover{ color:var(--orange) }
@media (max-width:720px){
  .topstrip__socials{ margin-left:0 }
  .topstrip__sep{ display:none }
}

/* ---------- Header ---------- */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; gap:24px;
  min-height:82px;
}
.brand{ display:inline-flex; align-items:center; gap:10px }
.brand__mark{ width:56px; height:auto; flex:0 0 auto }
.brand__text{ display:flex; flex-direction:column; line-height:1 }
.brand__name{
  font-family:var(--f-display);
  font-size:26px;
  letter-spacing:0.02em;
  color:var(--navy);
}
.brand__tag{
  font-family:var(--f-body);
  font-weight:600;
  font-size:10px;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:var(--red);
  margin-top:2px;
}

.nav{ display:flex; gap:26px; margin-left:auto }
.nav__link{
  font-family:var(--f-display);
  font-size:18px;
  letter-spacing:0.06em;
  color:var(--navy);
  position:relative;
  padding:6px 0;
}
.nav__link:hover, .nav__link.is-active{ color:var(--red) }
.nav__link.is-active::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px;
  height:3px; background:var(--red); border-radius:2px;
}

.header__cta{ margin-left:8px }

.menu-toggle{
  display:none;
  margin-left:auto;
  background:transparent; border:0; padding:8px;
  cursor:pointer;
}
.menu-toggle span{
  display:block; width:26px; height:3px;
  background:var(--navy); border-radius:2px;
  margin:5px 0;
  transition:transform .2s ease;
}
@media (max-width:960px){
  .nav{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; border-bottom:1px solid var(--line);
    flex-direction:column; padding:16px 24px 24px;
    display:none;
  }
  .nav.is-open{ display:flex }
  .menu-toggle{ display:block }
  .header__cta{ display:none }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:min(78vh, 640px);
  background:var(--navy);
  overflow:hidden;
}
.hero__slides{ position:relative; min-height:min(78vh, 640px) }
.hero__slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  display:flex; align-items:center;
  opacity:0; transition:opacity .8s ease;
}
.hero__slide.is-active{ opacity:1; z-index:2 }
.hero__slide::before{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(10,20,40,0.85) 0%, rgba(10,20,40,0.55) 45%, rgba(10,20,40,0.1) 100%);
}
.hero__grid{ position:relative; z-index:2; width:100% }
.hero__copy{ max-width:640px; color:#fff; padding:40px 0 }
.hero__eyebrow{
  font-family:var(--f-hand);
  font-size:28px;
  color:var(--orange);
  margin:0 0 6px;
}
.hero__title{
  font-family:var(--f-display);
  font-size:clamp(64px, 10vw, 130px);
  line-height:0.88;
  margin:0 0 18px;
  letter-spacing:0.005em;
  text-shadow:0 4px 24px rgba(0,0,0,0.4);
}
.hero__sub{
  font-size:18px;
  max-width:520px;
  margin:0 0 26px;
  color:rgba(255,255,255,0.92);
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap }

.hero__dots{
  position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
  display:flex; gap:10px; z-index:3;
}
.hero__dot{
  width:12px; height:12px; border-radius:50%;
  background:rgba(255,255,255,0.4);
  border:0; padding:0; cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.hero__dot.is-active{ background:var(--red); transform:scale(1.2) }

/* ---------- Banner strip ---------- */
.banner{
  background:var(--red);
  color:var(--cream);
  overflow:hidden;
  position:relative;
}
.banner__inner{
  display:flex; align-items:center; gap:32px;
  padding:14px 0;
  animation: scroll 40s linear infinite;
  white-space:nowrap;
  max-width:none;
}
.banner__text{
  font-family:var(--f-display);
  font-size:20px;
  letter-spacing:0.14em;
}
.banner__star{ color:var(--orange); font-size:22px }
@keyframes scroll{
  from{ transform:translateX(0) }
  to  { transform:translateX(-50%) }
}

/* ---------- Three CTA cards ---------- */
.threecta{ padding:64px 0; background:var(--cream-2) }
.threecta__grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
.ctacard{
  position:relative; display:block;
  border-radius:var(--radius); overflow:hidden;
  min-height:280px;
  box-shadow:var(--shadow);
  isolation:isolate;
  transition:transform .25s ease, box-shadow .25s ease;
}
.ctacard:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg) }
.ctacard__bg{
  position:absolute; inset:0;
  background-image:var(--img);
  background-size:cover; background-position:center;
  transform:scale(1.02); transition:transform .5s ease;
  z-index:-1;
}
.ctacard:hover .ctacard__bg{ transform:scale(1.08) }
.ctacard::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,20,40,0.15) 0%, rgba(10,20,40,0.85) 100%);
  z-index:-1;
}
.ctacard__inner{
  position:absolute; inset:auto 0 0 0;
  padding:24px 26px;
  color:#fff;
}
.ctacard__kicker{
  font-family:var(--f-hand);
  color:var(--orange);
  margin:0 0 4px;
  font-size:22px;
}
.ctacard__title{
  font-family:var(--f-display);
  font-size:36px;
  margin:0 0 10px;
  letter-spacing:0.02em;
}
.ctacard__cta{
  font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; font-size:12px;
  color:var(--cream);
}
@media (max-width:900px){
  .threecta__grid{ grid-template-columns:1fr; }
  .ctacard{ min-height:220px }
}

/* ---------- Story ---------- */
.story{ padding:96px 0; background:#fff }
.story__grid{
  display:grid; grid-template-columns:1fr 1.1fr; gap:64px; align-items:center;
}
.story__media{ position:relative }
.story__media img{
  width:100%; height:auto;
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit:cover;
}
.story__tag{
  position:absolute; bottom:-24px; right:-24px;
  background:var(--red); color:#fff;
  padding:18px 22px;
  border-radius:var(--radius);
  display:flex; align-items:center; gap:14px;
  box-shadow:var(--shadow);
  border:3px solid var(--cream);
}
.story__tag-num{
  font-family:var(--f-display); font-size:44px; line-height:1;
}
.story__tag-txt{
  font-size:12px; letter-spacing:0.1em; text-transform:uppercase; font-weight:700;
}
.story__cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:24px }
@media (max-width:900px){
  .story__grid{ grid-template-columns:1fr; gap:40px }
  .story__tag{ right:16px; bottom:16px }
}

/* ---------- Menu ---------- */
.menu{ padding:100px 0; background:var(--navy); color:var(--cream) }
.menu .section-title{ color:var(--cream) }
.menu .section-sub{ color:rgba(244,235,208,0.75) }
.menu .eyebrow{ color:var(--orange) }

.menu__featured{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:20px;
  margin-bottom:56px;
}
.dish{
  position:relative;
  background:var(--navy-2);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex; flex-direction:column;
}
.dish--tall{ grid-row: span 1 }
.dish img{ width:100%; height:280px; object-fit:cover }
.dish--tall img{ height:420px }
.dish__body{ padding:20px 22px }
.dish__row{ display:flex; align-items:baseline; justify-content:space-between; gap:12px }
.dish__name{ font-family:var(--f-display); font-size:26px; margin:0; letter-spacing:0.01em; color:#fff }
.dish__price{ font-family:var(--f-display); font-size:24px; color:var(--orange) }
.dish__desc{ margin:8px 0 0; font-size:14px; color:rgba(244,235,208,0.8); line-height:1.5 }
.dish__badge{
  position:absolute; top:14px; left:0;
  background:var(--red); color:#fff;
  font-size:11px; font-weight:800; letter-spacing:0.14em; text-transform:uppercase;
  padding:6px 12px 6px 14px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
}
@media (max-width:900px){
  .menu__featured{ grid-template-columns:1fr }
  .dish img, .dish--tall img{ height:240px }
}

/* Categories */
.menu__cats{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:32px;
}
.cat{
  background:var(--navy-2);
  border:1px solid rgba(244,235,208,0.08);
  border-radius:var(--radius);
  padding:28px 28px 24px;
}
.cat__head{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:16px }
.cat__icon{ width:28px; height:28px; color:var(--orange); flex:0 0 auto }
.cat__title{
  font-family:var(--f-display); font-size:28px; margin:0;
  color:#fff; letter-spacing:0.02em;
}
.cat__sub{
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--orange); margin:0 0 0 auto;
}
.cat__grid{ display:grid; gap:16px }
.cat__grid--3{ grid-template-columns:repeat(3, 1fr) }
.pick{ background:rgba(0,0,0,0.15); border-radius:10px; overflow:hidden }
.pick img{ width:100%; height:120px; object-fit:cover }
.pick h4{
  margin:12px 12px 4px; font-size:16px; color:#fff;
  display:flex; justify-content:space-between; align-items:baseline;
  font-family:var(--f-display); letter-spacing:0.02em; font-weight:400;
  font-size:20px;
}
.pick h4 span{ color:var(--orange); font-size:16px }
.pick p{ margin:0 12px 14px; font-size:13px; color:rgba(244,235,208,0.75) }
.cat__note{
  margin:14px 0 0; font-size:13px;
  color:rgba(244,235,208,0.75);
  padding-top:14px; border-top:1px dashed rgba(244,235,208,0.15);
}
.cat__note strong{ color:var(--orange); font-weight:700 }

.items{ list-style:none; margin:0; padding:0 }
.items li{
  display:flex; align-items:baseline; gap:8px;
  padding:9px 0; border-bottom:1px dashed rgba(244,235,208,0.12);
  font-size:15px; color:rgba(244,235,208,0.9);
}
.items li:last-child{ border-bottom:0 }
.items li em{
  font-style:normal; margin-left:8px;
  font-size:10px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--red);
  background:rgba(200,32,46,0.15);
  padding:2px 8px; border-radius:99px;
}
.items .dots{
  flex:1 1 auto;
  border-bottom:2px dotted rgba(244,235,208,0.25);
  transform:translateY(-4px);
}
.items .price{ font-family:var(--f-display); font-size:22px; color:var(--orange) }

.menu__cta{
  display:flex; gap:14px; flex-wrap:wrap;
  justify-content:center; margin-top:48px;
}
.menu__cta .btn--outline{ color:var(--cream); border-color:var(--cream) }
.menu__cta .btn--outline:hover{ background:var(--cream); color:var(--navy) }

@media (max-width:900px){
  .menu__cats{ grid-template-columns:1fr }
  .cat__grid--3{ grid-template-columns:1fr 1fr }
}
@media (max-width:560px){
  .cat__grid--3{ grid-template-columns:1fr }
}

/* ---------- Mosaic ---------- */
.mosaic{ padding:96px 0; background:var(--cream-2) }
.mosaic__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:180px;
  gap:12px;
}
.mosaic__cell{
  position:relative; overflow:hidden;
  border-radius:12px;
  box-shadow:var(--shadow);
}
.mosaic__cell img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.mosaic__cell:hover img{ transform:scale(1.06) }
.mosaic__cell--big{ grid-column:span 2; grid-row:span 2 }
.mosaic__cell--wide{ grid-column:span 2 }
.mosaic__cta{
  text-align:center; margin:28px 0 0;
  font-family:var(--f-display); font-size:22px; color:var(--navy);
  letter-spacing:0.04em;
}
.mosaic__cta a{ color:var(--red) }
@media (max-width:820px){
  .mosaic__grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:140px }
  .mosaic__cell--big{ grid-column:span 2; grid-row:span 2 }
  .mosaic__cell--wide{ grid-column:span 2 }
}

/* ---------- Catering ---------- */
.catering{ padding:100px 0; background:#fff }
.catering__grid{
  display:grid; grid-template-columns:1.15fr 1fr; gap:56px; align-items:center;
}
.catering__media img{
  width:100%; border-radius:var(--radius);
  box-shadow:var(--shadow-lg); aspect-ratio: 4/5; object-fit:cover;
}
.tiers{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:14px; margin:22px 0;
}
.tier{
  background:var(--cream-2);
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px 16px;
  text-align:center;
}
.tier--pop{
  background:var(--navy); color:#fff; border-color:var(--navy);
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}
.tier__label{
  font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  font-weight:800; margin:0 0 6px; color:var(--red);
}
.tier--pop .tier__label{ color:var(--orange) }
.tier__price{
  font-family:var(--f-display); font-size:36px; margin:0;
  color:var(--navy);
}
.tier--pop .tier__price{ color:#fff }
.tier__price span{ font-size:14px; color:var(--muted); font-family:var(--f-body); font-weight:600 }
.tier--pop .tier__price span{ color:rgba(255,255,255,0.65) }
.tier__note{ font-size:12px; color:var(--muted); margin:4px 0 0 }
.tier--pop .tier__note{ color:rgba(255,255,255,0.8) }
.catering__note{ font-size:14px; color:var(--muted); margin:0 0 20px }
.catering__cta{ display:flex; gap:12px; flex-wrap:wrap }
@media (max-width:900px){
  .catering__grid{ grid-template-columns:1fr; gap:36px }
  .tiers{ grid-template-columns:1fr }
  .tier--pop{ transform:none }
}

/* ---------- Find us ---------- */
.find{ padding:100px 0; background:var(--cream) }
.find__grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:16px;
}
.stop{
  background:#fff; border:1px solid var(--line);
  border-radius:12px; padding:22px;
  text-align:center;
}
.stop--pop{ background:var(--navy); color:#fff; border-color:var(--navy) }
.stop__day{
  font-family:var(--f-display); font-size:26px; margin:0 0 6px;
  color:var(--red); letter-spacing:0.02em;
}
.stop--pop .stop__day{ color:var(--orange) }
.stop__place{ font-weight:700; margin:0 0 4px; font-size:16px }
.stop__hours{ margin:0; font-size:14px; color:var(--muted) }
.stop--pop .stop__hours{ color:rgba(255,255,255,0.75) }
.find__cta{ text-align:center; margin-top:32px }
@media (max-width:820px){ .find__grid{ grid-template-columns:1fr 1fr } }
@media (max-width:520px){ .find__grid{ grid-template-columns:1fr } }

.find__map{
  margin-top:40px;
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:24px;
  align-items:stretch;
}
.find__map-frame{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(15,35,64,0.18);
  border:4px solid #fff;
  min-height:440px;
  background:#e6e6e6;
}
.find__map-frame iframe{ position:absolute; inset:0; width:100%; height:100%; display:block }
.find__map-cities{
  display:flex;
  flex-direction:column;
  gap:14px;
  background:var(--navy);
  border-radius:20px;
  padding:28px;
  color:#fff;
  box-shadow:0 20px 60px rgba(15,35,64,0.18);
}
.find__map-cities::before{
  content:"On the Route";
  display:block;
  font-family:'Anton', sans-serif;
  font-size:28px;
  letter-spacing:.5px;
  color:var(--cream);
  margin-bottom:6px;
}
.map-pin{
  display:flex; gap:14px; align-items:flex-start;
  padding:14px 16px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  text-decoration:none; color:#fff;
  transition:background .2s ease, transform .2s ease, border-color .2s ease;
}
.map-pin:hover{
  background:rgba(200,32,46,0.18);
  border-color:rgba(200,32,46,0.55);
  transform:translateX(2px);
}
.map-pin__dot{
  flex:0 0 14px;
  width:14px; height:14px; margin-top:6px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 4px rgba(200,32,46,0.25);
}
.map-pin strong{ display:block; font-size:16px; font-weight:700; margin-bottom:2px }
.map-pin em{ font-style:normal; font-size:13px; color:rgba(255,255,255,0.7) }

@media (max-width:900px){
  .find__map{ grid-template-columns:1fr }
  .find__map-frame{ min-height:340px }
}

/* ---------- Quotes ---------- */
.quotes{ padding:72px 0; background:#fff }
.quotes__grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
.quote{
  background:var(--cream-2); border-radius:var(--radius);
  padding:26px 26px 22px; margin:0;
  border-top:4px solid var(--red);
  position:relative;
}
.quote::before{
  content:"“";
  position:absolute; top:-12px; left:16px;
  font-family:Georgia,serif; font-size:80px; line-height:1;
  color:var(--red); opacity:0.35;
}
.quote p{ margin:0 0 12px; font-size:16px; color:var(--ink-2) }
.quote cite{
  font-style:normal; font-weight:700; font-size:13px; color:var(--navy);
  letter-spacing:0.04em;
}
@media (max-width:820px){ .quotes__grid{ grid-template-columns:1fr } }

/* ---------- Contact ---------- */
.contact{ padding:100px 0; background:var(--navy); color:var(--cream) }
.contact .section-title{ color:var(--cream) }
.contact .eyebrow{ color:var(--orange) }
.contact__grid{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
.contact__list{
  list-style:none; padding:0; margin:24px 0 20px;
  display:grid; gap:12px;
}
.contact__list li{ display:flex; align-items:center; gap:12px; font-size:16px }
.contact__list a{ color:var(--cream); text-decoration:underline; text-underline-offset:3px }
.contact__list a:hover{ color:var(--orange) }
.contact__socials{ display:flex; gap:14px }
.contact__socials a{
  background:rgba(255,255,255,0.1);
  padding:8px 14px; border-radius:99px;
  font-size:13px; font-weight:700; letter-spacing:0.06em;
}
.contact__socials a:hover{ background:var(--red); color:#fff }

.contact__form{
  background:var(--navy-2); padding:28px; border-radius:var(--radius);
  border:1px solid rgba(244,235,208,0.1);
}
.contact__form label{ display:block; margin-bottom:14px }
.contact__form span{
  display:block; font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--orange); font-weight:700; margin-bottom:6px;
}
.contact__form input,
.contact__form select,
.contact__form textarea{
  width:100%;
  background:rgba(0,0,0,0.2);
  color:var(--cream);
  border:1px solid rgba(244,235,208,0.2);
  border-radius:10px;
  padding:12px 14px;
  font-family:inherit; font-size:15px;
  outline:none;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus{
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(243,165,42,0.2);
}
.form-msg{
  display:none; margin:14px 0 0;
  color:var(--orange); font-weight:700;
}
@media (max-width:900px){
  .contact__grid{ grid-template-columns:1fr; gap:36px }
}

/* ---------- Footer ---------- */
.footer{ background:var(--navy-3); color:var(--cream) }
.footer__grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px;
  padding:64px 0 40px;
}
.footer__brand .brand__name{ color:var(--cream) }
.footer__brand .brand__tag{ color:var(--orange) }
.footer__blurb{ font-size:14px; color:rgba(244,235,208,0.7); margin:14px 0 0; max-width:340px }
.footer__h{
  font-family:var(--f-display); font-size:20px;
  color:var(--orange); margin:0 0 12px; letter-spacing:0.06em;
}
.footer ul{ list-style:none; padding:0; margin:0; display:grid; gap:8px }
.footer a{ color:rgba(244,235,208,0.85); font-size:14px }
.footer a:hover{ color:var(--orange) }
.footer__bar{
  border-top:1px solid rgba(244,235,208,0.12);
  padding:18px 24px;
  display:flex; justify-content:space-between; gap:12px;
  font-size:12px; color:rgba(244,235,208,0.55);
  letter-spacing:0.06em; text-transform:uppercase;
  max-width:var(--wrap); margin:0 auto;
}
@media (max-width:820px){
  .footer__grid{ grid-template-columns:1fr 1fr; }
  .footer__brand{ grid-column:span 2 }
  .footer__bar{ flex-direction:column; text-align:center }
}

/* ============================================================
   REWARDS SECTION
   ============================================================ */
.rewards{
  padding:96px 0 80px;
  background:
    radial-gradient(1200px 500px at 85% 0%, rgba(243,165,42,0.14), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(200,32,46,0.12), transparent 60%),
    linear-gradient(180deg, #0b1a30 0%, #0f2340 100%);
  color:#fff;
  overflow:hidden;
  position:relative;
}
.rewards__head{ text-align:center; max-width:820px; margin:0 auto 56px }
.rewards__badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(243,165,42,0.15);
  color:var(--orange);
  border:1px solid rgba(243,165,42,0.35);
  font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  margin-bottom:20px;
}
.rewards .eyebrow{ color:var(--red) }
.rewards__title{ color:#fff; font-size:clamp(40px, 6vw, 84px); line-height:0.95 }
.rewards__title-accent{ color:var(--orange) }
.rewards__sub{ color:rgba(255,255,255,0.75); font-size:18px; margin-top:16px }

.rewards__grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:64px;
  align-items:start;
}

/* Steps */
.rewards__steps{ display:flex; flex-direction:column; gap:20px; margin-bottom:36px }
.rstep{
  display:grid; grid-template-columns:52px 1fr; gap:18px; align-items:start;
  padding:20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
}
.rstep__num{
  width:52px; height:52px; border-radius:50%;
  display:grid; place-items:center;
  background:var(--red); color:#fff;
  font-family:'Anton', sans-serif; font-size:26px;
}
.rstep h3{ margin:0 0 4px; font-size:20px; color:#fff }
.rstep p{ margin:0; color:rgba(255,255,255,0.72); font-size:15px; line-height:1.55 }
.rstep strong{ color:var(--orange) }

/* Ladder */
.ladder{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:24px 24px 20px;
  margin-bottom:28px;
}
.ladder__title{
  font-family:'Anton', sans-serif;
  font-size:26px; letter-spacing:.5px;
  color:var(--cream);
  margin:0 0 16px;
}
.ladder__list{ list-style:none; padding:0; margin:0 0 16px }
.ladder__row{
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:12px 0;
  border-bottom:1px dashed rgba(255,255,255,0.12);
}
.ladder__row:last-child{ border-bottom:none }
.ladder__stars{
  flex:0 0 auto;
  font-family:'Anton', sans-serif;
  font-size:22px; color:var(--orange); letter-spacing:.5px;
  min-width:70px;
}
.ladder__reward{ font-size:15px; color:rgba(255,255,255,0.85); text-align:right }
.ladder__row--hot{
  background:linear-gradient(90deg, rgba(200,32,46,0.18), transparent);
  margin:0 -12px; padding:12px 12px;
  border-radius:10px;
  border-bottom:1px dashed rgba(255,255,255,0.12);
}
.ladder__row--hot .ladder__reward{ color:#fff; font-weight:600 }
.ladder__perks{ margin:0; font-size:14px; color:rgba(255,255,255,0.65); line-height:1.6 }
.ladder__perks strong{ color:var(--cream) }

.rewards__ctas{ display:flex; flex-wrap:wrap; gap:12px }
.rewards__ctas .btn--outline{ border-color:rgba(255,255,255,0.3); color:#fff }
.rewards__ctas .btn--outline:hover{ background:rgba(255,255,255,0.08) }

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.rewards__right{ display:flex; flex-direction:column; align-items:center; position:sticky; top:100px }
.phone{
  width:340px; max-width:100%;
  background:#000;
  border-radius:44px;
  padding:12px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 2px #1a1a1a;
  position:relative;
}
.phone__notch{
  position:absolute; top:20px; left:50%; transform:translateX(-50%);
  width:110px; height:26px;
  background:#000; border-radius:14px;
  z-index:2;
}
.phone__screen{
  background:linear-gradient(180deg, #f7f1e1 0%, #fff 30%);
  border-radius:34px;
  overflow:hidden;
  height:640px;
  display:flex; flex-direction:column;
}
.appbar{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 24px 8px;
  font-size:13px; font-weight:600; color:#000;
}
.appbar__icons{ letter-spacing:2px; font-size:11px }
.app{ padding:8px 16px 20px; flex:1; overflow:hidden }

.app__topbar{
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 4px 16px;
}
.app__hi{ font-family:'Anton', sans-serif; font-size:22px; color:var(--navy); letter-spacing:.5px }
.app__tier{ font-size:11px; color:var(--red); font-weight:700; letter-spacing:.5px; margin-top:2px }
.app__avatar{
  width:36px; height:36px; border-radius:50%;
  background:var(--red); color:#fff;
  display:grid; place-items:center;
  font-family:'Anton', sans-serif; font-size:16px;
}

.card-hero{
  background:linear-gradient(135deg, var(--red) 0%, #a01823 100%);
  color:#fff;
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 8px 24px rgba(200,32,46,0.3);
  margin-bottom:14px;
}
.card-hero__row{ display:flex; justify-content:space-between; align-items:flex-end; gap:12px }
.card-hero__label{ font-size:10px; font-weight:700; letter-spacing:1.5px; opacity:.75; margin:0 0 4px }
.card-hero__big{
  font-family:'Anton', sans-serif;
  font-size:42px; margin:0; line-height:1;
}
.card-hero__big span{ font-size:22px; color:var(--orange) }
.card-hero__reward{ text-align:right }
.card-hero__next{ margin:0; font-size:10px; opacity:.75; letter-spacing:.5px; text-transform:uppercase }
.card-hero__nextName{ margin:2px 0; font-size:13px; font-weight:700 }
.card-hero__nextGap{ margin:0; font-size:11px; opacity:.85 }
.progress{
  height:8px; background:rgba(255,255,255,0.2);
  border-radius:999px; margin-top:12px; overflow:hidden;
}
.progress__bar{
  height:100%;
  background:linear-gradient(90deg, var(--orange), #fff);
  border-radius:999px;
}
.progress__labels{
  display:flex; justify-content:space-between;
  font-size:10px; margin-top:6px; opacity:.75; font-weight:600;
}

.app__row{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:14px }
.quickbtn{
  background:#f4ebd0;
  border:none;
  color:var(--navy);
  padding:10px 4px;
  border-radius:12px;
  font-size:11px; font-weight:700;
  display:flex; flex-direction:column; align-items:center; gap:4px;
  cursor:pointer;
}
.quickbtn span{ font-size:20px }

.app__section{ margin-bottom:14px }
.app__sectionHead{
  display:flex; justify-content:space-between; align-items:center;
  padding:0 2px 8px;
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px;
  color:var(--navy);
}
.app__link{ color:var(--red); font-weight:600 }

.reward-card{
  display:grid; grid-template-columns:36px 1fr auto; gap:10px; align-items:center;
  padding:10px 12px;
  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  margin-bottom:8px;
}
.reward-card--ready{ border-color:var(--orange); background:linear-gradient(90deg, rgba(243,165,42,0.08), #fff) }
.reward-card__icon{ font-size:22px; text-align:center }
.reward-card__name{ margin:0; font-weight:700; font-size:13px; color:var(--navy) }
.reward-card__note{ margin:0; font-size:11px; color:#666 }
.reward-card__cta{
  background:var(--red); color:#fff; border:none;
  padding:6px 12px; border-radius:999px;
  font-size:11px; font-weight:700; cursor:pointer;
}

.order-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 2px; border-bottom:1px solid #f0f0f0;
}
.order-row:last-child{ border-bottom:none }
.order-row__name{ margin:0; font-size:12px; font-weight:600; color:var(--navy) }
.order-row__meta{ margin:0; font-size:10px; color:#888 }
.order-row__total{ margin:0; font-family:'Anton', sans-serif; font-size:16px; color:var(--red) }

.phone__caption{
  margin-top:16px; font-size:12px; color:rgba(255,255,255,0.55);
  font-style:italic;
}

@media (max-width:960px){
  .rewards__grid{ grid-template-columns:1fr; gap:48px }
  .rewards__right{ position:static; order:-1 }
  .phone{ transform:scale(0.9); transform-origin:top center; margin-bottom:-40px }
}

/* ============================================================
   ORDER-AHEAD PREVIEW
   ============================================================ */
.order-preview{ padding:80px 0; background:var(--cream) }
.op__sub{ max-width:640px }
.op__flow{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:28px;
  margin-top:40px;
}
.op__step{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 32px rgba(15,35,64,0.08);
  border:1px solid rgba(15,35,64,0.06);
  display:flex; flex-direction:column; gap:16px;
}
.op__num{
  font-family:'Anton', sans-serif;
  font-size:32px; color:var(--red); letter-spacing:1px;
}
.op__step h3{ margin:0; font-family:'Anton', sans-serif; font-size:24px; color:var(--navy); letter-spacing:.5px }
.op__step > p{ margin:0; color:#555; font-size:14px; line-height:1.5 }

.op__mini{
  background:var(--navy);
  color:#fff;
  border-radius:14px;
  padding:16px;
}
.op__mini-title{
  margin:0 0 10px; font-size:11px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--orange);
}
.op__list{ list-style:none; padding:0; margin:0 }
.op__list li{
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 10px;
  border-radius:8px;
  font-size:13px;
  background:rgba(255,255,255,0.04);
  margin-bottom:6px;
}
.op__list li em{ font-style:normal; opacity:.7; font-size:12px }
.op__list li.is-selected{
  background:var(--red);
  color:#fff;
}
.op__list li.is-selected em{ color:rgba(255,255,255,0.85) }
.op__total{
  margin:10px 0 0; padding-top:10px;
  border-top:1px dashed rgba(255,255,255,0.15);
  font-size:13px; display:flex; justify-content:space-between;
}
.op__total strong{ font-family:'Anton', sans-serif; font-size:20px; color:var(--orange) }

.op__mini--pay{ text-align:center }
.op__pay{ display:flex; gap:8px; justify-content:center; margin:10px 0 }
.op__pay button{
  flex:1; padding:10px 6px; border-radius:8px; border:none;
  background:#fff; color:var(--navy); font-weight:700; font-size:12px; cursor:pointer;
}
.op__pay button:first-child{ background:#000; color:#fff }
.op__ready{ margin:8px 0 4px; font-size:13px }
.op__ready strong{ color:var(--orange); font-family:'Anton', sans-serif; font-size:18px }
.op__starred{ margin:0; color:var(--orange); font-weight:700; font-size:13px }

.op__note{
  margin-top:32px;
  background:var(--navy); color:#fff;
  border-radius:16px;
  padding:20px 24px;
  font-size:15px; line-height:1.6;
  border-left:5px solid var(--orange);
}
.op__note strong{ color:var(--orange); letter-spacing:.5px }

@media (max-width:820px){ .op__flow{ grid-template-columns:1fr } }

/* ============================================================
   MODAL
   ============================================================ */
.modal{ position:fixed; inset:0; z-index:200; display:grid; place-items:center; padding:20px }
.modal[hidden]{ display:none }
.modal__backdrop{
  position:absolute; inset:0;
  background:rgba(11,20,40,0.75);
  backdrop-filter:blur(4px);
}
.modal__panel{
  position:relative;
  width:100%; max-width:480px;
  background:#fff;
  border-radius:20px;
  padding:36px 32px 32px;
  box-shadow:0 40px 80px rgba(0,0,0,0.4);
  max-height:90vh; overflow-y:auto;
}
.modal__close{
  position:absolute; top:14px; right:14px;
  width:36px; height:36px; border-radius:50%;
  background:#f4ebd0; border:none;
  font-size:16px; cursor:pointer;
  color:var(--navy);
}
.modal__badge{
  display:inline-block;
  padding:5px 12px;
  border-radius:999px;
  background:rgba(243,165,42,0.15);
  color:#a06a10;
  border:1px solid rgba(243,165,42,0.35);
  font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  margin-bottom:16px;
}
.modal__title{
  font-family:'Anton', sans-serif;
  font-size:34px; color:var(--navy); margin:0 0 8px; letter-spacing:.5px;
}
.modal__sub{ margin:0 0 24px; color:#555; font-size:15px; line-height:1.5 }
.modal__sub strong{ color:var(--red) }
.modal__form{ display:flex; flex-direction:column; gap:14px }
.modal__form label{
  display:flex; flex-direction:column; gap:6px;
  font-size:13px; font-weight:600; color:var(--navy);
}
.modal__form input{
  padding:12px 14px;
  border:1.5px solid #e2e2e2;
  border-radius:10px;
  font-size:15px;
  font-family:inherit;
  transition:border-color .15s;
}
.modal__form input:focus{ outline:none; border-color:var(--red) }
.modal__form .btn{ margin-top:6px; width:100% }
.modal__fine{ margin:8px 0 0; font-size:12px; color:#888; line-height:1.5 }
.modal__thanks{ text-align:center; padding:8px 0 }
.modal__thanks-icon{ font-size:56px; margin-bottom:8px }
.modal__thanks h4{
  font-family:'Anton', sans-serif;
  font-size:28px; color:var(--navy); margin:0 0 12px; letter-spacing:.5px;
}
.modal__thanks p{ color:#555; margin:0 0 12px; font-size:14px; line-height:1.55 }
.modal__thanks-note{ color:#888; font-size:12px; font-style:italic }
.modal__thanks .btn{ margin-top:12px }

/* ============================================================
   BRAND LOGO (real logo image in header + footer)
   ============================================================ */
.brand--logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  padding:6px 0;
}
.brand__logo{
  display:block;
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
  object-position:center;
  box-shadow:0 4px 14px rgba(15,35,64,0.18);
  transition:transform .25s ease;
}
.brand--logo:hover .brand__logo{ transform:scale(1.04) }

.brand__logo--footer{
  width:110px;
  height:110px;
  box-shadow:0 8px 24px rgba(0,0,0,0.35);
  margin-bottom:16px;
}

/* Slightly tighter header padding since the logo is bigger now */
@media (max-width:820px){
  .brand__logo{ width:56px; height:56px }
  .brand__logo--footer{ width:96px; height:96px }
}

/* This week's schedule helpers */
.stop__note {
  display: inline-block;
  font-size: 0.85em;
  color: rgba(15, 35, 64, 0.65);
  font-weight: 500;
  font-style: italic;
}
.stop__hours-inline {
  display: inline-block;
  font-size: 0.9em;
  color: #c8202e;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.stop--pop .stop__place strong {
  color: #0f2340;
  font-weight: 700;
  letter-spacing: 0.01em;
}
