/* ==========================================================
   TODO EN CASA SÍ — hoja de estilos
   Paleta: cocina de casa — oliva, mostaza y barro sobre papel crema.
   Tipografía: Fraunces (títulos) + Work Sans (texto).
   ========================================================== */

/* ---------- tokens ---------- */
:root {
  --paper: #f6f1e3;
  --paper-soft: #efe7d3;
  --card: #fffbf2;
  --ink: #2c2717;
  --ink-soft: #5a5341;
  --olive: #56603c;
  --olive-dark: #333c22;
  --mustard: #d9a441;
  --mustard-deep: #b9812a;
  --clay: #a8502e;
  --line: rgba(44, 39, 23, 0.14);
  --line-strong: rgba(44, 39, 23, 0.24);
  --shadow: 0 10px 24px rgba(44, 39, 23, 0.1);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --nav-h: 78px; /* altura aprox. del navbar sticky, usada para el hero full-screen */
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.95rem;
}

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- layout helpers ---------- */
.container-narrow {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--clay);
  margin-bottom: 6px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  max-width: 20ch;
}

.section-title.on-cream {
  color: #fff8ee;
}

.section-body {
  margin-top: 16px;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-head {
  margin-bottom: 40px;
}

/* ---------- botones ---------- */
.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-app:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--clay);
  color: #fff8ee;
}

.btn-primary:hover {
  background: #8f3f22;
}

.btn-outline {
  background: transparent;
  color: var(--olive-dark);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--olive-dark);
  background: rgba(51, 60, 34, 0.06);
}

.btn-outline-light {
  background: transparent;
  color: #fff8ee;
  border-color: rgba(255, 248, 238, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 248, 238, 0.12);
  border-color: #fff8ee;
}

/* ---------- navbar ---------- */
.navbar-app {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
}

.brand-handle {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover {
  color: var(--clay);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--olive-dark);
  color: #fff8ee;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-btn:hover {
  background: var(--olive);
}

.cart-count {
  background: var(--mustard);
  color: var(--ink);
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  padding: 0 5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 18px;
  font-weight: 500;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
}

/* ---------- hero ---------- */
/* Ocupa toda la primera pantalla (navbar + hero = 100vh), así lo
   único visible al cargar la página es el hero. */
.hero {
  background: var(--paper);
  padding: 40px 0;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h)); /* mejor soporte en mobile (barra de navegación) */
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow-sticker {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--olive-dark);
  border: 1.5px dashed var(--olive);
  border-radius: 14px;
  padding: 6px 16px;
  transform: rotate(-2deg);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
}

.hero-title em {
  font-style: italic;
  color: var(--clay);
}

.hero-slogan {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.hero-slogan strong {
  color: var(--ink);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
  border-radius: 20px 20px 4px 20px;
  overflow: hidden;
  border: 2px solid var(--olive-dark);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-media-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--mustard);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
}

.scallop-divider {
  display: block;
  width: 100%;
  height: 24px;
  margin-top: -1px;
}

.scallop-divider svg {
  width: 100%;
  height: 100%;
}

/* ---------- historia ---------- */
.story-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.story-photo img {
  border-radius: 4px 20px 20px 20px;
  border: 2px solid var(--olive-dark);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--olive-dark);
  margin: 22px 0;
  padding-left: 18px;
  border-left: 3px solid var(--mustard);
}

/* ---------- services split ---------- */
.services-split {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-panel {
  padding: 32px 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.service-panel--paso {
  background: var(--paper-soft);
  border: 1.5px solid var(--line);
}

.service-panel--catering {
  background: var(--olive-dark);
  color: #fff8ee;
  border: 1.5px solid var(--olive-dark);
}

.service-panel h3 {
  font-size: 1.3rem;
}

.service-panel p {
  color: var(--ink-soft);
  max-width: 34ch;
  font-size: 0.96rem;
}

.service-panel--catering p {
  color: #e5dcc6;
}

.service-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mustard);
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.service-panel--catering .service-icon-badge {
  background: var(--mustard);
  color: var(--olive-dark);
}

.service-panel a {
  margin-top: 8px;
  align-self: flex-start;
}

/* ---------- filtros ---------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-chip {
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-chip:hover {
  border-color: var(--olive-dark);
}

.filter-chip.active {
  background: var(--olive-dark);
  color: #fff8ee;
  border-color: var(--olive-dark);
}

/* ---------- catálogo ---------- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 16px 16px 6px 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-soft);
  cursor: pointer;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-media:hover img {
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--clay);
  color: #fff8ee;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

/* Insignia que indica que el producto tiene más de una foto */
.product-gallery-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(44, 39, 23, 0.72);
  color: #fff8ee;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-cat {
  font-size: 0.75rem;
  color: var(--olive);
  font-weight: 600;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 600;
}

.product-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--olive-dark);
}

.product-price.tbd {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 6px;
}

.qty-control button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-control button:hover {
  background: var(--mustard);
}

