/* ============================================================
   ACONTRAMAR — Premium Restaurant Web · Old Money Edition
   Alture · acontramar.com
   ============================================================ */

/* ─── 1. Design Tokens ──────────────────────────────────────── */
:root {
  --ink:        #0c1824;
  --forest:     #0e2235;
  --moss:       #163456;
  --gold:       #bf8f20;
  --gold-light: #d4aa44;
  --gold-pale:  #e8c96a;
  --gold-dim:   rgba(191,143,32,.2);
  --cream:      #f5ead0;
  --parchment:  #e8d9b8;
  --sand:       #d4c498;
  --terracotta: #9c3520;
  --white:      #fdf8ee;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  --nav-h:      80px;
  --pad:        clamp(24px, 5vw, 80px);
  --section:    clamp(80px, 10vw, 160px);

  --ease:       cubic-bezier(.16,1,.3,1);
  --ease-in:    cubic-bezier(.4,0,.2,1);

  --z-nav:      100;
  --z-cursor:   9999;
  --z-loader:   99999;
}

/* ─── 2. Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ─── 3. Page Loader ─────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: var(--z-loader);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 48px;
  transition: opacity .9s var(--ease), visibility .9s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__logo {
  width: clamp(200px, 40vw, 340px);
  opacity: 0;
  transform: translateY(16px);
  animation: loaderIn .9s var(--ease) .2s forwards;
}
.loader__bar {
  width: clamp(160px, 30vw, 260px);
  height: 1px;
  background: rgba(191,143,32,.15);
  position: relative; overflow: hidden; border-radius: 1px;
}
.loader__bar::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loaderBar 1.6s var(--ease) .4s forwards;
}
@keyframes loaderIn  { to { opacity:1; transform:none; } }
@keyframes loaderBar { to { transform: none; } }

/* ─── 4. Custom Cursor ───────────────────────────────────────── */
.cursor {
  position: fixed; pointer-events: none;
  z-index: var(--z-cursor);
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

.cursor__dot {
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  position: absolute;
  transform: translate(-50%,-50%);
}
.cursor__ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .35s;
}
.cursor.hover .cursor__ring { width: 72px; height: 72px; border-color: #fff; }
.cursor.hidden-cursor .cursor__dot,
.cursor.hidden-cursor .cursor__ring { opacity: 0; }

/* ─── 5. Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s var(--ease-in), backdrop-filter .5s, box-shadow .5s;
}
.nav.scrolled {
  background: rgba(12,24,36,.95);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--gold-dim);
}

.nav__logo { height: 30px; width: auto; flex-shrink: 0; }
.nav__logo-link { display: flex; }

.nav__links { display: flex; gap: 22px; list-style: none; }

.nav__link {
  font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,234,208,.8);
  position: relative; transition: color .3s;
}
.nav__link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta {
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 11px 26px; border-radius: 2px;
  transition: background .3s, transform .3s var(--ease);
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Mobile toggle */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
}
.nav__toggle span {
  display: block; width: 24px; height: 1px;
  background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.nav__mobile {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: calc(var(--z-nav) - 1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  padding-top: var(--nav-h);
  opacity: 0; visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
.nav__mobile.open { opacity: 1; visibility: visible; }

.nav__mobile-link {
  font-family: var(--font-serif);
  font-size: clamp(36px, 8vw, 64px); font-weight: 300;
  color: var(--cream); transition: color .3s;
}
.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-divider {
  width: 40px; height: 1px;
  background: var(--gold-dim);
}

/* ─── 6. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 16px 34px; border-radius: 2px;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-101%);
  transition: transform .5s var(--ease);
}
.btn:hover::before { transform: none; }
.btn:hover { transform: translateY(-2px); }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { box-shadow: 0 8px 30px rgba(191,143,32,.4); }

.btn--outline {
  border: 1px solid rgba(245,234,208,.3);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--gold); }

.btn--dark { background: var(--forest); color: var(--cream); }

/* ─── 7. Section helpers ─────────────────────────────────────── */
.section-tag {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 60px); font-weight: 300;
  line-height: 1.1; color: var(--white);
}
.section-title--dark { color: var(--ink); }

.gold-rule {
  width: 40px; height: 1px;
  background: var(--gold); margin-bottom: 20px;
}

/* ─── 8. Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100dvh; min-height: 620px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
}

/* Slideshow */
.hero__slides {
  position: absolute; inset: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 2s ease;
  transform: scale(1.04);
  will-change: transform, opacity;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenBurns 9s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

/* Hero WOW — golden light sweep (once on load) */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 35%,
    rgba(212,170,68,.14) 49%,
    rgba(255,255,255,.08) 50%,
    rgba(212,170,68,.10) 51%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: heroSheen 1.8s cubic-bezier(.25,.46,.45,.94) 2.2s forwards;
}
@keyframes heroSheen {
  from { transform: translateX(-120%); }
  to   { transform: translateX(140%); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,24,36,.05)  0%,
    rgba(12,24,36,.3)  45%,
    rgba(12,24,36,.92) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1400px; margin: 0 auto;
  padding: 0 var(--pad) clamp(64px, 9vw, 130px);
}
.hero__tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  overflow: hidden;
}
.hero__tag span { display: block; transform: translateY(110%); }

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 9.5vw, 148px); font-weight: 300;
  line-height: .92; color: var(--white);
  max-width: 860px; margin-bottom: 28px;
}
.hero__title .word { overflow: hidden; display: block; }
.hero__title .word span { display: block; transform: translateY(110%); }

