/* ============================================================
   Velvet Brew — Premium Café Website
   style.css | v1.0
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  /* Brand Palette */
  --black:         #1A1A1A;
  --brown-dark:    #2C1810;
  --brown:         #6F4E37;
  --brown-light:   #A0725A;
  --gold:          #C9A96E;
  --gold-light:    #E8D5A3;
  --cream:         #F5ECD7;
  --cream-light:   #FAF6EF;
  --white:         #FFFFFF;
  --text:          #2A1F14;
  --text-muted:    #7A6252;
  --border:        rgba(201, 169, 110, 0.28);
  --overlay:       rgba(26, 16, 10, 0.58);

  /* Typography */
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Weights */
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;
  --fw-extra:   800;

  /* Font Scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  3.75rem;
  --fs-6xl:  4.5rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 18px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 10px 36px rgba(44, 24, 16, 0.18);
  --shadow-xl: 0 20px 56px rgba(44, 24, 16, 0.22);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   260ms ease;
  --t-slow:   420ms ease;

  /* Layout */
  --nav-h:    72px;
  --max-w:    1280px;
  --max-w-md: 860px;
  --max-w-sm: 640px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--cream-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--md { max-width: var(--max-w-md); }
.container--sm { max-width: var(--max-w-sm); }

/* ---- Typography Utilities ---- */
.serif        { font-family: var(--serif); }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-cream   { color: var(--cream); }
.text-center  { text-align: center; }
.text-sm      { font-size: var(--fs-sm); }

.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--serif);
  font-weight: var(--fw-bold);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  line-height: 1.2;
  color: var(--brown-dark);
  margin-bottom: var(--sp-5);
}

.section-title--light { color: var(--cream); }

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.75;
}

.section-subtitle--center { margin-inline: auto; }

/* ---- Section Spacing ---- */
.section { padding-block: var(--sp-24); }
.section--lg { padding-block: var(--sp-32); }
.section--sm { padding-block: var(--sp-16); }
.section--dark { background-color: var(--brown-dark); }
.section--cream { background-color: var(--cream); }
.section--white { background-color: var(--white); }

/* ---- Divider ---- */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: var(--sp-6);
}
.divider--center { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.8rem 2rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.04em;
  transition: background var(--t-base), color var(--t-base),
              transform var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--brown-dark);
  box-shadow: 0 4px 18px rgba(201, 169, 110, 0.35);
}
.btn--primary:hover {
  background: #b8954f;
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.45);
}

.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.btn--dark {
  background: var(--brown-dark);
  color: var(--cream);
}
.btn--dark:hover { background: #3d231a; }

.btn--cream {
  background: var(--cream);
  color: var(--brown-dark);
}
.btn--cream:hover { background: var(--cream-light); }

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-base);
}

.btn--sm {
  padding: 0.55rem 1.4rem;
  font-size: var(--fs-xs);
}

/* ---- Gold Badge ---- */
.badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(201, 169, 110, 0.18);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-slow), box-shadow var(--t-slow),
              backdrop-filter var(--t-slow);
}

