/* ===================================================
   GESSAMÍ RESTAURANT — styles.css
   Archetype: Editorial Light Cream
   v20260622
   =================================================== */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f7f4ef;
  --bg-2:     #ede8df;
  --bg-3:     #e0d9cc;
  --paper:    #ffffff;
  --ink:      #1c1c1c;
  --ink-soft: #3a3a3a;
  --ink-mute: #7a7a7a;
  --green:    #4a7c59;
  --green-d:  #3a6347;
  --cream:    #f7f4ef;
  --line:     rgba(28,28,28,0.12);
  --nav-h:    70px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---- CONTAINERS ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,124,89,0.28);
}
.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid var(--green);
  color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- SECTION LABELS ---- */
.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.85rem;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.42s; }

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* Logo y links blancos sobre el hero */
.nav:not(.scrolled) .nav-logo,
.nav:not(.scrolled) .nav-menu a {
  color: rgba(255,255,255,0.92);
}
.nav:not(.scrolled) .nav-logo em { color: rgba(255,255,255,0.7); }
.nav:not(.scrolled) .nav-menu a::after { background: #fff; }
.nav:not(.scrolled) .nav-menu a:hover { color: #fff; }
.nav:not(.scrolled) .nav-burger span { background: #fff; }
.nav:not(.scrolled) .nav-cta-btn {
  background: rgba(255,255,255,0.18) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.nav:not(.scrolled) .nav-cta-btn:hover {
  background: #fff !important;
  color: var(--green) !important;
}

.nav.scrolled {
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: "Great Vibes", cursive;
  font-size: 1.9rem;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  letter-spacing: 0;
}
.nav-logo em { color: var(--green); font-style: normal; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0;
  height: 1.5px;
  width: 0;
  background: var(--green);
  transition: width 0.28s var(--ease);
}
.nav-menu a:not(.nav-cta-btn):hover { color: var(--ink); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta-btn {
  background: transparent !important;
  color: var(--green) !important;
  padding: 0.55rem 1.4rem !important;
  border: 1.5px solid var(--green) !important;
  border-radius: 100px !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  transition: background 0.28s var(--ease), color 0.28s var(--ease), border-color 0.28s !important;
}
.nav-cta-btn:hover {
  background: var(--green) !important;
  color: #fff !important;
  border-color: var(--green) !important;
  transform: none !important;
}
.nav-cta-btn::after { display: none !important; }

/* Versión sobre hero (sin scroll) — verde sólido siempre visible */
.nav:not(.scrolled) .nav-cta-btn {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff !important;
}
.nav:not(.scrolled) .nav-cta-btn:hover {
  background: var(--green-d) !important;
  border-color: var(--green-d) !important;
  color: #fff !important;
  opacity: 1 !important;
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  display: block;
  transition: all 0.3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--green); }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.75rem;
  color: var(--ink-mute);
  padding: 0.5rem;
  line-height: 1;
}

@media (max-width: 820px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
}

/* ===================================================
   HERO — HOME
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95) saturate(1.2) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.20) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-location {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.85);
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}

.hero-title {
  font-family: "Great Vibes", cursive;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(247,244,239,0.88);
  margin-top: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.75s forwards;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1s forwards;
}
.hero-actions .btn-primary { background: var(--green); }
.hero-actions .btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-actions .btn-ghost:hover { background: #fff; color: var(--ink); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 7rem);
  padding-bottom: 7rem;
  background: var(--bg-2);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.0) saturate(1.3) contrast(1.05);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 700;
  color: #fff;
  margin-top: 0.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.page-hero-content .eyebrow {
  color: rgba(247,244,239,0.75);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.page-hero-no-img {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  background: var(--bg-2);
}
.page-hero-no-img .page-hero-content h1 { color: var(--ink); }

/* Editorial mosaic grid */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 300px 210px;
  gap: 0.55rem;
  margin-top: 2.5rem;
}
.editorial-grid .gallery-item { height: 100%; }
.eg-main { grid-area: 1 / 1 / 2 / 5; }
.eg-a    { grid-area: 2 / 1 / 3 / 2; }
.eg-b    { grid-area: 2 / 2 / 3 / 3; }
.eg-c    { grid-area: 2 / 3 / 3 / 4; }
.eg-d    { grid-area: 2 / 4 / 3 / 5; }
.editorial-grid .gallery-overlay {
  background: linear-gradient(to top, rgba(74,124,89,0.55) 0%, rgba(0,0,0,0) 60%);
}
@media (max-width: 700px) {
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px 160px;
  }
  .eg-main { grid-area: 1 / 1 / 2 / 3; }
  .eg-a    { grid-area: 2 / 1 / 3 / 2; }
  .eg-b    { grid-area: 2 / 2 / 3 / 3; }
  .eg-c    { grid-area: 3 / 1 / 4 / 2; }
  .eg-d    { grid-area: 3 / 2 / 4 / 3; }
}

/* Menu gallery: large left + 2x2 grid right */
.menu-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.6rem;
  margin-top: 2.5rem;
  height: 480px;
}
.menu-gallery-main {
  height: 100%;
}
.menu-gallery-main .gallery-item {
  height: 100%;
}
.menu-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  height: 100%;
}
.menu-gallery-grid .gallery-item {
  height: 100%;
}
@media (max-width: 700px) {
  .menu-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
  .menu-gallery-main { height: 260px; }
  .menu-gallery-grid { height: 260px; }
}

