/* ============================================================
   RED OVEN STREET FOOD — style.css
   Palette: #C8102E red / #1A1A1A black / #2C1810 charcoal /
            #F5F0E8 cream / #FF6B35 fire gold
   ============================================================ */

:root {
  --ro-red:        #C8102E;
  --ro-red-dark:   #A01024;
  --ro-black:      #1A1A1A;
  --ro-charcoal:   #2C1810;
  --ro-white:      #FFFFFF;
  --ro-cream:      #F5F0E8;
  --ro-gold:       #FF6B35;
  --ro-gray:       #8A8A8A;
  --ro-border:     rgba(255,255,255,0.1);
  --font-head:     'Oswald', sans-serif;
  --font-body:     'Inter', sans-serif;
  --shadow-card:   0 10px 30px rgba(0,0,0,0.45);
  --glow-red:      0 0 24px rgba(200,16,46,0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ro-black);
  color: var(--ro-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fixed wood backdrop via pseudo-element — smoother than background-attachment: fixed on mobile */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('/images/bg-wood.jpg') center/cover no-repeat;
  will-change: transform;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  font-size: 15px;
  text-align: center;
}
.btn-primary {
  background: var(--ro-red);
  color: var(--ro-white);
  box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}
.btn-primary:hover {
  background: var(--ro-red-dark);
  border-color: var(--ro-gold);
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}
.btn-outline {
  background: transparent;
  color: var(--ro-white);
  border-color: var(--ro-white);
}
.btn-outline:hover {
  border-color: var(--ro-gold);
  color: var(--ro-gold);
  transform: translateY(-2px);
}
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ro-red);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 56px; width: 56px; border-radius: 50%; }
.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ro-white);
}
.logo-text em { font-style: normal; color: var(--ro-red); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ro-white);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--ro-gold);
  transition: width .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ro-gold); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.nav-phone { color: var(--ro-gold) !important; font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-icon {
  position: relative;
  background: transparent;
  border: none;
  color: var(--ro-white);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  transition: color .2s, transform .2s;
}
.cart-icon:hover { color: var(--ro-gold); transform: scale(1.08); }
.cart-count {
  position: absolute;
  top: 0; right: -2px;
  background: var(--ro-red);
  color: var(--ro-white);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.cart-count.bump { animation: bump .4s ease; }
@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.6); }
  100% { transform: scale(1); }
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ro-white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('/images/bg-hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* floating embers */
.hero-embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-embers span {
  position: absolute;
  bottom: -10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd27a 0%, var(--ro-gold) 45%, rgba(200,16,46,0) 75%);
  opacity: 0;
  animation: emberRise 7s linear infinite;
  filter: blur(0.4px);
}
.hero-embers span:nth-child(1)  { left: 8%;  animation-delay: 0s;    animation-duration: 6.5s; }
.hero-embers span:nth-child(2)  { left: 17%; animation-delay: 2.1s;  animation-duration: 7.4s; }
.hero-embers span:nth-child(3)  { left: 26%; animation-delay: 4.3s;  animation-duration: 6.1s; }
.hero-embers span:nth-child(4)  { left: 38%; animation-delay: 1.2s;  animation-duration: 8s; }
.hero-embers span:nth-child(5)  { left: 47%; animation-delay: 3.4s;  animation-duration: 6.8s; }
.hero-embers span:nth-child(6)  { left: 56%; animation-delay: 0.7s;  animation-duration: 7.7s; }
.hero-embers span:nth-child(7)  { left: 64%; animation-delay: 5s;    animation-duration: 6.3s; }
.hero-embers span:nth-child(8)  { left: 73%; animation-delay: 2.8s;  animation-duration: 7.2s; }
.hero-embers span:nth-child(9)  { left: 82%; animation-delay: 4.8s;  animation-duration: 6.6s; }
.hero-embers span:nth-child(10) { left: 91%; animation-delay: 1.6s;  animation-duration: 7.9s; }
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  8%   { opacity: .9; }
  60%  { opacity: .55; }
  100% { transform: translateY(-88vh) translateX(34px) scale(.4); opacity: 0; }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(26,10,6,0.65) 60%, rgba(26,26,26,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  animation: heroIn 1s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 300px;
  max-width: 65vw;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6)) drop-shadow(0 0 34px rgba(200,16,46,0.45));
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6)) drop-shadow(0 0 24px rgba(200,16,46,0.35)); }
  50% { filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6)) drop-shadow(0 0 44px rgba(255,107,53,0.55)); }
}
.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 700;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
  margin-bottom: 14px;
}
.hero h1 span { color: var(--ro-gold); }
.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(15px, 2.4vw, 21px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ro-cream);
  margin-bottom: 36px;
}
.hero-sub i { color: var(--ro-red); margin: 0 8px; font-size: 0.7em; vertical-align: middle; }
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--ro-cream);
  font-size: 22px;
  opacity: .7;
  animation: bounceDown 2s infinite;
  z-index: 2;
}
@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- Flame divider ---------- */
.flame-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--ro-red), var(--ro-gold), var(--ro-red), transparent);
  box-shadow: 0 0 18px rgba(255,107,53,0.7);
  border: none;
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; position: relative; }
.section-dark { background: linear-gradient(180deg, rgba(44,24,16,0.92), rgba(26,26,26,0.96)); }
.section-cream { background: var(--ro-cream); color: var(--ro-black); }

