:root {
  /* Colors */
  --color-obsidian: #0a0a0a;
  --color-studio-black: #100904;
  --color-warm-cream: #ffedd7;
  --color-cork-shadow: #40372e;
  --color-dark-cork: #382416;
  --color-burnt-sienna: #dc5000;
  --color-grey-brown: #6c5f51;
  --color-forest-grid: #445231;

  /* Typography — Font Families */
  --font-halyard: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-arial: 'Arial', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Typography — Scale */
  --text-caption: 10px;
  --leading-caption: 1.2;
  --text-body: 14px;
  --leading-body: 1.33;
  --text-subheading: 18px;
  --leading-subheading: 1.2;
  --text-heading-sm: 24px;
  --leading-heading-sm: 1.1;
  --text-heading: 29px;
  --leading-heading: 1.09;
  --text-heading-lg: 41px;
  --leading-heading-lg: 1;
  --text-display: 51px; /* We will use clamp or larger sizes for the giant hero text as shown in image */
  --text-hero-giant: clamp(80px, 15vw, 200px);
  --leading-display: 0.9;

  /* Typography — Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-6: 6px;
  --spacing-8: 8px;
  --spacing-9: 9px;
  --spacing-10: 10px;
  --spacing-12: 12px;
  --spacing-14: 14px;
  --spacing-18: 18px;
  --spacing-24: 24px;
  --spacing-31: 31px;
  --spacing-41: 41px;
  --spacing-45: 45px;
  --spacing-68: 68px;
  --spacing-204: 204px;

  /* Layout */
  --section-gap: 120px;
  --card-padding: 24px;
  --element-gap: 18px;

  /* Border Radius */
  --radius-xl: 12px;
  --radius-2xl: 22.5px;
  --radius-3xl: 36px;

  /* Named Radii */
  --radius-cards: 12px;
  --radius-inputs: 0px;
  --radius-buttons-flat: 0px;
  --radius-buttons-pill: 36px;
  --radius-buttons-rounded: 22.5px;

  /* Surfaces */
  --surface-canvas: #100904;
  --surface-raised-cork: #382416;
  --surface-cream-edge: #ffedd7;
}

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

body {
  font-family: var(--font-halyard);
  background-color: var(--surface-canvas);
  color: var(--color-warm-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  width: 100%;
}

/* Typography Classes */
.text-caption { font-size: var(--text-caption); line-height: var(--leading-caption); }
.text-body { font-size: var(--text-body); line-height: var(--leading-body); }
.text-subheading { font-size: var(--text-subheading); line-height: var(--leading-subheading); }
.text-heading-sm { font-size: var(--text-heading-sm); line-height: var(--leading-heading-sm); }
.text-heading { font-size: var(--text-heading); line-height: var(--leading-heading); }
.text-heading-lg { font-size: var(--text-heading-lg); line-height: var(--leading-heading-lg); }
.text-display { font-size: var(--text-display); line-height: var(--leading-display); }

.fw-regular { font-weight: var(--font-weight-regular); }
.fw-medium { font-weight: var(--font-weight-medium); }
.fw-bold { font-weight: var(--font-weight-bold); }

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1400px; /* Contrae el ancho en pantallas grandes */
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%; /* Contrae el padding vertical y horizontal */
  border-bottom: 1px solid var(--color-cork-shadow);
  z-index: 100 !important;
}

.nav-brand {
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  letter-spacing: 1px;
}

.nav-logo {
  height: 40px; /* +5px as requested */
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: var(--spacing-24);
  list-style: none;
}

@media (min-width: 1025px) {
  .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.nav-links a {
  text-decoration: none;
  color: #F8F5EB;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.lang-divider {
  color: rgba(248, 245, 235, 0.3);
  font-size: 12px;
  user-select: none;
}

.lang-toggle {
  opacity: 0.6;
  font-weight: 700 !important;
}

.lang-toggle:hover {
  opacity: 1 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001; /* Above the mobile menu */
}

.mobile-menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--color-warm-cream);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.329) 0%, rgba(0, 0, 0, 0.469) 100%);
  z-index: 1 !important;
  pointer-events: none;
}

