/* =================================================================
   LA VIEJA GUARDIA · Fish & Beer
   Estética: lujo cálido nocturno del Caribe
   Verde-petróleo profundo · oro envejecido · coral terracota · marfil
   Tipografía: Fraunces (display) + Hanken Grotesk (cuerpo)
   ================================================================= */

:root {
  /* Color */
  --bg:        #0a1411;
  --bg-2:      #0d1b16;
  --surface:   #112019;
  --surface-2: #15281f;

  --ink:       #f3ead8;   /* marfil cálido */
  --ink-soft:  #c4bba8;
  --ink-dim:   #8a8676;

  --gold:      #d3ad63;   /* oro envejecido */
  --gold-deep: #b08a3f;
  --gold-glow: #f0d18a;

  --coral:     #df6347;   /* terracota coral */
  --coral-deep:#c44e35;

  --line:      rgba(211,173,99,.20);
  --line-soft: rgba(243,234,216,.10);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;

  /* Space */
  --pad: clamp(1.25rem, 5vw, 7rem);
  --maxw: 1320px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .005em;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient radial glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(223,99,71,.10), transparent 55%),
    radial-gradient(90% 70% at 0% 0%, rgba(211,173,99,.10), transparent 50%),
    radial-gradient(120% 120% at 50% 120%, rgba(13,27,22,.9), transparent 60%);
  pointer-events: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: var(--gold); color: var(--bg); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  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='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Typographic helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow__line { width: 2.6rem; height: 1px; background: var(--gold); opacity: .6; }
.eyebrow--center { justify-content: center; color: var(--gold); }

