/* ==========================================================================
   VEVOR - Restaurant Services & Food & Drink Catering
   Rancho Cucamonga, California
   Shared stylesheet for all pages
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --red-900: #6d0a10;
  --red-800: #8c0d14;
  --red-700: #ad1019;
  --red-600: #c4141f;
  --red-050: #fdf2f2;

  --gold-700: #9c7524;
  --gold-600: #bd902f;
  --gold-500: #d4a94b;
  --gold-300: #ecd39a;
  --gold-050: #fbf5e7;

  --ink-900: #16110f;
  --ink-800: #241c19;
  --ink-700: #3d322d;
  --ink-500: #6c5d55;
  --ink-400: #8b7c74;
  --ink-200: #ded5cd;
  --ink-100: #efe8e1;

  --cream: #fffaf4;
  --cream-2: #f9f1e7;

  --jade-600: #2c6b57;
  --jade-050: #eef6f2;

  --shadow-sm: 0 1px 2px rgba(22, 17, 15, .06), 0 2px 8px rgba(22, 17, 15, .05);
  --shadow-md: 0 6px 18px rgba(22, 17, 15, .09), 0 2px 6px rgba(22, 17, 15, .05);
  --shadow-lg: 0 18px 46px rgba(22, 17, 15, .16), 0 6px 16px rgba(22, 17, 15, .07);

  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;

  --font-display: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-logo: "Inter", "Segoe UI", Arial, sans-serif;

  --wrap: 1180px;
  --header-h: 116px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red-700); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--red-600); }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; cursor: pointer; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.18;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}
/* Clean, legible ampersand inside display-font headings */
h1 .amp, h2 .amp, h3 .amp, h4 .amp {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  padding: 0 .03em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.65rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1.1em; }

/* ---------- 3. Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream-2); }
.section--ink { background: var(--ink-900); color: var(--ink-100); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #cbbfb8; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red-700);
  margin-bottom: 14px;
}
.section--ink .eyebrow { color: var(--gold-500); }

.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--ink-500); margin-bottom: 0; }
.section--ink .section-head p { color: #b8aba3; }

.lead { font-size: 1.12rem; color: var(--ink-500); }
.text-red { color: var(--red-700); }
.text-gold { color: var(--gold-600); }

.divider-gold {
  width: 62px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  margin: 0 0 22px;
}
.section-head--center .divider-gold { margin-left: auto; margin-right: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-align: center;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--red-700); color: #fff; box-shadow: 0 6px 18px rgba(173, 16, 25, .26); }
.btn--primary:hover { background: var(--red-600); color: #fff; box-shadow: 0 10px 26px rgba(173, 16, 25, .32); }

.btn--gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #3a2a06; box-shadow: 0 6px 18px rgba(189, 144, 47, .3); }
.btn--gold:hover { color: #2c1f04; box-shadow: 0 10px 26px rgba(189, 144, 47, .36); }

.btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }

.btn--outline { border-color: var(--red-700); color: var(--red-700); background: transparent; }
.btn--outline:hover { background: var(--red-700); color: #fff; }

.btn--sm { padding: 10px 20px; font-size: .87rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 5. Top bar + Header ---------- */
.topbar {
  background: var(--ink-900);
  color: #d9cec7;
  font-size: .82rem;
  letter-spacing: .01em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #e9e1db; }
.topbar a:hover { color: var(--gold-500); }
.topbar__group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { flex: none; opacity: .85; }
.topbar__badge {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold-300); font-weight: 600;
}
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74, 222, 128, .22); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 250, 244, .93);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--ink-100);
  transition: box-shadow .25s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__text { line-height: 1.05; }
.brand__name {
  font-family: var(--font-logo);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1;
  background: linear-gradient(115deg, var(--red-800) 0%, var(--red-600) 55%, var(--red-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--red-700);
  transition: filter .35s ease;
}
.brand:hover .brand__name { filter: drop-shadow(0 3px 10px rgba(173, 16, 25, .35)); }

.nav { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; justify-content: center; }
.nav a {
  display: block;
  padding: 9px 11px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--gold-600);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover { color: var(--red-700); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--red-700); font-weight: 600; }
.nav a.is-active::after { transform: scaleX(1); }
.nav .btn { padding: 10px 18px; font-size: .87rem; margin-left: 6px; }