.mobile-hero-image {
  display: none;
}
.hero-content {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 90px var(--spacing-45) 45px var(--spacing-45);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 5px;
  z-index: 10 !important;
  overflow-y: hidden;
}

.hero-top-left {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: start;
  margin-top: 0px;
}

.hero-supertitle {
  font-size: var(--text-subheading);
  text-transform: uppercase;
  margin-bottom: var(--spacing-8);
}

.hero-title {
  font-size: clamp(28px, 5vw, 55px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -1px;
  margin-left: -5px;
  color: var(--color-warm-cream) !important;
}

.hero-center-right {
  grid-column: 2 / 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  max-width: 400px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: var(--font-weight-medium);
  text-shadow: 0px 2px 10px rgba(0,0,0,0.8);
  background: rgba(16, 9, 4, 0.7);
  padding: 12px;
  border-radius: var(--radius-xl);
}

.hero-bottom-left {
  grid-column: 1 / 2;
  grid-row: 3;
  align-self: end;
  max-width: 280px;
  z-index: 5;
  border-left: 2px solid var(--color-burnt-sienna);
  padding-left: 15px;
}

.lusion-badge {
  background: rgba(16, 9, 4, 0.9);
  padding: 12px 15px;
  border: 1px solid rgba(255, 237, 215, 0.15);
  margin-bottom: 10px;
  border-radius: 2px;
}

.lusion-badge .text-heading-sm {
  font-size: 14px;
  letter-spacing: 1px;
}

.dashed-divider {
  border-top: 1px dashed var(--color-cork-shadow);
  width: 100%;
  margin: var(--spacing-18) 0;
}

.hero-bottom-left p {
  text-align: right;
  font-size: var(--text-body);
  color: rgba(255, 237, 215, 0.8);
}

.hero-bottom-center {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-12);
  z-index: 10;
  font-size: 10px;
  opacity: 0.7;
}

.scroll-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-warm-cream);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vertical-label {
  position: absolute;
  right: var(--spacing-24);
  top: 150px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 2px;
}

.video-chip {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  width: 140px;
  height: 70px;
  border-radius: var(--radius-cards);
  background-color: var(--color-dark-cork);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--color-cork-shadow);
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.video-chip:hover {
  transform: scale(1.05);
}

.video-chip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.video-chip-text {
  position: relative;
  z-index: 2;
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeInHero {
  from { opacity: 0; }
  to { opacity: 1; }
}

.anim-fade-up { animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both; opacity: 0; }
.anim-fade-right { animation: fadeRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) both; opacity: 0; }
.anim-fade-left { animation: fadeLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) both; opacity: 0; }
.anim-fade-down { animation: fadeDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both; opacity: 0; }
.anim-fade-in { animation: fadeInHero 1.5s ease both; opacity: 0; }

