/* ─── Raíz Tostada — Landing Styles ─────────────────────────── */

:root {
  --c-green: #1F3D2B;
  --c-green-deep: #15291D;
  --c-beige: #F5E9DA;
  --c-beige-warm: #EFE1CE;
  --c-beige-soft: #FAF3E8;
  --c-coffee: #4B2E2B;
  --c-coffee-soft: #6B4A45;
  --c-terracota: #C67B5C;
  --c-terracota-deep: #A8614A;
  --c-line: rgba(75, 46, 43, 0.14);

  --f-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --f-display-alt: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;

  --hero-scale: 1;
  --font-mix-intensity: 1;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-coffee);
  background: var(--c-beige);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Shared type styles ─────────────────────────────────────── */

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-coffee-soft);
}

.serif { font-family: var(--f-display); }
.serif-italic { font-family: var(--f-display); font-style: italic; font-weight: 400; }
.sans-caps {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}

.display-xl {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.display-md {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ─── Layout primitives ──────────────────────────────────────── */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-sm { padding: 80px 0; }

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 24px; }
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
}

/* ─── Reveal animations on scroll ────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up { transform: translateY(48px); }
.reveal-up.is-visible { transform: translateY(0); }

.reveal-left { transform: translateX(-40px); }
.reveal-left.is-visible { transform: translateX(0); }

.reveal-right { transform: translateX(40px); }
.reveal-right.is-visible { transform: translateX(0); }

.reveal-scale { transform: scale(0.94); }
.reveal-scale.is-visible { transform: scale(1); }

/* Image reveal — elegant wipe/scale */
.reveal-img {
  position: relative;
  overflow: hidden;
}
.reveal-img img,
.reveal-img iframe {
  transform: scale(1.12);
  transition: transform 1.8s var(--ease);
}
.reveal-img.is-visible img,
.reveal-img.is-visible iframe {
  transform: scale(1);
}
.reveal-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-beige);
  z-index: 2;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.2s var(--ease);
}
.reveal-img.is-visible::before {
  transform: scaleX(0);
}
.reveal-img-dark::before { background: var(--c-green); }
.reveal-img-coffee::before { background: var(--c-coffee); }

/* Letter-by-letter reveal */
.reveal-letters .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-letters.is-visible .letter {
  opacity: 1;
  transform: translateY(0);
}

/* Line-by-line text reveal */
.reveal-lines .line {
  display: block;
  overflow: hidden;
}
.reveal-lines .line > span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 1s var(--ease);
  transition-delay: var(--line-delay, 0s);
}
.reveal-lines.is-visible .line > span {
  transform: translateY(0);
}

/* Stagger utility — children reveal one after another */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 0.65s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: 0.75s; }
.stagger.is-visible > *:nth-child(9) { transition-delay: 0.85s; }

/* Divider line draw */
.reveal-line {
  position: relative;
  overflow: hidden;
}
.reveal-line::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 100%;
  background: var(--c-line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s var(--ease);
}
.reveal-line.is-visible::after { transform: scaleX(1); }

/* Hero entrance — auto on load */
.hero-enter {
  opacity: 0;
  transform: translateY(40px);
  animation: heroEnter 1.6s var(--ease) forwards;
  animation-delay: var(--enter-delay, 0.2s);
}
@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}
.hero-bg-enter {
  transform: scale(1.08);
  animation: heroBgZoom 2.4s var(--ease) forwards;
}
@keyframes heroBgZoom {
  to { transform: scale(1); }
}

/* Floating parallax — applied via JS transform */
.parallax {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Marquee */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee {
  overflow: hidden;
  background: var(--c-coffee);
  color: var(--c-beige);
  padding: 18px 0;
  border-top: 1px solid rgba(245,233,218,0.12);
  border-bottom: 1px solid rgba(245,233,218,0.12);
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-right: 60px;
}
.marquee-item {
  font-family: var(--f-display);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  gap: 60px;
  font-weight: 400;
}
.marquee-item em { font-style: italic; color: var(--c-terracota); }
.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-terracota);
  display: inline-block;
}

/* Button arrow slide in */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
  opacity: 0.08;
  z-index: 0;
}
.btn:hover::before { transform: translateY(0); }
.btn > * { position: relative; z-index: 1; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-img img, .reveal-letters .letter, .reveal-lines .line > span,
  .stagger > *, .hero-enter, .hero-bg-enter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .reveal-img::before { display: none; }
  .marquee-track { animation: none; }
}

