/* ═══════════════════════════════════════════════════════════
   JHOANES BAKERY CATERING — Main Stylesheet
   Design: White · Black · Gold | French Elegance + Latin Fusion
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colors */
  --white:       #FFFFFF;
  --black:       #131110;
  --gold:        #C8973D;
  --gold-light:  #F5EDD8;
  --gold-dark:   #A17828;
  --gold-border: #E2C882;
  --cream:       #FAF8F3;
  --cream-2:     #F2EDE3;
  --border:      #E8E2D6;
  --border-2:    #D4CCBE;
  --fg:          #131110;
  --fg-2:        #4A4540;
  --fg-muted:    #7A746A;
  --fg-light:    #ABA59D;
  --bg:          #FFFFFF;
  --bg-section:  #FAF8F3;
  --success:     #2D6A4F;
  --success-bg:  #EBF7F1;
  --error:       #8B2020;
  --error-bg:    #FEF2F2;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

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

  /* Radii */
  --r:    6px;
  --r-sm: 3px;
  --r-lg: 12px;
  --r-xl: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(200,151,61,0.18);

  /* Motion */
  --t: 0.2s ease;
  --t-slow: 0.4s ease;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-h);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); font-size: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-md { max-width: var(--max-w-md); margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 1.5rem; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--fg);
  text-wrap: balance;
  line-height: 1.1;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.section-header.centered { align-items: center; text-align: center; }
.section-header.centered .section-lead { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-2);
}
.btn-outline:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-border);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-lg { padding: 0.9rem 2rem; font-size: 0.88rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.76rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  border-radius: var(--r);
  transition: all var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--fg); background: var(--cream); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  overflow: hidden;
  background: transparent;
}
.lang-btn {
  padding: 0.28rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  line-height: 1;
}
.lang-btn.lang-active,
.lang-btn:hover { color: var(--fg); background: var(--cream-2); }
.lang-sep { display: block; width: 1px; height: 14px; background: var(--border-2); }

/* Cart Button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-full);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
}
.cart-btn:hover { border-color: var(--fg); background: var(--cream); }
.cart-count {
  display: none;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  padding: 0 0.3rem;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}
.cart-count.has-items { display: flex; }
.cart-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--r);
  transition: background var(--t);
}
.nav-hamburger:hover { background: var(--cream); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--fg);
  border-radius: 1px;
  transition: transform var(--t), opacity var(--t);
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.drawer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--fg);
}
.drawer-close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--fg-muted);
  transition: all var(--t);
}
.drawer-close:hover { background: var(--cream); color: var(--fg); }
.nav-drawer a {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--fg-2);
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
  transition: color var(--t), padding-left var(--t);
}
.nav-drawer a:hover { color: var(--fg); padding-left: 1rem; }
.nav-drawer .btn { margin-top: 1.5rem; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem calc(50vw - var(--max-w)/2 + 1.5rem);
  background: var(--cream);
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 100vw;
  background: var(--cream);
  z-index: -1;
}
.hero-eyebrow {
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.05;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title strong { font-weight: 600; }
.hero-desc {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-tag {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-tag-row {
  display: flex;
  gap: 2rem;
}
.hero-tag-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-tag-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
}
.hero-tag-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3D2B1F 0%, #6B4226 30%, #C8973D 60%, #F5EDD8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── INFO STRIP ─────────────────────────────────────────── */
.info-strip {
  background: var(--black);
  padding: 1rem 0;
  overflow: hidden;
}
.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.info-strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.info-strip-item:last-child { border-right: none; }
.info-strip-item svg { color: var(--gold); flex-shrink: 0; }

/* ─── SECTION WRAPPER ────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--black); }

/* Gold rule */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.gold-rule::before, .gold-rule::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold-border);
}