.hero__sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(245,234,208,.65); max-width: 420px;
  line-height: 1.8; overflow: hidden;
}
.hero__sub span { display: block; transform: translateY(30px); opacity: 0; }

.hero__actions {
  margin-top: 40px; display: flex; gap: 18px;
  align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 36px; right: var(--pad);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; z-index: 2;
  opacity: 0;
}
.hero__scroll-label {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(245,234,208,.35);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite 2s;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform: scaleY(1); }
  50%      { opacity:.3; transform: scaleY(.4); }
}

/* ─── 9. Tagline Strip ───────────────────────────────────────── */
.tagline {
  background: var(--gold);
  padding: 26px var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 60px); overflow: hidden;
}
.tagline__text {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.5vw, 26px); font-style: italic; font-weight: 400;
  color: var(--ink); white-space: nowrap;
}
.tagline__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(12,24,36,.3); flex-shrink: 0;
}

/* ─── 10. Manifesto ──────────────────────────────────────────── */
.manifesto {
  background: var(--forest);
  padding: var(--section) var(--pad);
  position: relative; overflow: hidden;
}
.manifesto::before {
  content: 'ACM';
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 320px; font-weight: 200;
  color: rgba(191,143,32,.04);
  line-height: 1; pointer-events: none; user-select: none;
}
.manifesto__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 110px); align-items: center;
}
.manifesto__text { max-width: 560px; }
.manifesto__text p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.95; color: rgba(245,234,208,.6);
  margin-bottom: 22px;
}
.manifesto__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px); font-style: italic; font-weight: 300;
  color: var(--gold); line-height: 1.4;
  padding-left: 28px; margin: 36px 0;
  border-left: 2px solid var(--gold-dim);
}
.manifesto__img {
  aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
}
.manifesto__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.manifesto__img:hover img { transform: scale(1.05); }

/* ─── 11. Pillars ────────────────────────────────────────────── */
.pillars {
  background: var(--ink);
  padding: var(--section) var(--pad);
}
.pillars__header {
  text-align: center; max-width: 560px;
  margin: 0 auto clamp(50px, 7vw, 90px);
}
.pillars__grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3px; max-width: 1400px; margin: 0 auto;
}
.pillar {
  position: relative; aspect-ratio: 2/3;
  overflow: hidden; cursor: default;
}
.pillar__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.pillar:hover .pillar__img { transform: scale(1.07); }