/* ─── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-solid {
  background: var(--c-terracota);
  color: var(--c-beige);
}
.btn-solid:hover {
  background: var(--c-terracota-deep);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-coffee);
  border: 1px solid var(--c-coffee);
}
.btn-outline:hover {
  background: var(--c-coffee);
  color: var(--c-beige);
}

.btn-outline-light {
  background: transparent;
  color: var(--c-beige);
  border: 1px solid rgba(245, 233, 218, 0.7);
}
.btn-outline-light:hover {
  background: var(--c-beige);
  color: var(--c-green);
}

.btn-solid-dark {
  background: var(--c-green);
  color: var(--c-beige);
}
.btn-solid-dark:hover {
  background: var(--c-green-deep);
  transform: translateY(-1px);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── NAV ────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease), color 0.4s var(--ease);
  color: var(--c-beige);
}
.nav.is-scrolled {
  background: rgba(245, 233, 218, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--c-coffee);
  padding: 14px 40px;
  box-shadow: 0 1px 0 var(--c-line);
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
}
.nav-logo em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: opacity 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.4s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: currentColor;
}
.nav-cta:hover span { color: var(--c-beige); }
.nav.is-scrolled .nav-cta:hover span { color: var(--c-beige); }

.nav-burger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
}
.nav-burger span:nth-child(1) { top: 4px; }
.nav-burger span:nth-child(2) { top: 50%; }
.nav-burger span:nth-child(3) { top: calc(100% - 4px); }
.nav-burger.is-open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

/* Mobile nav overlay — hidden by default on all viewports */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--c-green);
  color: var(--c-beige);
  padding: 100px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  z-index: 90;
}
.nav-mobile a {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav.is-scrolled { padding: 12px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .nav-mobile { display: flex; }
  .nav-mobile.is-open { transform: translateY(0); }
}

/* ─── HERO VIDEO (HTML puro, fuera de React) ─────────────────── */

#hero-vid-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#hero-vid {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#hero-vid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 41, 29, 0.35) 0%,
    rgba(21, 41, 29, 0.17) 40%,
    rgba(21, 41, 29, 0.35) 100%
  );
}

/* ─── HERO ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px 40px 60px;
  overflow: hidden;
  color: var(--c-beige);
  background: var(--c-green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video video,
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  object-fit: cover;
  transition: opacity 1.4s ease-in-out;
}
.hero-video video.is-fading {
  opacity: 0;
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 41, 29, 0.35) 0%,
    rgba(21, 41, 29, 0.17) 40%,
    rgba(21, 41, 29, 0.35) 100%
  );
  z-index: 1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 41, 29, 0.35) 0%,
    rgba(21, 41, 29, 0.17) 40%,
    rgba(21, 41, 29, 0.35) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.hero-eyebrow {
  color: var(--c-beige);
  opacity: 0.85;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(46px, calc(7.5vw * var(--hero-scale)), 120px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-title .it {
  font-style: italic;
  font-weight: 400;
}
.hero-title .amp {
  font-style: italic;
  font-family: var(--f-display-alt);
  opacity: 0.75;
  padding: 0 0.05em;
}

.hero-sub {
  max-width: 440px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 233, 218, 0.85);
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-side {
  min-width: 220px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 233, 218, 0.7);
  line-height: 2;
  padding-bottom: 12px;
}
.hero-side b {
  display: block;
  color: var(--c-beige);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 8px;
}

.hero-scroll {
  display: none !important;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(245, 233, 218, 0.4);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-beige);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

@media (max-width: 900px) {
  .hero { padding: 120px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-side { text-align: left; }
  .hero-title { font-size: clamp(54px, 18vw, 100px); }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */

.about {
  background: var(--c-beige);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}

.about-text-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 100px 72px;
}

.about-inner {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-inner .display-lg { margin-top: 22px; }
.about-inner p {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-coffee-soft);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--c-line);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-stat-num {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--c-terracota);
  line-height: 1;
}
.about-stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-coffee-soft);
  line-height: 1.5;
}

