/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #FF6600;
  --orange-dark: #D95400;
  --orange-lt:   #FFF0E6;
  --pink:        #DA1884;
  --pink-dark:   #B5116A;
  --pink-lt:     #FDE4F3;
  --bg:          #FFFFFF;
  --bg2:         #F5F5F5;
  --text:        #1A1A1A;
  --text-muted:  #555555;
  --text-dim:    #999999;
  --border:      #E8E8E8;
  --white:       #FFFFFF;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-pill: 100px;
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --font-head:   'Poppins', system-ui, sans-serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --trans:       .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-dark   { background: var(--text);   color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }
.section-pink   { background: var(--pink);   color: var(--white); }
.section-cream  { background: var(--bg2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: var(--trans);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,102,0,.35); }

.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(218,24,132,.35); }

.btn-white { background: var(--white); color: var(--text); }
.btn-white:hover { background: var(--bg2); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2.5px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 4px solid var(--orange);
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.12); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--text);
  margin-right: auto;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.logo-j { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--trans);
}
.nav-links a:hover,
.nav-links a.active-link { color: var(--orange); background: var(--orange-lt); }

.nav-order { font-size: .8rem; padding: 10px 22px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span { display: block; width: 22px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--trans); }
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO (full-width Dunkin'-style) ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  background: var(--text);
  display: block;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9) 40%, rgba(0,0,0,.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 68px);
  padding: 80px 60px;
  max-width: 680px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,.3);
  width: fit-content;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink .9s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title span { color: var(--orange); display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── FOOD STRIP ── */
.food-strip {
  background: var(--text);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--pink);
}
.food-strip-inner {
  display: inline-flex;
  animation: stripScroll 22s linear infinite;
}
.food-strip-inner span {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 0 20px;
}
.food-strip-inner span.hi { color: var(--pink); }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PROMO CARDS (Dunkin'-style 3-card row) ── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.promo-card {
  padding: 52px 40px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  transition: filter var(--trans);
}
.promo-card:hover { filter: brightness(1.07); }
.promo-card:nth-child(1) { background: var(--orange); }
.promo-card:nth-child(2) { background: var(--pink); }
.promo-card:nth-child(3) { background: var(--text); }
.promo-card-content { display: flex; flex-direction: column; gap: 12px; }
.promo-eyebrow {
  font-family: var(--font-head);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.promo-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -.02em;
}
.promo-card p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  line-height: 1.7;
}

/* ── DEAL BANNER ── */
.deal-banner {
  background: var(--orange);
  padding: 56px 0;
}
.deal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.deal-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.deal-text p { font-size: .95rem; color: rgba(255,255,255,.75); max-width: 380px; }
.deal-price {
  font-family: var(--font-head);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 4px 4px 0 rgba(0,0,0,.18);
  letter-spacing: -.03em;
}

/* ── PILLARS ── */
.pillars { padding: 72px 0; background: var(--bg2); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-top: 5px solid var(--orange);
  transition: var(--trans);
  box-shadow: var(--shadow);
}
.pillar:nth-child(2) { border-top-color: var(--pink); }
.pillar:nth-child(3) { border-top-color: var(--text); }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.pillar:nth-child(2) .pillar-icon { background: var(--pink-lt); color: var(--pink); }
.pillar:nth-child(3) .pillar-icon { background: var(--bg2); color: var(--text); }
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.pillar p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow::before { content:''; width:28px; height:3px; background:var(--orange); border-radius:2px; }
.section-dark .eyebrow,
.section-orange .eyebrow,
.section-pink .eyebrow { color: rgba(255,255,255,.75); }
.section-dark .eyebrow::before,
.section-orange .eyebrow::before,
.section-pink .eyebrow::before { background: rgba(255,255,255,.75); }
.section-header.center .eyebrow { justify-content: center; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}
.section-sub {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}
.section-header.center .section-sub { margin: 0 auto; }
.section-dark .section-title,
.section-orange .section-title,
.section-pink .section-title { color: var(--white); }
.section-dark .section-sub,
.section-orange .section-sub,
.section-pink .section-sub { color: rgba(255,255,255,.7); }

/* ── MENU TABS ── */
.menu-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--border);
  background: transparent;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--trans);
}
.menu-tab:hover { border-color: var(--orange); color: var(--orange); }
.menu-tab.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ── MENU GRID ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: var(--trans);
  position: relative;
}
.menu-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-card.hidden { display: none; }

