/* =========================================================
   TENTAZIONI — Pastelería Fina & Eventos
   Estilo: Claro · Boutique · Paleta oficial Tentazioni
   Paleta: #e5e1d8 #bab3a8 #c69c6d #6fa39f #564c45
   ========================================================= */

:root {
  /* Paleta oficial Tentazioni */
  --cream:       #f4f0e6;    /* crema más clara para fondos */
  --cream-base:  #e5e1d8;    /* crema oficial */
  --cream-soft:  #faf7f0;    /* casi blanco cálido */
  --white:       #ffffff;
  --taupe:       #bab3a8;    /* gris cálido oficial */
  --taupe-light: #d4cec3;    /* taupe claro */
  --gold:        #c69c6d;    /* dorado caramelo oficial */
  --gold-light:  #d9b88a;
  --teal:        #6fa39f;    /* verde-teal insignia oficial */
  --teal-light:  #8fb8b4;
  --teal-soft:   #b4d0cd;
  --brown:       #564c45;    /* marrón oscuro oficial */
  --brown-light: #6e655d;

  /* Sistema de color */
  --bg:          var(--cream-soft);
  --bg-2:        var(--white);
  --bg-3:        var(--cream-base);

  --text:        var(--brown);
  --text-dim:    var(--brown-light);
  --text-muted:  var(--taupe);

  --line:        rgba(86, 76, 69, 0.08);
  --line-2:      rgba(86, 76, 69, 0.14);

  --accent:      var(--teal);
  --accent-2:    var(--teal-light);
  --accent-soft: rgba(111, 163, 159, 0.12);

  /* Tipografía */
  --script: 'Great Vibes', 'Allura', 'Italianno', 'Cormorant Garamond', Georgia, serif;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', system-ui, -apple-system, sans-serif;

  --radius:    24px;
  --radius-sm: 16px;
  --radius-xs: 12px;

  --shadow-1:  0 8px 30px rgba(86, 76, 69, 0.06);
  --shadow-2:  0 20px 50px rgba(86, 76, 69, 0.10);
  --shadow-3:  0 30px 80px rgba(86, 76, 69, 0.14);
  --shadow-glow-teal: 0 16px 40px rgba(111, 163, 159, 0.25);
  --shadow-glow-gold: 0 16px 40px rgba(198, 156, 109, 0.22);

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Body con scroll bloqueado durante splash */
body.splash-active {
  overflow: hidden;
  height: 100vh;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--teal); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

/* =========================================================
   SPLASH SCREEN — Intro interactivo con video
   ========================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  cursor: pointer;
  background: var(--brown);
  display: grid;
  place-items: center;
  transition: opacity .8s cubic-bezier(.32, .72, 0, 1), visibility .8s;
}
.splash.closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.splash-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(86, 76, 69, 0.35) 0%, rgba(86, 76, 69, 0.7) 70%, rgba(20, 17, 15, 0.9) 100%),
    linear-gradient(180deg, rgba(86, 76, 69, 0.2), rgba(86, 76, 69, 0.6));
  z-index: 2;
}

/* Hojas decorativas flotantes */
.splash-deco {
  position: absolute;
  z-index: 3;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  animation: splashDecoIn 1.4s ease .8s forwards;
}
.splash-deco-1 {
  top: 8%;
  left: 8%;
  width: 140px;
  transform: rotate(-10deg);
}
.splash-deco-2 {
  bottom: 8%;
  right: 8%;
  width: 140px;
  transform: rotate(170deg);
}
@keyframes splashDecoIn {
  to { opacity: 0.45; }
}

/* Contenido central */
.splash-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 40px;
  max-width: 720px;
  width: 100%;
}

.splash-logo-wrap {
  margin-bottom: 32px;
  opacity: 0;
  transform: scale(.9) translateY(20px);
  animation: splashLogoIn 1.2s cubic-bezier(.32, .72, 0, 1) .2s forwards;
}
.splash-logo {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 30px rgba(0,0,0,0.4));
}
@keyframes splashLogoIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Tagline con líneas decorativas */
.splash-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
  opacity: 0;
  animation: splashFadeUp 1s ease 1s forwards;
}
.splash-tagline p {
  color: var(--cream);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  white-space: nowrap;
}
.splash-text-es,
.splash-text-en {
  display: block;
}
.splash-text-en {
  color: var(--cream);
  opacity: .65;
  font-size: .72rem;
  margin-top: 4px;
  letter-spacing: .25em;
}
.splash-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  opacity: .7;
}
.splash-location {
  color: var(--gold-light);
  font-family: var(--script);
  font-size: 1.6rem;
  margin-bottom: 50px;
  opacity: 0;
  animation: splashFadeUp 1s ease 1.3s forwards;
}