.about-img-col {
  display: flex;
  align-items: center;
  padding: 80px 100px 80px 20px;
}
.about-img-col img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.about-img-col:hover img { transform: scale(1.04); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 8px 16px;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-coffee-soft);
}
.stagger > .chip {
  transition: opacity 1s var(--ease), transform 1s var(--ease),
              background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.chip:hover {
  background: var(--c-coffee);
  color: var(--c-beige);
  border-color: var(--c-coffee);
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; min-height: auto; }
  .about-text-col { padding: 64px 24px; justify-content: flex-start; }
  .about-img-col { min-height: 360px; padding: 0 24px 64px; }
}

/* ─── VALUE PROP (green) ─────────────────────────────────────── */

.values {
  background: var(--c-green);
  color: var(--c-beige);
  padding: 140px 0;
  position: relative;
}
.values-head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
.values-head .eyebrow { color: rgba(245,233,218,0.7); }
.values-head h2 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  margin-top: 20px;
}
.values-head h2 .it { font-style: italic; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--c-green);
  max-width: 1280px;
  margin: 0 auto;
}
.value-card {
  background: var(--c-green);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid rgba(245, 233, 218, 0.14);
}
.value-card:last-child {
  border-right: none;
}
.value-icon {
  width: 44px; height: 44px;
  color: var(--c-terracota);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.value-card:hover .value-icon {
  transform: translateY(-10px);
}
.value-card h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}
.value-card h3 .it { font-style: italic; }
.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 233, 218, 0.78);
}
.value-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(245, 233, 218, 0.5);
}

@media (max-width: 900px) {
  .values { padding: 80px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid rgba(245, 233, 218, 0.14); }
  .value-card:last-child { border-bottom: none; }
}

/* ─── MENU ──────────────────────────────────────────────────── */

.menu {
  background: var(--c-beige-soft);
}
.menu-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}
.menu-head h2 {
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  margin-top: 18px;
}
.menu-head h2 .it { font-style: italic; }
.menu-head p {
  max-width: 340px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-coffee-soft);
}

.menu-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: 18px 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-coffee-soft);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-tab-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  opacity: 0.6;
}
.menu-tab.is-active {
  color: var(--c-coffee);
  border-color: var(--c-terracota);
}
.menu-tab:hover { color: var(--c-coffee); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-line);
  margin-bottom: 40px;
  animation: fadeUp 0.6s var(--ease);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-item {
  background: var(--c-beige-soft);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.4s var(--ease);
  cursor: pointer;
  min-height: 200px;
}
.menu-item:hover { background: var(--c-beige-warm); }
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.menu-item-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-coffee);
}
.menu-item-name .it { font-style: italic; }
.menu-item-price {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  color: var(--c-terracota);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-coffee-soft);
}
.menu-item-tag {
  margin-top: auto;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-coffee-soft);
  opacity: 0.7;
}

.menu-note {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--c-coffee-soft);
  text-align: center;
}

/* ─── MENU UBER EATS BUTTON ──────────────────────────────────── */
.menu-list-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-ubereats-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #000;
  color: #fff;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  white-space: nowrap;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: background 0.18s ease, transform 0.18s ease;
}

.menu-ubereats-btn strong {
  font-weight: 700;
  letter-spacing: 0;
}

.menu-ubereats-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

/* ─── MENU SPLIT (nuevo layout) ─────────────────────────────── */
.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-bottom: 40px;
  animation: fadeUp 0.6s var(--ease);
}

.menu-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-line);
}

.menu-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-line);
  cursor: pointer;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease);
  position: relative;
}
.menu-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--c-terracota);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}
.menu-row.is-active::before,
.menu-row:hover::before { transform: scaleY(1); }
.menu-row.is-active,
.menu-row:hover { padding-left: 16px; }

.menu-row-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  color: var(--c-coffee-soft);
  opacity: 0.45;
  transition: opacity 0.3s, color 0.3s;
}
.menu-row.is-active .menu-row-num,
.menu-row:hover .menu-row-num {
  opacity: 1;
  color: var(--c-terracota);
}

.menu-row-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.menu-row-name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--c-coffee);
  line-height: 1.2;
}
.menu-row-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-terracota);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.menu-row.is-active .menu-row-tag,
.menu-row:hover .menu-row-tag { opacity: 1; transform: translateY(0); }

