/* =============================================================
   Sa Trenka · styles.css
   Paleta blanco + azul mediterraneo, mobile-first, modo oscuro.
   Compartido por index.html, carta.html y vinos.html.
============================================================= */

:root {
  --white:      #ffffff;
  --off-white:  #f8fbfd;
  --blue-deep:  #0a2540;
  --blue-sea:   #0077b6;
  --blue-mid:   #0096c7;
  --blue-sky:   #caf0f8;
  --blue-ice:   #e8f4f8;
  --sand:       #f4e4c1;
  --whatsapp:   #25d366;
  --text:       #0a2540;
  --text-soft:  #3a5a7a;
  --text-muted: #6b7f92;
  --border:     #d9e4ec;
  --bg:         #ffffff;
  --bg-soft:    #f8fbfd;
  --bg-sunken:  #eef5fa;

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06), 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.18);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.35s var(--ease);

  --max-width: 1200px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top:    env(safe-area-inset-top, 0px);

  --nav-h: 58px;
  --action-h: 68px;
}

/* ---------- Modo oscuro automatico ---------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --white:      #0a1929;
    --off-white:  #0e2033;
    --bg:         #0a1929;
    --bg-soft:    #0e2033;
    --bg-sunken:  #091623;
    --text:       #e8f4f8;
    --text-soft:  #b8c9d6;
    --text-muted: #7d94a8;
    --border:     #1e3a52;
    --blue-sky:   #0f3a55;
    --blue-ice:   #0c2a3d;
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.50);
  }
}
:root[data-theme="dark"] {
  --white:      #0a1929;
  --off-white:  #0e2033;
  --bg:         #0a1929;
  --bg-soft:    #0e2033;
  --bg-sunken:  #091623;
  --text:       #e8f4f8;
  --text-soft:  #b8c9d6;
  --text-muted: #7d94a8;
  --border:     #1e3a52;
  --blue-sky:   #0f3a55;
  --blue-ice:   #0c2a3d;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.50);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--action-h) + var(--safe-bottom));
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--blue-sea); outline-offset: 3px; border-radius: 4px; }

/* ---------- i18n ---------- */
[data-lang="en"] { display: none; }
body.lang-en [data-lang="es"] { display: none; }
body.lang-en [data-lang="en"] { display: inline; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.stack > * + * { margin-top: 1rem; }
.full-bleed {
  width: 100%;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.full-bleed img {
  width: 100%;
  height: 60vh;
  max-height: 520px;
  object-fit: cover;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 9vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 6vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 4vw, 1.7rem); font-weight: 500; }
em { font-style: italic; color: var(--blue-sea); }
p { font-size: 1rem; color: var(--text-soft); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-sea);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(2rem, 7vw, 3rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: var(--blue-sea);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.32);
}
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 10px 28px rgba(10, 37, 64, 0.35); }
.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline {
  background: transparent;
  border-color: var(--blue-sea);
  color: var(--blue-sea);
}
.btn-outline:hover { background: var(--blue-sea); color: #fff; }

/* =============================================================
   NAVBAR
============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-top: var(--safe-top);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--trans), border-color var(--trans);
}
:root[data-theme="dark"] .nav,
@media (prefers-color-scheme: dark) { .nav { background: rgba(10, 25, 41, 0.85); } }
.nav.scrolled { background: var(--bg); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 1.1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}
.nav-logo em { color: var(--blue-sea); font-style: normal; }

.nav-links { display: none; gap: 1.8rem; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-sea); }

.nav-tools { display: flex; align-items: center; gap: 0.6rem; }
.nav-tool {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-soft);
  font-size: 0.78rem; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.nav-tool:hover { background: var(--bg-sunken); color: var(--blue-sea); }
.nav-tool svg { width: 18px; height: 18px; }
.nav-burger { display: inline-flex; }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* ---------- Drawer mobile ---------- */
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 110;
  backdrop-filter: blur(6px);
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 84%);
  background: var(--bg);
  padding: calc(var(--nav-h) + var(--safe-top) + 2rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding 0.2s;
}
.drawer-panel a:hover { color: var(--blue-sea); padding-left: 0.4rem; }
.drawer-close {
  position: absolute;
  top: calc(var(--safe-top) + 1.2rem);
  right: 1.4rem;
  width: 38px; height: 38px;
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
}