/* Botón Entrar */
.splash-enter {
  background: transparent;
  border: 1.5px solid rgba(229, 225, 216, .5);
  color: var(--cream);
  padding: 16px 36px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  opacity: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: splashFadeUp 1s ease 1.7s forwards;
  overflow: hidden;
}
.splash-enter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateX(-101%);
  transition: transform .4s ease;
  z-index: 0;
}
.splash-enter:hover::before { transform: translateX(0); }
.splash-enter:hover {
  border-color: var(--cream);
  color: var(--brown);
}
.splash-enter-inner,
.splash-enter-arrow {
  position: relative;
  z-index: 1;
}
.splash-enter-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.splash-enter-divider { opacity: .4; }
.splash-enter-arrow {
  display: inline-flex;
  align-items: center;
  animation: bounceArrow 1.8s ease-in-out infinite;
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* Hint debajo */
.splash-hint {
  color: rgba(229, 225, 216, .6);
  font-size: .76rem;
  letter-spacing: .15em;
  opacity: 0;
  animation: splashFadeUp 1.5s ease 2.5s forwards;
  font-family: var(--sans);
  font-weight: 400;
}
.splash-hint span {
  margin: 0 8px;
  display: inline-block;
  animation: hintBounce 2s ease-in-out infinite;
}
.splash-hint span:last-child {
  animation-delay: .3s;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(4px); opacity: 1; }
}

@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive splash */
@media (max-width: 720px) {
  .splash-content { padding: 30px 20px; }
  .splash-logo { max-width: 280px; }
  .splash-logo-wrap { margin-bottom: 24px; }
  .splash-tagline p { font-size: .68rem; letter-spacing: .25em; white-space: normal; }
  .splash-text-en { font-size: .62rem; letter-spacing: .18em; }
  .splash-line { width: 30px; }
  .splash-location { font-size: 1.3rem; margin-bottom: 36px; }
  .splash-enter { padding: 13px 28px; font-size: .8rem; letter-spacing: .15em; }
  .splash-deco { width: 90px; }
  .splash-deco-1 { top: 5%; left: 5%; }
  .splash-deco-2 { bottom: 5%; right: 5%; }
  .splash-hint { font-size: .7rem; padding: 0 20px; }
}

/* =========================================================
   FONDO DECORATIVO — blobs suaves + patrón hojas
   ========================================================= */
.bg-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><g fill='none' stroke='%23564c45' stroke-width='0.7' opacity='0.4' stroke-linecap='round'><path d='M40 70 Q 50 50, 70 60 Q 60 80, 40 70 Z'/><path d='M50 60 L 60 70'/><path d='M140 160 Q 150 140, 170 150 Q 160 170, 140 160 Z'/><path d='M150 150 L 160 160'/><path d='M100 110 Q 110 95, 125 103 Q 115 115, 100 110 Z'/><path d='M107 103 L 115 110'/></g></svg>");
  background-size: 240px 240px;
  opacity: 0.10;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.bg-blob-1 {
  width: 500px; height: 500px;
  background: var(--teal-soft);
  top: -100px; right: -100px;
  animation: blobFloat 22s ease-in-out infinite alternate;
}
.bg-blob-2 {
  width: 400px; height: 400px;
  background: rgba(217, 184, 138, 0.35);
  bottom: -150px; left: -80px;
  animation: blobFloat 26s ease-in-out infinite alternate-reverse;
}
.bg-blob-3 {
  width: 300px; height: 300px;
  background: rgba(186, 179, 168, 0.45);
  top: 50%; left: 60%;
  animation: blobFloat 20s ease-in-out infinite alternate;
}
@keyframes blobFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.08); }
}

/* =========================================================
   TIPOGRAFÍA
   ========================================================= */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--brown);
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 300; }
h3 { font-size: 1.3rem; font-weight: 500; font-family: var(--sans); }
h4 {
  font-size: .78rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown);
}