.section-title {
  font-size: clamp(28px, 4.5vw, 44px);
  text-align: center;
  margin-bottom: 8px;
}
.section-title span { color: var(--ro-red); }
.section-cream .section-title span { color: var(--ro-red); }
.section-tagline {
  text-align: center;
  color: var(--ro-gold);
  font-family: var(--font-head);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 48px;
}
.section-cream .section-tagline { color: var(--ro-red); }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Featured cards ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: rgba(26,26,26,0.85);
  border: 1px solid var(--ro-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,107,53,0.35), var(--glow-red);
  border-color: rgba(255,107,53,0.5);
}
.card-image { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.menu-card:hover .card-image img { transform: scale(1.07); }
.add-to-cart-btn {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--ro-red);
  color: var(--ro-white);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center;
}
.add-to-cart-btn:hover {
  background: var(--ro-gold);
  transform: scale(1.12) rotate(90deg);
  box-shadow: 0 0 18px rgba(255,107,53,0.7);
}
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.item-name { font-size: 19px; margin-bottom: 8px; color: var(--ro-white); }
.item-desc { font-size: 14px; color: #cfc6bd; flex: 1; }
.item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.item-price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 20px;
  color: var(--ro-red);
  text-shadow: 0 0 14px rgba(200,16,46,0.4);
}
.section-cream .item-price, .menu-card .item-price { color: var(--ro-red); }
.item-tag {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 1.5px;
  background: var(--ro-gold);
  color: var(--ro-black);
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 700;
}
.item-tag.veg { background: #4caf50; color: #fff; }
.item-tag.sig { background: var(--ro-red); color: #fff; }

/* ---------- About / Story ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about-inner h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 18px; }
.about-inner h2 span { color: var(--ro-red); }
.about-inner p { font-size: 17px; color: #3c332c; margin-bottom: 16px; }
.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border: 4px solid var(--ro-white);
  transform: rotate(1.5deg);
  transition: transform .4s ease;
}
.about-image:hover { transform: rotate(0deg) scale(1.02); }
.about-image img { width: 100%; }

.about-stats { display: flex; gap: 36px; margin-top: 26px; flex-wrap: wrap; }
.about-stat { text-align: left; }
.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--ro-red);
}
.about-stat span { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #6b5f55; }

/* ---------- Location strip ---------- */
.location-strip { background: linear-gradient(120deg, var(--ro-charcoal), #3d1f10); }
.location-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.location-item { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.location-item i { font-size: 26px; color: var(--ro-gold); }

/* ---------- Truck showcase ---------- */
.truck-showcase { text-align: center; }
.truck-showcase img {
  border-radius: 14px;
  box-shadow: var(--shadow-card), var(--glow-red);
  border: 1px solid rgba(255,107,53,0.35);
  margin: 0 auto;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 130px 0 70px;
  text-align: center;
  background: url('/images/bg-fire.jpg') center/cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(26,26,26,0.9));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(34px, 6vw, 56px); }
.page-hero h1 span { color: var(--ro-gold); }
.page-hero p { color: var(--ro-cream); letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-head); margin-top: 6px; }

/* ---------- Menu filters ---------- */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid var(--ro-border);
  background: rgba(26,26,26,0.7);
  color: var(--ro-white);
  cursor: pointer;
  transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--ro-gold); color: var(--ro-gold); }
.filter-btn.active {
  background: var(--ro-red);
  border-color: var(--ro-red);
  color: var(--ro-white);
  box-shadow: 0 4px 16px rgba(200,16,46,0.45);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.menu-card.hidden-card { display: none; }

/* drinks list */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.drink-card {
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--ro-border);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .2s, transform .2s;
}
.drink-card:hover { border-color: var(--ro-gold); transform: translateY(-4px); }
.drink-card i { font-size: 24px; color: var(--ro-gold); }
.drink-card .drink-info { flex: 1; }
.drink-card .drink-name { font-family: var(--font-head); font-size: 15px; letter-spacing: .5px; }
.drink-card .drink-price { color: var(--ro-red); font-weight: 800; }
.drink-card .add-mini {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--ro-red);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s, transform .2s;
}
.drink-card .add-mini:hover { background: var(--ro-gold); transform: scale(1.1); }