.pillar__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(12,24,36,.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 30px;
}
.pillar__num {
  font-family: var(--font-serif); font-size: 72px; font-weight: 200;
  color: rgba(191,143,32,.2); line-height: 1; margin-bottom: 14px;
}
.pillar__tag {
  font-size: 9px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.pillar__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px); font-weight: 300;
  color: var(--white); margin-bottom: 10px;
}
.pillar__desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(245,234,208,.55);
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease), opacity .5s;
  opacity: 0;
}
.pillar:hover .pillar__desc { max-height: 100px; opacity: 1; }

/* ─── 12. Gallery ────────────────────────────────────────────── */
.gallery {
  background: var(--ink);
  padding: var(--section) 0;
  overflow: hidden;
}
.gallery__header {
  padding: 0 var(--pad);
  max-width: 1400px; margin: 0 auto clamp(40px, 5vw, 60px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
}
.gallery__hint {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,234,208,.25);
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.gallery__hint::before {
  content: ''; width: 30px; height: 1px; background: rgba(245,234,208,.15);
}
.gallery__track {
  display: flex; gap: 14px;
  padding: 0 var(--pad);
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }

.gallery__item {
  flex-shrink: 0; scroll-snap-align: start;
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.gallery__item:nth-child(odd)  { width: clamp(240px,28vw,400px); aspect-ratio: 3/4; }
.gallery__item:nth-child(even) { width: clamp(300px,36vw,500px); aspect-ratio: 4/3; align-self: center; }

.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }

/* ─── 13. Carta Preview ──────────────────────────────────────── */
.preview {
  background: var(--parchment);
  padding: var(--section) var(--pad);
  color: var(--ink);
}
.preview__inner { max-width: 1400px; margin: 0 auto; }

.preview__top {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: clamp(50px, 7vw, 80px); flex-wrap: wrap;
}
.preview__link {
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); display: flex; align-items: center; gap: 14px;
  flex-shrink: 0; transition: gap .3s;
}
.preview__link::after { content: '→'; font-size: 16px; }
.preview__link:hover { gap: 22px; }

.preview__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: clamp(40px, 5vw, 80px);
}

.menu-cat__title {
  font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 8px;
}
.menu-cat__sub {
  font-size: 13px; color: rgba(10,14,8,.5); font-style: italic;
  margin-bottom: 24px; line-height: 1.6;
}
.menu-cat__rule { width: 100%; height: 1px; background: rgba(10,14,8,.1); margin-bottom: 24px; }

.menu-dish {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid rgba(10,14,8,.06);
}
.menu-dish:last-child { border-bottom: none; }

.menu-dish__info { flex: 1; min-width: 0; }
.menu-dish__name {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.4vw, 21px); font-weight: 500; color: var(--ink);
}
.menu-dish__desc {
  font-size: 12px; color: rgba(10,14,8,.48); margin-top: 3px; line-height: 1.5;
}
.menu-dish__price {
  font-family: var(--font-serif); font-size: 18px;
  color: var(--terracotta); flex-shrink: 0;
}

/* ─── 14. About Strip ────────────────────────────────────────── */
.about {
  background: var(--ink);
  padding: var(--section) var(--pad);
}
.about__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 7vw, 100px); align-items: center;
}
.about__imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 10px;
}
.about__img-wrap { border-radius: 4px; overflow: hidden; }
.about__img-wrap:first-child { grid-row: span 2; }
.about__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.about__img-wrap:hover img { transform: scale(1.05); }

.about__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 300;
  color: var(--white); margin-bottom: 28px; line-height: 1.15;
}
.about__text p {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.9;
  color: rgba(245,234,208,.6); margin-bottom: 20px;
}

.stats { display: flex; gap: 48px; margin-top: 44px; flex-wrap: wrap; }
.stat__num {
  font-family: var(--font-serif); font-size: clamp(40px, 5vw, 60px);
  font-weight: 200; color: var(--gold); display: block; line-height: 1;
}
.stat__label {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,234,208,.4); margin-top: 6px;
}