.qty-value {
  min-width: 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.add-btn {
  margin-top: 14px;
  width: 100%;
  border: 1.5px solid var(--olive-dark);
  background: transparent;
  color: var(--olive-dark);
  border-radius: 999px;
  padding: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.add-btn:hover {
  background: var(--olive-dark);
  color: #fff8ee;
}

.add-btn.added {
  background: var(--clay);
  color: #fff8ee;
  border-color: var(--clay);
}

.soon-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
  border: 1.5px dashed var(--line-strong);
  border-radius: 16px;
  padding: 28px 22px;
  min-height: 200px;
  color: var(--ink-soft);
}

.soon-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clay);
}

.soon-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

/* ---------- catering ---------- */
.catering-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.catering-group {
  background: rgba(255, 248, 238, 0.06);
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 14px;
  padding: 22px;
}

.catering-group h4 {
  font-family: var(--font-display);
  color: var(--mustard);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.catering-group li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 248, 238, 0.12);
  font-size: 0.92rem;
  color: #f1ead6;
}

.catering-group li:last-child {
  border-bottom: none;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 248, 238, 0.18);
  border-bottom: 1px solid rgba(255, 248, 238, 0.18);
  margin-bottom: 48px;
}

.info-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mustard);
  margin-bottom: 8px;
}

.info-value {
  color: #f1ead6;
  font-size: 0.95rem;
  line-height: 1.5;
}

.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-pill {
  border: 1px solid rgba(255, 248, 238, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: #fff8ee;
}

.catering-form-card {
  background: #fff8ee;
  color: var(--ink);
  border-radius: 20px;
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea,
.form-field select {
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  padding: 11px 14px;
  background: #fff;
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--olive-dark);
}

.form-field textarea {
  min-height: 90px;
  resize: vertical;
  font-family: var(--font-body);
}

/* ---------- cta band ---------- */
.cta-band {
  background: var(--mustard);
  color: var(--ink);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h3 {
  font-size: 1.4rem;
  max-width: 32ch;
}

.cta-band .btn-outline-light {
  color: var(--ink);
  border-color: rgba(44, 39, 23, 0.4);
}

.cta-band .btn-outline-light:hover {
  background: rgba(44, 39, 23, 0.1);
  border-color: var(--ink);
}

/* ---------- galería ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1.5px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

/* ---------- contacto ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-row .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-soft);
  color: var(--olive-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-row .label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-row .value {
  font-weight: 500;
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
}

/* ---------- footer ---------- */
.footer {
  background: var(--olive-dark);
  color: #f1ead6;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 248, 238, 0.16);
}

.footer .brand-name {
  color: #fff8ee;
  font-size: 1.15rem;
}

.footer p {
  color: #cfc6ab;
  font-size: 0.92rem;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mustard);
  margin-bottom: 14px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: #e5dcc6;
  font-size: 0.92rem;
}

.footer ul a:hover {
  color: var(--mustard);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: #b8ae90;
}

.footer-bottom a {
  color: var(--mustard);
}

/* ---------- carrito (offcanvas) ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 39, 23, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 90;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--paper);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -12px 0 32px rgba(44, 39, 23, 0.2);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--ink);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  color: var(--ink-soft);
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
}

.cart-line {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.cart-line img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--paper-soft);
}

.cart-line-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-line-name {
  font-weight: 600;
}

.cart-line-price {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cart-line-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0;
}

.cart-remove:hover {
  text-decoration: underline;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-fields .form-field input,
.checkout-fields .form-field textarea,
.checkout-fields .form-field select {
  padding: 9px 12px;
  border-radius: 8px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding-top: 4px;
}

.cart-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- toast ---------- */
.toast-add {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--olive-dark);
  color: #fff8ee;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
  box-shadow: var(--shadow);
}

.toast-add.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================
   LIGHTBOX / GALERÍA DE FOTOS DEL PRODUCTO
   Se abre al tocar la foto de una tarjeta del catálogo. Las
   fotos se deslizan (swipe en mobile, flechas y puntos en
   desktop, teclado ← → Esc).
   ========================================================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 8, 0.9);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: min(720px, 92vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-track-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  touch-action: pan-y;
}

.lightbox-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.lightbox-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255, 248, 238, 0.12);
  border: none;
  color: #fff8ee;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.lightbox-close:hover {
  background: rgba(255, 248, 238, 0.22);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 248, 238, 0.12);
  border: none;
  color: #fff8ee;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}

.lightbox-arrow:hover {
  background: rgba(255, 248, 238, 0.22);
}

.lightbox-prev {
  left: -8px;
}

.lightbox-next {
  right: -8px;
}

.lightbox-dots {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.35);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lightbox-dot.active {
  background: var(--mustard);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .lightbox-content {
    width: 94vw;
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }

  .lightbox-dots {
    bottom: -28px;
  }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
  .catalog-grid,
  .catering-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: flex;
  }

  .hero-inner,
  .story-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .story-photo {
    order: -1;
  }

  .services-split {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .container-narrow {
    padding: 0 18px;
  }

  .navbar-inner {
    padding: 14px 18px;
  }

  .cart-btn span:not(.cart-count) {
    display: none;
  }

  .catalog-grid,
  .catering-menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .services-split {
    padding: 0 18px 56px;
    gap: 16px;
  }

  .service-panel {
    padding: 26px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: 1;
  }

  .catering-form-card {
    padding: 26px;
  }

  .cta-band {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 400px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}