.menu-card-img {
  position: relative;
  height: 220px;
  background: var(--bg2);
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }
.menu-card-img.no-img img { display: none; }
.menu-card-img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--border);
  gap: 8px;
}
.menu-card-img-placeholder svg { width: 36px; height: 36px; }
.menu-card-img.no-img .menu-card-img-placeholder { display: flex; }

.menu-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.menu-card-body { padding: 20px 22px 24px; }
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.menu-card-top h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
}
.menu-price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--orange);
  white-space: nowrap;
}
.menu-card-body p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.menu-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.menu-tags span {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--orange-lt);
  color: var(--orange);
  border: 1.5px solid rgba(255,102,0,.2);
}
.menu-note {
  margin-top: 40px;
  text-align: center;
  font-size: .82rem;
  color: var(--text-dim);
}

/* ── ORDER / CTA (pink Dunkin'-style) ── */
.app-section {
  padding: 88px 0;
  background: var(--pink);
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-body .section-title { margin-bottom: 16px; }
.app-body p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 420px;
}
.app-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.app-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  background: rgba(255,255,255,.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-img img { width: 100%; height: 100%; object-fit: cover; }
.app-img.no-img img { display: none; }
.app-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
  padding: 24px;
}
.app-img.no-img .app-img-placeholder { display: flex; }
.app-img-placeholder svg { width: 56px; height: 56px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg2);
  position: relative;
}
.about-img:first-child { grid-column: 1 / -1; height: 280px; }
.about-img:not(:first-child) { height: 180px; }
.about-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .5s ease; }
.about-img:hover img { transform: scale(1.05); }
.about-img.no-img img { display: none; }
.about-img-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
  color: var(--border);
  padding: 20px;
}
.about-img.no-img .about-img-placeholder { display: flex; }
.about-img-placeholder svg { width: 36px; height: 36px; }

.about-body .eyebrow { margin-bottom: 12px; }
.about-body .section-title { margin-bottom: 20px; }
.about-body p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: .95rem;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 0;
  margin: 36px 0;
}
.a-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 12px;
  background: var(--bg2);
}
.a-stat:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.a-stat:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.a-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.a-stat-lbl {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: var(--trans);
}
.info-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.info-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-lt);
  border-radius: var(--radius);
  color: var(--orange);
}
.info-icon svg { width: 24px; height: 24px; }
.info-card h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: 6px;
}
.info-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
.info-card a { color: var(--orange); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }
.info-card small { font-size: .78rem; color: var(--text-dim); display: block; margin-top: 4px; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 380px; }
.map-placeholder {
  width: 100%; height: 100%;
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dim);
  text-align: center;
  padding: 24px;
}
.map-placeholder svg { width: 48px; height: 48px; }
.map-placeholder p { font-family: var(--font-head); font-size: .95rem; font-weight: 800; text-transform: uppercase; color: var(--text-muted); }
.map-placeholder small { font-size: .8rem; }

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  display: inline-block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color var(--trans); }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: .875rem; line-height: 1.7; margin-bottom: 8px; }
.footer-contact a { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-credit a { color: var(--pink); }
.footer-credit a:hover { text-decoration: underline; }

/* ── CART BUTTON IN NAV ── */
.nav-cart {
  position: relative;
  background: var(--orange-lt);
  border: 2px solid var(--orange);
  border-radius: var(--radius-pill);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--orange);
  transition: var(--trans);
  flex-shrink: 0;
}
.nav-cart:hover { background: var(--orange); color: var(--white); }
.nav-cart svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .6rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: var(--trans);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ── CART OVERLAY ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: var(--white);
  z-index: 301;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 2px solid var(--border);
  flex-shrink: 0;
}
.cart-header h3 {
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .03em;
}
.cart-close {
  background: var(--bg2); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text);
  transition: var(--trans);
}
.cart-close:hover { background: var(--orange); color: var(--white); }
.cart-close svg { width: 16px; height: 16px; }

.cart-body {
  flex: 1; overflow-y: auto; padding: 20px 24px;
}
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 10px;
  height: 200px; color: var(--text-dim);
}
.cart-empty svg { width: 48px; height: 48px; }
.cart-empty p { font-family: var(--font-head); font-weight: 800; font-size: .95rem; text-transform: uppercase; }
.cart-empty small { font-size: .8rem; }