.animate-up {
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-right {
  opacity: 0;
  animation: fadeRight 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-left {
  opacity: 0;
  animation: fadeLeft 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.animate-down {
  opacity: 0;
  animation: fadeDown 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Hero Zoom-Out Background */
@keyframes zoomOutBg {
  from { transform: scale(1.15); }
  to { transform: scale(1); }
}

.hero-content {
  /* animation: zoomOutBg 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; */
  animation: none;
}

/* Hero Clip-Path Reveal */
@keyframes clipReveal {
  0% { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%); opacity: 0; transform: translateY(30px); }
  100% { clip-path: polygon(0 -20%, 100% -20%, 100% 120%, 0% 120%); opacity: 1; transform: translateY(0); }
}

.hero-reveal {
  opacity: 1;
  /* animation: clipReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards; */
  animation: none;
}

/* Magnetic Unveil (Gallery) */
.reveal-magnetic {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.reveal-magnetic.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-magnetic img {
  transform: scale(1.2);
  filter: brightness(0.6);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-magnetic.visible img {
  transform: scale(1);
  filter: brightness(1);
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.3s; }
.delay-4 { animation-delay: 0.8s; transition-delay: 0.4s; }

/* Buttons */
.btn-primary {
  background-color: var(--color-dark-cork);
  color: var(--color-warm-cream);
  border: none;
  border-radius: var(--radius-buttons-pill);
  padding: 14.4px 24px;
  font-size: var(--text-body);
  font-weight: var(--font-weight-regular);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-warm-cream);
  border: 1px solid var(--color-warm-cream);
  border-radius: var(--radius-buttons-rounded);
  padding: 7.5px 16px;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--color-burnt-sienna);
}

/* -------------------------------------
   MANIFESTO SECTION
------------------------------------- */
.manifesto-section {
  background-color: var(--color-dark-cork); /* Or black, but dark cork adds depth */
  background-color: #050505; /* Black elegance */
  padding: 150px var(--spacing-45);
  position: relative;
  overflow: hidden;
}

.manifesto-container {
  max-width: 1400px;
  margin: 0 auto;
}

.manifesto-title {
  font-family: var(--font-primary);
  font-size: clamp(40px, 6vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-warm-cream);
  margin-bottom: 100px;
}

.text-sienna {
  color: var(--color-burnt-sienna);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.manifesto-text p {
  font-family: var(--font-secondary);
  font-size: 18px !important;
  line-height: 1.6;
  opacity: 0.9 !important;
  margin-bottom: 60px;
  max-width: 400px;
}

.manifesto-text .vertical-line {
  height: 120px;
  width: 2px;
  background-color: var(--color-burnt-sienna);
  opacity: 0.5;
}

.manifesto-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.img-parallax {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}

.manifesto-image:hover .img-parallax {
  transform: scale(1.05);
  opacity: 1;
}

/* -------------------------------------
   MENU SECTION
------------------------------------- */
.menu-section {
  background-color: #F8F5EB; /* Parchment cream matching the physical menu */
  padding: 120px var(--spacing-45);
  color: #17241A; /* Dark green */
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 80px;
}

.menu-title {
  font-family: var(--font-primary);
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-burnt-sienna) !important;
}

.menu-divider {
  height: 3px;
  width: 60px;
  background-color: var(--color-burnt-sienna);
  margin: 20px auto 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.menu-category h3 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-burnt-sienna) !important;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 91, 39, 0.3);
  letter-spacing: 1px;
}

.menu-item {
  margin-bottom: 30px;
}

.menu-item:last-child {
  margin-bottom: 0;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.menu-item-header h4 {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  color: #17241A !important;
  margin: 0;
  padding-right: 15px;
}

.menu-item-header .price {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-burnt-sienna) !important;
  white-space: nowrap;
}

.menu-item p {
  font-family: var(--font-secondary);
  font-size: 15px;
  line-height: 1.5;
  color: #17241A !important;
  opacity: 0.85;
  margin: 0;
}

.menu-footer {
  margin-top: 80px;
  text-align: center;
}

.btn-outline-dark {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid #17241A;
  color: #17241A;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #17241A;
  color: #F8F5EB;
}

/* -------------------------------------
   GALLERY SECTION
------------------------------------- */
.gallery-section {
  background-color: var(--color-dark-cork);
  padding: 120px var(--spacing-45);
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-title {
  font-family: var(--font-primary);
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 2px;
  color: #F8F5EB;
  margin-bottom: 60px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 300px;
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery-item {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img,
.gallery-item .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.item-tall {
  grid-row: span 2;
}

.item-wide {
  grid-column: span 2;
}

/* -------------------------------------
   FAQ SECTION (SEO)
------------------------------------- */
.faq-section {
  padding: 100px 5% 60px 5%;
  background-color: var(--color-obsidian);
  color: var(--color-warm-cream);
  border-top: 1px solid rgba(248, 245, 235, 0.05);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-burnt-sienna);
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(248, 245, 235, 0.1);
  padding: 20px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-warm-cream);
  font-family: var(--font-halyard);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  text-align: left;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-burnt-sienna);
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}

.faq-item.active .faq-question {
  color: var(--color-burnt-sienna);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding-top: 15px;
  color: #a09d94;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* -------------------------------------
   FOOTER SECTION
------------------------------------- */
.main-wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--surface-canvas);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* Footer (Sticky Curtain Reveal) */
.footer-section {
  position: sticky;
  bottom: 0;
  z-index: 0;
  background-color: var(--color-obsidian);
  padding: 100px 5% 40px 5%;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 25px;
  filter: brightness(0.9);
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #F8F5EB;
  margin-bottom: 25px;
}

.footer-info p, .footer-brand p {
  color: #a09d94;
  line-height: 1.6;
  max-width: 320px;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.map-container iframe {
  width: 100%;
  height: 180px;
  display: block;
}

.footer-social {
}

.footer-info .btn-outline-light {
  display: inline-block;
  padding: 12px 30px;
  font-size: 12px;
  letter-spacing: 2px;
  border: 1px solid rgba(248, 245, 235, 0.3);
  color: var(--color-warm-cream);
  background: transparent;
  transition: all 0.3s ease;
}

.footer-info .btn-outline-light:hover {
  background: var(--color-warm-cream);
  color: var(--color-dark-cork);
  border-color: var(--color-warm-cream);
}

.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 25px; }

.btn-outline-light {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid var(--color-burnt-sienna);
  color: var(--color-burnt-sienna);
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--color-burnt-sienna);
  color: #000;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin-bottom: 15px;
}