/* On wide screens the header shows the phone number instead of a nav button */
@media (min-width: 1141px) {
  .nav > .btn { display: none; }
}

.header-cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header-quote { white-space: nowrap; box-shadow: 0 4px 14px rgba(173, 16, 25, .25); }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .93rem; color: var(--ink-900);
  white-space: nowrap;
}
.header-phone svg { color: var(--red-700); }
.header-phone:hover { color: var(--red-700); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--ink-200);
  background: #fff;
  border-radius: 11px;
  align-items: center; justify-content: center;
  color: var(--ink-800);
}
.nav-toggle span {
  display: block; width: 19px; height: 2px; border-radius: 2px;
  background: currentColor; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px;
  border-radius: 2px; background: currentColor; transition: transform .22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20, 10, 8, .93) 0%, rgba(20, 10, 8, .8) 42%, rgba(20, 10, 8, .42) 100%);
}
.hero__inner { padding: 108px 0 96px; max-width: 700px; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero__sub {
  font-size: 1.16rem;
  color: #ddd2cb;
  max-width: 600px;
  margin-bottom: 30px;
}
.hero__badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  backdrop-filter: blur(4px);
}
.pill--gold { background: rgba(212, 169, 75, .18); border-color: rgba(212, 169, 75, .45); color: var(--gold-300); }
.pill--solid { background: var(--gold-600); border-color: var(--gold-600); color: #2e2105; }

.hero--compact { min-height: 400px; }
.hero--compact .hero__inner { padding: 76px 0 68px; }
.hero--compact .hero__sub { margin-bottom: 0; }

.page-hero { position: relative; overflow: hidden; color: #fff; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18, 9, 7, .94) 0%, rgba(18, 9, 7, .82) 45%, rgba(18, 9, 7, .5) 100%);
}
.page-hero__inner { padding: 82px 0 74px; max-width: 760px; }
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: #d5c9c2; font-size: 1.1rem; margin-bottom: 0; max-width: 620px; }

.crumbs { font-size: .82rem; color: #a89a92; margin-bottom: 18px; }
.crumbs a { color: var(--gold-300); }
.crumbs span { margin: 0 8px; opacity: .6; }

/* ---------- 7. Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ink-200); }
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card p { font-size: .96rem; color: var(--ink-500); }

.card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-050);
  color: var(--red-700);
  margin-bottom: 20px;
}
.card--gold .card__icon { background: var(--gold-050); color: var(--gold-700); }
.card--jade .card__icon { background: var(--jade-050); color: var(--jade-600); }
.card--ink .card__icon { background: rgba(255, 255, 255, .1); color: var(--gold-500); }

.card--dark { background: var(--ink-800); border-color: rgba(255, 255, 255, .08); }
.card--dark h3 { color: #fff; }
.card--dark p { color: #c0b4ad; }

.card__list { margin-top: 18px; display: grid; gap: 9px; }
.card__list li {
  position: relative;
  padding-left: 24px;
  font-size: .93rem;
  color: var(--ink-500);
}
.card__list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 10px; height: 6px;
  border-left: 2px solid var(--gold-600);
  border-bottom: 2px solid var(--gold-600);
  transform: rotate(-45deg);
}
.card--dark .card__list li { color: #b9ada6; }

.card__link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px;
  font-weight: 600; font-size: .9rem;
}
.card__link svg { transition: transform .2s ease; }
.card__link:hover svg { transform: translateX(4px); }

/* ---------- 8. Split media block ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 62px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-l); box-shadow: var(--shadow-lg); width: 100%; }
.split__media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.split__media--stack img:first-child { grid-column: 1 / -1; }
.badge-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
  text-align: center;
}
.badge-float strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--red-700); line-height: 1; }
.badge-float span { font-size: .74rem; text-transform: uppercase; letter-spacing: .13em; color: var(--ink-400); font-weight: 600; }

/* ---------- 9. Feature list ---------- */
.check-list { display: grid; gap: 14px; margin: 26px 0 30px; }
.check-list li {
  position: relative; padding-left: 36px;
  font-size: 1rem; color: var(--ink-700);
}
.check-list li strong { color: var(--ink-900); }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-050);
  border: 1px solid var(--gold-300);
}
.check-list li::after {
  content: "";
  position: absolute; left: 7px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--gold-700);
  border-bottom: 2px solid var(--gold-700);
  transform: rotate(-45deg);
}