/* =============================================================
   SCARCITY BANNER (top)
============================================================= */
.scarcity {
  position: relative;
  z-index: 90;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-sea));
  color: #fff;
  font-size: 0.8rem;
  padding: 0.55rem 1rem;
  text-align: center;
  letter-spacing: 0.04em;
  padding-top: calc(0.55rem + var(--safe-top));
}
.scarcity strong { color: var(--blue-sky); font-weight: 700; }
body.has-scarcity .nav { top: var(--scarcity-h, 38px); }

/* =============================================================
   HERO
============================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Carrusel de fotos en el hero (crossfade) */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
  will-change: opacity;
}
.hero__slide.active { opacity: 1; }
.hero__slide picture,
.hero__slide img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.hero__slide.active img { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide.active img { animation: none; }
}
.hero__indicators {
  position: absolute;
  bottom: calc(var(--action-h) + 4.6rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.hero__dot.active {
  background: #fff;
  width: 26px;
  border-radius: var(--radius-full);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.35) 0%, rgba(10, 37, 64, 0.55) 60%, rgba(10, 37, 64, 0.78) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 1.4rem 1.4rem calc(var(--action-h) + 3rem);
  max-width: 720px;
  animation: rise 1s var(--ease) 0.25s backwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-full);
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 1rem;
}
.hero h1 em { color: var(--blue-sky); }
.hero__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 4.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
  max-width: 480px;
  margin-inline: auto;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.hero__scroll {
  position: absolute;
  bottom: calc(var(--action-h) + 1.2rem);
  left: 50%; transform: translateX(-50%);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* =============================================================
   STAT STRIP (sustituye los iconos de highlights)
============================================================= */
.stats {
  padding: 3rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}
.stat-cell {
  text-align: center;
  padding: 0.5rem 0.6rem;
  position: relative;
}
.stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: 0; top: 12%;
  width: 1px; height: 76%;
  background: var(--border);
}
.stat-cell-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 500;
  color: var(--blue-sea);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-cell-num small {
  font-size: 0.45em;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}
.stat-cell-label {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* =============================================================
   SECTION: FILOSOFIA
============================================================= */
.filosofia {
  padding: 4.5rem 0;
  text-align: center;
  background: var(--bg);
}
.filosofia-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.3rem, 5vw, 1.9rem);
  line-height: 1.4;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 1.4rem;
  position: relative;
}
.filosofia-quote::before,
.filosofia-quote::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  background: var(--blue-sea);
  margin: 1.4rem auto;
}
.filosofia-meta {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================================
   SECTION: DISHES (platos estrella)
============================================================= */
.dishes {
  padding: 4.5rem 0;
  background: var(--bg-soft);
}
.dishes-header { text-align: center; margin-bottom: 3rem; }
.dishes-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .dishes-grid { grid-template-columns: repeat(3, 1fr); } }
.dish {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish.is-popular { border-color: var(--blue-sea); box-shadow: 0 12px 32px rgba(0, 119, 182, 0.18); }
.dish__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-sunken);
}
.dish__popular {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0.45rem 0.9rem;
  background: linear-gradient(135deg, #ff9500, #ff5e3a);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(255, 94, 58, 0.45);
  animation: popPulse 2.4s ease-in-out infinite;
}
@keyframes popPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) { .dish__popular { animation: none; } }
.dish__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.dish:hover .dish__media img { transform: scale(1.05); }
.dish__body {
  padding: 1.4rem 1.3rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dish__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--blue-sea);
  background: var(--blue-ice);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dish__name { font-size: 1.4rem; margin-bottom: 0.5rem; }
.dish__desc { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 1rem; flex: 1; }
.dish__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue-sea);
}
.dish__price small { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }

.dishes-cta { text-align: center; margin-top: 2.8rem; }