/* ─── 15. Reservas CTA ───────────────────────────────────────── */
.cta {
  position: relative; overflow: hidden;
  padding: var(--section) var(--pad);
  text-align: center;
}
.cta__bg {
  position: absolute; inset: 0;
}
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,24,36,.82);
}
.cta__inner {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto;
}
.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 78px); font-weight: 300;
  color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.cta__sub {
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.8;
  color: rgba(245,234,208,.58); margin-bottom: 44px;
}
.cta__phone {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 50px); font-weight: 300;
  color: var(--gold); display: block; margin-bottom: 40px;
  letter-spacing: .04em; transition: color .3s;
}
.cta__phone:hover { color: var(--white); }

.cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── 16. Footer ─────────────────────────────────────────────── */
.footer {
  background: #060c14;
  padding: clamp(60px, 8vw, 110px) var(--pad) 36px;
  color: rgba(245,234,208,.45);
}
.footer__inner { max-width: 1400px; margin: 0 auto; }

.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  padding-bottom: clamp(50px, 6vw, 80px);
  border-bottom: 1px solid rgba(191,143,32,.12);
  margin-bottom: 36px;
}
.footer__logo {
  height: 26px; width: auto;
  filter: brightness(.6); margin-bottom: 22px; display: block;
}
.footer__tagline {
  font-family: var(--font-serif); font-size: 15px; font-style: italic;
  color: rgba(245,234,208,.35); line-height: 1.65; max-width: 260px;
}

.footer__col-title {
  font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; display: block;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__list a {
  font-size: 13px; color: rgba(245,234,208,.45);
  transition: color .3s;
}
.footer__list a:hover { color: var(--gold); }

.footer__address { font-size: 13px; line-height: 1.95; }
.footer__address a { color: var(--gold); transition: color .3s; }
.footer__address a:hover { color: var(--cream); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer__copy, .footer__credit { font-size: 11px; color: rgba(245,234,208,.2); }
.footer__credit a { color: rgba(191,143,32,.5); transition: color .3s; }
.footer__credit a:hover { color: var(--gold); }

/* ─── 17. WhatsApp Float ─────────────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 50;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.wa-btn svg { width: 26px; height: 26px; fill: #fff; }

/* ─── 18. Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal--left  { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--scale { transform: scale(.95); }
.reveal.in     { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.stagger.in > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.stagger.in > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s; }
.stagger.in > *:nth-child(3) { opacity:1; transform:none; transition-delay:.24s; }
.stagger.in > *:nth-child(4) { opacity:1; transform:none; transition-delay:.36s; }
.stagger.in > *:nth-child(5) { opacity:1; transform:none; transition-delay:.48s; }

/* ─── 19. Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end;
  overflow: hidden; padding: calc(var(--nav-h) + 40px) var(--pad) 70px;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width:100%; height:100%; object-fit:cover; object-position: center 40%; }
.page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,24,36,.35) 0%, rgba(12,24,36,.9) 100%);
}
.page-hero__content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 9vw, 120px); font-weight: 300;
  color: var(--white); line-height: .92; margin-bottom: 20px;
}
.page-hero__sub {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(245,234,208,.6); max-width: 480px; line-height: 1.75;
}

/* ─── 20. Carta Page ─────────────────────────────────────────── */
/* Language Selector */
.lang-bar {
  background: var(--forest);
  border-bottom: 1px solid var(--gold-dim);
  padding: 14px var(--pad);
  position: sticky; top: var(--nav-h); z-index: 90;
  overflow: hidden;
}
.lang-bar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.lang-bar__label {
  font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-right: 8px; flex-shrink: 0;
}
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: .06em;
  color: rgba(245,234,208,.55);
  padding: 6px 12px; border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer; background: none;
  transition: color .3s, border-color .3s, background .3s;
}
.lang-btn:hover { color: var(--cream); border-color: var(--gold-dim); }
.lang-btn.active { color: var(--gold); border-color: var(--gold-dim); background: rgba(191,143,32,.08); }
.lang-btn .flag { font-size: 16px; }

/* Full carta content */
.carta-full {
  background: var(--parchment); color: var(--ink);
  padding: var(--section) var(--pad);
  overflow-x: hidden;
}
.carta-full__inner { max-width: 1200px; margin: 0 auto; width: 100%; }

.carta-section { margin-bottom: clamp(50px, 6vw, 80px); }
.carta-section__head {
  display: flex; align-items: center; gap: 20px; margin-bottom: 10px;
}
.carta-section__name {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px); font-weight: 400; color: var(--ink);
  white-space: nowrap;
}
.carta-section__line { flex:1; height:1px; background: rgba(10,14,8,.1); }
.carta-section__sub {
  font-size: 13px; color: rgba(10,14,8,.5); font-style: italic;
  margin-bottom: 28px; max-width: 600px; line-height: 1.6;
}

