/* ============================================================
   MUELLE VIEJO LOUNGE CAFÉ — Main Stylesheet v2
   ============================================================ */

:root {
  --c-navy: #0d1b2a;
  --c-navy-mid: #162438;
  --c-gold: #c8841a;
  --c-gold-light: #e8a83a;
  --c-cream: #f8f0e0;
  --c-warm-white: #fdfaf4;
  --c-sand: #e8d8b8;
  --c-teal: #2a6b7c;
  --c-text: #1a1208;
  --c-text-muted: #6b5c48;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 48px;
  --shadow-card: 0 4px 32px rgba(13, 27, 42, 0.12);
  --shadow-deep: 0 16px 64px rgba(13, 27, 42, 0.22);
  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--c-warm-white);
  color: var(--c-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
  padding: 4px 14px;
  border: 1px solid var(--c-gold);
  border-radius: 100px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--c-navy);
  margin-bottom: 20px;
}
.section__title em {
  font-style: italic;
  color: var(--c-gold);
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.section {
  padding-block: clamp(64px, 10vw, 120px);
}
.section--dark {
  background: var(--c-navy);
  color: var(--c-cream);
}
.section--dark .section__title {
  color: var(--c-cream);
}
.section--dark .section__label {
  color: var(--c-gold-light);
  border-color: var(--c-gold-light);
}
.section--warm {
  background: var(--c-cream);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-gold);
  color: white;
  border-color: var(--c-gold);
}
.btn--primary:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 132, 26, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(248, 240, 224, 0.45);
}
.btn--outline:hover {
  background: rgba(248, 240, 224, 0.1);
  border-color: var(--c-cream);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--c-navy);
  color: var(--c-cream);
  border-color: var(--c-navy);
}
.btn--dark:hover {
  background: var(--c-navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 5vw, 60px);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.nav--scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.3);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1;
}
.nav__logo span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248, 240, 224, 0.82);
  padding: 7px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--c-cream);
  background: rgba(255, 255, 255, 0.1);
}
.nav__cta {
  background: var(--c-gold) !important;
  color: white !important;
  padding: 8px 22px !important;
}
.nav__cta:hover {
  background: var(--c-gold-light) !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-cream);
  transition: var(--transition);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 4px;
}
.loader__sub {
  font-size: 0.68rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 32px;
}
.loader__bar-wrap {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  overflow: hidden;
}
.loader__bar-fill {
  height: 100%;
  background: var(--c-gold);
  border-radius: 100px;
  animation: loadFill 1.2s ease forwards;
}
@keyframes loadFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--c-navy);
  background-image: url("https://images.unsplash.com/photo-1442512595331-e89e73853f31?w=1800&q=80");
  background-size: cover;
  background-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(10, 20, 35, 0.75) 0%,
      rgba(10, 20, 35, 0.5) 55%,
      rgba(10, 20, 35, 0.15) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 20, 35, 0.2) 0%,
      transparent 40%,
      rgba(10, 20, 35, 0.55) 100%
    );
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 120px 90px;
}
.hero__inner {
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 600;
  line-height: 0.93;
  color: var(--c-cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(248, 240, 224, 0.72);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

/* Bottom info strip */
.hero__info-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid rgba(248, 240, 224, 0.1);
  backdrop-filter: blur(10px);
  background: rgba(10, 20, 35, 0.5);
  padding: 16px clamp(20px, 5vw, 60px);
  display: flex;
  gap: 0;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
  overflow-x: auto;
}
.hero__info-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(248, 240, 224, 0.8);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 28px;
}
.hero__info-item:first-child {
  padding-left: 0;
}
.hero__info-item i {
  color: var(--c-gold);
  flex-shrink: 0;
}
.hero__info-item + .hero__info-item {
  border-left: 1px solid rgba(248, 240, 224, 0.15);
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--c-gold);
  padding: 16px 0;
  overflow: hidden;
}
.features-strip__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding-inline: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
  justify-content: center;
}
.features-strip__item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 24px;
  white-space: nowrap;
}
.features-strip__item + .features-strip__item {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* ── ABOUT ── */
.about__text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
.about__text p strong {
  color: var(--c-navy);
  font-weight: 600;
}
.about__visual {
  position: relative;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-deep);
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about__img-wrap:hover img {
  transform: scale(1.05);
}
.about__img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--c-gold);
  color: white;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.about__img-badge-num {
  font-size: 1.8rem;
  line-height: 1;
}
.about__img-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.85;
}
.about__img-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: var(--c-teal);
  opacity: 0.3;
  z-index: -1;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about__feat {
  background: var(--c-cream);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border-left: 3px solid var(--c-gold);
  -webkit-border-radius: var(--radius-md);
  -moz-border-radius: var(--radius-md);
  -ms-border-radius: var(--radius-md);
  -o-border-radius: var(--radius-md);
}
.about__feat-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 4px;
}
.about__feat-title {
  font-weight: 600;
  color: var(--c-navy);
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.about__feat-desc {
  font-size: 0.76rem;
  color: var(--c-text-muted);
}

/* ── MENU ── */
.menu__intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}
.menu__intro p {
  font-size: 1.02rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-top: 14px;
}
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.menu__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1.5px solid rgba(13, 27, 42, 0.18);
  background: transparent;
  padding: 0.95rem 1.45rem;
  font-weight: 600;
  color: var(--c-navy);
  cursor: pointer;
  transition: var(--transition);
}