/* =============================================================
   SECTION: GALLERY
============================================================= */
.gallery {
  padding: 4.5rem 0;
  background: var(--bg);
}
.gallery-header { text-align: center; margin-bottom: 2.4rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg-sunken);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 200;
  background: rgba(10, 37, 64, 0.0);
  opacity: 0;
  transition: background 0.3s, opacity 0.3s;
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: rgba(10, 37, 64, 0.5);
  opacity: 1;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 719px) { .gallery-item.tall { grid-row: auto; aspect-ratio: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5, 18, 32, 0.94);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem 1rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute;
  top: calc(var(--safe-top) + 1rem);
  right: 1rem;
  width: 46px; height: 46px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

/* =============================================================
   SECTION: HISTORIA
============================================================= */
.historia {
  padding: 4.5rem 0;
  background: var(--bg-soft);
}
.historia-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) { .historia-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; } }
.historia-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.historia-img img { width: 100%; height: 100%; object-fit: cover; }
.historia-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  background: var(--bg);
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.historia-badge-year {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--blue-sea);
  font-weight: 500;
  line-height: 1;
}
.historia-badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.historia-text p { margin-bottom: 1rem; }
.historia-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--blue-sea);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 6px;
}

/* =============================================================
   SECTION: RESERVAS
============================================================= */
.reservas {
  position: relative;
  padding: 5rem 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 37, 64, 0.92), rgba(0, 119, 182, 0.85)),
    var(--blue-deep);
  overflow: hidden;
}
.reservas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(202, 240, 248, 0.06) 0, transparent 50%);
  pointer-events: none;
}
.reservas-content { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.reservas .section-title { color: #fff; }
.reservas .section-title em { color: var(--blue-sky); }
.reservas p { color: rgba(255, 255, 255, 0.85); }
.thefork-placeholder {
  margin: 2rem auto;
  max-width: 520px;
  padding: 1.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.thefork-placeholder strong { display: block; color: #fff; margin-bottom: 0.4rem; font-size: 0.95rem; }
.thefork-placeholder em { color: var(--blue-sky); font-style: normal; }

.reservas-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  max-width: 480px;
  margin: 2rem auto 0;
}
@media (min-width: 620px) { .reservas-actions { grid-template-columns: repeat(3, 1fr); } }
.reservas-action {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s;
}
.reservas-action:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }
.reservas-action svg { width: 22px; height: 22px; flex-shrink: 0; }
.reservas-action-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.reservas-action-detail { font-weight: 600; font-size: 0.95rem; }
.reservas-action.whatsapp { border-color: var(--whatsapp); }
.reservas-action.whatsapp:hover { background: rgba(37, 211, 102, 0.2); }
.reservas-note {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  opacity: 0.75;
  letter-spacing: 0.06em;
}

/* =============================================================
   SECTION: UBICACION
============================================================= */
.ubicacion {
  padding: 4.5rem 0;
  background: var(--bg);
}
.ubicacion-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .ubicacion-grid { grid-template-columns: 1fr 1.2fr; } }
.info-block {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; }
.info-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  background: var(--blue-ice);
  color: var(--blue-sea);
}
.info-icon svg { width: 16px; height: 16px; }
.info-block h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-block p { font-size: 0.94rem; color: var(--text); }
.info-block a { color: var(--blue-sea); }
.hours-table { font-size: 0.88rem; color: var(--text); }
.hours-table td { padding: 2px 12px 2px 0; }
.hours-table .closed { color: var(--text-muted); }
.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  background: var(--bg-sunken);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }
.map-directions {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; justify-content: center;
}
.map-directions a {
  background: var(--bg);
  color: var(--blue-sea);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.map-directions svg { width: 14px; height: 14px; }

/* =============================================================
   FOOTER
============================================================= */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.8rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links a { color: rgba(255, 255, 255, 0.78); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue-sky); }
.footer-social a {
  display: inline-block;
  margin: 0 0.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}