.carta-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2px; }
.carta-item {
  padding: 20px 22px; background: rgba(10,14,8,.03);
  border: 1px solid rgba(10,14,8,.06);
  transition: border-color .3s, transform .35s var(--ease), background .3s;
}
.carta-item:hover {
  border-color: rgba(191,143,32,.3);
  background: rgba(191,143,32,.05);
  transform: translateY(-2px);
}
.carta-item__row {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px; margin-bottom: 6px;
}
.carta-item__name {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 20px); font-weight: 500; color: var(--ink);
  min-width: 0; overflow-wrap: break-word; word-break: break-word;
}
.carta-item__price {
  font-family: var(--font-serif); font-size: 17px; color: var(--terracotta); flex-shrink: 0;
}
.carta-item__desc { font-size: 12px; color: rgba(10,14,8,.5); line-height: 1.6; }

.carta-vinos { margin-bottom: clamp(50px, 6vw, 80px); }
.carta-vinos__title {
  font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 24px; display: block;
}
.vino-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid rgba(10,14,8,.06);
}
.vino-item:last-child { border-bottom: none; }
.vino-item__name { font-family: var(--font-serif); font-size: 18px; color: var(--ink); }
.vino-item__detail { font-size: 12px; color: rgba(10,14,8,.45); }
.vino-item__price { font-family: var(--font-serif); font-size: 17px; color: var(--terracotta); flex-shrink: 0; }

.carta-notice {
  background: rgba(191,143,32,.1); border: 1px solid rgba(191,143,32,.22);
  border-radius: 4px; padding: 20px 24px; margin-top: 48px;
  font-size: 13px; color: rgba(10,14,8,.6); line-height: 1.7; font-style: italic;
}

/* ─── 21. Nosotros Page ──────────────────────────────────────── */
.nosotros-body {
  background: var(--ink);
  padding: var(--section) var(--pad);
}
.nosotros-body__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px); align-items: start;
}
.nosotros-body__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 300;
  color: var(--white); margin-bottom: 28px; line-height: 1.15;
}
.nosotros-body__text p {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.95;
  color: rgba(245,234,208,.6); margin-bottom: 22px;
}

.nosotros-img { border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.nosotros-img img { width:100%; height:100%; object-fit:cover; transition: transform .9s var(--ease); }
.nosotros-img:hover img { transform: scale(1.05); }

/* Interior gallery grid for nosotros */
.gallery-grid {
  background: var(--forest);
  padding: var(--section) var(--pad);
}
.gallery-grid__inner { max-width: 1400px; margin: 0 auto; }
.gallery-grid__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: 50px;
}
.gallery-grid__item {
  aspect-ratio: 3/4; border-radius: 4px; overflow: hidden;
}
.gallery-grid__item:nth-child(1) { grid-column: span 2; aspect-ratio: auto; }
.gallery-grid__item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease);
}
.gallery-grid__item:hover img { transform: scale(1.06); }

.pull-quote {
  background: var(--moss);
  padding: var(--section) var(--pad); text-align: center;
}
.pull-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 64px); font-weight: 300; font-style: italic;
  color: var(--white); max-width: 880px; margin: 0 auto; line-height: 1.3;
}
.pull-quote__attr {
  margin-top: 28px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}

.filosofia {
  background: var(--forest);
  padding: var(--section) var(--pad);
}
.filosofia__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 40px;
}
.filosofia__card {
  padding: 36px 30px;
  border: 1px solid rgba(191,143,32,.15); border-radius: 4px;
  transition: border-color .3s, transform .35s var(--ease);
}
.filosofia__card:hover { border-color: rgba(191,143,32,.4); transform: translateY(-4px); }
.filosofia__card-num {
  font-family: var(--font-serif); font-size: 52px; font-weight: 200;
  color: rgba(191,143,32,.2); line-height: 1; margin-bottom: 20px;
}
.filosofia__card-title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 400;
  color: var(--gold); margin-bottom: 14px;
}
.filosofia__card-text { font-size: 14px; line-height: 1.8; color: rgba(245,234,208,.55); }