/* Gallery stack (horizontal main + two below) */
.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.gallery-stack-main {
  height: 400px;
}
.gallery-stack-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  height: 280px;
}
@media (max-width: 640px) {
  .gallery-stack-main { height: 240px; }
  .gallery-stack-row { height: 160px; }
}

/* Image band with parallax quote */
.img-band {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-band-bg {
  position: absolute;
  inset: -80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}
.img-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
}
.img-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.img-band-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin: 0;
}
.img-band-attr {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Premium gallery */
.gallery-premium {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 560px;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.gallery-main {
  height: 560px;
}
.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 560px;
}
.gallery-side .gallery-item {
  flex: 1;
  min-height: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 100%;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.02em;
}
@media (max-width: 680px) {
  .gallery-premium {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-main { height: 280px; }
  .gallery-side { flex-direction: row; height: 180px; }
  .gallery-side .gallery-item { flex: 1; }
}

/* Placeholder image box */
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--ink-mute);
}
.img-placeholder-icon { font-size: 2.5rem; opacity: 0.35; }
.img-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===================================================
   MARQUEE
   =================================================== */
.marquee {
  background: var(--green);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding-inline: 1.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.marquee-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

/* ===================================================
   HOME — PROPUESTAS (3 cards)
   =================================================== */
.propuestas {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  margin-top: 0.4rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

/* Imagen de fondo a pantalla completa */
.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s;
  display: block;
}
.card:hover .card-img {
  transform: scale(1.06);
  filter: brightness(0.75) saturate(1.1);
}

/* Gradiente permanente en la parte inferior */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.2) 45%,
    transparent 70%
  );
  z-index: 1;
  transition: opacity 0.4s;
}

/* Overlay oscuro en hover */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.25);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover::after { opacity: 1; }

/* Contenido siempre en la parte inferior */
.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.75rem 1.75rem 2rem;
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.card-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.7);
  margin-bottom: 0.5rem;
  display: block;
}
.card-body h3 {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.card-body p {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.82);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.35s, margin 0.4s;
}
.card:hover .card-body p {
  max-height: 80px;
  opacity: 1;
}
.card-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: #fff;
  border-radius: 100px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.card-link span { position: relative; z-index: 1; }
.card-link svg { position: relative; z-index: 1; transition: transform 0.25s var(--ease); }
.card-link:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.card-link:hover svg { transform: translateX(3px); }