/* ─── CATEGORIES ─────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.category-card:nth-child(3n+1) { grid-row: span 1; }
.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.category-card:hover .category-card-img,
.category-card:hover .category-card-placeholder { transform: scale(1.04); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,17,16,0.85) 0%, rgba(19,17,16,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.category-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.category-card-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}
.category-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(200,151,61,0.9);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-full);
  backdrop-filter: blur(4px);
}

/* ─── FEATURED GALLERY (Most Requested Items — home) ─────── */
.featured-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feat-gallery-item {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.feat-gallery-img-wrap {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 0.75rem;
  transition: box-shadow var(--t);
}
.feat-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.feat-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--gold-light);
}
.feat-gallery-item:hover .feat-gallery-img-wrap {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.feat-gallery-item:hover .feat-gallery-img-wrap img {
  transform: scale(1.06);
}
.feat-gallery-name {
  font-family: var(--serif), Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* ─── SKELETON / LOADING SHIMMER ─────────────────────────── */
@keyframes jbc-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.jbc-skel {
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(200,151,61,0.1) 40%,
    var(--cream) 80%
  );
  background-size: 200% 100%;
  animation: jbc-shimmer 1.4s ease-in-out infinite;
}
/* Gallery skeleton cells */
.gallery-cell--skel {
  aspect-ratio: 1 / 1;  /* square */
  border-radius: var(--r-lg);
}
.gallery-cell--skel.jbc-skel { animation-delay: calc(var(--i, 0) * 0.1s); }
/* Featured skeleton items */
.feat-gallery-skel .feat-gallery-img-wrap { pointer-events: none; }
.feat-gallery-skel .feat-gallery-img-wrap.jbc-skel { border-radius: var(--r-lg); }
.feat-gallery-skel-name {
  height: 0.85rem;
  border-radius: 3px;
  margin: 0.5rem auto 0;
  width: 70%;
}
/* Category skeleton */
.category-card--skel {
  aspect-ratio: 5 / 7;
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* ─── PRODUCT CARDS ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--cream-2);
}
.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
}
.product-card-body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-category {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.product-card-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}
.product-card-price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.product-card-price-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}
.product-card-price-unit {
  font-size: 0.68rem;
  color: var(--fg-muted);
}
.product-card-add {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.product-card-add:hover { background: var(--gold-dark); transform: translateY(-1px); }
.product-card-add.added { background: var(--success); }
.product-card-add svg { width: 14px; height: 14px; }

/* ─── ABOUT SECTION ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%;
  border-radius: var(--r-xl);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--cream-2) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.about-text .eyebrow { margin-bottom: 0.75rem; }
.about-text .section-heading { margin-bottom: 1.5rem; }
.about-text p {
  font-size: 0.95rem;
  color: var(--fg-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--border);
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
}
.step-num {
  width: 4rem;
  height: 4rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--gold-border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  z-index: 1;
  position: relative;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--fg);
}
.step-desc {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── EVENTS ─────────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--t);
  cursor: default;
}
.event-card:hover {
  border-color: var(--gold-border);
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.event-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.event-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
}

/* ─── GALLERY PREVIEW ────────────────────────────────────── */
/* 6 equal-size landscape images, horizontal grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1;  /* square cells */
}
/* All cells equal — no first-child span */
.gallery-cell img,
.gallery-cell-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-cell:hover img,
.gallery-cell:hover .gallery-cell-placeholder { transform: scale(1.05); }
.gallery-cell-placeholder { display: flex; align-items: center; justify-content: center; font-size: 3rem; }