/* ─── 22. Reservas Page ──────────────────────────────────────── */
.reservas-wrap {
  background: var(--ink); min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) var(--pad) var(--section);
}
.reservas-wrap__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 100px); align-items: start;
}
.reservas-info__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.5vw, 60px); font-weight: 300;
  color: var(--white); margin: 18px 0 28px; line-height: 1.1;
}
.reservas-info__intro { font-size: 16px; line-height: 1.85; color: rgba(245,234,208,.58); margin-bottom: 50px; }

.contact-row { margin-bottom: 36px; }
.contact-row__label {
  font-size: 9px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.contact-row__value {
  font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 30px); font-weight: 300;
  color: var(--white); display: block; transition: color .3s; line-height: 1.3;
}
.contact-row__value:hover { color: var(--gold); }
.contact-row__sub { font-size: 13px; color: rgba(245,234,208,.4); margin-top: 4px; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr + tr td { border-top: 1px solid rgba(245,234,208,.07); }
.hours-table td { padding: 10px 0; font-size: 13px; }
.hours-table td:first-child { color: rgba(245,234,208,.45); width: 140px; }
.hours-table td:last-child { color: var(--cream); text-align: right; }

.map-wrap {
  border-radius: 8px; overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid rgba(191,143,32,.15);
}
.map-wrap iframe { width:100%; height:100%; border:none; }

.wa-cta {
  margin-top: 36px; padding: 28px 30px;
  background: rgba(37,211,102,.07);
  border: 1px solid rgba(37,211,102,.2); border-radius: 6px;
  display: flex; align-items: center; gap: 20px;
}
.wa-cta__icon { font-size: 36px; flex-shrink: 0; }
.wa-cta__text h4 {
  font-family: var(--font-serif); font-size: 20px; color: var(--white); margin-bottom: 4px;
}
.wa-cta__text p { font-size: 13px; color: rgba(245,234,208,.5); }
.wa-cta__btn {
  margin-left: auto; flex-shrink: 0;
  background: #25d366; color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 4px;
  transition: background .3s, transform .3s var(--ease);
}
.wa-cta__btn:hover { background: #20ba58; transform: translateY(-1px); }

/* Reservas action buttons */
.reservas-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px;
}
.btn--call {
  background: var(--gold); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  padding: 18px 32px; border-radius: 3px;
  display: flex; align-items: center; gap: 10px;
  transition: background .3s, transform .3s var(--ease);
}
.btn--call:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--whatsapp {
  background: #25d366; color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  padding: 18px 32px; border-radius: 3px;
  display: flex; align-items: center; gap: 10px;
  transition: background .3s, transform .3s var(--ease);
}
.btn--whatsapp:hover { background: #20ba58; transform: translateY(-2px); }

.gmaps-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); transition: color .3s;
}
.gmaps-link:hover { color: var(--gold-light); }

/* ─── 23. Blog / Novedades ───────────────────────────────────── */
.blog-list {
  background: var(--ink);
  padding: var(--section) var(--pad);
}
.blog-list__inner { max-width: 1200px; margin: 0 auto; }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px; margin-top: 60px;
}
.blog-card {
  border: 1px solid rgba(191,143,32,.12); border-radius: 4px;
  overflow: hidden; background: var(--forest);
  transition: transform .4s var(--ease), border-color .3s, box-shadow .4s;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(191,143,32,.3);
  box-shadow: 0 24px 48px rgba(0,0,0,.35);
}
.blog-card__img {
  aspect-ratio: 16/9; overflow: hidden;
}
.blog-card__img img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 28px 26px 32px; }
.blog-card__date {
  font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.blog-card__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px); font-weight: 400;
  color: var(--white); line-height: 1.25; margin-bottom: 14px;
}
.blog-card__excerpt {
  font-size: 14px; line-height: 1.75; color: rgba(245,234,208,.5);
  margin-bottom: 24px;
}
.blog-card__link {
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
  transition: gap .3s;
}
.blog-card__link::after { content: '→'; font-size: 14px; }
.blog-card__link:hover { gap: 18px; }

