/* ---------- Base ---------- */
:root {
  --bg: #17100e;
  --bg-alt: #1f1512;
  --panel: #241a16;
  --bg-veil: rgba(23, 16, 14, 0.9);
  --bg-alt-veil: rgba(31, 21, 18, 0.9);
  --panel-veil: rgba(36, 26, 22, 0.9);
  --wine: #7a1f2b;
  --wine-light: #9c2c3a;
  --gold: #c9a45c;
  --text: #f3ece6;
  --text-muted: #c7b9b0;
  --border: rgba(201, 164, 92, 0.25);

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(16px, 0.45vw + 14px, 19px);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.display-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.section-sub {
  max-width: 620px;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

section {
  padding: 5rem 0;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  border: 1px solid transparent;
  overflow: hidden;
}

.btn-primary {
  background: var(--wine);
  color: var(--text);
  border-color: var(--wine);
}

.btn-primary:hover {
  background: var(--wine-light);
  border-color: var(--wine-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -6px rgba(122, 31, 43, 0.6);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  z-index: 0;
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.btn-ar {
  border-color: var(--gold);
  color: var(--gold);
  z-index: 0;
}

.btn-ar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-ar:hover {
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-ar:hover::before {
  transform: scaleX(1);
}

.whatsapp-float {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 90;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  background: var(--wine-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.6);
}

.whatsapp-float svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: #fff;
}

/* ---------- AR landing page (QR code target) ---------- */
.ar-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(122,31,43,0.35), transparent 55%),
    var(--bg);
}

.ar-landing-logo {
  width: clamp(160px, 40vw, 220px);
  margin: 0 auto 2rem;
}

.ar-landing h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 600px;
  margin: 0.5rem 0 1rem;
}

.ar-landing .section-sub {
  max-width: 460px;
  margin: 0 auto;
}

.ar-landing-btn {
  margin-top: 2rem;
}

.ar-model-viewer {
  width: 100%;
  max-width: 480px;
  height: min(55vh, 480px);
  margin-top: 1.5rem;
  --poster-color: transparent;
  background: radial-gradient(circle at 50% 40%, rgba(201,164,92,0.12), transparent 70%);
  border-radius: 18px;
}

.ar-model-progress {
  display: block;
  width: 60%;
  height: 4px;
  margin: 0 auto;
  background: rgba(243,236,230,0.15);
  border-radius: 999px;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.ar-model-progress.hide {
  opacity: 0;
  pointer-events: none;
}

.ar-model-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.3s ease;
}

.ar-landing-fallback {
  margin-top: 2rem;
  color: var(--text-muted);
  max-width: 420px;
  font-size: 0.9rem;
}

.ar-landing-back {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.ar-landing-back:hover {
  color: var(--gold);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(23, 16, 14, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.header-over-hero {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-header.header-over-hero.is-solid {
  background: rgba(23, 16, 14, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.25rem 0.55rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-wordmark {
  height: 26px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.35));
}

.footer-logo {
  height: 52px;
  margin: 0 auto 0.75rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav-cta-item {
  display: none;
}

.nav-links a {
  position: relative;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.btn-nav::after {
  display: none;
}

.btn-nav {
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 3px;
  padding: 0.4rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text) !important;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-nav:hover {
  background: var(--wine-light);
  border-color: var(--wine-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(122, 31, 43, 0.55);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* ---------- Hero ---------- */
.hero-scroll {
  position: relative;
  height: 100vh;
  padding: 0;
}

.hero-pin {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
}

.site-bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  will-change: transform;
}

.site-bg-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

@media (max-width: 860px), (prefers-reduced-motion: reduce) {
  .site-bg-video {
    position: absolute;
    top: -8%;
    left: 0;
    right: 0;
    bottom: auto;
    height: 116vh;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.7;
  background:
    linear-gradient(180deg, rgba(23,16,14,0.5), rgba(23,16,14,0.72) 65%, var(--bg) 100%),
    radial-gradient(circle at 50% 25%, rgba(122,31,43,0.22), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  margin: 0;
  padding-top: max(6rem, 8vh);
  width: 100%;
  opacity: 1;
  will-change: transform, opacity;
}

.hero-quick-info {
  margin-top: 2rem;
  padding-top: 1.3rem;
  max-width: 620px;
  border-top: 1px solid var(--border);
}

.hero-quick-info-label {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  margin-top: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

.hero-quick-info-label:first-child {
  margin-top: 0;
}

.hero-quick-info-value {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.hero-quick-info-value a {
  color: var(--text);
}

.hero-quick-info-value a:hover {
  color: var(--gold);
}

.hero h1,
.hero-scroll h1 {
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: clamp(280px, 30vw, 460px);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.6));
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 560px;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-rating span {
  color: var(--gold);
  letter-spacing: 0.15em;
}

.hero-rating p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.hero-scroll-cue i {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--gold), transparent);
  font-style: normal;
}

/* ---------- About ---------- */
.about {
  padding: 0;
  background: var(--bg-veil);
  overflow: hidden;
}

.about-head {
  padding: 6rem 2rem 3rem;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about-image {
  position: relative;
  min-height: 560px;
}

.about-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.about-numeral {
  position: absolute;
  left: -0.35rem;
  bottom: 2.5rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(243, 236, 230, 0.1);
  letter-spacing: 0.06em;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(243, 236, 230, 0.16);
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4.5rem 3rem 3rem 3.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  max-width: 520px;
}

.about-highlights {
  margin-top: 1.75rem;
  max-width: 520px;
  border-top: 1px solid var(--border);
}

.about-highlights li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.about-highlights li:hover {
  padding-left: 0.6rem;
  color: var(--gold);
}

/* ---------- Placeholder images ---------- */
.placeholder-img {
  background: linear-gradient(135deg, var(--panel), var(--bg-alt));
  border: 1px dashed var(--border);
  border-radius: 4px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.placeholder-img::after {
  content: attr(data-label);
}

/* ---------- Menu teaser ---------- */
.menu-teaser {
  background: var(--bg-alt-veil);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.menu-teaser-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.menu-teaser-grid .eyebrow {
  grid-column: 1;
}

.menu-teaser-quote {
  grid-column: 1;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--text);
}

.menu-teaser-side {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-left: 3rem;
  border-left: 1px solid var(--border);
}

.menu-teaser-side .section-sub {
  margin-bottom: 2rem;
}

/* ---------- Menu (shared with carta.html) ---------- */
.menu {
  background: var(--bg-alt);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.menu-category h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.menu-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.5rem;
  border-bottom: 1px dotted rgba(255,255,255,0.08);
  color: var(--text-muted);
  border-radius: 3px;
  transition: background 0.25s ease, transform 0.25s ease, padding 0.25s ease;
}

.menu-items li:hover {
  background: linear-gradient(90deg, rgba(122,31,43,0.16), transparent);
  transform: translateX(6px);
}

.menu-items li span:first-child {
  color: var(--text);
}

.menu-items li.featured {
  color: var(--gold);
}

.menu-items .price {
  white-space: nowrap;
  color: var(--gold);
  font-family: var(--font-heading);
  transition: text-shadow 0.25s ease;
}

.menu-items li:hover .price {
  text-shadow: 0 0 10px rgba(201, 164, 92, 0.6);
}

.menu-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.price-pair {
  display: flex;
  gap: 1.25rem;
  white-space: nowrap;
  color: var(--gold);
  font-family: var(--font-heading);
}

.price-pair span {
  min-width: 52px;
  text-align: right;
}

.price-columns-header {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-columns-header span {
  min-width: 52px;
  text-align: right;
}

/* ---------- Carta page ---------- */
.carta-hero {
  padding: 8rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(122,31,43,0.35), transparent 55%),
    var(--bg);
}

.carta-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 1.25rem;
}

.flag {
  width: 1.35em;
  height: 0.95em;
  vertical-align: middle;
  margin-left: 0.4em;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.carta-switch {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.cuts-diagram {
  display: block;
  width: min(100%, 720px);
  height: auto;
  margin: 3rem auto 0;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.45));
}

.cuts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cut-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
}

.cut-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.cut-card h4 {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.cut-stats li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
}

.cut-stats .stars {
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ---------- Gallery ---------- */
.gallery {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--bg-veil);
}

.gallery-head {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  aspect-ratio: 1 / 1;
  border-radius: 3px;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.14);
  transition: transform 0.6s cubic-bezier(0.16, 0.7, 0.3, 1), filter 0.4s ease;
  filter: saturate(0.92) brightness(0.94);
  will-change: transform;
}

.gallery-photo:hover img {
  filter: saturate(1.05) brightness(1);
}

/* ---------- Icons ---------- */
.icon-instagram {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.3em;
  vertical-align: middle;
  background: linear-gradient(135deg, var(--gold), var(--wine-light) 55%, var(--wine));
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDBDOC43NCAwIDguMzMzLjAxNSA3LjA1My4wNzIgNS43NzUuMTMyIDQuOTA1LjMzMyA0LjE0LjYzYy0uNzg5LjMwNi0xLjQ1OS43MTctMi4xMjYgMS4zODRTLjkzNSAzLjM1LjYzIDQuMTRDLjMzMyA0LjkwNS4xMzEgNS43NzUuMDcyIDcuMDUzLjAxMiA4LjMzMyAwIDguNzQgMCAxMnMuMDE1IDMuNjY3LjA3MiA0Ljk0N2MuMDYgMS4yNzcuMjYxIDIuMTQ4LjU1OCAyLjkxMy4zMDYuNzg4LjcxNyAxLjQ1OSAxLjM4NCAyLjEyNi42NjcuNjY2IDEuMzM2IDEuMDc5IDIuMTI2IDEuMzg0Ljc2Ni4yOTYgMS42MzYuNDk5IDIuOTEzLjU1OEM4LjMzMyAyMy45ODggOC43NCAyNCAxMiAyNHMzLjY2Ny0uMDE1IDQuOTQ3LS4wNzJjMS4yNzctLjA2IDIuMTQ4LS4yNjIgMi45MTMtLjU1OC43ODgtLjMwNiAxLjQ1OS0uNzE4IDIuMTI2LTEuMzg0LjY2Ni0uNjY3IDEuMDc5LTEuMzM1IDEuMzg0LTIuMTI2LjI5Ni0uNzY1LjQ5OS0xLjYzNi41NTgtMi45MTMuMDYtMS4yOC4wNzItMS42ODcuMDcyLTQuOTQ3cy0uMDE1LTMuNjY3LS4wNzItNC45NDdjLS4wNi0xLjI3Ny0uMjYyLTIuMTQ5LS41NTgtMi45MTMtLjMwNi0uNzg5LS43MTgtMS40NTktMS4zODQtMi4xMjZDMjEuMzE5IDEuMzQ3IDIwLjY1MS45MzUgMTkuODYuNjNjLS43NjUtLjI5Ny0xLjYzNi0uNDk5LTIuOTEzLS41NThDMTUuNjY3LjAxMiAxNS4yNiAwIDEyIDB6bTAgMi4xNmMzLjIwMyAwIDMuNTg1LjAxNiA0Ljg1LjA3MSAxLjE3LjA1NSAxLjgwNS4yNDkgMi4yMjcuNDE1LjU2Mi4yMTcuOTYuNDc3IDEuMzgyLjg5Ni40MTkuNDIuNjc5LjgxOS44OTYgMS4zODEuMTY0LjQyMi4zNiAxLjA1Ny40MTMgMi4yMjcuMDU3IDEuMjY2LjA3IDEuNjQ2LjA3IDQuODVzLS4wMTUgMy41ODUtLjA3NCA0Ljg1Yy0uMDYxIDEuMTctLjI1NiAxLjgwNS0uNDIxIDIuMjI3LS4yMjQuNTYyLS40NzkuOTYtLjg5OSAxLjM4Mi0uNDE5LjQxOS0uODI0LjY3OS0xLjM4Ljg5Ni0uNDIuMTY0LTEuMDY1LjM2LTIuMjM1LjQxMy0xLjI3NC4wNTctMS42NDkuMDctNC44NTkuMDctMy4yMTEgMC0zLjU4Ni0uMDE1LTQuODU5LS4wNzQtMS4xNzEtLjA2MS0xLjgxNi0uMjU2LTIuMjM2LS40MjEtLjU2OS0uMjI0LS45Ni0uNDc5LTEuMzc5LS44OTktLjQyMS0uNDE5LS42OS0uODI0LS45LTEuMzgtLjE2NS0uNDItLjM1OS0xLjA2NS0uNDItMi4yMzUtLjA0NS0xLjI2LS4wNjEtMS42NDktLjA2MS00Ljg0NCAwLTMuMTk2LjAxNi0zLjU4Ni4wNjEtNC44NjEuMDYxLTEuMTcuMjU1LTEuODE0LjQyLTIuMjM0LjIxLS41Ny40NzktLjk2LjktMS4zODEuNDE5LS40MTkuODEtLjY4OSAxLjM3OS0uODk4LjQyLS4xNjYgMS4wNTEtLjM2MSAyLjIyMS0uNDIxIDEuMjc1LS4wNDUgMS42NS0uMDYgNC44NTktLjA2bC4wNDUuMDN6bTAgMy42NzhjLTMuNDA1IDAtNi4xNjIgMi43Ni02LjE2MiA2LjE2MiAwIDMuNDA1IDIuNzYgNi4xNjIgNi4xNjIgNi4xNjIgMy40MDUgMCA2LjE2Mi0yLjc2IDYuMTYyLTYuMTYyIDAtMy40MDUtMi43Ni02LjE2Mi02LjE2Mi02LjE2MnpNMTIgMTZjLTIuMjEgMC00LTEuNzktNC00czEuNzktNCA0LTQgNCAxLjc5IDQgNC0xLjc5IDQtNCA0em03Ljg0Ni0xMC40MDVjMCAuNzk1LS42NDYgMS40NC0xLjQ0IDEuNDQtLjc5NSAwLTEuNDQtLjY0Ni0xLjQ0LTEuNDQgMC0uNzk0LjY0Ni0xLjQzOSAxLjQ0LTEuNDM5Ljc5My0uMDAxIDEuNDQuNjQ1IDEuNDQgMS40Mzl6Ii8+PC9zdmc+");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDBDOC43NCAwIDguMzMzLjAxNSA3LjA1My4wNzIgNS43NzUuMTMyIDQuOTA1LjMzMyA0LjE0LjYzYy0uNzg5LjMwNi0xLjQ1OS43MTctMi4xMjYgMS4zODRTLjkzNSAzLjM1LjYzIDQuMTRDLjMzMyA0LjkwNS4xMzEgNS43NzUuMDcyIDcuMDUzLjAxMiA4LjMzMyAwIDguNzQgMCAxMnMuMDE1IDMuNjY3LjA3MiA0Ljk0N2MuMDYgMS4yNzcuMjYxIDIuMTQ4LjU1OCAyLjkxMy4zMDYuNzg4LjcxNyAxLjQ1OSAxLjM4NCAyLjEyNi42NjcuNjY2IDEuMzM2IDEuMDc5IDIuMTI2IDEuMzg0Ljc2Ni4yOTYgMS42MzYuNDk5IDIuOTEzLjU1OEM4LjMzMyAyMy45ODggOC43NCAyNCAxMiAyNHMzLjY2Ny0uMDE1IDQuOTQ3LS4wNzJjMS4yNzctLjA2IDIuMTQ4LS4yNjIgMi45MTMtLjU1OC43ODgtLjMwNiAxLjQ1OS0uNzE4IDIuMTI2LTEuMzg0LjY2Ni0uNjY3IDEuMDc5LTEuMzM1IDEuMzg0LTIuMTI2LjI5Ni0uNzY1LjQ5OS0xLjYzNi41NTgtMi45MTMuMDYtMS4yOC4wNzItMS42ODcuMDcyLTQuOTQ3cy0uMDE1LTMuNjY3LS4wNzItNC45NDdjLS4wNi0xLjI3Ny0uMjYyLTIuMTQ5LS41NTgtMi45MTMtLjMwNi0uNzg5LS43MTgtMS40NTktMS4zODQtMi4xMjZDMjEuMzE5IDEuMzQ3IDIwLjY1MS45MzUgMTkuODYuNjNjLS43NjUtLjI5Ny0xLjYzNi0uNDk5LTIuOTEzLS41NThDMTUuNjY3LjAxMiAxNS4yNiAwIDEyIDB6bTAgMi4xNmMzLjIwMyAwIDMuNTg1LjAxNiA0Ljg1LjA3MSAxLjE3LjA1NSAxLjgwNS4yNDkgMi4yMjcuNDE1LjU2Mi4yMTcuOTYuNDc3IDEuMzgyLjg5Ni40MTkuNDIuNjc5LjgxOS44OTYgMS4zODEuMTY0LjQyMi4zNiAxLjA1Ny40MTMgMi4yMjcuMDU3IDEuMjY2LjA3IDEuNjQ2LjA3IDQuODVzLS4wMTUgMy41ODUtLjA3NCA0Ljg1Yy0uMDYxIDEuMTctLjI1NiAxLjgwNS0uNDIxIDIuMjI3LS4yMjQuNTYyLS40NzkuOTYtLjg5OSAxLjM4Mi0uNDE5LjQxOS0uODI0LjY3OS0xLjM4Ljg5Ni0uNDIuMTY0LTEuMDY1LjM2LTIuMjM1LjQxMy0xLjI3NC4wNTctMS42NDkuMDctNC44NTkuMDctMy4yMTEgMC0zLjU4Ni0uMDE1LTQuODU5LS4wNzQtMS4xNzEtLjA2MS0xLjgxNi0uMjU2LTIuMjM2LS40MjEtLjU2OS0uMjI0LS45Ni0uNDc5LTEuMzc5LS44OTktLjQyMS0uNDE5LS42OS0uODI0LS45LTEuMzgtLjE2NS0uNDItLjM1OS0xLjA2NS0uNDItMi4yMzUtLjA0NS0xLjI2LS4wNjEtMS42NDktLjA2MS00Ljg0NCAwLTMuMTk2LjAxNi0zLjU4Ni4wNjEtNC44NjEuMDYxLTEuMTcuMjU1LTEuODE0LjQyLTIuMjM0LjIxLS41Ny40NzktLjk2LjktMS4zODEuNDE5LS40MTkuODEtLjY4OSAxLjM3OS0uODk4LjQyLS4xNjYgMS4wNTEtLjM2MSAyLjIyMS0uNDIxIDEuMjc1LS4wNDUgMS42NS0uMDYgNC44NTktLjA2bC4wNDUuMDN6bTAgMy42NzhjLTMuNDA1IDAtNi4xNjIgMi43Ni02LjE2MiA2LjE2MiAwIDMuNDA1IDIuNzYgNi4xNjIgNi4xNjIgNi4xNjIgMy40MDUgMCA2LjE2Mi0yLjc2IDYuMTYyLTYuMTYyIDAtMy40MDUtMi43Ni02LjE2Mi02LjE2Mi02LjE2MnpNMTIgMTZjLTIuMjEgMC00LTEuNzktNC00czEuNzktNCA0LTQgNCAxLjc5IDQgNC0xLjc5IDQtNCA0em03Ljg0Ni0xMC40MDVjMCAuNzk1LS42NDYgMS40NC0xLjQ0IDEuNDQtLjc5NSAwLTEuNDQtLjY0Ni0xLjQ0LTEuNDQgMC0uNzk0LjY0Ni0xLjQzOSAxLjQ0LTEuNDM5Ljc5My0uMDAxIDEuNDQuNjQ1IDEuNDQgMS40Mzl6Ii8+PC9zdmc+");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: transform 0.25s ease, filter 0.25s ease;
}

a:hover .icon-instagram {
  transform: scale(1.15);
  filter: brightness(1.3);
}

/* ---------- Location ---------- */
.location {
  padding-top: 0;
  padding-bottom: 0;
}

.location-head {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background: var(--bg-veil);
}

.location-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--border);
}

.location-row:last-of-type {
  border-bottom: 1px solid var(--border);
}

.location-info {
  background: var(--bg-veil);
}

.location-info-inner {
  padding: 3.5rem 2rem 3.5rem 2rem;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

.location-row .location-info-inner {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0 0 0 auto;
}

.location-row-reverse .location-info-inner {
  padding-left: 3rem;
  padding-right: 2rem;
  margin: 0 auto 0 0;
}

.location-info h3 {
  font-size: 1.9rem;
  margin-bottom: 1.75rem;
}

.location-sub {
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h4 {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
}

.info-block p {
  color: var(--text-muted);
}

.info-block a:hover {
  color: var(--gold);
}

.location-map {
  position: relative;
  display: block;
  min-height: 340px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  pointer-events: none;
  filter: invert(94%) hue-rotate(178deg) brightness(0.87) contrast(0.92) saturate(0.6);
  transition: filter 0.3s ease;
}

.location-map:hover iframe {
  filter: invert(94%) hue-rotate(178deg) brightness(0.95) contrast(0.95) saturate(0.75);
}

.location-map::after {
  content: "Abrir en Google Maps";
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.6rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: linear-gradient(0deg, rgba(23,16,14,0.95), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-map:hover::after {
  opacity: 1;
}

/* ---------- Reservas ---------- */
.reservas {
  background:
    linear-gradient(180deg, rgba(23,16,14,0.75), rgba(23,16,14,0.9)),
    var(--panel-veil);
  text-align: center;
}

.reservas-inner {
  max-width: 780px;
}

.reservas-inner .display-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.reservas-locations {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.reservas-location h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.reservas-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt-veil);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
  color: var(--text-muted);
}

.footer-locations {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer-locations strong {
  color: var(--text);
}

.footer-social {
  margin: 0.75rem 0;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px), (prefers-reduced-motion: reduce) {
  .hero-scroll-cue {
    display: none;
  }
}

@media (max-height: 1150px) {
  .hero-scroll-cue {
    display: none;
  }

  .hero-content {
    padding-top: max(5.5rem, 5vh);
  }

  .hero h1 {
    margin-bottom: 1rem;
  }

  .hero-sub {
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    margin-bottom: 1.25rem;
  }

  .hero-quick-info {
    margin-top: 1rem;
    padding-top: 0.9rem;
  }

  .hero-quick-info-label {
    margin-top: 0.6rem;
  }
}

@media (max-height: 860px) {
  .hero-quick-info {
    display: none;
  }
}

@media (max-width: 860px) {
  .about-body {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 320px;
  }

  .about-numeral {
    display: none;
  }

  .about-text {
    padding: 2.5rem 2rem;
  }

  .menu-teaser-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .menu-teaser-grid .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .menu-teaser-side {
    grid-column: 1;
    grid-row: auto;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 1rem;
  }

  .menu-teaser-side .section-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .cuts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-row,
  .location-row-reverse {
    grid-template-columns: 1fr;
  }

  .location-row-reverse {
    direction: ltr;
  }

  .location-row .location-info,
  .location-row-reverse .location-info {
    margin: 0;
    max-width: none;
    padding: 2.5rem 2rem;
  }

  .location-row-reverse .location-map {
    order: -1;
  }
}

@media (max-width: 960px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-item {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 400px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .btn-nav {
    border: none;
  }
}

@media (max-width: 520px) {
  .cuts-grid {
    grid-template-columns: 1fr;
  }

  .price-pair,
  .price-columns-header {
    gap: 0.75rem;
  }

  .price-pair span,
  .price-columns-header span {
    min-width: 44px;
  }
}

/* ---------- Scroll reveal ---------- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 0.12s);
}

[data-animate="fade-up"] { transform: translateY(28px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"] { transform: translateX(32px); }

[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .gallery-photo img {
    transform: none !important;
  }
}