@media (max-width: 800px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .cards-grid { grid-template-columns: 1fr; } }

/* ===================================================
   HOME — FILOSOFÍA HIGHLIGHT
   =================================================== */
.filosofia-highlight {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
  text-align: center;
}
.filosofia-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.filosofia-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.filosofia-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: auto;
  /* Halo radial muy sutil solo detrás del texto */
  isolation: isolate;
}
.filosofia-content::before {
  content: "";
  position: absolute;
  inset: -3rem -4rem;
  background: radial-gradient(ellipse at center, rgba(247,244,239,0.55) 0%, transparent 72%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}
.filosofia-content .eyebrow {
  color: var(--green);
  text-shadow: 0 1px 8px rgba(247,244,239,0.9);
}
.filosofia-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 12px rgba(247,244,239,0.8), 0 2px 24px rgba(247,244,239,0.6);
}
.filosofia-content h2 em { color: var(--green); }
.filosofia-content p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 55ch;
  margin-inline: auto;
  text-shadow: 0 1px 8px rgba(247,244,239,0.8);
}

/* ===================================================
   HOME — NOVEDADES BLOCK
   =================================================== */
.novedades-block {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-2);
}
.novedades-block .section-head { text-align: left; }

.blog-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--paper);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(28,28,28,0.09);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-img-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.35;
}
.blog-card-body { padding: 1.25rem 1.5rem 1.75rem; }
.blog-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.blog-card-featured h3 { font-size: 1.4rem; }
.blog-card p {
  font-size: 0.83rem;
  color: var(--ink-mute);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .blog-row { grid-template-columns: 1fr 1fr; }
  .blog-card-featured { grid-column: 1/-1; }
}
@media (max-width: 520px) { .blog-row { grid-template-columns: 1fr; } }

/* ===================================================
   VINEYARD SECTION
   =================================================== */
.vineyard-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  text-align: left;
}
.vineyard-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.vineyard-section > .container {
  position: relative;
  z-index: 2;
}
.vineyard-overlay {
  display: none;
}
.vineyard-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  isolation: isolate;
}
.vineyard-content::before {
  content: "";
  position: absolute;
  inset: -3rem -5rem;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, transparent 72%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.vineyard-content h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-style: italic;
  color: var(--bg);
  margin: 0.5rem 0 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
}
.vineyard-content p {
  font-size: 1rem;
  color: rgba(247,244,239,0.95);
  line-height: 1.78;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.vineyard-content em {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: rgba(247,244,239,0.98);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.vineyard-content .btn-ghost {
  border-color: rgba(247,244,239,0.6);
  color: var(--bg);
}
.vineyard-content .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
}
@media (max-width: 600px) {
  .vineyard-content { max-width: 100%; text-align: center; }
}

/* ===================================================
   CTA BAND
   =================================================== */
.cta-band {
  background: var(--green);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-style: italic;
  color: #fff;
  margin: 0.5rem 0 1rem;
}
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--green); }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   INNER PAGE SECTIONS
   =================================================== */
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.section-alt { background: var(--bg-2); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.two-col-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  transition: transform 0.5s var(--ease);
}
.two-col-img:hover img { transform: scale(1.02); }

.text-block h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 600;
  margin: 0.4rem 0 1.25rem;
}
.text-block h2 em { color: var(--green); }
.text-block p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.78;
  margin-bottom: 1rem;
  max-width: 58ch;
}
.text-block .btn { margin-top: 1.25rem; }

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.flip { direction: ltr; }
}

/* ===================================================
   FEATURES LIST
   =================================================== */
