/* =========================================================
   MAÍZ Y AGAVE — HOME (staging /new/)
   Tokens de diseño extraídos de Figma "Maiz (Copy)"
   ========================================================= */

:root {
  /* Colores de marca (confirmados en Figma) */
  --magenta: #E71E9D;
  --yellow:  #FFF073;
  --orange:  #F65A0E;
  --brown:   #2B201D;
  --cream:   #F9F3E3;
  --salmon:  #FBE4DD; /* TODO Dev Mode: hex aproximado */
  --kraft:   #C9A57E; /* TODO Dev Mode: hex aproximado, textura */

  /* Tipografía
     --font-heading: definitivo (Oswald, Google Fonts)
     --font-body: PUENTE TEMPORAL. Cambiar "Jost" por "futura-pt"
     cuando llegue la licencia de Futura PT (Adobe Fonts / .woff2). */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Jost', sans-serif;

  /* Layout */
  --content-max: 1280px;
  --side-margin: 80px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 16px; /* mobile-first: margen 16 */
}

/* ---------- Tipografía base ---------- */
h1, h2, h3 { font-family: var(--font-heading); margin: 0; }

.hero-title {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding: 0 6%;
  font-weight: 500;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 1.102;
  color: var(--cream);
  margin: 4px 0;
}
.hero-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108%;
  aspect-ratio: 902 / 132;
  background: url("assets/brush-magenta.svg") center / 100% 100% no-repeat;
  z-index: -1;
}

.section-title {
  font-weight: 600;
  font-size: clamp(40px, 5vw, 48px);
  color: var(--brown);
  line-height: 1.1;
}

.section-title-caps {
  font-weight: 600;
  font-size: clamp(40px, 5vw, 48px);
  text-transform: uppercase;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 12px;
}
.eyebrow-magenta { color: var(--magenta); }
.eyebrow-yellow  { color: var(--yellow); }

.section-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
  text-align: center;
}
.btn:hover { opacity: .9; transform: translateY(-1px); }
.btn-yellow  { background: var(--yellow);  color: var(--brown); }
.btn-magenta { background: var(--magenta); color: var(--cream); }
.btn-orange  { background: var(--orange);  color: var(--cream); }

/* ---------- NAV ---------- */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
}
.nav-inner {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  max-width: var(--content-max); margin-inline: auto;
  padding: 20px 16px;
}
.nav-list { display: none; list-style: none; gap: 24px; margin: 0; padding: 0; }
.nav-list a { color: var(--cream); text-decoration: none; font-family: var(--font-body); font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.nav-list a:hover { opacity: .8; }
.nav-logo img { height: 64px; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--cream); border-radius: 2px; }

/* ---------- HERO ---------- */
/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 140%;
  height: 65px;
  background: var(--yellow);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 5;
  pointer-events: none;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,.35); /* TODO Dev Mode: ajustar oscurecimiento */ }
.hero-content { position: relative; z-index: 2; text-align: center; padding-block: 100px 48px; width: 100%; }
.hero-tagline { font-family: var(--font-body); font-weight: 600; font-size: clamp(16px, 2.5vw, 24px); color: var(--cream); margin: 0 0 8px; }
.hero-subtitle {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(16px, 2.2vw, 24px); color: var(--cream); max-width: 640px;
  margin: 0 auto 24px;
}