.social-links a {
  color: #a09d94;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #F8F5EB;
}

  .footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--color-cork-shadow);
    text-align: center;
    font-size: 12px;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Publicidad Putumayo Elite Signature */
  .pp-elite-signature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #888;
    text-decoration: none;
    font-family: var(--font-halyard);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 15px;
  }

  .pp-elite-signature .pp-copy {
    display: inline-block;
  }

  .pp-elite-signature strong {
    font-weight: 700;
    color: inherit;
  }

  .pp-elite-signature:hover,
  .pp-elite-signature:focus-visible {
    opacity: 1;
    color: var(--color-burnt-sienna);
    transform: translateY(-2px);
    outline: none;
  }

  .pp-elite-signature svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .pp-elite-signature:hover svg {
    transform: scale(1.1) rotate(2deg);
  }

/* -------------------------------------
   RESERVATION MODAL
------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-image: linear-gradient(to bottom, rgba(5, 5, 5, 0.92), rgba(16, 9, 4, 0.97)), url('bg.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(220, 80, 0, 0.3);
  padding: 40px 30px;
  width: 90%;
  max-width: 450px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  transition: all 0.4s ease;
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 237, 215, 0.05);
  box-sizing: border-box !important;
}

.modal-overlay.active .modal-content {
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #F8F5EB;
  font-size: 30px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  opacity: 1;
}

/* Video Modal Specifics */
.video-modal-content {
  background-color: transparent;
  padding: 0;
  width: auto;
  max-width: 95%;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  transition: all 0.4s ease;
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.9);
}

.modal-overlay.active .video-modal-content {
  transform: translate(-50%, -50%);
}

.video-container {
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-title {
  font-family: var(--font-primary);
  color: var(--color-burnt-sienna);
  font-size: 28px;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 1px;
}

.modal-subtitle {
  font-family: var(--font-secondary);
  font-size: 13px;
  color: rgba(248, 245, 235, 0.6);
  text-align: center;
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-family: var(--font-secondary);
  font-size: 11px;
  color: rgba(248, 245, 235, 0.8);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(248, 245, 235, 0.2);
  padding: 12px 15px;
  color: var(--color-warm-cream) !important;
  font-family: var(--font-halyard);
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box !important;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-burnt-sienna);
  background: rgba(0, 0, 0, 0.6);
}