.footer-copy {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =============================================================
   BOTTOM ACTION BAR (mobile)
============================================================= */
.action-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 90;
  padding-bottom: var(--safe-bottom);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(10, 37, 64, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.action-bar.visible { transform: translateY(0); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .action-bar { background: rgba(10, 25, 41, 0.96); }
}
:root[data-theme="dark"] .action-bar { background: rgba(10, 25, 41, 0.96); }
.action-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--action-h);
  padding: 0 0.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  align-items: center;
}
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.action-btn svg { width: 22px; height: 22px; }
.action-btn:hover { color: var(--blue-sea); background: var(--bg-sunken); }
.action-btn.whatsapp { color: var(--whatsapp); }
.action-btn.reserve { color: #fff; background: var(--blue-sea); }
.action-btn.reserve:hover { background: var(--blue-deep); color: #fff; }
.action-btn--wine { color: #8e2438; }
.action-btn--wine:hover { color: #fff; background: linear-gradient(135deg, #6b1f2e, #8e2438); }

/* Variante para action bar con 3 botones (carta y vinos) */
.action-bar--3 .action-bar-inner { grid-template-columns: repeat(3, 1fr); }

/* =============================================================
   WHATSAPP FLOAT
============================================================= */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: calc(var(--action-h) + var(--safe-bottom) + 14px);
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  animation: pulseWa 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6); }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45); }
  50%      { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* =============================================================
   FLOATING SWAP BUTTON (menu <-> vinos)
   En carta.html lleva a vinos.html y viceversa.
============================================================= */
.menu-swap {
  position: fixed;
  right: 16px;
  bottom: calc(var(--action-h) + var(--safe-bottom) + 14px);
  width: 58px; height: 58px;
  border-radius: var(--radius-full);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.menu-swap svg { width: 26px; height: 26px; }
.menu-swap:hover { transform: scale(1.08); }
.menu-swap-label {
  position: absolute;
  right: 66px;
  background: rgba(10, 37, 64, 0.92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.menu-swap:hover .menu-swap-label,
.menu-swap:focus-visible .menu-swap-label { opacity: 1; transform: translateX(0); }

/* Variante vino (en carta.html, lleva a vinos.html) */
.menu-swap--wine {
  background: linear-gradient(135deg, #6b1f2e, #8e2438);
  box-shadow: 0 10px 26px rgba(107, 31, 46, 0.45);
  animation: pulseWine 3s ease-in-out infinite;
}
.menu-swap--wine:hover { box-shadow: 0 14px 32px rgba(107, 31, 46, 0.6); }
@keyframes pulseWine {
  0%, 100% { box-shadow: 0 10px 26px rgba(107, 31, 46, 0.45); }
  50%      { box-shadow: 0 10px 26px rgba(107, 31, 46, 0.45), 0 0 0 14px rgba(107, 31, 46, 0); }
}

/* Variante menú (en vinos.html, lleva a carta.html) */
.menu-swap--menu {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-sea));
  box-shadow: 0 10px 26px rgba(0, 119, 182, 0.45);
  animation: pulseMenu 3s ease-in-out infinite;
}
.menu-swap--menu:hover { box-shadow: 0 14px 32px rgba(0, 119, 182, 0.6); }
@keyframes pulseMenu {
  0%, 100% { box-shadow: 0 10px 26px rgba(0, 119, 182, 0.45); }
  50%      { box-shadow: 0 10px 26px rgba(0, 119, 182, 0.45), 0 0 0 14px rgba(0, 119, 182, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .menu-swap--wine, .menu-swap--menu { animation: none; }
}

/* =============================================================
   REVEAL ANIMATIONS
============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__content { animation: none; }
  .whatsapp-float { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* =============================================================
   CARTA PAGE
============================================================= */
.page-hero {
  padding: calc(var(--nav-h) + var(--safe-top) + 2.4rem) 0 2.4rem;
  background: linear-gradient(180deg, var(--blue-ice) 0%, var(--bg) 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.6rem; }
.page-hero-line {
  width: 60px; height: 2px; background: var(--blue-sea);
  margin: 1rem auto 0;
}

/* CTA prominente en el page-hero (ej: "Ver carta de vinos" desde la carta) */
.page-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(135deg, #6b1f2e, #8e2438);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(107, 31, 46, 0.32);
  transition: transform 0.2s var(--ease), box-shadow 0.25s, background 0.25s;
}
.page-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(107, 31, 46, 0.45);
  background: linear-gradient(135deg, #7b2536, #9c2940);
}
.page-hero-cta:active { transform: translateY(0); }
.page-hero-cta svg { width: 18px; height: 18px; }
.page-hero-cta-arrow {
  display: inline-flex;
  margin-left: 2px;
  transition: transform 0.25s var(--ease);
}
.page-hero-cta:hover .page-hero-cta-arrow { transform: translateX(4px); }

.cat-tabs-wrapper {
  position: sticky;
  top: calc(var(--nav-h) + var(--safe-top));
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.cat-tabs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.8rem 1.1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex: 0 0 auto;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
  scroll-snap-align: start;
  transition: all 0.2s;
}
.cat-tab:hover { color: var(--blue-sea); border-color: var(--blue-sea); }
.cat-tab.active {
  background: var(--blue-sea);
  color: #fff;
  border-color: var(--blue-sea);
  box-shadow: 0 4px 14px rgba(0, 119, 182, 0.35);
}
/* Tab destacado (con estrella naranja arriba) */
.cat-tab--featured {
  position: relative;
  border-color: #ff7a3a;
  color: #ff5e3a;
  font-weight: 600;
  padding-right: 1.5rem;
}
.cat-tab--featured::after {
  content: '★';
  position: absolute;
  top: -8px;
  right: -6px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ff9500, #ff5e3a);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  box-shadow: 0 4px 10px rgba(255, 94, 58, 0.55);
  animation: popPulse 2.4s ease-in-out infinite;
}
.cat-tab--featured.active {
  background: linear-gradient(135deg, #ff9500, #ff5e3a);
  border-color: #ff5e3a;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 94, 58, 0.45);
}
.cat-tab--featured.active::after { background: #fff; color: #ff5e3a; }
@media (prefers-reduced-motion: reduce) {
  .cat-tab--featured::after { animation: none; }
}

.allergen-bar {
  background: var(--bg-sunken);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
}
.allergen-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1.1rem;
  scrollbar-width: none;
}
.allergen-bar-inner::-webkit-scrollbar { display: none; }
.allergen-bar-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  flex-shrink: 0;
}
.allergen-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.74rem;
  color: var(--text-soft);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.allergen-chip.active {
  background: #ffebeb;
  border-color: #e4575c;
  color: #b52a30;
}
:root[data-theme="dark"] .allergen-chip.active,
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .allergen-chip.active {
    background: rgba(228, 87, 92, 0.2);
    color: #ff9ba0;
  }
}

.menu-main { padding: 2rem 0 4rem; }
.menu-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-section:last-child { border-bottom: none; }
.menu-section-header { text-align: center; margin-bottom: 2rem; }
.menu-section-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
.menu-section-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}
.menu-section.premium {
  background: linear-gradient(180deg, var(--blue-ice) 0%, var(--bg) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.2rem;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.premium-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  background: var(--blue-sea);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
  transition: opacity 0.3s, max-height 0.3s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item.hidden-allergen { display: none; }
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2px;
}
.popular-badge {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--font-body);
  font-size: 0.64rem;
  padding: 2px 7px;
  background: var(--blue-ice);
  color: var(--blue-sea);
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}
.muy-popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  padding: 3px 9px;
  background: linear-gradient(135deg, #ff9500, #ff5e3a);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
  box-shadow: 0 4px 12px rgba(255, 94, 58, 0.45);
  animation: popPulse 2.4s ease-in-out infinite;
}
.menu-item.is-very-popular { background: linear-gradient(90deg, rgba(255, 149, 0, 0.06), transparent 60%); border-left: 3px solid #ff7a3a; padding-left: 0.8rem; }
@media (prefers-reduced-motion: reduce) { .muy-popular-badge { animation: none; } }
.menu-item-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 2px;
}
.menu-item-allergens {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.allergen-icon {
  font-size: 0.9rem;
  opacity: 0.85;
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--blue-sea);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}
.menu-item-price .per-pax {
  font-family: var(--font-body);
  font-size: 0.66rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.cta-band {
  padding: 3rem 0;
  background: var(--bg-sunken);
  text-align: center;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* =============================================================
   VINOS PAGE
============================================================= */
.wine-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.wine-section:last-child { border-bottom: none; }
.wine-section-header { text-align: center; margin-bottom: 2rem; }
.wine-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.wine-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}
.wine-card:hover { background: var(--bg-sunken); border-color: var(--blue-sea); }
.wine-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}
.wine-card-region {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-style: italic;
}
.wine-prices {
  text-align: right;
  flex-shrink: 0;
}
.wine-price-bottle {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blue-sea);
  font-weight: 500;
}
.wine-price-glass {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.wine-card--accent {
  background: var(--blue-ice);
  border-color: var(--blue-sea);
}
.wine-card.is-very-popular {
  background: linear-gradient(90deg, rgba(255, 149, 0, 0.10), rgba(255, 94, 58, 0.04) 60%, transparent);
  border-color: #ff7a3a;
  border-left-width: 3px;
  position: relative;
}
.wine-card .muy-popular-badge { margin-left: 0; margin-top: 4px; display: inline-flex; }
.wine-card-info { flex: 1; min-width: 0; }

/* =============================================================
   PLATO DEL DIA (sticky note style)
============================================================= */
.todays-special {
  margin: 2.4rem auto;
  max-width: 720px;
  padding: 0 1.25rem;
}
.todays-special-card {
  position: relative;
  padding: 1.6rem 1.6rem 1.5rem;
  background: linear-gradient(135deg, #fff8e6, #fff3d0);
  border: 1px solid #f0d97d;
  border-left: 4px solid #ff7a3a;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
:root[data-theme="dark"] .todays-special-card,
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .todays-special-card {
    background: linear-gradient(135deg, rgba(255, 215, 100, 0.10), rgba(255, 122, 58, 0.06));
    border-color: rgba(240, 217, 125, 0.35);
  }
}
.todays-special-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #ff7a3a;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
}
.todays-special-content { flex: 1; min-width: 0; }
.todays-special-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  color: #ff5e3a;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.todays-special-name {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}
.todays-special-desc {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.todays-special-desc strong { color: var(--blue-sea); font-weight: 600; }

/* =============================================================
   INSTAGRAM SECTION
============================================================= */
.instagram {
  padding: 4rem 0 4.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.ig-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 0 0.4rem;
}
.ig-avatar {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7) border-box;
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-sea);
}
.ig-handle-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}
.ig-verified {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.ig-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.ig-follow {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  background: var(--blue-sea);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s;
}
.ig-follow:hover { background: var(--blue-deep); transform: translateY(-2px); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) { .ig-grid { gap: 8px; } }
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-sunken);
  display: block;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.3s;
}
.ig-tile:hover img { transform: scale(1.06); filter: brightness(0.85); }
.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M7.8 2h8.4C19.4 2 22 4.6 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8C4.6 22 2 19.4 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2m-.2 2A3.6 3.6 0 0 0 4 7.6v8.8C4 18.39 5.61 20 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6C20 5.61 18.39 4 16.4 4H7.6m9.65 1.5a1.25 1.25 0 0 1 1.25 1.25A1.25 1.25 0 0 1 17.25 8 1.25 1.25 0 0 1 16 6.75a1.25 1.25 0 0 1 1.25-1.25M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3z'/></svg>") center / 26px no-repeat rgba(0, 0, 0, 0);
  opacity: 0;
  transition: background-color 0.3s, opacity 0.3s;
}
.ig-tile:hover::after { background-color: rgba(10, 37, 64, 0.45); opacity: 1; }
.ig-footer {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.ig-footer a { color: var(--blue-sea); font-weight: 600; }

/* =============================================================
   SOCIAL PROOF
============================================================= */
.social-proof {
  padding: 3.4rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.proof-stars {
  font-size: 1.8rem;
  color: #f5b400;
  letter-spacing: 4px;
}
.proof-rating {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  color: var(--blue-sea);
  line-height: 1;
  margin: 0.4rem 0;
}
.proof-count {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 600;
}
.proof-quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.4rem;
  text-align: left;
}
@media (min-width: 720px) { .proof-quotes { grid-template-columns: repeat(3, 1fr); } }
.proof-quote {
  background: var(--bg);
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.proof-quote-stars { color: #f5b400; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.proof-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.7rem;
}
.proof-quote-author { font-size: 0.78rem; font-weight: 600; color: var(--blue-sea); }
.proof-quote-date { font-size: 0.74rem; color: var(--text-muted); }
.proof-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--blue-sea);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--blue-sea);
  transition: background 0.25s, color 0.25s;
}
.proof-cta:hover { background: var(--blue-sea); color: #fff; }

/* =============================================================
   GROUPS / EVENTS BAND
============================================================= */
.groups {
  position: relative;
  padding: 3.6rem 0;
  background:
    linear-gradient(135deg, rgba(10, 37, 64, 0.86), rgba(0, 119, 182, 0.78)),
    var(--blue-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.groups h3 {
  color: #fff;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  margin-bottom: 0.6rem;
}
.groups h3 em { color: var(--blue-sky); }
.groups p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 1.6rem;
}
.groups-cta { display: inline-flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }

/* =============================================================
   Utilities
============================================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