/* ---------- 10. Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ink-100); border-radius: var(--radius); overflow: hidden; }
.stat { background: #fff; padding: 32px 22px; text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2.3rem; color: var(--red-700); line-height: 1; margin-bottom: 8px; }
.stat span { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-400); font-weight: 600; }

/* ---------- 11. Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-700); color: #fff;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(173, 16, 25, .25);
}
.step h3 { font-size: 1.12rem; }
.step p { font-size: .94rem; color: var(--ink-500); margin-bottom: 0; }

/* ---------- 12. Menu / gallery module ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 34px;
  padding-bottom: 4px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-200);
  background: #fff;
  color: var(--ink-500);
  font-size: .88rem;
  font-weight: 600;
  transition: all .18s ease;
}
.filter-btn:hover { border-color: var(--red-700); color: var(--red-700); }
.filter-btn.is-active {
  background: var(--red-700); border-color: var(--red-700); color: #fff;
  box-shadow: 0 6px 16px rgba(173, 16, 25, .22);
}

.dish-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.dish-grid--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dish-grid--wide .dish__media { aspect-ratio: 16 / 9; }

.dish {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dish.is-hidden { display: none; }

.dish__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-100);
  cursor: zoom-in;
}
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dish:hover .dish__media img { transform: scale(1.06); }
.dish__zoom {
  position: absolute; right: 12px; bottom: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .93);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-800);
  opacity: 0; transform: translateY(6px);
  transition: all .2s ease;
}
.dish:hover .dish__zoom { opacity: 1; transform: translateY(0); }

.dish__tag {
  position: absolute; left: 12px; top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .94);
  color: var(--red-700);
}
.dish__tag--gold { background: var(--gold-600); color: #fff; }

.dish__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.dish__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.dish__head h3 { font-size: 1.1rem; margin-bottom: 6px; }
.dish__price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--red-700); white-space: nowrap; }
.dish__desc { font-size: .9rem; color: var(--ink-500); margin-bottom: 0; }

.menu-note {
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--gold-050);
  border: 1px solid var(--gold-300);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.menu-note p { margin: 0; font-size: .95rem; color: var(--ink-700); }
.menu-note strong { color: var(--ink-900); }

/* ---------- 13. Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(12, 8, 7, .93);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure { max-width: 1020px; width: 100%; text-align: center; transform: scale(.96); transition: transform .28s ease; }
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__figure img { width: 100%; max-height: 74vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 70px rgba(0, 0, 0, .6); }
.lightbox__caption { color: #efe6e0; margin-top: 20px; font-size: 1rem; }
.lightbox__caption span { display: block; color: #a99c95; font-size: .85rem; margin-top: 5px; }
.lightbox__close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .2); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, .2); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ---------- 14. Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-l);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-card > h2 { margin-bottom: .3em; }
.form-card__intro { color: var(--ink-500); margin-bottom: 30px; font-size: .98rem; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-800);
  letter-spacing: .01em;
}
.field label .req { color: var(--red-600); margin-left: 3px; }
.field .hint { font-size: .78rem; color: var(--ink-400); font-weight: 400; }

.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink-900);
  padding: 13px 15px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-s);
  background: var(--cream);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #b3a79f; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red-700);
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(173, 16, 25, .12);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236c5d55' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
}

.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--red-600);
  background: var(--red-050);
  box-shadow: 0 0 0 3.5px rgba(196, 20, 31, .1);
}
.field__error {
  font-size: .8rem;
  color: var(--red-600);
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 5px;
}
.field.has-error .field__error { display: flex; }

.checkbox {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .87rem; color: var(--ink-500); line-height: 1.6;
}
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red-700); flex: none; }
.checkbox a { text-decoration: underline; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-foot { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.form-foot .privacy { font-size: .8rem; color: var(--ink-400); margin: 0; display: flex; align-items: center; gap: 7px; }

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  border-radius: var(--radius-s);
  font-size: .9rem;
  margin-bottom: 24px;
}
.form-alert.is-visible { display: flex; }
.form-alert--ok { background: var(--jade-050); border: 1px solid #b9d9cc; color: #1f5744; }
.form-alert--err { background: var(--red-050); border: 1px solid #f0c0c0; color: var(--red-800); }

.spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.btn.is-loading .spinner { display: block; }
.btn.is-loading { pointer-events: none; opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 15. Contact info blocks ---------- */
.info-list { display: grid; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item__icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-050); color: var(--red-700);
}
.info-item h4 { margin: 0 0 4px; font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-400); }
.info-item p, .info-item a { margin: 0; font-size: 1rem; color: var(--ink-800); font-weight: 500; }
.info-item a:hover { color: var(--red-700); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- 16. CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--red-800) 0%, var(--red-700) 55%, #8e2a12 100%);
  color: #fff;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(circle at 88% 18%, rgba(212, 169, 75, .28), transparent 46%),
                    radial-gradient(circle at 6% 92%, rgba(255, 255, 255, .1), transparent 42%);
}
.cta-band .wrap { padding: 74px 22px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .28em; max-width: 620px; }
.cta-band p { color: #f0ded9; margin: 0; max-width: 560px; }

/* ---------- 17. Testimonials ---------- */
.quote {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
}
.quote__mark { font-family: var(--font-display); font-size: 3.4rem; line-height: .7; color: var(--gold-300); margin-bottom: 12px; }
.quote p { font-size: .98rem; color: var(--ink-700); font-style: italic; flex: 1; }
.quote__author { display: flex; align-items: center; gap: 13px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--ink-100); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-050); color: var(--gold-700);
  font-weight: 700; font-size: .95rem;
  border: 1px solid var(--gold-300);
}
.quote__author strong { display: block; font-size: .93rem; color: var(--ink-900); }
.quote__author span { font-size: .8rem; color: var(--ink-400); }
.stars { color: var(--gold-600); letter-spacing: 2px; font-size: .85rem; margin-bottom: 10px; }