.script-accent {
  font-family: var(--script);
  font-weight: 400;
  color: var(--teal);
  font-style: normal;
  letter-spacing: 0.005em;
  line-height: 0.9;
  display: inline-block;
}
h1 .script-accent { font-size: 1.35em; vertical-align: -0.05em; }
h2 .script-accent { font-size: 1.4em; vertical-align: -0.05em; }

.eyebrow {
  font-size: .74rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
}

.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-sub {
  color: var(--text-dim);
  font-size: 1.08rem;
  margin-top: 18px;
  font-weight: 300;
  font-family: var(--serif);
  font-style: italic;
}

/* =========================================================
   BOTONES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  font-family: var(--sans);
  letter-spacing: .04em;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-glow-teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(111, 163, 159, 0.35);
}
.btn-ghost {
  background: var(--white);
  color: var(--brown);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all .3s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 240, 0.75);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  opacity: 0;
  transition: opacity .3s;
}
.site-header.scrolled {
  padding: 10px 0;
}
.site-header.scrolled::before {
  opacity: 1;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(86, 76, 69, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* === LOGO === */
.brand {
  display: flex;
  align-items: center;
  transition: transform .25s;
  flex-shrink: 0;
}
.brand:hover { transform: scale(1.03); }
.brand-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.site-header.scrolled .brand-logo-img {
  height: 50px;
  transition: height .3s;
}

/* === NAV LINKS === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .88rem;
  color: var(--brown);
  font-weight: 500;
  transition: color .2s;
  position: relative;
  letter-spacing: .02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }

/* === NAV ACTIONS === */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 90; /* siempre por encima del menú móvil */
}

/* === TOGGLE DE IDIOMA === */
.lang-switch {
  display: flex;
  gap: 4px;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(86, 76, 69, 0.04);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-dim);
  transition: all .25s ease;
}
.lang-btn:hover { color: var(--brown); }
.lang-btn.active {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(111, 163, 159, 0.35);
}
.lang-btn.active .lang-code { color: var(--white); }
.lang-flag {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.lang-flag svg { width: 100%; height: 100%; }
.lang-code { font-size: .8rem; }

/* === HAMBURGUESA === */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .2s ease;
}
.nav-toggle:hover { background: var(--cream-base); }
.nav-toggle span {
  width: 20px; height: 1.8px;
  background: var(--brown);
  transition: transform .3s ease, opacity .25s ease;
  transform-origin: center;
  display: block;
}
/* Hamburguesa → X */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 180px 0 110px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 28px; }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  font-family: var(--serif);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero-meta > div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.01em;
}
.hero-meta span {
  font-size: .76rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* === HERO PHOTO === */
.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-photo {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-3);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 26px;
  left: -20px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-2);
  z-index: 3;
}
.badge-star {
  font-size: 1.7rem;
  color: var(--gold);
}
.hero-badge strong {
  display: block;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
}
.hero-badge span {
  font-size: .76rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.hero-tag {
  position: absolute;
  top: 24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow-teal);
  z-index: 3;
  overflow: hidden;
}
.hero-tag img {
  /* Imagen un 78% del círculo: respira pero se ve bien dimensionada */
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

/* =========================================================
   SERVICIOS (íconos de Instagram)
   ========================================================= */
.services { padding: 110px 0; position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.service {
  text-align: center;
  padding: 30px 18px 26px;
  background: var(--white);
  border-radius: var(--radius);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--teal-soft) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease;
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
  border-color: var(--teal-soft);
}
.service:hover::before { opacity: 0.4; }

.service-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow-teal);
  transition: all .35s ease;
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.service-icon img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  /* Trick para mostrar el ícono en blanco sobre teal:
     1) invert(1): líneas oscuras→claras, fondo crema→oscuro
     2) contrast(1.5): aumenta el contraste para que las líneas queden bien blancas
     3) mix-blend-mode screen: las partes oscuras (el ahora-oscuro fondo) se mezclan con el teal y "desaparecen",
        las partes claras (las ahora-claras líneas) brillan en blanco */
  filter: invert(1) contrast(1.4) brightness(1.1);
  mix-blend-mode: screen;
}
.service:hover .service-icon {
  transform: scale(1.05) rotate(-3deg);
  background: var(--teal-light);
}