.menu-row-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  color: var(--c-terracota);
  white-space: nowrap;
}

/* Panel derecho */
.menu-detail {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.menu-detail-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  transition: opacity 0.26s ease;
}
.menu-detail-img.is-fading { opacity: 0; }
.menu-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.menu-detail-img:hover img { transform: scale(1.04); }

.menu-detail-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-detail-info h3 {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-coffee);
}
.menu-detail-info p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-coffee-soft);
  max-width: 360px;
}
.menu-detail-price {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 36px;
  color: var(--c-terracota);
  line-height: 1;
}

@media (max-width: 900px) {
  .menu-head { grid-template-columns: 1fr; gap: 24px; }
  .menu-split { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .menu-detail { position: static; }
  .menu-list-wrap { justify-content: flex-start; }
  .menu-ubereats-btn { margin-top: 28px; align-self: stretch; justify-content: center; }
}

/* ─── GALLERY CAROUSEL ───────────────────────────────────────── */

.gallery {
  background: var(--c-beige);
  padding: 120px 0;
  overflow: hidden;
}
.gallery-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto 60px;
}
.gallery-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  margin-top: 18px;
}
.gallery-head h2 .it { font-style: italic; }
.gallery-controls {
  display: flex;
  gap: 8px;
}
.gallery-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--c-coffee);
  border-radius: 0;
  color: var(--c-coffee);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.gallery-btn:hover {
  background: var(--c-coffee);
  color: var(--c-beige);
}
.gallery-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding-left: calc((100vw - 1280px) / 2 + 40px);
  padding-right: 40px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: calc((100vw - 1280px) / 2 + 40px);
}
@media (max-width: 1360px) {
  .gallery-track-wrap {
    padding-left: 40px;
    scroll-padding-left: 40px;
  }
}
.gallery-track-wrap::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}
.gallery-item {
  flex: 0 0 420px;
  width: 420px;
  min-width: 420px;
  max-width: 420px;
  height: 420px;
  min-height: 420px;
  max-height: 420px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: var(--c-coffee);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 41, 29, 0.3);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg {
  width: 36px;
  height: 36px;
  color: var(--c-beige);
}
.gallery-item-caption {
  position: absolute;
  left: 20px; bottom: 20px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-beige);
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  transform: translateY(8px);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.gallery-item:hover .gallery-item-caption { opacity: 1; transform: translateY(0); }

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .gallery-head { grid-template-columns: 1fr; padding: 0 24px; }
  .gallery-track-wrap { padding-left: 24px; padding-right: 24px; scroll-padding-left: 24px; }
}

/* ─── Lightbox ───────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(21, 41, 29, 0.96);
  display: grid;
  place-items: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(245,233,218,0.6);
  color: var(--c-beige);
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.lightbox-close:hover { background: var(--c-beige); color: var(--c-green); }
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  text-align: center;
  color: var(--c-beige);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
}

/* ─── TESTIMONIOS (Google Reviews) ───────────────────────────── */

.reviews {
  background: var(--c-beige-warm);
  padding: 120px 0;
}
.reviews-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  padding: 0 40px;
}
.reviews-head h2 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  margin: 18px 0 22px;
}
.reviews-head h2 .it { font-style: italic; }

.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: var(--c-beige-soft);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  margin-bottom: 10px;
}
.reviews-summary-g {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.reviews-summary-g svg { width: 18px; height: 18px; }
.reviews-summary-score {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-summary-count {
  font-size: 12px;
  color: var(--c-coffee-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--c-terracota);
}
.stars svg { width: 14px; height: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.review-card {
  background: var(--c-beige-soft);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--c-line);
  transition: all 0.4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(75, 46, 43, 0.08);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-beige);
  flex-shrink: 0;
}
.review-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--c-coffee);
}
.review-meta {
  font-size: 11px;
  color: var(--c-coffee-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-meta svg { width: 12px; height: 12px; }
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-coffee-soft);
}
.review-text em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-coffee);
  font-size: 15px;
}
.review-google-tag {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--c-coffee-soft);
}
.review-google-tag svg { width: 14px; height: 14px; }

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

/* ─── LOCATION ───────────────────────────────────────────────── */