/* ---------- 18. Accordion / FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left;
  background: none; border: 0;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--ink-900);
}
.faq__q:hover { color: var(--red-700); }
.faq__q svg { flex: none; color: var(--gold-600); transition: transform .25s ease; }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a > div { padding: 0 24px 22px; font-size: .95rem; color: var(--ink-500); }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--ink-900); color: #a99c95; font-size: .92rem; padding-top: 68px; }
.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px;
}
.site-footer a { color: #c3b7b0; }
.site-footer a:hover { color: var(--gold-500); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 42px; padding-bottom: 52px; }
.footer-brand .brand__name {
  font-size: 3.5rem;
  background: linear-gradient(115deg, #ffffff 30%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
}
.footer-brand p { margin: 20px 0 0; font-size: .9rem; color: #9c8f88; max-width: 320px; }
.footer-links { display: grid; gap: 11px; }
.footer-contact { display: grid; gap: 15px; }
.footer-contact__row { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; }
.footer-contact__row svg { flex: none; margin-top: 3px; color: var(--gold-600); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .84rem; color: #857871;
}
.footer-bottom__links { display: flex; gap: 20px; flex-wrap: wrap; }

.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #cbbfb8;
}
.social-row a:hover { background: var(--red-700); color: #fff; border-color: var(--red-700); }

/* ---------- 20. Extras ---------- */
.mobile-call {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--ink-100);
  box-shadow: 0 -6px 20px rgba(22, 17, 15, .1);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-call .btn { flex: 1; }

.trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 30px; margin-top: 34px; }
.trust-row span { display: inline-flex; align-items: center; gap: 9px; font-size: .87rem; font-weight: 600; color: var(--ink-500); }
.trust-row svg { color: var(--gold-600); flex: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--red-700); color: #fff; padding: 12px 20px; z-index: 300;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

.table-simple { width: 100%; border-collapse: collapse; font-size: .95rem; table-layout: fixed; }
.table-simple th, .table-simple td { text-align: left; padding: 14px 16px 14px 0; border-bottom: 1px solid var(--ink-100); word-break: break-word; }
.table-simple th { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-400); font-weight: 700; }
.table-simple tr:last-child td { border-bottom: 0; }
.table-simple td:last-child { text-align: right; font-weight: 600; color: var(--red-700); white-space: nowrap; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1240px) {
  .header-phone { display: none; }
  .brand__name { font-size: 2.8rem; }
}

