/* ════════════════════════════════════════
   VARIABLES
════════════════════════════════════════ */
:root {
  /* Restaurant page */
  --bg: #FFFFFF;
  --bg-secondary: #F7F4EF;
  --accent: #B85C3A;
  --accent-light: #FFF8F5;
  --text: #0F0F0E;
  --text-muted: #6B6560;
  --text-light: #F7F4EF;
  --border: #E8E2D9;
  --serif: 'Cormorant Garant', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max: 800px;
  --max-wide: 1100px;
  --tab-h: 50px;

  /* Homepage fv- palette */
  --fv-accent: #B85C3A;
  --fv-accent-light: #FFF3EE;
  --fv-accent-border: #F0C4B0;
  --fv-bg: #FFFFFF;
  --fv-bg-warm: #F7F4EF;
  --fv-dark: #0F0F0E;
  --fv-chat-bg: #111111;
  --color-text-secondary: #6B6560;
  --color-text-tertiary: #9E9590;
  --color-border-tertiary: rgba(15,15,14,0.1);
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; }
.page { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 48px; }
.text-muted { color: var(--text-muted); }
a { text-decoration: none; }

/* ════════════════════════════════════════
   SHARED (used by restaurant page)
════════════════════════════════════════ */
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s, opacity 0.15s, color 0.15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #9e4d2f; }
.btn-ghost { background: transparent; border: 1px solid var(--text); color: var(--text); }
.btn-ghost:hover { background: var(--text); color: #fff; }

/* ════════════════════════════════════════
   RESTAURANT — TOP SECTION
════════════════════════════════════════ */
.rest-top {
  background: #fff;
  padding: 36px 0 40px;
}

.rest-top-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

.rest-left { display: flex; flex-direction: column; }

.rest-back {
  display: inline-block;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.15s;
}
.rest-back:hover { color: var(--text); }

.rest-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 52px;
  color: #0F0F0E;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.rest-info {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.rest-star { color: var(--accent); }
.rest-dot { margin: 0 7px; opacity: 0.45; }

.rest-desc {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 480px;
}

.rest-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tag-pill {
  display: inline-block;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--sans);
  padding: 4px 12px;
}

.rest-photo-col { padding-top: 4px; }

.rest-photo-placeholder {
  background: #F2EDE6;
  border-radius: 12px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rest-photo-addr {
  font-size: 12px;
  font-family: var(--sans);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.rest-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ════════════════════════════════════════
   AI ORDER BAND (restaurant page)
════════════════════════════════════════ */
.ai-band {
  background: var(--bg-secondary);
  padding: 40px 0;
}

.ai-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ai-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cmd-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 16px 24px;
  max-width: 480px;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cmd-icon { flex-shrink: 0; color: var(--accent); }

.cmd-text {
  flex: 1;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text);
  text-align: left;
  line-height: 1.3;
}

.cmd-copy {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 11px;
  padding: 4px 10px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.cmd-copy:hover { border-color: var(--text-muted); color: var(--text); }

.ai-band-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}

.ai-footnote {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════
   STICKY NAV (restaurant page)
════════════════════════════════════════ */
.tab-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--tab-h);
  display: flex;
  align-items: center;
  padding-left: 48px;
}

.tab-link {
  display: inline-flex;
  align-items: center;
  height: var(--tab-h);
  padding: 0 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.tab-link:hover { color: var(--accent); }
.tab-link.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ════════════════════════════════════════
   MENU SECTION (restaurant page)
════════════════════════════════════════ */
.menu-section {
  background: #FFFFFF;
  padding: 56px 0 64px;
  scroll-margin-top: var(--tab-h);
  flex: 1;
}

.menu-heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 40px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1;
}

.menu-category { margin-top: 40px; }

.menu-category-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item--last { border-bottom: none; }

.menu-item-left { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.menu-item-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
}

.menu-item-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.4;
}

.menu-item-price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 1px;
}

.happy-hour {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.happy-hour-title { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--text); }
.happy-hour-detail { font-family: var(--sans); font-size: 12px; color: var(--text-muted); }

/* ════════════════════════════════════════
   CATERING SECTION (restaurant page)
════════════════════════════════════════ */
.catering-section {
  background: var(--bg-secondary);
  padding: 56px 0 64px;
  scroll-margin-top: var(--tab-h);
}

.catering-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 48px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}

.catering-desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.catering-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }

.catering-pill {
  display: inline-block;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.03);
  color: var(--text-muted);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 13px;
  padding: 5px 14px;
}

