:root {
  --red: #e10600;
  --red-dark: #b80500;
  --red-soft: #ffeceb;
  --black: #0b0b0b;
  --ink: #111111;
  --muted: #5c5c5c;
  --line: #e6e6e6;
  --paper: #f3f4f6;
  --white: #ffffff;
  --navy: #1b2430;
  --orange: #f59e0b;
  --green: #16a34a;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, .btn { font-family: inherit; cursor: pointer; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Top bar */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-size: 13px;
  letter-spacing: 0;
  color: #111;
  font-weight: 800;
}
.brand-text span { font-size: 11px; color: var(--muted); font-weight: 600; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.nav a:hover, .nav a.active { background: #f3f4f6; color: var(--red); }
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-dark {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* Hero */
.hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(120,0,0,.55)),
    url("../images/hero-storefront.jpg") center/cover no-repeat;
  color: #fff;
  padding: 56px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
}
.crumb { color: #d1d5db; font-size: 13px; margin-bottom: 14px; }
.crumb a { color: #fff; text-decoration: underline; }
.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.hero .meta { margin: 10px 0 22px; color: #e5e7eb; font-weight: 600; }
.stars { color: #fbbf24; }
.info-list { display: grid; gap: 10px; margin-bottom: 24px; }
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  font-weight: 600;
}
.info-row a { color: #fff; }
.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dot {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.map-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-foot { padding: 16px; }
.map-foot strong { display: block; font-size: 18px; }
.map-foot p { color: var(--muted); margin: 4px 0 12px; }

/* Sections */
section { padding: 64px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h2 em { color: var(--red); font-style: normal; }
.lede { color: var(--muted); max-width: 620px; }

.tabs {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 78px;
  z-index: 40;
}
.tabs-inner { display: flex; gap: 8px; overflow: auto; padding: 10px 0; }
.tabs a {
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.tabs a.active, .tabs a:hover { color: var(--ink); border-color: var(--red); }

/* Coupons */
.coupon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.coupon {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coupon-top {
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    repeating-conic-gradient(#111 0% 25%, #2a2a2a 0% 50%) 50% / 28px 28px;
  color: #fff;
  padding: 34px 24px 28px;
  text-align: center;
}
.coupon-top h3 { font-size: 56px; letter-spacing: -0.04em; }
.code {
  display: inline-block;
  margin-top: 10px;
  background: var(--orange);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
}
.coupon-body { padding: 22px; text-align: center; }
.coupon-body h4 { font-size: 22px; margin-bottom: 6px; }
.coupon-body p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.coupon-actions { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line); }
.coupon-actions a {
  padding: 14px 8px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  border-right: 1px solid var(--line);
}
.coupon-actions a:last-child { border-right: 0; }
.coupon-actions a:hover { background: var(--paper); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid #eee;
}
.card.popular { outline: 3px solid var(--orange); }
.card img { height: 160px; width: 100%; object-fit: cover; }
.card-body { padding: 18px; }
.pill {
  display: inline-block;
  background: #fff7ed;
  color: #9a3412;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.card h3 { font-size: 20px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 14px; }
.icon-wrap {
  height: 110px;
  display: grid;
  place-items: center;
  background: #fff;
}
.icon-wrap img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.panel {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.panel ul { margin: 14px 0 0 18px; color: var(--muted); }
.panel li { margin: 6px 0; }

.photo-stack { display: grid; gap: 12px; }
.photo-stack img { border-radius: 16px; height: 220px; width: 100%; object-fit: cover; }

.soon-bar {
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}
.soon-bar span { color: #fbbf24; }

.fig { position: relative; display: block; }
.fig img { width: 100%; display: block; }
.fig-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0,0,0,.78);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 8px;
}
.card .fig img { height: 160px; object-fit: cover; }
.photo-stack .fig img { border-radius: 16px; height: 220px; object-fit: cover; }
.photo-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}
.soon-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  display: inline-block;
}

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}
.faq summary { font-weight: 800; cursor: pointer; }
.faq p { margin-top: 8px; color: var(--muted); }

/* Contact form */
form { display: grid; gap: 12px; }
label { font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }

.hours { display: grid; gap: 8px; }
.hours div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 6px;
  font-size: 15px;
}

/* Footer */
footer {
  background: var(--black);
  color: #d1d5db;
  padding: 48px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
footer h4 { color: #fff; margin-bottom: 12px; }
footer a { color: #d1d5db; display: block; margin: 6px 0; }
footer a:hover { color: #fff; }
.legal {
  border-top: 1px solid #222;
  padding-top: 16px;
  font-size: 12px;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .hero-grid, .coupon-grid, .cards, .split, .foot-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0; right: 0; top: 78px;
    background: #fff;
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta .btn-ghost { display: none; }
  .hero { padding: 36px 0 40px; }
  .map-card iframe { height: 240px; }
  .coupon-top h3 { font-size: 44px; }
}