.service h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.service p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.5;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* =========================================================
   MENÚ / PRODUCTOS
   ========================================================= */
.menu { padding: 110px 0; }
.menu .section-head { text-align: center; margin-inline: auto; }

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 56px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  width: fit-content;
  margin-inline: auto;
  box-shadow: var(--shadow-1);
}
.tab {
  padding: 10px 22px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--sans);
  letter-spacing: .03em;
}
.tab:hover { color: var(--brown); }
.tab.active {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(111, 163, 159, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}
.product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
  border-color: var(--teal-soft);
}
.product-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--brown);
}
.product-desc {
  color: var(--text-muted);
  font-size: .86rem;
  margin-bottom: 22px;
  flex: 1;
  font-weight: 400;
  line-height: 1.5;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}
.btn-add {
  background: var(--cream-base);
  color: var(--brown);
  border: 1px solid transparent;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--sans);
  letter-spacing: .03em;
}
.btn-add:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-add.added {
  background: var(--teal);
  color: var(--white);
}

.menu-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: 44px;
  font-style: italic;
  font-weight: 300;
}
.menu-note.center { text-align: center; }

/* =========================================================
   EVENTOS & CATERING
   ========================================================= */
.events {
  padding: 110px 0;
  position: relative;
}

/* Grid de las 2 cards destacadas (15 años + video) */
.events-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-bottom: 80px;
}

.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-1);
  transition: all .35s ease;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}

/* Card de 15 años: imagen arriba, texto abajo */
.event-feature {
  display: flex;
  flex-direction: column;
}
.event-feature .event-img {
  height: 380px;
  background-size: cover;
  background-position: center;
}
.event-feature .event-body {
  padding: 30px 32px 34px;
}
.event-tag {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--brown);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.event-tag.tag-light {
  background: rgba(255, 255, 255, .9);
  color: var(--brown);
}
.event-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--brown);
}
.event-card p {
  color: var(--text-dim);
  font-size: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}

/* Card de video */
.event-video {
  position: relative;
  min-height: 540px;
}
.event-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.event-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(86, 76, 69, 0.45) 0%, transparent 30%, transparent 60%, rgba(86, 76, 69, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 30px 26px;
  color: var(--white);
}
.event-overlay-top { display: flex; }
.event-overlay-bottom { display: flex; flex-direction: column; gap: 14px; }
.event-overlay h3 {
  color: var(--white);
  font-size: 1.7rem;
}

/* Controles del carrusel de videos */
.bs-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.bs-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.bs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .25s ease;
}
.bs-dot:hover {
  background: rgba(255, 255, 255, 0.65);
}
.bs-dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}
.bs-sound {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: all .25s ease;
  flex-shrink: 0;
}
.bs-sound:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}
.bs-sound svg { width: 16px; height: 16px; }
.bs-sound .bs-icon-unmuted { display: none; }
.bs-sound.unmuted .bs-icon-muted { display: none; }
.bs-sound.unmuted .bs-icon-unmuted { display: block; }

/* Transición suave al cambiar de video */
#bsVideo {
  transition: opacity .35s ease;
}
#bsVideo.switching {
  opacity: 0;
}

/* Galería de entremeses (estilo masonry) */
.gallery-wrap {
  margin-bottom: 60px;
}
.gallery-head {
  text-align: center;
  margin-bottom: 36px;
}
.gallery-head h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown);
  margin-top: 6px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  transition: all .35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(86, 76, 69, 0.3));
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-2);
}
.gallery-item:hover::after { opacity: 1; }

/* Tamaños variados estilo masonry */
.gi-1 { grid-column: span 2; grid-row: span 2; }
.gi-2 { grid-column: span 1; grid-row: span 1; }
.gi-3 { grid-column: span 1; grid-row: span 2; }
.gi-4 { grid-column: span 1; grid-row: span 1; }
.gi-5 { grid-column: span 1; grid-row: span 1; }
.gi-6 { grid-column: span 1; grid-row: span 1; }
.gi-7 { grid-column: span 2; grid-row: span 1; }
.gi-8 { grid-column: span 1; grid-row: span 1; }

.events-cta {
  text-align: center;
}