@media (max-width: 1140px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 2px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 12px; border-radius: 10px; font-size: 1rem; }
  .nav a::after { display: none; }
  .nav a.is-active { background: var(--red-050); }
  .nav .btn { margin: 12px 0 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .dish-grid, .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .mobile-call { display: flex; }
  body { padding-bottom: 72px; }
  .section { padding: 68px 0; }
  .hero { min-height: 560px; }
  .hero__inner { padding: 76px 0 72px; }
  .form-card { padding: 30px 24px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .grid--2, .grid--3, .dish-grid, .form-grid, .steps { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .topbar__group:first-child { display: none; }
  .topbar .wrap { justify-content: center; }
  .section { padding: 56px 0; }
  .btn-row .btn { width: 100%; }
  .cta-band .wrap { padding: 56px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .badge-float { left: 12px; bottom: -14px; padding: 14px 18px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 14px; }
  .stat strong { font-size: 1.8rem; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  .menu-note { flex-direction: column; align-items: flex-start; }
  .dish-grid--wide .dish__media { aspect-ratio: 4 / 3; }
  .form-card { padding: 26px 18px; }
  .quote { padding: 26px 22px; }
}

@media print {
  .site-header, .topbar, .mobile-call, .cta-band, .site-footer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   MOTION & VISUAL EFFECTS
   ========================================================================== */

/* ---------- Ken Burns slow push on hero imagery ---------- */
.hero__bg img,
.page-hero__bg img {
  animation: kenburns 22s ease-out both;
  transform-origin: 62% 40%;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

/* ---------- Gold shimmer on hero headline accent ---------- */
.hero h1 em {
  background: linear-gradient(100deg,
    var(--gold-500) 0%, #f7e7bb 22%, var(--gold-500) 45%,
    #fff3d6 68%, var(--gold-500) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer {
  to { background-position: 220% center; }
}

/* ---------- Floating glow orbs in hero ---------- */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  animation: floaty 9s ease-in-out infinite alternate;
}
.hero::before {
  width: 360px; height: 360px;
  background: rgba(196, 20, 31, .38);
  top: 6%; left: -130px;
}
.hero::after {
  width: 300px; height: 300px;
  background: rgba(212, 169, 75, .30);
  bottom: -80px; right: -90px;
  animation-delay: 1.4s;
}
@keyframes floaty {
  from { transform: translateY(-16px); }
  to   { transform: translateY(18px); }
}

/* ---------- Scrolling marquee ribbon ---------- */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, var(--red-900), var(--red-700) 50%, var(--red-900));
  border-top: 1px solid rgba(236, 211, 154, .28);
  border-bottom: 1px solid rgba(236, 211, 154, .28);
  padding: 15px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-300);
  white-space: nowrap;
}
.marquee__track span::after {
  content: "\2726";
  margin-left: 44px;
  color: var(--gold-500);
  font-size: .78rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Button shine sweep ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -85%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
}
.btn:hover::after { left: 135%; }

/* ---------- Animated gold divider on reveal ---------- */
.reveal .divider-gold {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.22, .8, .3, 1) .25s;
}
.reveal.is-in .divider-gold { transform: scaleX(1); }

/* ---------- Stat number pop on hover ---------- */
.stat strong { display: inline-block; transition: transform .3s ease; }
.stat:hover strong { transform: scale(1.08); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
  z-index: 200;
  pointer-events: none;
}

/* ---------- Back-to-top button ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  width: 47px; height: 47px;
  border: none;
  border-radius: 50%;
  background: var(--red-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background .25s ease;
  z-index: 90;
}
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--red-600); transform: translateY(-4px); }

/* ---------- Small-screen logo sizing ---------- */
@media (max-width: 640px) {
  .brand__name { font-size: 2.15rem; }
  .footer-brand .brand__name { font-size: 2.6rem; }
  .header-quote { padding: 8px 13px; font-size: .82rem; }
  .to-top { right: 14px; bottom: 84px; }
}

/* ---------- Reduced motion guards for new effects ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero__bg img, .page-hero__bg img { animation: none; }
  .hero h1 em { animation: none; -webkit-text-fill-color: initial; background: none; color: var(--gold-500); }
  .hero::before, .hero::after { animation: none; }
  .marquee { display: none; }
  .btn::after { display: none; }
  .reveal .divider-gold { transform: none; transition: none; }
}