.menu-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.menu-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 2rem 1.5rem;
  background: var(--paper);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s ease;
}
.menu-pillar:last-child { border-right: none; }
.menu-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.menu-pillar:hover::before { transform: scaleX(1); }
.menu-pillar:hover { background: #fff; }
.menu-pillar-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.menu-pillar:hover .menu-pillar-icon {
  background: var(--green);
  color: #fff;
}
.menu-pillar h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.menu-pillar p {
  font-size: 0.82rem;
  color: var(--ink-mute);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .menu-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
  .menu-pillar:nth-child(3) { border-right: none; }
  .menu-pillar:nth-child(4) { border-right: 1px solid var(--line); }
}
@media (max-width: 580px) {
  .menu-pillars { grid-template-columns: 1fr 1fr; }
  .menu-pillar:nth-child(2n) { border-right: none; }
  .menu-pillar:nth-child(3) { border-right: 1px solid var(--line); }
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--paper);
  border-radius: 3px;
  border-left: 3px solid var(--green);
  transition: transform 0.25s var(--ease);
}
.feature-item:hover { transform: translateX(4px); }
.feature-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.05rem; }
.feature-item h4 {
  font-size: 0.97rem;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.feature-item p { font-size: 0.82rem; color: var(--ink-mute); line-height: 1.55; }

/* ===================================================
   DESAYUNOS — CAT GRID
   =================================================== */
.cat-grid {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.cat-card {
  flex: 1;
  background: var(--paper);
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 0.28s var(--ease);
  position: relative;
}
.cat-card:last-child { border-right: none; }
.cat-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.cat-card:hover { background: rgba(74,124,89,0.05); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(74,124,89,0.08);
  margin-inline: auto;
  transition: background 0.28s;
}
.cat-card:hover .cat-icon { background: rgba(74,124,89,0.18); }
.cat-card h3 {
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
  color: var(--ink);
}
@media (max-width: 640px) {
  .cat-grid { flex-wrap: wrap; }
  .cat-card { flex: 1 1 45%; border-bottom: 1px solid var(--line); }
}

/* ===================================================
   CATERING
   =================================================== */
.catering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.catering-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--paper);
  border-radius: 3px;
}
.catering-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.catering-item h4 { font-size: 1rem; font-style: italic; font-weight: 600; margin-bottom: 0.35rem; }
.catering-item p { font-size: 0.85rem; color: var(--ink-mute); line-height: 1.55; }

.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 1.75rem;
  transition: background 0.25s, transform 0.25s;
}
.pdf-btn:hover { background: var(--green); transform: translateY(-2px); }
.pdf-btn-icon { font-size: 1.1rem; }

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

/* ===================================================
   CONTACTO
   =================================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-style: italic;
  margin: 0.4rem 0 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.2rem;
}
.contact-value { font-size: 0.93rem; color: var(--ink-soft); }
.contact-value a { transition: color 0.2s; }
.contact-value a:hover { color: var(--green); }

.contact-map {
  margin-top: 1.5rem;
  border-radius: 3px;
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 230px; border: none; display: block; }

/* Form */
.contact-form {
  background: var(--paper);
  border-radius: 3px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.contact-form h3 {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.contact-form > p {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid var(--bg-3);
  border-radius: 2px;
  background: var(--bg);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--green);
  color: #fff;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  transition: background 0.25s, transform 0.25s;
}
.form-submit:hover { background: var(--green-d); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; pointer-events: none; }

.form-msg {
  display: none;
  text-align: center;
  padding: 1.5rem;
  margin-top: 1rem;
  border-radius: 3px;
}
.form-msg.success { display: block; background: rgba(74,124,89,0.1); color: var(--green); font-weight: 600; }
.form-msg.error { display: block; background: rgba(180,50,50,0.1); color: #b43232; font-weight: 600; }

@media (max-width: 760px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===================================================
   SOBRE NOSOTROS
   =================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  padding: 2rem 1.75rem;
  background: var(--paper);
  border-radius: 3px;
}
.value-num {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.value-card h3 { font-size: 1.05rem; font-style: italic; font-weight: 600; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--ink-mute); line-height: 1.6; }

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

/* ===================================================
   INICIO — premium enhancements
   =================================================== */

/* Títulos de sección con acento inferior verde */
.section-head h2,
.novedades-block .section-head h2 {
  position: relative;
  display: inline-block;
}
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--green);
}
.section-head.text-center h2::after,
.section-head[style*="text-align"] h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Blog/noticias cards — hover más premium */
.blog-card {
  border-radius: 4px;
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(74,124,89,0.08);
  border: 1px solid rgba(74,124,89,0.2);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.65rem;
}
.blog-card h3 {
  font-size: 1.05rem !important;
  line-height: 1.3;
}
.blog-card-featured h3 {
  font-size: 1.3rem !important;
}
.blog-card p {
  border-top: 1px solid var(--line);
  padding-top: 0.65rem;
  margin-top: 0.5rem;
}