.reservation-widget {
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  padding: 14px 16px;
  max-width: 860px; margin: 32px auto 0; position: relative; z-index: 5;
  display: flex; flex-direction: column; gap: 10px; text-align: left;
}
.rw-title { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 15px; color: #333; margin: 0; }
.rw-fields { display: flex; flex-wrap: wrap; gap: 12px; }
.rw-row { display: flex; flex-direction: column; gap: 10px; }
.rw-field { flex: 1 1 150px; display: flex; flex-direction: column; gap: 2px; padding: 8px 12px; border: 1px solid #e2d9c2; border-radius: 10px; background: #fff; cursor: pointer; }
.rw-label { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: #a08a5e; }
.rw-select, .rw-input { border: 0; background: transparent; font-size: 15px; font-weight: 600; color: #222; padding: 0; width: 100%; cursor: pointer; font-family: inherit; }
.rw-select:focus, .rw-input:focus { outline: none; }
.rw-btn { align-self: stretch; width: 100%; border: 0; cursor: pointer; }
.btn-magenta { background: #E71C9A; color: #fff; }
.btn-magenta:hover { background: #c9137f; }

/* ---------- MENUS ---------- */
.menus { background: var(--cream); padding-block: 48px; }
.menus .section-title { line-height: 1.051; }
.menus .section-text  { line-height: 1.3; }
.menus .carousel-arrows { display: none; }
.section-head { margin-bottom: 32px; }
.section-head-row { display: flex; flex-direction: column; gap: 16px; }

.menu-carousel {
  display: grid;
  grid-template-columns: 1fr 1fr; /* mosaico 2x2 en mobile */
  gap: 12px;
}
.menu-card {
  position: relative; overflow: hidden; border-radius: 12px;
  aspect-ratio: 231 / 380; text-decoration: none;
}
.menu-card:last-child { grid-column: auto; aspect-ratio: 231 / 380; } /* HAPPY HOUR igual que las demas */
.menu-card img, .menu-card video { width: 100%; height: 100%; object-fit: cover; }
.menu-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 500; font-size: 32px; color: var(--cream);
  background: rgba(0,0,0,.25);
}

.carousel-arrows { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  font-size: 22px; background: #ccc; color: var(--cream);
}
.arrow-active, .arrow-orange { background: var(--orange); }

/* ---------- ROOTED ---------- */
.rooted { background: var(--kraft); color: var(--cream); position: relative; overflow: hidden; }
.rooted .section-title-caps, .rooted .section-text { color: var(--brown); }
.rooted-grid { display: flex; flex-direction: column; gap: 24px; padding-block: 48px; }
.rooted-text .btn { margin-top: 16px; }
.rooted-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- ABOUT ---------- */
.about { background: var(--cream); padding-top: 8vw; padding-bottom: 8vw; width: 100%; }
.about .section-title-caps, .about .section-text { color: var(--cream); }
.about-grid { display: flex; flex-direction: column; gap: 24px; background: var(--orange); padding: 32px; }
.about-media { position: relative; }
.about-media::before { content: ""; position: absolute; top: -46px; bottom: -46px; left: -22%; right: -8%; background: url("assets/pincelada.svg") no-repeat center / 100% 100%; z-index: 0; pointer-events: none; }
.about-media img { position: relative; z-index: 1; width: 100%; height: auto; display: block; }

/* ---------- SERVICES ---------- */
.services { background: var(--cream); padding-block: 48px; }
.services-row { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 8px; text-align: center; align-items: start; padding: 40px 2%; background: url("assets/pincelada2.svg") no-repeat center / 100% 100%; }
.service-item img { width: 54px; height: 54px; object-fit: contain; margin: 0 auto 8px; display: block; }
.service-item p { font-family: "Oswald", sans-serif; font-weight: 600; font-size: 18px; line-height: 1.05; color: #111; margin: 0; }
/* ---------- SPACES CAROUSEL ---------- */
.spaces { background: var(--cream); padding-block: 32px 8px; }
.spaces-viewport { position: relative; max-width: 1360px; margin: 0 auto; padding: 0 40px; }
.spaces-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.spaces-track::-webkit-scrollbar { display: none; }
.space-slide { position: relative; flex: 0 0 405px; height: 385px; scroll-snap-align: start; overflow: hidden; }
.space-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.space-title { position: absolute; left: 20px; bottom: 20px; color: #fff; font-family: "Oswald", sans-serif; font-weight: 600; font-size: 26px; letter-spacing: .5px; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.spaces-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--orange); color: #fff; font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.spaces-prev { left: 16px; }
.spaces-next { right: 16px; }
.spaces-cta { display: flex; justify-content: center; margin-top: 24px; }


/* ---------- PLAN YOUR EVENT ---------- */
.plan-event { position: relative; background: var(--cream); padding-block: 72px 56px; overflow: hidden; }
.plan-bushes { position: absolute; top: 2vw; width: 32vw; height: 20.47vw; opacity: .5;
  background-repeat: no-repeat; background-size: contain; pointer-events: none; z-index: 0; }
.plan-bushes-left  { left: -9.44vw;  background-image: url('assets/bushes%20lado%20izquierda.svg'); background-position: left top; }
.plan-bushes-right { right: -9.44vw; background-image: url('assets/bushes%20lado%20derecho.svg'); background-position: right top; }
.plan-inner { position: relative; z-index: 1; max-width: 1008px; margin-inline: auto; text-align: center; }
.plan-title-wrap { position: relative; display: inline-block; padding: 10px 30px 6px; margin-bottom: 6px; }
.plan-title-wrap::before { content: ""; position: absolute; left: -20px; right: -20px; top: 0; bottom: 0; z-index: -1;
  background: url('assets/pincelada%20Plan%20your%20next%20event.svg') no-repeat center/100% 100%; }
.plan-event .eyebrow-magenta { margin-bottom: 0; position: relative; z-index: 1; }
.plan-title { font-size: clamp(28px, 3.4vw, 44px); color: #1a1a1a; margin: 0; white-space: nowrap; }
.event-email { margin: 6px 0 16px; }
.event-email a { color: var(--magenta); font-weight: 600; text-decoration: none; }
.plan-text { color: #333; max-width: 620px; margin: 0 auto 22px; font-size: 15px; }
.plan-inner .btn { font-size: 14px; padding: 10px 26px; }

/* ---------- EVENTS ---------- */
.events { position: relative; padding: 0 0 40px; overflow: hidden; margin-top: -1.5vw; z-index: 1;
  background: url('assets/events-fireworks.svg') no-repeat top center; background-size: 100% auto; }
.events::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34%;
  background: linear-gradient(180deg, rgba(214,192,159,0) 0%, var(--kraft) 78%); z-index: 0; pointer-events: none; }
.events-inner { position: relative; z-index: 2; max-width: var(--content-max); margin-inline: auto; padding-inline: var(--side-margin); }
.events .section-head { position: relative; padding-top: 14vw; margin-bottom: 6vw; max-width: 460px; }
.events .eyebrow-yellow { color: var(--yellow); margin-bottom: 2px; }
.events-title { color: var(--cream); font-size: clamp(40px, 5vw, 60px); margin: 0 0 10px; line-height: 1; }
.events-sub { color: var(--cream); max-width: 340px; font-size: 15px; margin: 0; }
.events-viewport { position: relative; z-index: 2; }
.events-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
 padding: 4px; scrollbar-width: none; }
.events-track::-webkit-scrollbar { display: none; }
.event-card { flex: 0 0 254px; scroll-snap-align: start; background: var(--cream);
  border-radius: 4px; padding: 16px 16px 18px; display: flex; flex-direction: column; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.event-name { font-family: var(--font-heading); font-weight: 600; font-size: 19px; color: #1a1a1a;
  text-align: center; margin: 0 0 2px; line-height: 1.1; }
.event-when { font-family: var(--font-body); font-size: 14px; color: #333; text-align: center; margin: 0 0 12px; }
.event-media { flex: 1; border-radius: 2px; overflow: hidden; }
.event-media img, .event-media video { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 222/300; }
.events-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border: none; border-radius: 50%; background: var(--orange); color: var(--cream);
  font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.events-prev { left: -8px; }
.events-next { right: -8px; }
.events-bottom { position: relative; z-index: 2; height: 40px; }

/* ---------- CLIENT EXPERIENCE (REVIEWS) ---------- */
.reviews { position: relative; background: linear-gradient(180deg, var(--cream) 0%, #FFF5C9 100%); padding-block: 56px 64px; overflow: hidden; }
.reviews-pour { position: absolute; left: -40px; top: 70px; width: 380px; max-width: 32vw; height: auto; z-index: 0; pointer-events: none; }
.reviews-pour-brush { position: absolute; left: -30px; top: 120px; width: 118%; height: auto; z-index: 0; }
.reviews-pour-photo { position: relative; display: block; width: 100%; height: auto; z-index: 1; }
.reviews .container { position: relative; z-index: 2; }
.reviews-head { text-align: left; margin-bottom: 24px; }
.reviews-head .section-title { font-size: clamp(32px, 4vw, 48px); color: #1a1a1a; margin: 0; }
.rating { font-family: var(--font-heading); font-size: 24px; font-weight: 600; margin: 6px 0 0; display: flex; align-items: center; gap: 8px; }
.stars { color: var(--orange); letter-spacing: 2px; }
.review-stars { color: #1a1a1a; letter-spacing: 2px; font-size: 15px; }
.star-half { position: relative; display: inline-block; color: #d9c9a0; }
.reviews-viewport { position: relative; margin-right: calc(50% - 50vw); }
.reviews-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px 4px 4px 340px; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 406px; scroll-snap-align: start; background: #D7C19F; color: #2b2b2b;
  border-radius: 4px; padding: 24px 32px; display: flex; flex-direction: column; gap: 10px; }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-author { font-family: var(--font-heading); font-weight: 600; font-size: 20px; margin: 0; color: #1a1a1a; }
.review-body { font-size: 15px; line-height: 1.5; margin: 0; }
.review-source { font-size: 13px; margin: 8px 0 0; border-top: 1px solid rgba(0,0,0,.18); padding-top: 10px; }
.read-more { color: #2b2b2b; text-decoration: underline; }
.reviews-arrows { justify-content: flex-end; margin-top: 20px; }

/* ---------- FAQ ---------- */
.faq { position: relative; padding-block: 64px 56px; overflow: hidden; }
.faq-inner { display: flex; align-items: flex-start; gap: 56px; position: relative; z-index: 1; }
.faq-title-col { flex: 0 0 auto; }
.faq-title { font-size: clamp(34px, 4.4vw, 52px); line-height: 1.02; color: #1a1a1a; margin: 0; }
.faq-grid { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin: 0; }
.faq-item { background: #D7C19F; border-radius: 4px; padding: 12px 18px; align-self: start; }
.faq-item summary { position: relative; font-family: var(--font-body); font-weight: 500; font-size: 15px; line-height: 1.25; color: #2b2b2b; cursor: pointer; list-style: none; padding-right: 22px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\2304'; position: absolute; right: 0; top: -2px; font-size: 18px; color: #2b2b2b; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-num { font-weight: 700; }
.faq-item p { margin: 8px 0 0; font-size: 14px; line-height: 1.4; color: #3a3a3a; }

/* ---------- SCHEDULE ---------- */
.schedule-bar { background: var(--magenta); color: var(--cream); padding-block: 20px; }
.schedule-inner { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; font-weight: 500; }

.footer-contact { display: flex; flex-wrap: wrap; gap: 24px 64px; justify-content: center; align-items: flex-start; }
.footer-col { display: flex; flex-direction: column; gap: 6px; font-weight: 500; }
.footer-col.footer-contact-info { align-items: flex-start; }
.footer-heading { font-family: var(--font-heading); font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 6px; }
.footer-contact-info p { margin: 0; }
.footer-contact a { color: var(--cream); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
@media (max-width: 767px) { .footer-contact { flex-direction: column; align-items: center; text-align: center; gap: 20px; } .footer-col.footer-contact-info { align-items: center; } }

/* =========================================================
   BREAKPOINTS
   ========================================================= */

/* ---------- TABLET ≥768px ---------- */
@media (min-width: 768px) {
  .container { padding-inline: 40px; }

  /* Cabeceras de sección en dos columnas (título | párrafo) */
  .section-head-row { flex-direction: row; align-items: flex-start; gap: 40px; }
  .section-head-row .section-title { flex: 1; }
  .section-head-row .section-text  { flex: 1; }

  /* Menús: mosaico de 3 columnas en tablet */
  .menu-carousel { grid-template-columns: repeat(3, 1fr); }
  .menu-card:last-child { grid-column: auto; aspect-ratio: 231 / 380; }

  /* Widget de reserva en fila (desktop) */
  .reservation-widget { flex-direction: column; align-items: stretch; }
  .rw-row { flex-direction: row; align-items: center; gap: 12px; }
  .reservation-widget .rw-fields { flex: 1; flex-wrap: nowrap; }
  .rw-btn { width: auto; align-self: auto; white-space: nowrap; padding-left: 36px; padding-right: 36px; }

  /* Secciones a dos columnas */
  /* Banda naranja: margen a la izquierda, pegada al borde derecho, sin radius (como Figma) */
  .about-grid { flex-direction: row; align-items: center; gap: 56px; padding: 0 5.5%; width: 100vw; max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); height: 23.6vw; overflow: visible; }
  .about-text { flex: 1; padding-right: 24px; }
  .about-media { flex: 0 0 35%; align-self: center; display: flex; margin-left: 0; position: relative; }

  /* ROOTED: texto a la izquierda, imagen a sangre en la mitad derecha (como Figma) */
  .rooted-grid { flex-direction: row; align-items: stretch; gap: 0; min-height: 520px; }
  .rooted-text { flex: 0 0 46%; padding-right: 48px; display: flex; flex-direction: column; justify-content: center; }
  .rooted-media { position: absolute; top: 0; right: 0; bottom: 0; width: 54%; }
  .rooted-media img { width: 100%; height: 100%; object-fit: cover; }
  .about-media { order: -1; } /* imagen a la izquierda en About */
  .about-media img { height: 34.7vw; width: 100%; object-fit: cover; }

  /* Servicios: 5 columnas */
.services-row { grid-template-columns: repeat(6, 1fr); }

  /* Reviews / events: tarjetas más estrechas */
  /* .review-card { flex-basis: 45%; } */
  /* .event-card  { flex-basis: 40%; } */

  /* FAQ en dos columnas */
  /* .faq-grid handled in base rule */

}

/* ---------- DESKTOP ≥1024px ---------- */
@media (min-width: 1024px) {
  .container { padding-inline: var(--side-margin); } /* margen lateral 80px */

  /* Nav completo visible, se oculta la hamburguesa */
  .nav-list { display: flex; }
  .nav-toggle { display: none; }
  .nav-inner.nav-open .nav-list {
    position: static; flex-direction: row; padding: 0;
    background: none; box-shadow: none;
  }

  /* Menús: los 5 thumbnails en una fila (carrusel/mosaico horizontal) */
  .menus .container { padding-inline: 40px; } /* mas ancho util para las 5 tarjetas, como Figma */
  .menu-carousel { grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .menu-card, .menu-card:last-child { aspect-ratio: 231 / 380; grid-column: auto; } /* todas iguales, incl. Happy Hour */

  /* Reviews / events: 3 tarjetas visibles */
  /* .review-card { flex-basis: 31%; } */
  /* .event-card  { flex-basis: 30%; } */


  /* Rooted: columna de texto ~405px como en Figma */
  /* .rooted-text ancho ahora definido arriba como 46% */
}

/* ---------- DESKTOP GRANDE ≥1440px ---------- */
@media (min-width: 1440px) {
  /* El contenido se mantiene centrado en --content-max (1280px) */
}

/* ---------- Accesibilidad: reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ---------- Ajustes SOLO mobile (<=767px) ---------- */
@media (max-width: 767px) {
  .nav-logo img { height: 80px; }
  .hero-tagline { font-size: 20px; line-height: 1.15; margin: 12px 0; }
  .hero-title { font-size: 96px; line-height: 1.102; padding: 0 4%; margin: 12px 0; }
  .hero-title::before { width: 118%; aspect-ratio: 430 / 159; background: url('assets/pincelada%20mobile.svg') center / 100% 100% no-repeat; }
  .hero-subtitle { font-size: 18px; line-height: 1.2; margin: 12px 0; }
  .menu-card:last-child { grid-column: 1 / -1; aspect-ratio: 397 / 300; background: url('assets/Group%2019.webp') center / cover no-repeat; }
  .menu-card:last-child img { display: none; }
  .rooted-media { aspect-ratio: 430 / 319; background: url('assets/Group%2025%201%20(1).webp') center / cover no-repeat; }
  .rooted-media img { display: none; }
  .services { padding-block: 24px; }
  .services-row { background: url('assets/pincelada%20amarilla%20mobile.svg') no-repeat center / 100% 100%; }
  /* Plan your next event - mobile */
  .plan-title { font-size: 40px; line-height: 1.051; white-space: normal; }
  .plan-title-wrap { padding: 16px 24px 12px; }
  .plan-title-wrap::before { left: -12px; right: -12px; background: url('assets/pincelada%20amarilla%20mobile%20plan.svg') no-repeat center / 100% 100%; }
  .event-email { font-size: 18px; }
  .plan-text { font-size: 18px; line-height: 1.3; }
  .plan-bushes-right { display: none; }
  .plan-bushes-left { top: auto; bottom: 90px; left: 50%; transform: translateX(-50%); width: 100%; height: 44vw; background-image: url('assets/Group%2026.svg'); background-position: center; background-size: contain; }
  /* Events / upcoming - mobile */
  .events { background: none; }
  .events-inner { padding-inline: 24px; }
  .events .section-head { margin: 0 -24px 18px; padding: 120px 24px 48px; max-width: none; background: url('assets/Group%2027.svg') no-repeat top center/100% 100%; }
  .events .eyebrow-yellow { font-size: 20px; white-space: nowrap; margin-bottom: 6px; }
  .events-title { font-size: 48px; line-height: 1.051; }
  .events-sub { font-size: 18px; line-height: 1.3; max-width: none; }
  .events-viewport { margin-inline: -24px; padding-inline: 24px; background: url('assets/Mask%20group%20(1).svg') no-repeat top center/125% auto; }
  /* FAQ - mobile: una sola columna apilada */
  .faq { padding-block: 44px 40px; }
  .faq-inner { flex-direction: column; gap: 22px; }
  .faq-title-col { flex: 0 0 auto; width: 100%; }
  .faq-grid { grid-template-columns: 1fr; gap: 10px; width: 100%; }
  .faq-item summary { font-size: 15px; }
  /* Reviews pour photo - mobile: un poco mas grande */
  .reviews-pour { width: 300px; max-width: 69vw; left: -40px; }
  /* Google Reviews - imagen de fondo mobile (Group 28) */
  .reviews { background: url('assets/Group%2028.webp') no-repeat top left; background-size: 100% auto; }
  .reviews-pour { display: none; }
}