.catering-menu { margin-bottom: 36px; }

.catering-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.catering-item--last { border-bottom: none; }

.catering-item-left { display: flex; flex-direction: column; gap: 4px; flex: 1; }

.catering-item-name { font-family: var(--sans); font-weight: 500; font-size: 15px; color: var(--text); }
.catering-item-desc { font-family: var(--sans); font-size: 13px; font-style: italic; color: var(--text-muted); }

.catering-item-meta {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
}

.catering-cta {
  border: 1px solid var(--border);
  background: #FFFFFF;
  border-radius: 8px;
  padding: 24px;
}

.catering-cta-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.catering-cta p { font-family: var(--sans); font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.catering-cta a { color: var(--accent); text-decoration: none; }
.catering-cta a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   HOMEPAGE — NAV
════════════════════════════════════════ */
.fv-nav {
  background: #fff;
  border-bottom: 0.5px solid var(--color-border-tertiary);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}

.fv-nav-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
}

.fv-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.fv-nav-link {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}
.fv-nav-link:hover { color: var(--text); }

.fv-nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--fv-accent);
  text-decoration: none;
  transition: opacity 0.15s;
}
.fv-nav-cta:hover { opacity: 0.75; }

/* ════════════════════════════════════════
   HOMEPAGE — HERO
════════════════════════════════════════ */
.fv-hero {
  padding: 56px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.fv-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--fv-accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.fv-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 52px;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.fv-subline {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.fv-founding-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--fv-accent-light);
  border: 0.5px solid var(--fv-accent-border);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.fv-founding-badge {
  background: var(--fv-accent);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.fv-founding-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fv-accent);
}

.fv-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.fv-input {
  flex: 1;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.fv-input:focus { border-color: var(--fv-accent); }
.fv-input::placeholder { color: var(--color-text-tertiary); }

.fv-btn {
  background: var(--fv-accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.fv-btn:hover { background: #9e4d2f; }

.fv-tiny {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--color-text-tertiary);
}

/* Chat card */
.fv-chat-card {
  background: var(--fv-chat-bg);
  border-radius: 14px;
  padding: 20px;
  width: 100%;
}

.fv-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}

.fv-chat-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--fv-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.fv-chat-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.fv-chat-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  margin-left: auto;
  flex-shrink: 0;
}

.fv-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Each message row: animation wrapper */
.fv-msg {
  opacity: 0;
  animation: fadeInUp 0.35s ease forwards;
}
.fv-msg--user {
  display: flex;
  justify-content: flex-end;
  animation-delay: 0.6s;
}
.fv-msg--typing { animation-delay: 1.4s; animation-duration: 0.9s; animation-name: fadeInOut; }
.fv-msg--ai { animation-delay: 2.3s; }
.fv-msg--payment { animation-delay: 3.1s; }
.fv-msg--confirm { animation-delay: 4.0s; }

/* Stacking slot for typing + AI (they share the same vertical space) */
.fv-ai-slot {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.fv-ai-slot > * { grid-area: 1 / 1; align-self: start; }

.fv-bubble {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 12px;
  display: inline-block;
}

.fv-bubble--user {
  background: var(--fv-accent);
  color: #fff;
  border-radius: 12px 12px 2px 12px;
  max-width: 200px;
}

.fv-bubble--ai {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-radius: 12px 12px 12px 2px;
  max-width: 230px;
}

.fv-bubble--typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  width: fit-content;
}

.fv-bubble--confirm {
  background: rgba(52,211,153,0.12);
  color: #34d399;
  border-radius: 12px;
  max-width: 230px;
}

.fv-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: inline-block;
  animation: dotPulse 0.8s ease infinite;
}
.fv-dot:nth-child(2) { animation-delay: 0.2s; }
.fv-dot:nth-child(3) { animation-delay: 0.4s; }

/* Payment card within chat */
.fv-payment-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 0 0 4px;
}

.fv-payment-line {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.fv-payment-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #111;
  border-top: 0.5px solid #eee;
  padding-top: 6px;
  margin-bottom: 8px;
}

.fv-pay-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  text-align: center;
}

.fv-chat-footer {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding-top: 10px;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  letter-spacing: 0.3px;
}