.btn-submit-wa {
  width: 100%;
  background-color: var(--color-burnt-sienna);
  color: #000;
  border: none;
  padding: 15px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.scroll-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(248, 245, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  animation: bounce-subtle 2s infinite ease-in-out;
  transition: all 0.3s ease;
}



@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.btn-submit-wa:hover {
  background-color: #e06c3a;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    background-image: url('AMAZONICO-PROYECTO-INVESTIGATIVO.jpg') !important;
    min-height: 100vh;
    height: auto;
    background-position: center;
    background-size: cover;
    background-color: var(--color-dark-cork);
  }

  .hero-overlay {
    display: block;
  }

  .mobile-hero-image {
    display: block !important;
    width: 100%;
    height: 40vh; /* Altura reducida a petición del usuario */
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
  }

  .navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
  }

  .nav-logo {
    height: 35px; /* +5px */
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    padding: 40px 20px 20px 20px;
    height: auto;
    min-height: auto;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.98) 100%), url('bg.jpg');
    background-size: cover;
    background-position: center;
    overflow-y: visible;
  }
  
  .hero-top-left {
    margin-top: 0;
    order: 1;
  }
  
  .hero-title {
    font-size: clamp(38px, 11vw, 60px) !important;
    line-height: 0.95;
    margin-bottom: 15px;
  }

  .hero-center-right {
    max-width: 100%;
    margin-top: 15px;
    font-size: 14px;
    align-self: flex-start;
    order: 2;
  }

  .hero-bottom-left {
    margin-top: 30px;
    align-self: flex-start;
    max-width: 280px;
    order: 3;
    border-left: 2px solid var(--color-burnt-sienna);
    padding-left: 15px;
  }

  .hero-bottom-left p {
    text-align: left !important;
    font-size: 13px;
    margin-top: 10px;
  }
  
  .lusion-badge {
    width: auto;
  }

  .video-chip {
    align-self: flex-end;
    width: 168px !important;
    height: 84px;
    margin-top: 15px;
    margin-bottom: 25px;
    order: 4;
  }
  
  .hero-bottom-center {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 10px;
    order: 5;
    align-self: center;
  }

  .vertical-label {
    display: none;
  }

  .video-modal-content {
    width: 85vw !important;
    height: 80vh !important;
    max-width: 400px;
  }
  
  .video-container {
    height: 100%;
  }

  #amaz-video-player {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover;
  }

  /* Hamburger Menu Activation on Mobile/Tablet */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
    
    /* Fade overlay instead of slide to prevent overflow */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .nav-links a {
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  /* Hamburger Animation */
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .manifesto-section {
    padding: 80px 20px;
  }
  .manifesto-title {
    margin-bottom: 50px;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .manifesto-text {
    order: 2;
  }
  .manifesto-image {
    order: 1;
    aspect-ratio: 1/1;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .menu-col {
    gap: 40px;
  }
  .menu-section {
    padding: 80px 20px;
  }
  .menu-header {
    margin-bottom: 50px;
  }
  .gallery-section {
    padding: 80px 20px;
  }
  .item-wide {
    grid-column: span 1; /* Disable wide items on mobile to avoid breaking grid */
  }
  .footer-section {
    padding: 60px 20px 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  /* Fix Modal Responsiveness */
  .modal-content {
    padding: 30px 20px 25px 20px;
    width: 95%;
  }
  .modal-title {
    font-size: 22px;
  }
  .modal-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .btn-submit-wa {
    font-size: 13px;
    padding: 15px 10px;
    flex-wrap: wrap;
    text-align: center;
  }
  .modal-close {
    top: 5px;
    right: 15px;
  }

  /* Footer Mobile Refinements */
  .footer-section {
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto;
    display: block;
    height: 55px;
  }
  .footer-brand p, .footer-info p {
    margin: 0 auto;
    max-width: 300px;
  }
  .btn-outline-light {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }
  .social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .social-links li {
    margin-bottom: 0;
  }
}

/* -------------------------------------
   HISTORY SECTION
------------------------------------- */
.history-section {
  padding: 120px 5%;
  background-color: var(--color-warm-cream);
  color: var(--color-obsidian);
  position: relative;
}

.history-container {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.history-title {
  font-family: var(--font-halyard);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--color-dark-cork);
  margin-bottom: 30px;
  line-height: 1.3;
}

.history-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-burnt-sienna);
  margin: 20px auto 0;
}

.history-content p {
  font-family: var(--font-halyard);
  font-size: clamp(18px, 2.5vw, 22px) !important;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--color-grey-brown) !important;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.history-content p strong {
  font-weight: 700;
  color: var(--color-dark-cork) !important;
}

/* Force visibility over Astra global light-mode hacks */
body.light-mode .history-section h2.history-title {
  color: var(--color-obsidian) !important;
}
body.light-mode .history-section .history-content p {
  color: var(--color-grey-brown) !important;
}
body.light-mode .history-section .history-content p strong {
  color: var(--color-dark-cork) !important;
}

/* -------------------------------------
   FLOATING WHATSAPP BUTTON
------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 8px 15px rgba(37, 211, 102, 0.4));
}

@media (max-width: 600px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}


/* Removido el navbar transparent !important para permitir el fondo fijo en movil */