/* ---------- Extras ---------- */
.extras-section { margin-top: 72px; }
.extras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.extra-item {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,107,53,0.4);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
}
.extra-item .extra-price { color: var(--ro-red); font-weight: 800; }
.add-extra {
  width: 32px; height: 32px;
  border-radius: 4px;
  border: none;
  background: var(--ro-gold);
  color: var(--ro-black);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.add-extra:hover { transform: scale(1.12); box-shadow: 0 0 12px rgba(255,107,53,0.6); }

/* ---------- Cart panel ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s;
  z-index: 1400;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-panel {
  position: fixed;
  top: 0; right: -420px;
  width: 400px;
  max-width: 92vw;
  height: 100vh;
  height: 100dvh;
  background: #211208;
  border-left: 2px solid var(--ro-red);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.22,.9,.3,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
}
.cart-panel.open { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--ro-border);
}
.cart-header h3 { font-size: 18px; color: var(--ro-gold); }
.cart-close {
  background: none; border: none;
  color: var(--ro-white);
  font-size: 22px; cursor: pointer;
  transition: color .2s, transform .2s;
}
.cart-close:hover { color: var(--ro-red); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-empty { color: var(--ro-gray); text-align: center; margin-top: 40px; }
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--ro-border);
}
.cart-item img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--ro-border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; }
.cart-item-price { font-size: 13px; color: var(--ro-gold); font-weight: 700; }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty button {
  width: 26px; height: 26px;
  border-radius: 4px;
  border: 1px solid var(--ro-border);
  background: transparent;
  color: var(--ro-white);
  cursor: pointer;
  font-size: 13px;
  transition: all .15s;
}
.cart-qty button:hover { background: var(--ro-red); border-color: var(--ro-red); }
.cart-item-remove {
  background: none; border: none;
  color: var(--ro-gray);
  cursor: pointer; font-size: 15px;
  transition: color .2s;
}
.cart-item-remove:hover { color: var(--ro-red); }
.cart-footer { padding: 20px 22px 26px; border-top: 1px solid var(--ro-border); }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 19px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.cart-total { color: var(--ro-gold); font-weight: 700; }
.cart-clear {
  display: block;
  margin: 12px auto 0;
  background: none; border: none;
  color: var(--ro-gray);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}
.cart-clear:hover { color: var(--ro-red); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ro-red);
  color: var(--ro-white);
  font-family: var(--font-head);
  letter-spacing: 1px;
  padding: 12px 26px;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(200,16,46,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 1600;
  font-size: 15px;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-block h2 { font-size: 30px; margin-bottom: 22px; color: var(--ro-gold); }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
}
.contact-line i { color: var(--ro-red); font-size: 20px; margin-top: 3px; }
.contact-line a:hover { color: var(--ro-gold); }
.map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ro-border);
  box-shadow: var(--shadow-card);
  margin-top: 10px;
}
.map-frame iframe { width: 100%; height: 300px; border: 0; display: block; }

/* form */
.order-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ro-border);
  border-radius: 12px;
  padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ro-gold);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ro-cream);
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ro-black);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ro-red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.25);
}
.form-group textarea[readonly] { background: #e9e2d6; }
.form-group small { color: var(--ro-gray); font-size: 12px; }

/* Pickup-only block */
.pickup-only {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ro-cream);
  border: 2px solid rgba(200,16,46,0.35);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--ro-black);
}
.pickup-only i { font-size: 22px; color: var(--ro-red); }
.pickup-only strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pickup-only small { display: block; font-size: 12px; color: #6b5f55; }
.btn-submit {
  width: 100%;
  background: var(--ro-red);
  color: var(--ro-white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s;
}
.btn-submit:hover {
  background: var(--ro-red-dark);
  border-color: var(--ro-gold);
  box-shadow: var(--glow-red);
  transform: translateY(-2px);
}

/* ---------- Thank you ---------- */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.thankyou-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,53,0.35);
  border-radius: 14px;
  padding: 56px 48px;
  max-width: 560px;
  box-shadow: var(--shadow-card), var(--glow-red);
}
.thankyou-card i { font-size: 64px; color: var(--ro-gold); margin-bottom: 20px; }
.thankyou-card h1 { font-size: 36px; margin-bottom: 14px; }
.thankyou-card p { color: var(--ro-cream); margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ro-black);
  border-top: 2px solid var(--ro-red);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { width: 120px; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { color: var(--ro-gray); font-size: 15px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ro-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--ro-white);
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--ro-red);
  border-color: var(--ro-red);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(200,16,46,0.5);
}
.site-footer h4 {
  color: var(--ro-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-contact p, .footer-hours p { margin-bottom: 12px; color: #cfc6bd; font-size: 15px; }
.footer-contact a:hover { color: var(--ro-gold); }
.footer-contact i { color: var(--ro-red); margin-right: 8px; }
.footer-hours .btn { margin-top: 8px; }
.footer-bottom {
  border-top: 1px solid var(--ro-border);
  padding: 22px 0 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ro-gray);
  font-size: 13px;
}
.footer-credit a { color: var(--ro-gold); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ---------- Mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1200;
  background: var(--ro-red);
  text-align: center;
  box-shadow: 0 -6px 24px rgba(200,16,46,0.5);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--ro-white);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .drinks-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(26,26,26,0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 2px solid var(--ro-red);
    transform: translateY(-130%);
    transition: transform .35s ease;
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 28px; font-size: 17px; }
  .main-nav a::after { display: none; }
  .mobile-menu-toggle { display: block; }
  .logo-text { display: none; }

  .hero { min-height: 80vh; min-height: 80svh; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-image { transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .mobile-call-bar { display: block; }
  .toast { bottom: 76px; }
  .location-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 576px) {
  .menu-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .order-form { padding: 24px 18px; }
  .thankyou-card { padding: 40px 24px; }
  .footer-bottom { padding-bottom: 84px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