.navbar.scrolled {
  background: rgba(26, 16, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.navbar.light {
  background: rgba(250, 246, 239, 0.97);
  box-shadow: 0 1px 0 var(--border);
}

.navbar.light.scrolled {
  background: rgba(250, 246, 239, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.nav-logo__name {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.02em;
}

.navbar.light .nav-logo__name { color: var(--brown-dark); }

.nav-logo__tagline {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: var(--fw-medium);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  color: rgba(245, 236, 215, 0.78);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t-base);
}

.navbar.light .nav-link { color: var(--text-muted); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--t-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Reserve Button in Nav */
.nav-cta {
  margin-left: var(--sp-4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}

.navbar.light .nav-toggle span { background: var(--brown-dark); }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--brown-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity var(--t-slow), transform var(--t-slow);
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.nav-drawer .nav-link {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-slow), transform var(--t-slow), color var(--t-base);
}

.nav-drawer.open .nav-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-drawer.open .nav-link:nth-child(1) { transition-delay: 80ms; }
.nav-drawer.open .nav-link:nth-child(2) { transition-delay: 140ms; }
.nav-drawer.open .nav-link:nth-child(3) { transition-delay: 200ms; }
.nav-drawer.open .nav-link:nth-child(4) { transition-delay: 260ms; }
.nav-drawer.open .nav-link:nth-child(5) { transition-delay: 320ms; }

/* ================================================================
   HERO — HOME
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--brown-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 16, 10, 0.82) 0%,
    rgba(44, 24, 16, 0.55) 60%,
    rgba(111, 78, 55, 0.28) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__eyebrow-text {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(var(--fs-3xl), 7vw, var(--fs-6xl));
  font-weight: var(--fw-bold);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: var(--sp-6);
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__desc {
  font-size: var(--fs-md);
  color: rgba(245, 236, 215, 0.78);
  max-width: 52ch;
  margin-bottom: var(--sp-10);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(245, 236, 215, 0.5);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: var(--gold);
  padding-block: var(--sp-3);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: var(--sp-10);
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item::before {
  content: '✦';
  font-size: 10px;
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT / INTRO SECTION
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img--main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 82%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
}

.about-img--accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-light);
}

.about-float-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brown-dark);
  color: var(--cream);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
  min-width: 130px;
}

.about-float-card__num {
  font-family: var(--serif);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--gold);
  line-height: 1;
}

.about-float-card__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: var(--sp-1);
}

/* ================================================================
   SIGNATURE PRODUCTS
   ================================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.product-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.product-card__img-wrap {
  overflow: hidden;
  height: 240px;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.06);
}

.product-card__body {
  padding: var(--sp-6);
}

.product-card__tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.product-card__name {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--brown-dark);
  margin-bottom: var(--sp-2);
}

.product-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.product-card__price {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--brown);
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.feature-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: rgba(201, 169, 110, 0.04);
  transition: background var(--t-base), border-color var(--t-base),
              transform var(--t-base);
}

.feature-card:hover {
  background: rgba(201, 169, 110, 0.10);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-size: 22px;
}

.feature-card__title {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--cream);
  margin-bottom: var(--sp-3);
}

.feature-card__desc {
  font-size: var(--fs-sm);
  color: rgba(245, 236, 215, 0.62);
  line-height: 1.75;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
  padding: var(--sp-12) 0;
}

.stat-item {
  text-align: center;
  padding: var(--sp-4);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(44, 24, 16, 0.2);
}

.stat-item__num {
  font-family: var(--serif);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extra);
  color: var(--brown-dark);
  line-height: 1;
}

.stat-item__suffix {
  font-size: var(--fs-2xl);
}

.stat-item__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--brown-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: var(--sp-2);
  opacity: 0.75;
}

/* ================================================================
   FEATURED MENU
   ================================================================ */
.menu-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.menu-tab {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all var(--t-base);
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--brown-dark);
  color: var(--gold);
  border-color: var(--brown-dark);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.menu-item-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-item-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.menu-item-card:hover .menu-item-card__img { transform: scale(1.05); }

.menu-item-card__body { padding: var(--sp-4); }

.menu-item-card__name {
  font-family: var(--serif);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--brown-dark);
  margin-bottom: var(--sp-1);
}

.menu-item-card__desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.menu-item-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-card__price {
  font-weight: var(--fw-bold);
  color: var(--brown);
  font-size: var(--fs-md);
}

.menu-item-card__order {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brown-dark);
  font-weight: var(--fw-bold);
  transition: background var(--t-base), transform var(--t-fast);
}

.menu-item-card__order:hover {
  background: var(--brown-dark);
  color: var(--gold);
  transform: scale(1.1);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-family: var(--serif);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

.testimonial-card__quote::before { content: '\201C'; color: var(--gold); }
.testimonial-card__quote::after  { content: '\201D'; color: var(--gold); }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-card__name {
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  color: var(--brown-dark);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ================================================================
   RESERVATION CTA
   ================================================================ */
.reservation-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: var(--sp-20) var(--sp-12);
  text-align: center;
  background: var(--brown-dark);
}

.reservation-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.reservation-cta__content { position: relative; z-index: 1; }

.reservation-cta__title {
  font-family: var(--serif);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: var(--fw-bold);
  color: var(--cream);
  margin-bottom: var(--sp-4);
}

.reservation-cta__desc {
  font-size: var(--fs-md);
  color: rgba(245, 236, 215, 0.7);
  max-width: 50ch;
  margin: 0 auto var(--sp-8);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #110c08;
  color: rgba(245, 236, 215, 0.65);
  padding-top: var(--sp-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-brand__logo {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--cream);
  margin-bottom: var(--sp-3);
}

.footer-brand__tagline {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.footer-brand__desc {
  font-size: var(--fs-sm);
  line-height: 1.8;
  max-width: 30ch;
  margin-bottom: var(--sp-6);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social__link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  transition: background var(--t-base), border-color var(--t-base);
}

.footer-social__link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
}

.footer-col__title {
  font-family: var(--serif);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--cream);
  margin-bottom: var(--sp-5);
}

.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(245, 236, 215, 0.6);
  transition: color var(--t-base), padding-left var(--t-base);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: var(--sp-2);
}

.footer-contact-item {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
  align-items: flex-start;
}

.footer-contact-item__icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-6);
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--sp-20));
  padding-bottom: var(--sp-20);
  background: var(--brown-dark);
  overflow: hidden;
  text-align: center;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(var(--fs-3xl), 6vw, var(--fs-5xl));
  font-weight: var(--fw-bold);
  color: var(--cream);
  margin-bottom: var(--sp-4);
}