.menu__tab:hover {
  background: rgba(13, 27, 42, 0.04);
  border-color: rgba(13, 27, 42, 0.28);
}

.menu__tab.active {
  background: transparent;
  color: var(--c-navy);
  border: 1.5px solid rgba(13, 27, 42, 0.18);
  box-shadow: none;
  transform: none;
}

.menu__tab.active:hover {
  background: rgba(13, 27, 42, 0.04);
  border-color: rgba(13, 27, 42, 0.28);
}

.menu__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}

.menu__pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1.5px solid var(--c-navy);
  background: var(--c-navy);
  color: var(--c-cream);
  transition: var(--transition);
}

.menu__pdf-btn:hover {
  background: var(--c-navy-mid);
  border-color: var(--c-navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.menu__pdf-btn--ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: rgba(13, 27, 42, 0.18);
}

.menu__pdf-btn--ghost:hover {
  background: rgba(13, 27, 42, 0.06);
  border-color: rgba(13, 27, 42, 0.3);
}

@media (max-width: 640px) {
  .menu__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .menu__pdf-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Category image */
.menu__cat-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.menu__cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.menu__cat-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.9) 0%,
    transparent 100%
  );
  padding: 30px 20px 16px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--c-cream);
}

/* Section heading within a menu tab */
.menu__section-head {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-navy);
  border-bottom: 2px solid var(--c-sand);
  padding-bottom: 8px;
  margin: 24px 0 14px;
  grid-column: 1 / -1;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 8px;
}

/* Full-width elements inside the grid */
.menu__cat-img,
.menu__section-head,
.menu__extras,
.menu__allergen {
  grid-column: 1 / -1;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 16px;
  background: white;
  border: 1px solid var(--c-sand);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
/* Menu row animation — enhancement only, items are visible by default */
.menu-row--anim {
  animation: menuRowIn 0.35s ease both;
}
@keyframes menuRowIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Safety: if animation doesn't fire, items must still be visible */
.menu-row {
  opacity: 1;
}
.menu-row:hover {
  border-color: rgba(200, 132, 26, 0.5);
  box-shadow: 0 2px 12px rgba(200, 132, 26, 0.09);
  transform: translateX(3px);
}
.menu-row__name {
  font-size: 0.9rem;
  color: var(--c-text);
  flex: 1;
  line-height: 1.4;
}
.menu-row__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu__extras {
  background: rgba(200, 132, 26, 0.06);
  border: 1px solid rgba(200, 132, 26, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 16px;
  grid-column: 1/-1;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.menu__extras strong {
  color: var(--c-gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.menu__allergen {
  margin-top: 10px;
  font-size: 0.74rem;
  color: var(--c-text-muted);
  font-style: italic;
  grid-column: 1/-1;
  text-align: center;
}

/* ── GALLERY ── */
.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 240px;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: stretch;
}
.gallery__item:nth-child(1) {
  grid-row: span 2;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 0;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.gallery__item:hover img {
  transform: scale(1.07);
}
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.65) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}
.gallery__item-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.gallery__item:hover .gallery__item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── LOCATION ── */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-top: 48px;
}
.location__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  height: 450px;
}
.location__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.location__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border: 1px solid var(--c-sand);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: var(--transition);
}
.location__card:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-card);
}
.location__card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(200, 132, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-gold);
}
.location__card h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 4px;
}
.location__card p,
.location__card a {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.location__card a:hover {
  color: var(--c-gold);
}

/* ── CTA ── */
.cta-strip {
  background: linear-gradient(135deg, var(--c-navy) 0%, #0a2232 100%);
  padding-block: clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 132, 26, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 16px;
}
.cta-strip__title em {
  font-style: italic;
  color: var(--c-gold-light);
}
.cta-strip__desc {
  font-size: 1.05rem;
  color: rgba(248, 240, 224, 0.6);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-strip__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: #080f18;
  color: rgba(248, 240, 224, 0.55);
  padding: 40px clamp(20px, 5vw, 60px);
}
.footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-cream);
}
.footer__logo span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 0.8rem;
}
.footer__links a:hover {
  color: var(--c-gold-light);
}
.footer__copy {
  font-size: 0.76rem;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(248, 240, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 240, 224, 0.55);
  transition: var(--transition);
}
.footer__social-link:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  animation: fallbackReveal 0.7s ease 2.5s both;
}
.reveal.visible {
  animation: none;
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
@keyframes fallbackReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px 200px;
  }
  .gallery__item:nth-child(1) {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px 32px;
    gap: 6px;
    align-items: flex-start;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.4s ease,
      opacity 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    font-size: 1rem;
    padding: 10px 14px;
  }
  .nav__hamburger {
    display: flex;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .about__img-badge {
    right: 16px;
    bottom: 16px;
  }
  .about__img-accent {
    display: none;
  }
  .hero__info-strip {
    gap: 0;
    padding: 12px 20px;
    overflow-x: auto;
  }
  .location__grid {
    grid-template-columns: 1fr;
  }
  .location__map-wrap {
    height: 280px;
  }
  .menu__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer__links {
    flex-wrap: wrap;
    gap: 14px;
  }
  .features-strip__item {
    padding: 5px 14px;
    font-size: 0.78rem;
  }
  .about__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    justify-content: center;
  }
  .cta-strip__actions {
    flex-direction: column;
    align-items: center;
  }
  .gallery__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }
  .gallery__item:nth-child(1) {
    grid-column: span 1;
  }
}