/* =========================================================
   NOSOTROS
   ========================================================= */
.about { padding: 110px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  height: 560px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-3);
}
.about-pill {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--gold);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow-gold);
  overflow: hidden;
}
.about-pill img {
  /* Imagen un 78% del círculo: respira pero se ve bien dimensionada */
  width: 78%;
  height: 78%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.about-copy h2 { margin-bottom: 28px; }
.about-copy p {
  color: var(--text-dim);
  margin-bottom: 18px;
  font-size: 1.04rem;
  font-weight: 300;
  font-family: var(--serif);
  line-height: 1.65;
}
.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feat-dot {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(111, 163, 159, 0.15);
}
.feat strong {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 4px;
  color: var(--brown);
}
.feat span {
  color: var(--text-dim);
  font-size: .92rem;
  font-weight: 300;
  font-family: var(--serif);
}

/* =========================================================
   EXPERIENCIAS / TESTIMONIOS
   ========================================================= */
.experiences { padding: 110px 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}
.testi {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all .3s;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}
.testi::before {
  content: '"';
  position: absolute;
  top: -30px;
  right: 16px;
  font-family: var(--serif);
  font-size: 9rem;
  color: var(--teal-soft);
  line-height: 1;
  font-weight: 700;
}
.testi:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: var(--teal-soft);
}
.stars {
  color: var(--gold);
  letter-spacing: .2em;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testi p {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  position: relative;
  z-index: 1;
}
.testi footer strong {
  display: block;
  font-size: .96rem;
  font-weight: 600;
  color: var(--brown);
  font-family: var(--sans);
}
.testi footer span {
  color: var(--text-muted);
  font-size: .8rem;
  letter-spacing: .04em;
}

/* =========================================================
   CONTACTO
   ========================================================= */
.contact { padding: 110px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-copy h2 { margin-bottom: 24px; }
.contact-sub {
  color: var(--text-dim);
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 1.05rem;
  font-family: var(--serif);
}
.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-info li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.ci-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  font-weight: 700;
  padding-top: 4px;
}
.ci-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--brown);
}
.ci-value a {
  color: var(--brown);
  border-bottom: 1px solid transparent;
  transition: all .2s;
}
.ci-value a:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 500px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--cream-base);
  padding: 80px 0 30px;
  border-top: 1px solid var(--line-2);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
}
.footer-tag {
  color: var(--text-dim);
  font-size: .92rem;
  max-width: 280px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
}
.site-footer h4 {
  color: var(--brown);
  margin-bottom: 20px;
  font-size: .78rem;
}
.site-footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer ul a,
.site-footer ul li {
  color: var(--text-dim);
  font-size: .9rem;
  transition: color .2s;
  font-weight: 400;
}
.site-footer ul a:hover { color: var(--teal); }

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
  color: var(--text-muted);
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 10px;
  letter-spacing: .03em;
}

/* =========================================================
   BOTÓN WHATSAPP FLOTANTE
   ========================================================= */
.wa-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 62px; height: 62px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: all .25s ease;
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.08);
  background: #1ebe5d;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.55);
}
.wa-fab svg { width: 30px; height: 30px; }

/* Anillo de pulso continuo */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  pointer-events: none;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================================
   CARRITO FLOTANTE
   ========================================================= */
.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px; height: 62px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(111, 163, 159, 0.45);
  z-index: 90;
  transition: all .25s ease;
}
.cart-fab:hover {
  transform: scale(1.08);
  background: var(--teal-light);
  box-shadow: 0 18px 44px rgba(111, 163, 159, 0.55);
}
.cart-fab svg { width: 26px; height: 26px; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--cream-soft);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -460px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.32, .72, 0, 1);
  box-shadow: -30px 0 60px rgba(86, 76, 69, 0.18);
}
.cart-panel.open { right: 0; }
.cart-head {
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: var(--serif);
}
.cart-close {
  background: var(--cream-base);
  border: none;
  color: var(--brown);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .2s;
}
.cart-close:hover { background: var(--teal); color: var(--white); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 26px;
}
.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 60px 20px;
  font-style: italic;
  font-weight: 300;
  font-family: var(--serif);
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 64px; height: 64px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}
.cart-item-body { flex: 1; }
.cart-item-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--brown);
}
.cart-item-price {
  color: var(--gold);
  font-size: .88rem;
  font-weight: 600;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.qty-btn {
  width: 26px; height: 26px;
  background: var(--cream-base);
  border: 1px solid var(--line-2);
  color: var(--brown);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: all .15s;
  font-family: var(--sans);
}
.qty-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.qty-val {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}
.cart-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: .8rem;
  margin-left: auto;
  cursor: pointer;
  text-decoration: underline;
}
.cart-remove:hover { color: var(--teal); }