.page-hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(245, 236, 215, 0.68);
  max-width: 50ch;
  margin-inline: auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: rgba(245, 236, 215, 0.5);
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* ================================================================
   MENU PAGE
   ================================================================ */
.menu-category {
  margin-bottom: var(--sp-16);
}

.menu-category__header {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.menu-category__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.menu-category__title {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--brown-dark);
  white-space: nowrap;
}

.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.menu-list-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: border-color var(--t-base), box-shadow var(--t-base),
              transform var(--t-base);
}

.menu-list-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.menu-list-item__img {
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  object-fit: cover;
  flex-shrink: 0;
}

.menu-list-item__info { flex: 1; }

.menu-list-item__name {
  font-family: var(--serif);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--brown-dark);
  margin-bottom: var(--sp-1);
}

.menu-list-item__desc {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-2);
}

.menu-list-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-list-item__price {
  font-weight: var(--fw-bold);
  color: var(--brown);
}

/* Chef's Picks */
.chefs-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.chefs-pick-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 380px;
}

.chefs-pick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.chefs-pick-card:hover img { transform: scale(1.08); }

.chefs-pick-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,10,0.88) 0%, transparent 55%);
}

.chefs-pick-card__body {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  right: var(--sp-6);
}

.chefs-pick-card__name {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--cream);
  margin-bottom: var(--sp-1);
}

.chefs-pick-card__desc {
  font-size: var(--fs-xs);
  color: rgba(245, 236, 215, 0.7);
  margin-bottom: var(--sp-3);
}

.chefs-pick-card__price {
  color: var(--gold);
  font-weight: var(--fw-bold);
}

/* ================================================================
   PRICING PAGE
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base),
              border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.pricing-card--featured {
  background: var(--brown-dark);
  border-color: var(--gold);
  transform: scale(1.04);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.pricing-card__ribbon {
  position: absolute;
  top: var(--sp-5);
  right: -var(--sp-3);
  background: var(--gold);
  color: var(--brown-dark);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
}

.pricing-card__plan {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.pricing-card__name {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--brown-dark);
  margin-bottom: var(--sp-5);
}

.pricing-card--featured .pricing-card__name { color: var(--cream); }

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--border);
}

.pricing-card--featured .pricing-card__price { border-color: rgba(201, 169, 110, 0.3); }

.pricing-card__currency {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--gold);
  margin-bottom: 6px;
}

.pricing-card__amount {
  font-family: var(--serif);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-extra);
  color: var(--brown-dark);
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount { color: var(--cream); }

.pricing-card__period {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pricing-card--featured .pricing-card__period { color: rgba(245, 236, 215, 0.5); }

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.pricing-card--featured .pricing-card__feature { color: rgba(245, 236, 215, 0.7); }

.pricing-card__feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

/* Combos */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.combo-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.combo-card__header {
  background: var(--brown-dark);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.combo-card__title {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--cream);
}