.section-num {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  color: var(--ink);
}
.section-title em { color: var(--gold); font-weight: 400; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ---------- Buttons ---------- */
.btn {
  --bp: 1.05em 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: var(--bp);
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--coral { background: var(--coral); color: #1a0d09; box-shadow: 0 10px 30px -12px rgba(223,99,71,.7); }
.btn--coral:hover { background: var(--coral-deep); box-shadow: 0 18px 44px -14px rgba(223,99,71,.85); }

.btn--gold { background: var(--gold); color: #1a1305; box-shadow: 0 10px 30px -12px rgba(211,173,99,.6); }
.btn--gold:hover { background: var(--gold-glow); box-shadow: 0 18px 44px -14px rgba(211,173,99,.75); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(211,173,99,.06); }

/* =================================================================
   HEADER
   ================================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8, 16, 13, .8);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.15rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding .5s var(--ease);
}
.header.scrolled .header__inner { padding-top: .8rem; padding-bottom: .8rem; }

.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand__mark { color: var(--gold); display: grid; place-items: center; transition: transform .6s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-weight: 600; font-size: 1.18rem; letter-spacing: .01em; }
.brand__sub { font-size: .6rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-top: .28rem; }

.nav { display: flex; gap: 2.2rem; }
.nav a {
  position: relative;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink-soft);
  padding: .3rem 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__cta { --bp: .7em 1.5em; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 2px;
  cursor: pointer;
}
.burger span { width: 18px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--bg-2);
  padding: 7rem var(--pad) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  visibility: hidden;
}
.mobile.open { transform: translateY(0); visibility: visible; }
.mobile__nav { display: flex; flex-direction: column; gap: .4rem; }
.mobile__nav a {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .35rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile__nav a span { font-family: var(--body); font-size: .8rem; color: var(--gold); letter-spacing: .2em; }
.mobile__foot { display: flex; flex-direction: column; gap: 1.2rem; }
.mobile__foot .btn { align-self: flex-start; }
.mobile__foot p { color: var(--ink-dim); font-size: .9rem; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 8rem var(--pad) clamp(3rem, 7vh, 6rem);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 120%; object-fit: cover; object-position: center 35%; }
.hero__media.media-fail { background: linear-gradient(135deg, var(--surface), var(--bg)); }
.hero__media.media-fail img { display: none; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,16,13,.55) 0%, rgba(8,16,13,.25) 35%, rgba(8,16,13,.85) 85%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8,16,13,.7), transparent 60%);
}

.hero__content { position: relative; z-index: 2; max-width: 56rem; }
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-optical-sizing: auto;
  font-size: clamp(3.6rem, 15vw, 12rem);
  line-height: .86;
  letter-spacing: -.03em;
  margin: 1.4rem 0 .2rem;
  text-shadow: 0 14px 50px rgba(0,0,0,.45);
}
.hero__title span { display: block; }
.hero__title span:last-child { color: var(--gold); padding-left: .12em; }

.hero__tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 46ch; margin-bottom: 2.2rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
}
.hero__meta div { display: flex; flex-direction: column; gap: .25rem; }
.hero__meta-k { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.hero__meta-v { font-size: .95rem; color: var(--ink); font-family: var(--display); }

.hero__scroll {
  position: absolute;
  right: var(--pad); bottom: clamp(3rem, 7vh, 6rem);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft);
  writing-mode: vertical-rl;
}
.hero__scroll-line { width: 1px; height: 60px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-60px; left:0; width:1px; height:60px; background: var(--gold-glow); animation: scrollPulse 2.2s var(--ease) infinite; }
@keyframes scrollPulse { 0% { transform: translateY(0); } 100% { transform: translateY(120px); } }
@media (max-width: 760px) { .hero__scroll { display: none; } }

/* =================================================================
   TICKER
   ================================================================= */
.ticker {
  background: var(--gold);
  color: #1a1305;
  overflow: hidden;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding: .85rem 0;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  will-change: transform;
}
.ticker__track span {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
}
.ticker__track .dot { font-style: normal; font-size: .7rem; opacity: .7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =================================================================
   NOSOTROS
   ================================================================= */
section { position: relative; }

.about { padding: clamp(5rem, 12vh, 9rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about__media { position: relative; }
.frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.8);
}
.frame::after {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid rgba(243,234,216,.28);
  pointer-events: none;
  z-index: 2;
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__media:hover .frame img { transform: scale(1.05); }
.frame.media-fail { background: linear-gradient(135deg, var(--surface-2), var(--surface)); }
.frame.media-fail img { display: none; }

.about__badge {
  position: absolute;
  right: -1.2rem; bottom: -1.2rem;
  background: var(--coral);
  color: #1a0d09;
  padding: 1.3rem 1.5rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.7);
  z-index: 3;
}
.about__badge-num { display: block; font-family: var(--display); font-weight: 700; font-size: 1.4rem; }
.about__badge-txt { display: block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; margin-top: .25rem; line-height: 1.4; }

.about__body .section-title { margin-bottom: 1.6rem; }
.about__body .lede { margin-bottom: 1.2rem; }
.about__body > p { color: var(--ink-soft); max-width: 54ch; }

.about__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.5rem; margin: 2rem 0; }
.about__list li { display: flex; align-items: center; gap: .7rem; color: var(--ink); font-size: .98rem; }
.about__list span { color: var(--gold); font-size: .7rem; }

.quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
  padding-left: 1.6rem;
  border-left: 2px solid var(--gold);
  margin-top: 2rem;
}

/* =================================================================
   ESPECIALIDADES
   ================================================================= */
.specials { padding: clamp(4rem, 9vh, 7rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.specials__head { max-width: 56rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.specials__head .section-title { margin-bottom: 1.2rem; }

.specials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dish {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
}
.dish:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 30px 60px -34px rgba(0,0,0,.85); }
.dish__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.08); }
.dish__media.media-fail { background: linear-gradient(135deg, var(--surface-2), var(--bg-2)); }
.dish__media.media-fail img { display: none; }
.dish__media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(8,16,13,.55)); }
.dish__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--gold); color: #1a1305;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: .4rem .7rem; border-radius: 2px;
}
.dish__info { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.dish__info h3 { font-family: var(--display); font-weight: 600; font-size: 1.28rem; line-height: 1.1; }
.dish__info p { font-size: .9rem; color: var(--ink-dim); flex: 1; }
.dish__price { font-family: var(--display); color: var(--gold); font-weight: 600; font-size: 1.1rem; }

/* =================================================================
   CARTA
   ================================================================= */
.menu {
  padding: clamp(5rem, 11vh, 8rem) var(--pad);
  background:
    linear-gradient(180deg, var(--bg), var(--bg-2) 50%, var(--bg));
  position: relative;
}
.menu::before, .menu::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.menu::before { top: 0; } .menu::after { bottom: 0; }
.menu__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.menu__head .eyebrow, .menu__head .section-num { display: block; }
.menu__head .section-title { margin-bottom: 1.1rem; }
.menu__head .lede { margin: 0 auto; }

.menu__cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.menu__cat {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 2.2rem 0 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.menu__col > .menu__cat:first-child { margin-top: 0; }
.menu__list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.menu__list li { display: flex; align-items: baseline; gap: 1rem; }
.menu__list .i { display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.menu__list .n { font-family: var(--display); font-weight: 500; font-size: 1.1rem; color: var(--ink); }
.menu__list .n .star { color: var(--gold); font-style: normal; font-size: .7rem; vertical-align: middle; margin-left: .35rem; }
.menu__list .d { font-size: .85rem; color: var(--ink-dim); line-height: 1.45; }
.menu__list .p { font-family: var(--display); font-weight: 600; color: var(--gold); white-space: nowrap; font-size: 1rem; }
/* dotted leader */
.menu__list li { position: relative; }
.menu__list .i { position: relative; }

.menu__cta {
  max-width: var(--maxw);
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.menu__cta p { color: var(--ink-dim); font-size: .85rem; max-width: 46ch; }

/* =================================================================
   EXPERIENCIA
   ================================================================= */
.exp { padding: clamp(5rem, 11vh, 8rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.exp__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.exp__head .section-num { display: block; }

.exp__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.feature {
  text-align: center;
  padding: 2.4rem 1.8rem;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--surface);
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: var(--line); }
.feature__ico { display: block; font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.feature h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 600; margin-bottom: .6rem; }
.feature p { color: var(--ink-dim); font-size: .95rem; max-width: 32ch; margin: 0 auto; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery__item { position: relative; overflow: hidden; border-radius: 4px; margin: 0; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after { content:""; position:absolute; inset:0; background: rgba(8,16,13,.18); transition: background .5s; }
.gallery__item:hover::after { background: rgba(8,16,13,0); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item.media-fail { background: linear-gradient(135deg, var(--surface-2), var(--bg-2)); }
.gallery__item.media-fail img { display: none; }

/* =================================================================
   RESERVAS BANNER
   ================================================================= */
.reserve {
  position: relative;
  padding: clamp(5rem, 16vh, 9rem) var(--pad);
  text-align: center;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.reserve__media { position: absolute; inset: 0; z-index: 0; }
.reserve__media img { width: 100%; height: 130%; object-fit: cover; object-position: center; }
.reserve__media::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(rgba(8,16,13,.82), rgba(8,16,13,.9));
}
.reserve__media.media-fail { background: linear-gradient(135deg, var(--surface-2), var(--bg)); }
.reserve__media.media-fail img { display: none; }
.reserve__content { position: relative; z-index: 2; max-width: 44rem; }
.reserve__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin: 1.4rem 0 2.2rem;
}
.reserve__title em { color: var(--gold); }
.reserve__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =================================================================
   CONTACTO
   ================================================================= */
.contact { padding: clamp(5rem, 11vh, 8rem) var(--pad); max-width: var(--maxw); margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: stretch; }
.contact__info .section-title { margin-bottom: 2.5rem; }
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 1.7rem; }
.contact__list li { display: flex; flex-direction: column; gap: .35rem; padding-bottom: 1.7rem; border-bottom: 1px solid var(--line-soft); }
.contact__list li:last-of-type { border-bottom: none; }
.contact__k { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.contact__v { font-family: var(--display); font-size: 1.2rem; color: var(--ink); transition: color .3s; line-height: 1.4; }
a.contact__v:hover { color: var(--gold); }

.contact__social { display: flex; gap: 1.8rem; margin-top: 2rem; }
.contact__social a {
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
  position: relative; padding-bottom: .3rem;
}
.contact__social a::after { content:""; position:absolute; left:0; bottom:0; width:100%; height:1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.contact__social a:hover { color: var(--gold); }
.contact__social a:hover::after { transform: scaleX(1); transform-origin: left; }

.contact__map { border-radius: 4px; overflow: hidden; min-height: 380px; border: 1px solid var(--line); position: relative; }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.3) contrast(1.05) brightness(.92); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(3rem, 7vw, 5rem) var(--pad) 2rem; }
.footer__top {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-soft);
}
.footer__name { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; display: block; }
.footer__sub { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.footer__nav a { font-size: .85rem; color: var(--ink-soft); transition: color .3s; }
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--maxw); margin: 2rem auto 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .8rem; color: var(--ink-dim);
}

/* =================================================================
   FLOATING WHATSAPP
   ================================================================= */
.wsp {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: #1f6e4f; color: #eafff4;
  border-radius: 50%;
  box-shadow: 0 14px 34px -10px rgba(0,0,0,.6);
  transition: transform .4s var(--ease), background .4s;
}
.wsp::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid #2c9a6e; animation: ring 2.4s var(--ease) infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
.wsp:hover { transform: translateY(-4px) scale(1.06); background: #258a63; }

/* =================================================================
   REVEAL ANIMATIONS (progressive enhancement)
   ================================================================= */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* Hero staggered load */
.js .hero .reveal { transform: translateY(36px); }
.js .hero .reveal.in { transition-delay: calc(var(--d, 0) * 110ms); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .specials__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 30rem; margin: 0 auto; }
  .about__list { grid-template-columns: 1fr; }
  .menu__cols { grid-template-columns: 1fr; gap: 0; }
  .exp__features { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 320px; }
}

@media (max-width: 560px) {
  .specials__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .hero__meta { gap: 1.4rem; }
  .hero__meta div { min-width: 42%; }
  .about__badge { right: 0; }
  .footer__top { flex-direction: column; align-items: flex-start; }
}
