/* CRAVE STREET — global + homepage restaurant experience */
:root {
  --red: #d62828;
  --red-hot: #e6392b;
  --burgundy: #6d1b2a;
  --cream: #f8f1e7;
  --cream-deep: #efe3d2;
  --white: #fffdf9;
  --gold: #e9b949;
  --gold-deep: #c9922a;
  --charcoal: #1a1412;
  --ink: #2a211c;
  --muted: #6e5f55;
  --line: rgba(26, 20, 18, 0.1);
  --shadow: 0 18px 40px rgba(26, 20, 18, 0.12);
  --radius: 18px;
  --nav-h: 78px;
  --announce-h: 38px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", sans-serif;
  --font-serif: "Playfair Display", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }
.wide { width: min(1480px, calc(100% - 32px)); margin: 0 auto; }

h1, h2, .display {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 0.92;
}

/* announcement */
.announce {
  height: var(--announce-h);
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.announce span { animation: fadePulse 0.45s ease; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 241, 231, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo strong {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 0.08em;
  color: var(--red);
}
.logo small {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links .has-mega { position: relative; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: transparent; cursor: pointer; position: relative;
  color: var(--ink); font-size: 18px;
}
.icon-btn .badge {
  position: absolute; top: 2px; right: 0;
  background: var(--red); color: #fff; font-size: 10px;
  min-width: 16px; height: 16px; border-radius: 99px;
  display: grid; place-items: center;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; border-radius: 999px;
  padding: 12px 22px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 13px; transition: 0.2s transform, 0.2s background;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-outline { background: transparent; border: 1.5px solid var(--charcoal); color: var(--charcoal); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* mega menu — restaurant menu board, not product store */
.mega {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 52px; width: min(920px, 90vw);
  background: var(--white); border-radius: 22px;
  box-shadow: var(--shadow); padding: 28px;
  display: none; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px; border: 1px solid var(--line);
}
.has-mega:hover .mega, .mega.open { display: grid; }
.mega h4 {
  font-family: var(--font-display); font-size: 22px; color: var(--red);
  margin-bottom: 10px; letter-spacing: 0.06em;
}
.mega a { display: block; padding: 6px 0; font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 500; }
.mega a:hover { color: var(--red); }
.mega-feature {
  background: var(--charcoal); color: var(--cream); border-radius: 16px;
  padding: 18px; min-height: 180px;
  background-image: linear-gradient(160deg, rgba(26,20,18,0.2), rgba(26,20,18,0.72)), url("../images/food/pizza/loaded.jpg");
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.mega-feature strong { font-family: var(--font-display); font-size: 28px; }

/* HERO — digital restaurant, not ecommerce banner */
.hero {
  min-height: calc(100vh - var(--nav-h) - var(--announce-h));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-copy {
  padding: 72px 7vw 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.kicker {
  letter-spacing: 0.28em; text-transform: uppercase; font-size: 12px;
  color: var(--red); font-weight: 700; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(56px, 8vw, 108px);
  max-width: 8ch;
  margin-bottom: 18px;
}
.hero p { font-size: 18px; max-width: 42ch; color: var(--muted); margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo {
  position: relative;
  background: #3b2118;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; min-height: 560px;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
.float-tag {
  position: absolute; background: var(--white); color: var(--charcoal);
  padding: 8px 14px; border-radius: 999px; font-weight: 800;
  letter-spacing: 0.14em; font-size: 12px;
  box-shadow: var(--shadow); animation: floaty 4s ease-in-out infinite;
}
.float-tag.a { top: 18%; left: 8%; }
.float-tag.b { top: 42%; right: 10%; animation-delay: 0.6s; background: var(--gold); }
.float-tag.c { bottom: 18%; left: 18%; animation-delay: 1.1s; background: var(--red); color: #fff; }
.hero-slash {
  position: absolute; left: 48%; top: -10%; bottom: -10%; width: 90px;
  background: var(--cream); transform: rotate(8deg); z-index: 1;
}

/* WHAT ARE YOU CRAVING — circular category nav */
.crave-row { padding: 70px 0 40px; }
.section-head { text-align: center; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(40px, 6vw, 72px); }
.section-head p { color: var(--muted); margin-top: 8px; }
.circles {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
}
.circle-cat {
  width: 118px; text-align: center; color: var(--ink);
}
.circle-cat .orb {
  width: 96px; height: 96px; margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  font-size: 34px;
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  transition: 0.25s transform, 0.25s border;
  overflow: hidden;
}
.circle-cat .orb img { width: 100%; height: 100%; object-fit: cover; }
.circle-cat:hover .orb { transform: translateY(-6px) scale(1.04); border-color: var(--gold); }
.circle-cat span { font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

/* TODAY'S CRAVE — editorial magazine feature */
.todays {
  display: grid; grid-template-columns: 1.4fr 0.9fr;
  min-height: 640px; margin: 30px 20px 20px; border-radius: 32px; overflow: hidden;
  background: var(--charcoal); color: var(--cream);
}
.todays-photo { position: relative; }
.todays-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 640px; }
.todays-photo::after {
  content: "TODAY"; position: absolute; left: 24px; top: 24px;
  font-family: var(--font-display); font-size: 90px; color: rgba(255,255,255,0.16);
  letter-spacing: 0.06em;
}
.todays-copy { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.todays-copy h2 { font-size: 72px; margin: 8px 0 12px; }
.editorial { font-family: var(--font-serif); font-size: 20px; font-style: italic; color: #f0d9b8; margin-bottom: 18px; }
.meta-row { display: flex; gap: 18px; flex-wrap: wrap; margin: 12px 0 22px; color: var(--gold); font-weight: 700; }
.ingredient-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.ingredient-pills span {
  border: 1px solid rgba(248,241,231,0.25); padding: 6px 12px; border-radius: 999px; font-size: 12px;
}

/* menu board */
.menu-board {
  margin: 40px 20px; border-radius: 28px; padding: 48px 36px;
  background: #241816 url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='%23201816'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23322622' stroke-width='1'/%3E%3C/svg%3E");
  color: var(--cream);
}
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.board-item {
  border-bottom: 1px dashed rgba(233,185,73,0.35); padding: 12px 0;
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
}
.board-item b { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.04em; }
.board-item span { color: var(--gold); font-weight: 700; }

/* combo boards */
.combo-boards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.combo-card {
  border-radius: 24px; overflow: hidden; min-height: 280px; position: relative; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  background-size: cover; background-position: center;
}
.combo-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,18,0.88), rgba(26,20,18,0.1));
}
.combo-card > * { position: relative; z-index: 1; }
.combo-card h3 { font-family: var(--font-display); font-size: 40px; }

/* reviews as restaurant tickets */
.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ticket {
  background: var(--white); border-radius: 4px 18px 18px 4px;
  padding: 22px; box-shadow: var(--shadow); position: relative;
  border-left: 8px solid var(--red);
}
.ticket:nth-child(3n) { border-left-color: var(--gold); }
.stars { color: var(--gold-deep); letter-spacing: 2px; margin-bottom: 8px; }
.ticket h4 { font-size: 16px; margin-bottom: 4px; }
.ticket .order { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }

/* gallery strip */
.gallery-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding: 8px;
}
.gallery-strip img { height: 160px; width: 100%; object-fit: cover; filter: saturate(1.05); }
.gallery-strip a:nth-child(2) img, .gallery-strip a:nth-child(5) img { height: 200px; margin-top: -20px; }

/* footer */
.site-footer {
  background: var(--charcoal); color: #f3e6d4; padding: 56px 0 20px; margin-top: 40px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.site-footer h3 { font-family: var(--font-display); font-size: 42px; color: var(--red-hot); }
.site-footer h5 { letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; color: var(--gold); }
.site-footer a, .site-footer p { color: #d7c4b0; display: block; margin: 6px 0; }
.legal { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 32px; padding-top: 16px; font-size: 12px; color: #9a8776; }

/* search overlay */
.search-overlay {
  position: fixed; inset: 0; background: rgba(26,20,18,0.72); z-index: 100;
  display: none; align-items: flex-start; justify-content: center; padding-top: 12vh;
}
.search-overlay.open { display: flex; }
.search-box {
  width: min(720px, 92vw); background: var(--white); border-radius: 20px; padding: 22px;
}
.search-box input {
  width: 100%; border: 0; border-bottom: 2px solid var(--cream-deep);
  font-size: 22px; padding: 10px 4px; outline: none; background: transparent;
}
.suggest { max-height: 360px; overflow: auto; margin-top: 10px; }
.suggest a {
  display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 12px;
}
.suggest a:hover { background: var(--cream); }
.suggest img { width: 54px; height: 54px; object-fit: cover; border-radius: 10px; }

/* page banners */
.page-hero {
  min-height: 280px; display: grid; place-items: center; text-align: center; color: #fff;
  background-size: cover; background-position: center; position: relative;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,18,0.72), rgba(26,20,18,0.25)); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(48px, 8vw, 92px); }

.pad { padding: 56px 0; }
.muted { color: var(--muted); }
.reveal { opacity: 0; transform: translateY(18px); animation: rise 0.7s ease forwards; }

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes fadePulse { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none; } }

.food-ph {
  background:
    radial-gradient(circle at 30% 30%, rgba(233,185,73,0.4), transparent 40%),
    linear-gradient(160deg, #8a2a24, #3b1814);
  color: #fff; display: grid; place-items: center; text-align: center; padding: 16px;
  font-family: var(--font-display); letter-spacing: 0.08em; min-height: 160px;
}
img.broken { display: none; }