/* Blog post */
.post-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  overflow: hidden; padding: calc(var(--nav-h) + 60px) var(--pad) 80px;
}
.post-hero__bg { position: absolute; inset: 0; }
.post-hero__bg img { width:100%; height:100%; object-fit:cover; }
.post-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,24,36,.3) 0%, rgba(12,24,36,.92) 100%);
}
.post-hero__content { position: relative; z-index: 2; max-width: 860px; }
.post-hero__date {
  font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.post-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 80px); font-weight: 300;
  color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.post-hero__meta {
  font-size: 13px; color: rgba(245,234,208,.5);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}

.post-body {
  background: var(--parchment); color: var(--ink);
  padding: var(--section) var(--pad);
}
.post-body__inner { max-width: 780px; margin: 0 auto; }
.post-body__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 34px); font-weight: 400;
  color: var(--ink); margin: 48px 0 20px; line-height: 1.2;
}
.post-body__inner p {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.95;
  color: rgba(10,14,8,.72); margin-bottom: 24px;
}
.post-body__inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px); font-style: italic; font-weight: 300;
  color: var(--gold); padding: 0 0 0 28px;
  border-left: 2px solid rgba(191,143,32,.4);
  margin: 40px 0; line-height: 1.5;
}
.post-body__inner ul {
  padding-left: 24px; margin-bottom: 24px;
}
.post-body__inner li {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.9;
  color: rgba(10,14,8,.68); margin-bottom: 8px;
}
.post-body__inner strong { color: var(--ink); }

/* ─── 24. Galería page ───────────────────────────────────────── */
.galeria-body {
  background: var(--ink); padding: var(--section) var(--pad);
}
.galeria-body__inner { max-width: 1400px; margin: 0 auto; }
.galeria-grid {
  display: grid; gap: 6px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
}
.galeria-item {
  overflow: hidden; border-radius: 3px;
  cursor: pointer; position: relative;
}
.galeria-item:nth-child(3n+1) { grid-column: span 2; aspect-ratio: 16/9; }
.galeria-item:not(:nth-child(3n+1)) { aspect-ratio: 3/4; }
.galeria-item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .7s var(--ease);
}
.galeria-item:hover img { transform: scale(1.07); }

/* ─── 25. Eventos page ───────────────────────────────────────── */
.eventos-body {
  background: var(--ink); padding: var(--section) var(--pad);
}
.eventos-body__inner { max-width: 1400px; margin: 0 auto; }
.eventos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; margin-top: 60px;
}
.evento-card {
  border: 1px solid rgba(191,143,32,.15); border-radius: 4px; overflow: hidden;
  background: var(--forest);
  transition: transform .4s var(--ease), border-color .3s;
}
.evento-card:hover { transform: translateY(-6px); border-color: rgba(191,143,32,.35); }
.evento-card__img { aspect-ratio: 16/9; overflow: hidden; }
.evento-card__img img { width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.evento-card:hover .evento-card__img img { transform: scale(1.06); }
.evento-card__body { padding: 30px 28px; }
.evento-card__icon { font-size: 28px; margin-bottom: 16px; display: block; }
.evento-card__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px); font-weight: 400;
  color: var(--gold); margin-bottom: 14px;
}
.evento-card__text { font-size: 14px; line-height: 1.8; color: rgba(245,234,208,.55); }