/* Gallery colors for placeholder */
.gal-1 { background: linear-gradient(135deg, #3D2B1F, #C8973D); }
.gal-2 { background: linear-gradient(135deg, #F5EDD8, #E2C882); }
.gal-3 { background: linear-gradient(135deg, #2D1B0E, #6B4226); }
.gal-4 { background: linear-gradient(135deg, #FAF8F3, #C8973D); }
.gal-5 { background: linear-gradient(135deg, #1A1410, #4A3020); }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  background: var(--black);
  padding: 6rem 0;
  text-align: center;
}
.cta-section .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.cta-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #0E0C0B;
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.65rem;
}
.footer-contact-item svg { flex-shrink: 0; width: 15px; height: 15px; margin-top: 2px; color: var(--gold); opacity: 0.8; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.footer-hours-row span:first-child { color: rgba(255,255,255,0.7); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-admin-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--t);
}
.footer-admin-link:hover { color: rgba(255,255,255,0.5); }

/* ─── MENU PAGE ──────────────────────────────────────────── */
.page-header {
  background: var(--cream);
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow { margin-bottom: 0.5rem; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.page-subtitle {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.7;
}

/* Category Filter Bar */
.filter-bar {
  position: sticky;
  top: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  padding: 1rem 0;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-btn:hover { color: var(--fg); border-color: var(--fg); }
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.filter-count {
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: 0 0.4rem;
  font-size: 0.65rem;
  font-variant-numeric: tabular-nums;
}
.filter-btn:not(.active) .filter-count { background: var(--cream-2); color: var(--fg-muted); }

/* Search Bar */
.search-wrap {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
.search-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--fg-muted);
  pointer-events: none;
}
.search-input {
  padding: 0.45rem 1rem 0.45rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  color: var(--fg);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
  width: 200px;
}
.search-input:focus { border-color: var(--gold-border); }
.search-input::placeholder { color: var(--fg-light); }

/* Cart float bar */
.cart-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-full);
  padding: 0.9rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform 0.3s ease;
  white-space: nowrap;
  font-size: 0.88rem;
}
.cart-bar.visible { transform: translateX(-50%) translateY(0); }
.cart-bar-count { font-weight: 700; color: var(--gold); }
.cart-bar-total { color: rgba(255,255,255,0.6); }
.cart-bar-total strong { color: var(--white); }
.cart-bar-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  border: none;
}
.cart-bar-btn:hover { background: var(--gold-dark); }

/* ─── REQUEST PAGE (Multi-step) ──────────────────────────── */
.request-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 5rem;
}
.request-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.request-steps::-webkit-scrollbar { display: none; }
.req-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.req-step-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--fg-muted);
  background: var(--white);
  transition: all var(--t);
  flex-shrink: 0;
}
.req-step.done .req-step-dot { background: var(--gold-light); border-color: var(--gold); color: var(--gold); }
.req-step.active .req-step-dot { background: var(--black); border-color: var(--black); color: var(--white); }
.req-step-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
}
.req-step.active .req-step-label { color: var(--fg); font-weight: 600; }
.req-step-sep {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 0.4rem;
  flex-shrink: 0;
}

/* Step Panels */
.step-panel { display: none; }
.step-panel.active { display: block; }
.step-title-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-subtitle {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

/* Cart Items */
.cart-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 0.75rem;
  transition: border-color var(--t);
}
.cart-item:hover { border-color: var(--gold-border); }
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--r);
  object-fit: cover;
  background: var(--cream-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.cart-item-unit { font-size: 0.78rem; color: var(--fg-muted); margin-bottom: 0.6rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--fg-2);
  transition: all var(--t);
  background: var(--white);
}
.qty-btn:hover { border-color: var(--fg); background: var(--fg); color: var(--white); }
.qty-num {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  min-width: 24px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
}
.cart-item-remove {
  font-size: 0.72rem;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color var(--t);
  background: none;
  border: none;
}
.cart-item-remove:hover { color: var(--error); }
.cart-item-notes {
  width: 100%;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  outline: none;
  color: var(--fg-2);
  background: var(--cream);
  resize: none;
  transition: border-color var(--t);
  margin-top: 0.5rem;
}
.cart-item-notes:focus { border-color: var(--gold-border); }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-2);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-required { color: var(--gold); margin-left: 0.2rem; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 0.88rem;
  color: var(--fg);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(200,151,61,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--fg-light); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A746A' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}
.form-hint { font-size: 0.72rem; color: var(--fg-muted); margin-top: 0.35rem; }

/* Delivery Toggle */
.delivery-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.delivery-option {
  position: relative;
  cursor: pointer;
}
.delivery-option input { position: absolute; opacity: 0; }
.delivery-option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--t);
  text-align: center;
}
.delivery-option input:checked + .delivery-option-label {
  border-color: var(--gold);
  background: var(--gold-light);
}
.delivery-option-icon { font-size: 1.8rem; }
.delivery-option-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
}
.delivery-option-desc { font-size: 0.75rem; color: var(--fg-muted); }

/* Order Summary Sidebar */
.order-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.order-summary-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.order-summary-header {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.order-summary-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
}
.order-summary-body { padding: 1.25rem 1.5rem; }
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--fg-2);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.summary-line:last-of-type { border-bottom: none; }
.summary-label { font-weight: 500; }
.summary-value { font-weight: 600; color: var(--fg); font-variant-numeric: tabular-nums; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1.5px solid var(--border-2);
}
.summary-total-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.summary-total-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--fg);
}
.order-summary-note {
  padding: 0.9rem 1.5rem;
  background: var(--gold-light);
  border-top: 1px solid var(--gold-border);
  font-size: 0.76rem;
  color: var(--amber-text, #7A5A1E);
  line-height: 1.5;
}
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ─── CONFIRMATION PAGE ──────────────────────────────────── */
.confirm-hero {
  background: var(--cream);
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.confirm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--success-bg);
  color: var(--success);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.confirm-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
.confirm-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.confirm-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── EMPTY STATE ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.empty-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.empty-desc { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 2rem; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.toast {
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--r-lg);
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  pointer-events: all;
  border-left: 3px solid var(--gold);
}
@keyframes toastIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
@keyframes toastOut { from { opacity:1; transform: translateX(0); } to { opacity:0; transform: translateX(20px); } }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  padding: 5rem 0;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.92rem;
  color: var(--fg-2);
  line-height: 1.5;
}

/* ─── CHIP / BADGE ───────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
}
.chip-gold { background: var(--gold-light); color: var(--gold-dark); }
.chip-green { background: var(--success-bg); color: var(--success); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-gallery { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .request-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { font-size: 14px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-content {
    padding: 3rem 1.5rem;
    order: 2;
    background: var(--cream);
  }
  .hero-content::before { display: none; }
  .hero-image { order: 1; min-height: 55vw; }
  .hero-title { font-size: 2.8rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-gallery { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 1rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  /* Gallery: 2 cols × 3 rows on mobile — all cells equal */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .request-steps { gap: 0; }
  .req-step-label { display: none; }
  .req-step.active .req-step-label { display: block; }
  .info-strip-inner { justify-content: flex-start; padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .delivery-toggle { grid-template-columns: 1fr; }
}