.cart-foot {
  padding: 26px;
  border-top: 1px solid var(--line);
  background: var(--cream-soft);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.cart-total span {
  color: var(--text-dim);
  font-family: var(--serif);
  font-size: 1.1rem;
}
.cart-total strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}
.cart-note {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  font-weight: 300;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(86, 76, 69, 0.4);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop del menú móvil */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(86, 76, 69, 0.35);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(3px);
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================================
   ANIMACIONES
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-copy > *,
.hero-photo-wrap {
  animation: fadeUp 1s ease both;
}
.hero-copy > *:nth-child(2) { animation-delay: .1s; }
.hero-copy > *:nth-child(3) { animation-delay: .2s; }
.hero-copy > *:nth-child(4) { animation-delay: .3s; }
.hero-copy > *:nth-child(5) { animation-delay: .4s; }
.hero-photo-wrap            { animation-delay: .3s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-photo-wrap { aspect-ratio: 4/3; max-height: 500px; }
  .about-photo { height: 380px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: 1fr; gap: 22px; }
  .event-video { min-height: 380px; }
  .event-feature .event-img { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; }
  .gi-1 { grid-column: span 2; grid-row: span 2; }
  .gi-3 { grid-column: span 1; grid-row: span 1; }
  .gi-7 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero { padding: 140px 0 80px; }
  .hero-meta { gap: 18px; }
  .nav-links { gap: 24px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  .brand-logo-img { height: 48px; }
  .site-header.scrolled .brand-logo-img { height: 42px; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line-2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 88px 0 16px;
    transform: translateY(-110%);
    transition: transform .4s cubic-bezier(.32, .72, 0, 1);
    z-index: 80;
    box-shadow: 0 24px 40px rgba(86, 76, 69, 0.12);
    max-height: 100vh;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 18px 26px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    color: var(--brown);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: var(--cream-soft); color: var(--teal); }

  .nav-toggle { display: flex; }

  .lang-switch { padding: 4px; }
  .lang-btn { padding: 6px 10px; gap: 6px; }
  .lang-code { font-size: .75rem; }
  .lang-flag { width: 16px; height: 16px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-icon { width: 100px; height: 100px; }
  .service h3 { font-size: 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 6px; }

  .hero { padding: 130px 0 70px; }
  .hero-badge { left: 16px; bottom: 16px; }
  .hero-tag { right: 14px; top: 14px; width: 70px; height: 70px; }
  .hero-tag .script-accent { font-size: 2rem; }
  .hero-meta { grid-template-columns: 1fr; }
  .contact-info li { grid-template-columns: 1fr; gap: 6px; }
  .ci-label { padding-top: 0; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .menu, .about, .experiences, .contact, .services, .events { padding: 70px 0; }
  .events-grid { gap: 18px; margin-bottom: 50px; }
  .event-feature .event-img { height: 260px; }
  .event-feature .event-body { padding: 22px 24px 26px; }
  .event-card h3 { font-size: 1.4rem; }
  .event-overlay { padding: 22px 24px 26px; }
  .event-overlay h3 { font-size: 1.4rem; }
  .event-video { min-height: 320px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 10px;
  }
  .gi-1 { grid-column: span 2; grid-row: span 2; }
  .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7, .gi-8 {
    grid-column: span 1; grid-row: span 1;
  }
  .gallery-head h3 { font-size: 1.5rem; }
  .section-head { margin-bottom: 40px; }
  .menu-tabs { width: 100%; overflow-x: auto; justify-content: flex-start; }
  .cart-fab { width: 56px; height: 56px; bottom: 22px; right: 22px; }
  .cart-fab svg { width: 22px; height: 22px; }
  .wa-fab { width: 56px; height: 56px; bottom: 22px; left: 22px; }
  .wa-fab svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