/* CTA band — tipografía más impactante */
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 4rem) !important;
  letter-spacing: -0.02em;
}
.cta-band .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.cta-band .eyebrow::before,
.cta-band .eyebrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(247,244,239,0.5);
}

/* Footer logo más grande */
.footer-logo {
  font-size: 2.4rem !important;
  letter-spacing: -0.01em;
}

/* Marquee refinado */
.marquee { padding: 1.1rem 0; }
.marquee-item {
  font-size: 0.68rem !important;
  letter-spacing: 0.2em !important;
}

/* Hero scroll hint más refinado */
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}

/* ===================================================
   SOBRE NOSOTROS — premium enhancements
   =================================================== */

/* Línea verde decorativa antes de eyebrows */
.section .eyebrow,
.page-hero-content .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-start;
  margin-bottom: 0.85rem;
}
.section-head .eyebrow {
  justify-content: center;
}
.section .eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green);
  flex-shrink: 0;
}

/* Imagen premium — marco offset con box-shadow */
.two-col-img img {
  box-shadow:
    12px 12px 0 0 rgba(74,124,89,0.35),
    0 16px 40px rgba(0,0,0,0.12);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease) !important;
}
.two-col-img:hover img {
  box-shadow:
    6px 6px 0 0 rgba(74,124,89,0.55),
    0 20px 50px rgba(0,0,0,0.18) !important;
  transform: translate(-3px, -3px) scale(1.01) !important;
}

/* Pull quote decorativo en la sección historia */
.text-block p:first-of-type::first-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-style: italic;
  color: var(--green);
  float: left;
  line-height: 0.8;
  margin: 0.1rem 0.25rem 0 0;
}

/* Valores — números grandes y dramáticos */
.value-num {
  font-family: "Great Vibes", cursive;
  font-size: 4rem !important;
  color: var(--green) !important;
  line-height: 1 !important;
  margin-bottom: 0.5rem !important;
  opacity: 0.9;
}

/* Cards de valores mejoradas */
.value-card {
  border-left: 3px solid var(--green) !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s !important;
}
.value-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 40px rgba(74,124,89,0.12) !important;
}
.value-card h3 {
  font-size: 1.15rem !important;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem !important;
}

/* ===================================================
   VALORES SECTION (sobre nosotros)
   =================================================== */
.valores-section {
  position: relative;
  overflow: hidden;
}
.valores-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/img/valores-bg.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) brightness(0.92);
  z-index: 0;
}
.valores-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247,244,239,0.55);
  z-index: 1;
}
.valores-section > .container {
  position: relative;
  z-index: 2;
}
.valores-section .value-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--ink);
  color: rgba(247,244,239,0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 0.75rem;
  display: block;
}
.footer-logo em { color: var(--green); }
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 28ch;
  margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(247,244,239,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: rgba(247,244,239,0.6);
  transition: all 0.22s;
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.35);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bg); }

.footer-bottom {
  border-top: 1px solid rgba(247,244,239,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(247,244,239,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(247,244,239,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(247,244,239,0.7); }

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

/* ===================================================
   KEYFRAMES
   =================================================== */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.55); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-play-state: paused; }
  .hero-location, .hero-title, .hero-subtitle, .hero-actions, .hero-scroll {
    animation-duration: 0.01s !important;
  }
}