.eventos-cta-banner {
  background: var(--forest);
  border: 1px solid var(--gold-dim); border-radius: 6px;
  padding: 50px 44px; margin-top: 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.eventos-cta-banner__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px); font-weight: 300;
  color: var(--white); margin-bottom: 12px; line-height: 1.15;
}
.eventos-cta-banner__text p {
  font-size: 15px; color: rgba(245,234,208,.55); line-height: 1.7; max-width: 480px;
}
.eventos-cta-banner__btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── 26. Novedades teaser in index ─────────────────────────── */
.novedades-teaser {
  background: var(--forest);
  padding: var(--section) var(--pad);
}
.novedades-teaser__inner { max-width: 1400px; margin: 0 auto; }
.novedades-teaser__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 50px;
}
.teaser-card {
  background: var(--ink); border: 1px solid rgba(191,143,32,.12);
  border-radius: 4px; overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s;
}
.teaser-card:hover { transform: translateY(-5px); border-color: rgba(191,143,32,.3); }
.teaser-card__img { aspect-ratio: 4/3; overflow: hidden; }
.teaser-card__img img { width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.teaser-card:hover .teaser-card__img img { transform: scale(1.06); }
.teaser-card__body { padding: 22px 22px 28px; }
.teaser-card__date {
  font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.teaser-card__title {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.5vw, 21px); font-weight: 400;
  color: var(--white); line-height: 1.3; margin-bottom: 12px;
}
.teaser-card__link {
  font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s;
}
.teaser-card__link::after { content: '→'; }
.teaser-card__link:hover { gap: 14px; }

/* ─── 27. Film-grain overlay ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  animation: grain 7s steps(9) infinite;
}
@keyframes grain {
  0%,100%  { transform: translate(0,0); }
  10%      { transform: translate(-4%,-4%); }
  20%      { transform: translate(-8%, 4%); }
  30%      { transform: translate( 4%,-8%); }
  40%      { transform: translate(-4%,12%); }
  50%      { transform: translate(-8%, 4%); }
  60%      { transform: translate(12%, 0); }
  70%      { transform: translate( 0,  8%); }
  80%      { transform: translate(-12%,0); }
  90%      { transform: translate( 8%, 4%); }
}

/* ─── 28. Responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  .galeria-item:nth-child(3n+1) { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .pillars__grid         { grid-template-columns: 1fr; }
  .pillar                { aspect-ratio: 16/8; }
  .manifesto__inner,
  .about__inner,
  .nosotros-body__inner  { grid-template-columns: 1fr; }
  .footer__top           { grid-template-columns: 1fr 1fr; gap: 36px; }
  .filosofia__inner      { grid-template-columns: 1fr 1fr; }
  .reservas-wrap__inner  { grid-template-columns: 1fr; }
  .gallery-grid__grid    { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid__item:nth-child(1) { grid-column: span 1; }
  .novedades-teaser__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle           { display: flex; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .hero__scroll          { display: none; }
  .about__imgs           { display: none; }
  .tagline               { flex-direction: column; gap: 8px; text-align: center; }
  .tagline__dot          { display: none; }
  .footer__top           { grid-template-columns: 1fr; gap: 32px; }
  .filosofia__inner      { grid-template-columns: 1fr; }
  .pillar                { aspect-ratio: 16/10; }
  .cta__btns             { flex-direction: column; align-items: center; }
  .preview__top          { flex-direction: column; align-items: flex-start; }
  .wa-cta                { flex-direction: column; text-align: center; }
  .wa-cta__btn           { margin: 0 auto; }
  .blog-grid             { grid-template-columns: 1fr; }
  .galeria-grid          { grid-template-columns: repeat(2,1fr); }
  .galeria-item:nth-child(3n+1) { grid-column: span 2; }
  .gallery-grid__grid    { grid-template-columns: repeat(2, 1fr); }
  .novedades-teaser__grid { grid-template-columns: 1fr; }
  .eventos-cta-banner    { flex-direction: column; text-align: center; }
  .reservas-btns         { flex-direction: column; }
  .lang-bar__inner       { gap: 6px; }
  .lang-btn              { padding: 5px 8px; font-size: 10px; }
}

@media (max-width: 480px) {
  .carta-items      { grid-template-columns: 1fr; }
  .galeria-grid     { grid-template-columns: 1fr; }
  .galeria-item:nth-child(3n+1) { grid-column: span 1; aspect-ratio: 4/3; }
  .galeria-item     { aspect-ratio: 4/3; }
}