.location {
  background: var(--c-beige);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.location-info h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  margin: 18px 0 40px;
}
.location-info h2 .it { font-style: italic; }
.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}
.location-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--c-line);
}
.location-list dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-coffee-soft);
  padding-top: 3px;
}
.location-list dd {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-coffee);
}
.location-list dd a { transition: color 0.3s; }
.location-list dd a:hover { color: var(--c-terracota); }
.location-list dd em {
  font-family: var(--f-display);
  font-style: italic;
}

.map-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--c-green);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(0.95);
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-list li { grid-template-columns: 1fr; gap: 6px; }
  .map-wrap { aspect-ratio: 1/1; }
}

/* ─── CONTACT ────────────────────────────────────────────────── */

.contact {
  background: var(--c-coffee);
  color: var(--c-beige);
  padding: 120px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  margin: 18px 0 28px;
}
.contact-info h2 .it { font-style: italic; }
.contact-info p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 233, 218, 0.82);
  max-width: 440px;
  margin-bottom: 30px;
}
.contact-email {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--c-terracota);
  transition: opacity 0.3s;
}
.contact-email:hover { opacity: 0.8; }

.contact-form {
  display: grid;
  gap: 20px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 233, 218, 0.65);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245, 233, 218, 0.3);
  padding: 12px 0;
  color: var(--c-beige);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-terracota);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.field select option {
  background: var(--c-coffee);
  color: var(--c-beige);
}
.field-err {
  color: var(--c-terracota);
  font-size: 12px;
  font-style: italic;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--c-terracota);
}

.contact-submit {
  padding: 16px 32px;
  background: var(--c-terracota);
  color: var(--c-beige);
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease);
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-submit:hover {
  background: var(--c-beige);
  color: var(--c-coffee);
}
.contact-success {
  padding: 32px;
  border: 1px solid rgba(198, 123, 92, 0.5);
  background: rgba(198, 123, 92, 0.08);
  text-align: center;
}
.contact-success h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}
.contact-success h3 em { font-style: italic; }
.contact-success p {
  font-size: 14px;
  color: rgba(245, 233, 218, 0.78);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ─── FOOTER ────────────────────────────────────────────────── */

.footer {
  background: var(--c-green-deep);
  color: rgba(245, 233, 218, 0.72);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,233,218,0.14);
}
.footer-brand .nav-logo {
  color: var(--c-beige);
  margin-bottom: 18px;
  font-size: 24px;
}
.footer-brand p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(245,233,218,0.7);
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-beige);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--c-terracota); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245,233,218,0.5);
}
.footer-bottom em { font-family: var(--f-display); font-style: italic; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ─── PHONE (≤600px) specific overrides ─────────────────────── */
@media (max-width: 600px) {
  /* Hero */
  .hero { padding: 100px 20px 80px; }
  .hero-title { font-size: clamp(38px, 13vw, 56px); }
  .hero-sub { font-size: 14px; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .hero-side { display: none; }
  .hero-scroll { display: none; }

  /* About */
  .about-text-col { padding: 48px 20px; }
  .about-img-col { padding: 0 20px 48px; min-height: 280px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-stat-num { font-size: 22px; }

  /* Values */
  .values { padding: 60px 0; }
  .values-head { padding: 0 20px; margin-bottom: 48px; }
  .value-card { padding: 40px 20px; }

  /* Menu */
  .menu-head { margin-bottom: 36px; }
  .menu-detail-img { aspect-ratio: 4/3; }

  /* Gallery */
  .gallery { padding: 80px 0; }
  .gallery-head { padding: 0 20px; }
  .gallery-track-wrap { padding-left: 20px; padding-right: 20px; scroll-padding-left: 20px; }
  .gallery-item { flex: 0 0 280px; width: 280px; min-width: 280px; max-width: 280px; height: 280px; min-height: 280px; max-height: 280px; }

  /* Reviews */
  .reviews { padding: 80px 0; }
  .reviews-head { padding: 0 20px; margin-bottom: 40px; }
  .reviews-grid { padding: 0 20px; gap: 16px; }

  /* Location */
  .location-grid { gap: 32px; }
  .location-list li { grid-template-columns: 80px 1fr; gap: 12px; }
  .map-wrap { aspect-ratio: 4/5; }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-grid { gap: 32px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 60px 0 32px; }

  /* Containers */
  .container, .container-narrow { padding: 0 20px; }
}