.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg2); border-radius: var(--radius);
  padding: 14px 16px;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-head);
  font-size: .85rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 4px;
}
.cart-item-price { font-size: .82rem; color: var(--orange); font-weight: 600; }
.cart-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%; border: 2px solid var(--border);
  background: var(--white); cursor: pointer;
  font-size: 1rem; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); color: var(--text);
}
.qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.qty-num {
  font-family: var(--font-head);
  font-weight: 800; font-size: .9rem; min-width: 20px; text-align: center;
}

/* ── CART FOOTER / CHECKOUT ── */
.cart-footer {
  padding: 20px 24px;
  border-top: 2px solid var(--border);
  flex-shrink: 0;
  max-height: 70vh;
  overflow-y: auto;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head);
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .03em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--border);
}
.cart-subtotal span:last-child { color: var(--orange); font-size: 1.2rem; }

.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-head);
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text);
  background: var(--bg2);
  transition: border-color var(--trans);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.order-type-row { display: flex; gap: 10px; }
.radio-pill {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em;
  transition: var(--trans);
}
.radio-pill:has(input:checked) { border-color: var(--orange); background: var(--orange-lt); color: var(--orange); }
.radio-pill input { display: none; }

.checkout-btn { width: 100%; justify-content: center; margin-top: 6px; }

/* ── CONFIRM MODAL ── */
.confirm-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.confirm-overlay.open { opacity: 1; pointer-events: all; }
.confirm-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 380px; width: 90%;
  box-shadow: var(--shadow-lg);
  transform: scale(.9);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.confirm-overlay.open .confirm-modal { transform: scale(1); }
.confirm-icon {
  width: 72px; height: 72px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.confirm-modal h3 {
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 12px;
}
.confirm-modal p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 28px; }

/* ── ADD TO CART BUTTON ── */
.btn-add-cart {
  margin-top: 14px;
  width: 100%;
  padding: 11px 20px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
}
.btn-add-cart:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,102,0,.35); }
.btn-add-cart.added { background: var(--pink); }

/* ── FOOTER SOCIALS ── */
.footer-socials {
  display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--orange); color: var(--white); }

/* ── SATURDAY TAKEOUT ── */
.takeout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.takeout-heading {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--orange);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
}
.takeout-heading small {
  font-size: .75rem; font-weight: 600;
  text-transform: none; letter-spacing: 0;
  color: var(--text-muted);
}
.takeout-list { display: flex; flex-direction: column; gap: 0; }
.takeout-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--text);
}
.takeout-list.sides li { justify-content: flex-start; gap: 10px; }
.takeout-list.sides li::before {
  content: '•'; color: var(--orange); font-size: 1.2rem;
}
.takeout-price {
  font-family: var(--font-head);
  font-weight: 900; font-size: 1rem;
  color: var(--orange);
  white-space: nowrap;
}
.takeout-note {
  background: var(--orange-lt);
  border: 2px solid rgba(255,102,0,.2);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: .9rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ── CATERING SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  transition: var(--trans);
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .02em;
  color: var(--text);
}
.service-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.service-card .btn { align-self: flex-start; font-size: .75rem; padding: 10px 22px; }

/* ── JOB FORM ── */
.job-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.job-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 860px) {
  .takeout-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .job-form-grid { grid-template-columns: 1fr; }
  .job-form { padding: 24px 20px; }
}

/* ── ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  animation: revealUp .7s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes revealUp { to { opacity:1; transform:translateY(0); } }

.sr { opacity:0; transform:translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.sr.in { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { gap: 48px; }
  .app-grid  { gap: 48px; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card { min-height: auto; padding: 40px 32px; }
}

@media (max-width: 860px) {
  .hero-content { padding: 60px 32px; max-width: 100%; }
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.85) 60%, rgba(0,0,0,.5) 100%); }
  .pillars-grid { grid-template-columns: 1fr; }
  .deal-inner { justify-content: center; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { order: -1; }
  .app-grid { grid-template-columns: 1fr; }
  .app-img { order: -1; height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-order { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .nav-burger { display: flex; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: row; }
  .a-stat { padding: 16px 8px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .hero-content { padding: 60px 24px; }
}