/* Chat keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInOut {
  0%   { opacity: 0; transform: translateY(5px); }
  20%  { opacity: 1; transform: translateY(0); }
  75%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(0); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ════════════════════════════════════════
   HOMEPAGE — STATS BAND
════════════════════════════════════════ */
.fv-stats {
  background: var(--fv-bg-warm);
  border-top: 0.5px solid var(--color-border-tertiary);
  border-bottom: 0.5px solid var(--color-border-tertiary);
  padding: 28px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.fv-stat { text-align: center; }

.fv-stat-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 52px;
  color: var(--fv-accent);
  line-height: 1;
}

.fv-stat-num--word { font-size: 40px; }

.fv-stat-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-top: 4px;
}

/* ════════════════════════════════════════
   HOMEPAGE — BUSINESSES
════════════════════════════════════════ */
.fv-bizlist {
  padding: 36px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.fv-biz-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--fv-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fv-biz-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 0.5px solid var(--color-border-tertiary);
}
.fv-biz-row--placeholder { opacity: 0.3; }

.fv-biz-info-col { display: flex; flex-direction: column; gap: 3px; }

.fv-biz-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--text);
  line-height: 1.1;
}

.fv-biz-info {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--color-text-secondary);
}

.fv-biz-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--fv-accent);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.fv-biz-cta:hover { opacity: 0.7; }

/* ════════════════════════════════════════
   HOMEPAGE — INTEGRATIONS
════════════════════════════════════════ */
.fv-integrations {
  padding: 24px 40px;
  border-top: 0.5px solid var(--color-border-tertiary);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.fv-int-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--color-text-tertiary);
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.fv-int-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.fv-int-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-tertiary);
}

/* ════════════════════════════════════════
   HOMEPAGE — CTA BAND
════════════════════════════════════════ */
.fv-cta-band {
  background: var(--fv-dark);
  padding: 48px 40px;
  text-align: center;
}

.fv-cta-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 38px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}

.fv-cta-badge {
  display: inline-block;
  background: rgba(184,92,58,0.2);
  border: 0.5px solid rgba(184,92,58,0.4);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--sans);
  font-size: 12px;
  color: #E8906A;
  margin-bottom: 16px;
}

.fv-cta-subline {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
  line-height: 1.5;
}

.fv-cta-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.fv-input--dark {
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  font-family: var(--sans);
  font-size: 14px;
  width: 260px;
  outline: none;
  transition: border-color 0.15s;
}
.fv-input--dark:focus { border-color: rgba(255,255,255,0.35); }
.fv-input--dark::placeholder { color: rgba(255,255,255,0.3); }

.fv-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.fv-progress-text {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

.fv-progress-track {
  width: 160px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.fv-progress-fill {
  width: 3%;
  height: 100%;
  background: var(--fv-accent);
  border-radius: 2px;
}

.fv-trust {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin-top: 10px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: #0F0F0E;
  padding: 28px 0;
  text-align: center;
}

.site-footer p {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.site-footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
.site-footer a:hover { color: rgba(255,255,255,0.8); }

/* ════════════════════════════════════════
   MOBILE
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Restaurant page */
  .container-wide { padding: 0 20px; }
  .rest-top-inner { grid-template-columns: 1fr; gap: 28px; }
  .rest-name { font-size: 38px; }
  .rest-photo-placeholder { height: 200px; }
  .tab-nav { padding-left: 20px; }
  .tab-link { font-size: 13px; padding: 0 12px; }
  .cmd-box { padding: 14px 16px; }
  .cmd-text { font-size: 17px; }
  .ai-band-buttons { flex-direction: column; width: 100%; max-width: 320px; }
  .ai-band-buttons .btn { text-align: center; }
  .menu-heading { font-size: 32px; }
  .catering-heading { font-size: 36px; }

  /* Homepage */
  .fv-nav { padding: 12px 20px; }
  .fv-nav-link { display: none; }
  .fv-nav-link--cta { display: block; }

  .fv-hero {
    grid-template-columns: 1fr;
    padding: 32px 20px 28px;
    gap: 32px;
  }
  .fv-headline { font-size: 38px; }

  .fv-stats { padding: 20px; grid-template-columns: repeat(3, 1fr); }
  .fv-stat-num { font-size: 36px; }
  .fv-stat-num--word { font-size: 28px; }

  .fv-bizlist { padding: 28px 20px; }
  .fv-integrations { padding: 20px; }
  .fv-int-logos { gap: 16px; }

  .fv-cta-band { padding: 40px 20px; }
  .fv-cta-headline { font-size: 30px; }
  .fv-cta-row { flex-direction: column; align-items: center; }
  .fv-input--dark { width: 100%; max-width: 320px; }

  .fv-input-row { flex-direction: column; }
  .fv-input { width: 100%; }
}