.combo-card__price-tag {
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

.combo-card__body { padding: var(--sp-6); }

.combo-card__items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.combo-card__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.combo-card__item::before {
  content: '→';
  color: var(--gold);
  font-size: var(--fs-xs);
}

.combo-card__savings {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Seasonal Banner */
.seasonal-banner {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  height: 300px;
}

.seasonal-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seasonal-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,16,10,0.88) 40%, transparent);
  display: flex;
  align-items: center;
  padding: var(--sp-12);
}

.seasonal-banner__content {}

.seasonal-banner__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.seasonal-banner__title {
  font-family: var(--serif);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--cream);
  margin-bottom: var(--sp-3);
}

.seasonal-banner__desc {
  font-size: var(--fs-sm);
  color: rgba(245, 236, 215, 0.72);
  max-width: 36ch;
  margin-bottom: var(--sp-6);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--brown-dark);
  gap: var(--sp-4);
  transition: color var(--t-base);
}

.faq-item.open .faq-question { color: var(--brown); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  transition: transform var(--t-base), background var(--t-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
}

.faq-answer p {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info {
  background: var(--brown-dark);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  color: var(--cream);
}

.contact-info__title {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}

.contact-info__desc {
  font-size: var(--fs-sm);
  color: rgba(245, 236, 215, 0.65);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

.contact-detail {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-detail__icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-1);
}

.contact-detail__value {
  font-size: var(--fs-sm);
  color: rgba(245, 236, 215, 0.8);
  line-height: 1.6;
}

.contact-hours {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding-top: var(--sp-6);
  margin-top: var(--sp-6);
}

.contact-hours__title {
  font-family: var(--serif);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--cream);
  margin-bottom: var(--sp-4);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: rgba(245, 236, 215, 0.65);
  padding-block: var(--sp-2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--gold-light); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-title {
  font-family: var(--serif);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--brown-dark);
  margin-bottom: var(--sp-2);
}

.contact-form-desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-8);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

.form-group { margin-bottom: var(--sp-5); }

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.form-label span { color: var(--gold); }

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--text);
  background: var(--cream-light);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base),
              background var(--t-base);
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-control.error { border-color: #d9534f; }

.form-error {
  font-size: var(--fs-xs);
  color: #d9534f;
  margin-top: var(--sp-1);
  display: none;
}

.form-error.visible { display: block; }

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control { appearance: none; cursor: pointer; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-8);
}

.form-success.visible { display: block; }

.form-success__icon {
  font-size: 48px;
  margin-bottom: var(--sp-4);
}

.form-success__title {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  color: var(--brown-dark);
  margin-bottom: var(--sp-2);
}

.form-success__msg {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* Map */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
  margin-top: var(--sp-12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Social Contact */
.social-links {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  background: var(--white);
  transition: background var(--t-base), color var(--t-base),
              border-color var(--t-base);
}

.social-link:hover {
  background: var(--brown-dark);
  color: var(--gold);
  border-color: var(--brown-dark);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }

/* ================================================================
   RESPONSIVE — TABLET (max 1024px)
   ================================================================ */
@media (max-width: 1024px) {

  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .menu-items-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .pricing-grid   { gap: var(--sp-4); }
  .pricing-card--featured { transform: scale(1.02); }
  .pricing-card--featured:hover { transform: scale(1.02) translateY(-8px); }
  .combos-grid    { grid-template-columns: repeat(2, 1fr); }
  .chefs-picks-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid     { gap: var(--sp-12); }
  .contact-grid   { gap: var(--sp-8); }
}

/* ================================================================
   RESPONSIVE — MOBILE (max 768px)
   ================================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(var(--fs-3xl), 10vw, var(--fs-4xl)); }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  /* Sections */
  .section, .section--lg { padding-block: var(--sp-16); }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 380px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  /* Menu */
  .menu-items-grid { grid-template-columns: 1fr 1fr; }
  .menu-list-grid  { grid-template-columns: 1fr; }
  .chefs-picks-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-8px); }
  .combos-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  /* Reservation */
  .reservation-cta { padding: var(--sp-12) var(--sp-6); }

  /* Breadcrumb */
  .breadcrumb { display: none; }
}

@media (max-width: 480px) {
  .features-grid   { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .container { padding-inline: var(--sp-4); }
}