﻿/* ══════════════════════════════════════════════════════
   SABOR HUANCA — Premium Catering Huancayo
   Archetype 02: Editorial Dark Warm
   ══════════════════════════════════════════════════════ */

:root {
  --carbon:       #0D0B08;
  --carbon-2:     #15110D;
  --carbon-3:     #1E1812;
  --gold:         #C8922A;
  --gold-light:   #E8B84B;
  --gold-dim:     rgba(200,146,42,0.35);
  --terracota:    #8B3A2A;
  --cream:        #F5EED8;
  --cream-2:      #DDD0B8;
  --cream-3:      #8B7E68;
  --bone:         #FAF6EE;
  --line:         rgba(245,238,216,0.1);
  --ease-out:     cubic-bezier(.25,.8,.25,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--carbon);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,146,42,.06), transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  color: var(--cream);
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  overflow-x: clip;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ── SCROLL PROGRESS ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── CURSOR ── */
#cursor-dot {
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate3d(0,0,0) translate(-50%,-50%);
  transition: opacity .25s, transform .12s var(--ease-out);
}
#cursor-dot.is-ready { opacity: 1; }
#cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(232,184,75,.45);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transform: translate3d(0,0,0) translate(-50%,-50%);
  transition: opacity .3s, width .3s var(--ease-spring), height .3s var(--ease-spring), border-color .3s;
}
#cursor-ring.is-ready { opacity: 1; }
#cursor-ring.is-hover {
  width: 52px; height: 52px;
  border-color: rgba(232,184,75,.9);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 900;
  box-shadow: 0 6px 28px rgba(37,211,102,.4);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  text-decoration: none;
  cursor: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: 80px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,11,8,.88), transparent);
  transition: background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(13,11,8,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(200,146,42,.15);
}

/* Logo — col 1 izquierda */
.nav-logo {
  justify-self: start;
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Links — col 2 centro */
.nav-links {
  justify-self: center;
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .65;
  transition: opacity .25s, color .25s;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }

/* CTA — col 3 derecha */
.nav-cta {
  justify-self: end;
  background: transparent;
  border: 1px solid rgba(200,146,42,.7);
  color: var(--gold);
  padding: 9px 24px;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--carbon); border-color: var(--gold); }

/* Hamburger — oculto en desktop, col 3 en móvil */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  justify-self: end;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .04em;
}
.logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-2);
  letter-spacing: .12em;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,11,8,.98);
  z-index: 900;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li + li { margin-top: 24px; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .06em;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-cta { margin-top: 8px; }

/* ── ORNAMENT / SEPARATOR ── */
.ornament-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px auto;
  width: fit-content;
}
.orn-line { width: 50px; height: 1px; background: var(--gold); opacity: .45; }
.orn-diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── SECTION HEADER ── */
.sec-header { text-align: center; margin-bottom: 64px; }
.sec-kicker {
  font-size: .67rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0;
  text-wrap: balance;
}
.sec-title em { font-style: italic; color: var(--gold-light); }
.sec-desc {
  font-size: .86rem;
  color: rgba(245,238,216,.48);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.9;
  margin-top: 14px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--carbon);
  padding: 14px 38px;
  font-family: 'Jost', sans-serif;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color .35s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
  z-index: 0;
}
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 14px 38px;
  font-family: 'Jost', sans-serif;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,238,216,.35);
  cursor: none;
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-dark {
  display: inline-block;
  background: var(--carbon);
  color: var(--cream);
  padding: 14px 38px;
  font-family: 'Jost', sans-serif;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: background .3s;
}
.btn-dark:hover { background: var(--carbon-3); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety: data-split elements must never be invisible */
.reveal[data-split] { opacity: 1; transform: none; }

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08) translateY(0); }
  to   { transform: scale(1.13) translateY(-18px); }
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,11,8,.92) 0%,
    rgba(13,11,8,.58) 50%,
    rgba(139,58,42,.3) 100%
  );
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(200,146,42,.12), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(139,58,42,.1), transparent);
  animation: meshPulse 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes meshPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .6; }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 0 30px;
  animation: heroFadeIn 1.6s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .67rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeIn 1.2s ease .3s both;
}
.dot-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.6); opacity: .5; }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--bone);
  margin-bottom: 26px;
  opacity: 0;
  animation: heroFadeIn 1.2s ease .6s both;
  text-wrap: balance;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: .9rem;
  letter-spacing: .06em;
  color: rgba(245,238,216,.65);
  line-height: 1.95;
  max-width: 520px;
  margin: 0 auto 42px;
  opacity: 0;
  animation: heroFadeIn 1.2s ease .9s both;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1.2s ease 1.1s both;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  animation: heroFadeIn 1.2s ease 1.4s both;
}
.hstat {
  text-align: center;
  padding: 0 32px;
}
.hstat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hstat span { color: var(--gold); font-size: 1.4rem; }
.hstat p {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,238,216,.4);
  margin-top: 5px;
}
.hstat-sep { width: 1px; height: 44px; background: var(--line); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .45;
  animation: heroFadeIn 1s ease 2s both;
}
.hero-scroll span {
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { transform: scaleY(1); opacity: .5; }
  50%     { transform: scaleY(.45); opacity: 1; }
}

/* ── INTRO QUOTE ── */
.intro-quote {
  padding: 90px 60px;
  background: var(--carbon-2);
  position: relative;
  text-align: center;
}
.intro-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 11rem;
  color: var(--gold);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
}
.intro-inner { position: relative; z-index: 1; }
.intro-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto 20px;
}
.intro-attr {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,238,216,.38);
}

/* ── CARTA ── */
.carta {
  padding: 110px 60px;
  background: var(--carbon);
}

.carta-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.plato-card {
  background: var(--carbon-3);
  border: 1px solid rgba(200,146,42,.08);
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s;
  cursor: none;
  perspective: 1000px;
}
@media (hover: hover) {
  .plato-card:hover {
    transform: translateY(-7px);
    border-color: rgba(200,146,42,.38);
  }
  .plato-card:hover .plato-img { transform: scale(1.07); }
  .plato-card:hover .plato-scrim { opacity: 1; }
}

.card-xl { grid-column: span 7; }
.card-md { grid-column: span 5; }
.card-sm { grid-column: span 4; }

.plato-img-wrap { overflow: hidden; height: 420px; position: relative; }
.plato-img-sm   { height: 220px; }
.card-xl .plato-img-wrap { height: 420px; }
.card-md .plato-img-wrap { height: 420px; }

.plato-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .7s var(--ease-out);
}
.plato-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,.8) 0%, transparent 60%);
  opacity: .25;
  transition: opacity .4s;
}
.plato-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--carbon);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 500;
}
.badge-chef { background: var(--terracota); color: var(--bone); }

.plato-body { padding: 22px 26px 26px; }
.plato-cat {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.plato-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 9px;
}
.card-xl .plato-name { font-size: 1.9rem; }
.plato-desc {
  font-size: .8rem;
  color: rgba(245,238,216,.48);
  line-height: 1.8;
  margin-bottom: 16px;
}
.plato-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.plato-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.tag {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(200,146,42,.28);
  color: rgba(200,146,42,.7);
  padding: 3px 9px;
}
.plato-link {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
  white-space: nowrap;
}
.plato-link:hover { border-color: var(--gold); }
.plato-link span { display: inline-block; transition: transform .3s; }
.plato-link:hover span { transform: translateX(4px); }

/* ── EVENTOS ── */
.eventos {
  padding: 110px 60px;
  background: var(--carbon-2);
  position: relative;
  overflow: hidden;
}
.eventos-bg-text {
  position: absolute;
  top: 50%;
  left: -1%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  font-weight: 600;
  color: var(--gold);
  opacity: .025;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: .25em;
}
.eventos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}
.evento-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.evento-img-wrap { height: 420px; overflow: hidden; position: relative; }
.evento-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
@media (hover: hover) {
  .evento-item:hover .evento-img { transform: scale(1.06); }
  .evento-item:hover .evento-scrim { opacity: .72; }
  .evento-item:hover .evento-desc { opacity: 1; transform: translateY(0); }
}
.evento-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,.92) 0%, rgba(13,11,8,.18) 60%);
  opacity: .5;
  transition: opacity .5s;
}
.evento-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 34px 38px;
}
.evento-tipo {
  font-size: .6rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 9px;
}
.evento-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 300;
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 11px;
}
.evento-desc {
  font-size: .8rem;
  color: rgba(245,238,216,.68);
  line-height: 1.75;
  max-width: 320px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease .1s, transform .4s ease .1s;
}

.evento-panel {
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  grid-column: span 2;
  margin-top: 2px;
}
.evento-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--carbon);
  margin: 18px 0 13px;
}
.evento-panel p {
  font-size: .84rem;
  color: rgba(13,11,8,.62);
  line-height: 1.85;
  max-width: 490px;
  margin-bottom: 30px;
}

/* ── MENU EVENTOS ── */
.menu-eventos {
  padding: 110px 60px;
  background: var(--carbon);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid rgba(200,146,42,.08);
}
.menu-item {
  padding: 38px 34px;
  background: var(--carbon-2);
  border: 1px solid transparent;
  transition: border-color .4s, background .4s;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.menu-item::before {
  content: attr(data-num);
  position: absolute;
  top: -12px; right: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 600;
  color: var(--gold);
  opacity: .05;
  line-height: 1;
  transition: opacity .4s;
  pointer-events: none;
}
@media (hover: hover) {
  .menu-item:hover { border-color: rgba(200,146,42,.28); background: rgba(200,146,42,.04); }
  .menu-item:hover::before { opacity: .12; }
  .menu-item:hover .menu-line { width: 56px; opacity: 1; }
}
.menu-num {
  font-size: .6rem;
  letter-spacing: .32em;
  color: var(--gold);
  margin-bottom: 14px;
}
.menu-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 10px;
}
.menu-detail {
  font-size: .78rem;
  color: rgba(245,238,216,.42);
  line-height: 1.8;
}
.menu-line {
  width: 28px; height: 1px;
  background: var(--gold);
  margin: 14px 0;
  opacity: .38;
  transition: width .4s, opacity .4s;
}

/* ── PROCESO ── */
.proceso {
  padding: 100px 60px;
  background: var(--carbon-2);
}
.proceso-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.proceso-item {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}
.proceso-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: 18px;
}
.proceso-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.proceso-content p {
  font-size: .82rem;
  color: rgba(245,238,216,.48);
  line-height: 1.85;
}
.proceso-arrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: .35;
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
}

/* ── PAQUETES ── */
.paquetes {
  padding: 110px 60px;
  background: var(--carbon);
}
.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.paquete-card {
  background: var(--carbon-3);
  border: 1px solid rgba(200,146,42,.1);
  padding: 48px 38px;
  position: relative;
  transition: border-color .4s, transform .4s var(--ease-out);
  cursor: none;
}
@media (hover: hover) {
  .paquete-card:hover { border-color: rgba(200,146,42,.38); transform: translateY(-5px); }
}
.paq-featured {
  border-color: rgba(200,146,42,.4) !important;
  background: var(--carbon-2);
}
.paq-ribbon {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--carbon);
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 11px;
  font-weight: 500;
}
.paq-header { margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.paq-kicker {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.paq-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}
.paq-precio { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.paq-desde { font-size: .72rem; color: var(--cream-3); }
.paq-monto {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.paq-pp { font-size: .72rem; color: var(--cream-3); }

.paq-lista { list-style: none; margin-bottom: 32px; }
.paq-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: rgba(245,238,216,.62);
  padding: 7px 0;
  border-bottom: 1px solid rgba(245,238,216,.06);
  line-height: 1.5;
}
.paq-check { color: var(--gold); flex-shrink: 0; font-style: normal; }
.paq-no { color: rgba(245,238,216,.22); }
.paq-lista li:has(.paq-no) { color: rgba(245,238,216,.28); }
.paq-btn { display: block; text-align: center; }

/* ── NOSOTROS ── */
.nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--carbon-2);
}
.nosotros-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.nosotros-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.nosotros-img-wrap:hover .nosotros-img { transform: scale(1.04); }
.nosotros-img-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,.75) 0%, rgba(13,11,8,.2) 40%, transparent 70%),
              linear-gradient(135deg, rgba(200,146,42,.08), transparent 60%);
}
.nosotros-img-overlay {
  position: absolute;
  bottom: 32px; right: -30px;
  width: 200px; height: 145px;
  border: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.nosotros-img-float {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nosotros-text {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nosotros-text .sec-kicker { text-align: left; }
.nosotros-text .sec-title  { text-align: left; font-size: 2.3rem; }
.nosotros-text p {
  font-size: .86rem;
  color: rgba(245,238,216,.58);
  line-height: 2;
  margin-bottom: 14px;
}
.nosotros-stats {
  display: flex;
  gap: 36px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.nstat { text-align: left; }
.nstat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.9rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.nstat sup { font-size: 1.2rem; color: var(--gold); vertical-align: super; }
.nstat p {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,238,216,.38);
  margin-top: 4px;
  margin-bottom: 0;
}

/* ── TESTIMONIOS ── */
.testimonios {
  padding: 110px 60px;
  background: var(--carbon);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.test-card {
  background: var(--carbon-3);
  border: 1px solid rgba(200,146,42,.08);
  padding: 44px 36px;
  transition: border-color .4s;
  cursor: none;
}
@media (hover: hover) {
  .test-card:hover { border-color: rgba(200,146,42,.28); }
}
.test-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.test-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245,238,216,.72);
  line-height: 1.75;
  margin-bottom: 24px;
  quotes: "\201C" "\201D";
}
.test-card blockquote::before { content: open-quote; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -.3em; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(200,146,42,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: .05em;
  flex-shrink: 0;
}
.test-name {
  font-size: .84rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 2px;
}
.test-event {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* ── CONTACTO ── */
.contacto {
  padding: 110px 60px;
  background: var(--carbon-2);
  text-align: center;
}
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 860px;
  margin: 56px auto 0;
}
.contacto-item {
  background: var(--carbon-3);
  padding: 42px 28px;
  border: 1px solid rgba(200,146,42,.08);
  transition: border-color .4s;
  text-decoration: none;
  cursor: none;
  display: block;
}
@media (hover: hover) {
  .contacto-item:hover { border-color: rgba(200,146,42,.35); }
}
.contacto-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(200,146,42,.38);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
}
.contacto-icon svg { width: 19px; height: 19px; }
.contacto-label {
  font-size: .6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.contacto-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.5;
}
.contacto-cta {
  margin-top: 60px;
  text-align: center;
}
.contacto-cta p {
  font-size: .88rem;
  color: rgba(245,238,216,.5);
  margin-bottom: 28px;
}
.contacto-wa { font-size: .8rem; padding: 16px 48px; }

/* ── FOOTER ── */
footer {
  background: var(--carbon-3);
  border-top: 1px solid rgba(200,146,42,.1);
}
.footer-inner {
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: .04em;
}
.footer-logo .logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: .88rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream-2);
  letter-spacing: .1em;
  margin-left: 4px;
}
.footer-logo p {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,238,216,.3);
  margin-top: 5px;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,238,216,.45);
  text-decoration: none;
  transition: color .3s;
  cursor: none;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,146,42,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem;
  letter-spacing: .04em;
  color: rgba(245,238,216,.45);
  text-decoration: none;
  transition: border-color .3s, color .3s;
  cursor: none;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  padding: 20px 60px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-bottom p {
  font-size: .68rem;
  letter-spacing: .08em;
  color: rgba(245,238,216,.25);
}

/* ── NAV LOGO IMAGE ── */
.nav-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  transition: transform .35s;
}
@media (hover: hover) {
  .nav-logo:hover .nav-logo-img { transform: scale(1.06); }
}
.nav-logo-text { flex-direction: column; line-height: 1; }

/* ── HERO LOGO ── */
.hero-logo-wrap {
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeIn 1.2s ease .45s both;
}
.hero-logo-img {
  height: 240px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* ── FOOTER LOGO IMAGE ── */
.footer-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

/* ── NOSOTROS BADGE ── */
.nosotros-badge {
  position: absolute;
  bottom: 32px; right: 28px;
  background: rgba(13,11,8,.88);
  border: 1px solid rgba(200,146,42,.45);
  padding: 18px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nosotros-badge-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 10px;
}
.nosotros-badge p {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.5;
  margin: 0 !important;
}

/* ── EQUIPO SECTION ── */
.equipo-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--carbon);
}
.equipo-img-wrap {
  position: absolute;
  inset: 0;
}
.equipo-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) saturate(1.08) brightness(0.75);
}
.equipo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,11,8,.92) 40%, rgba(13,11,8,.35) 100%);
}
.equipo-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 80px 70px;
}
.equipo-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin: 14px 0 18px;
}
.equipo-content h3 em { font-style: italic; color: var(--gold-light); }
.equipo-content p {
  font-size: .86rem;
  color: rgba(245,238,216,.58);
  line-height: 2;
  margin-bottom: 32px;
}

/* ── CARD-LG / GORDON HEIGHT ── */
.card-lg { grid-column: span 7; }
.plato-img-lg { height: 340px; }
.card-lg .plato-name { font-size: 1.9rem; }
.plato-img-gordon { height: 280px; }
/* Enrollado de Carne — foto landscape recortada 2140×1340 */
.plato-img-enrollado { height: 360px; }

/* ── MÃS PLATOS ── */
.mas-platos {
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 0;
}
.mas-platos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(200,146,42,.07);
}
.mas-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 26px;
  background: var(--carbon-3);
  border: 1px solid transparent;
  transition: border-color .4s;
}
@media (hover: hover) {
  .mas-item:hover { border-color: rgba(200,146,42,.22); }
}
.mas-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.mas-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 5px;
}
.mas-item p {
  font-size: .78rem;
  color: rgba(245,238,216,.42);
  line-height: 1.75;
}

/* ── ADORNOS ── */
.adornos {
  padding: 110px 60px;
  background: var(--carbon-2);
}
.adornos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px;
  gap: 3px;
  max-width: 1300px;
  margin: 0 auto;
}
.adorno-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.adorno-xl {
  grid-column: span 2;
  grid-row: span 2;
}
.adorno-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
  filter: contrast(1.05) saturate(1.1) brightness(0.92);
}
@media (hover: hover) {
  .adorno-item:hover img { transform: scale(1.07); }
  .adorno-item:hover .adorno-scrim { opacity: .65; }
  .adorno-item:hover .adorno-label { opacity: 1; transform: translateY(0); }
}
.adorno-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,.85), transparent 50%);
  opacity: .3;
  transition: opacity .4s;
}
.adorno-label {
  position: absolute;
  bottom: 16px; left: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.adorno-label p {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.adornos-cta {
  text-align: center;
  margin-top: 52px;
}

/* ── CONTACTO SUB ── */
.contacto-sub {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,238,216,.35);
  margin-top: 5px;
}

/* ── MOBILE CLOSE ── */
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: none;
  opacity: .6;
  transition: opacity .3s;
}
.mobile-close:hover { opacity: 1; }

/* ── PHOTO ENHANCEMENT (CSS filters) ── */
.plato-img {
  filter: contrast(1.08) saturate(1.15) brightness(0.93);
}
.evento-img {
  filter: contrast(1.05) saturate(1.1) brightness(0.88);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1200px) {
  .paquetes-grid { grid-template-columns: repeat(3, 1fr); }
  .nosotros-img-overlay { display: none; }
}

@media (max-width: 1024px) {
  nav { padding: 18px 30px; }
  nav.scrolled { padding: 14px 30px; }
  .carta, .eventos, .menu-eventos, .adornos, .paquetes, .testimonios, .contacto { padding: 80px 30px; }
  .intro-quote, .proceso { padding: 70px 30px; }
  .nosotros-text { padding: 60px 40px; }
  .equipo-content { padding: 60px 40px; }

  .card-xl, .card-md, .card-lg { grid-column: span 12; }
  .card-xl .plato-img-wrap, .card-md .plato-img-wrap, .card-lg .plato-img-wrap { height: 300px; }
  .plato-img-gordon { height: 260px; }
  .plato-img-enrollado { height: 300px; }
  .card-sm { grid-column: span 6; }

  .adornos-grid { grid-template-rows: 240px 240px; }
  .mas-platos-grid { grid-template-columns: repeat(2, 1fr); }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .paquetes-grid { grid-template-columns: 1fr; max-width: 480px; }
  .paquete-card { transform: none !important; }

  .nosotros { grid-template-columns: 1fr; }
  .nosotros-img-wrap { min-height: 360px; }

  .test-grid { grid-template-columns: 1fr 1fr; }
  .test-grid .test-card:last-child { grid-column: span 2; }

  .proceso-grid { flex-direction: column; align-items: center; }
  .proceso-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  #navbar { grid-template-columns: 1fr auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .carta, .eventos, .menu-eventos, .adornos, .paquetes, .testimonios, .contacto { padding: 60px 20px; }
  .intro-quote, .proceso { padding: 60px 20px; }
  .equipo-content { padding: 48px 24px; }

  .adornos-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .adorno-xl { grid-column: span 2; grid-row: span 1; }
  .adorno-label { opacity: 1; transform: none; }
  .mas-platos-grid { grid-template-columns: 1fr; }

  .nav-logo-img { height: 48px; }
  .hero-logo-img { height: 130px; }
  .nosotros-badge { right: 12px; bottom: 16px; }
  .card-sm { grid-column: span 12; }
  .nosotros-text { padding: 50px 24px; }

  /* Chef-owner photo — altura fija en móvil para que se vea bien */
  .nosotros-img-wrap {
    min-height: 420px;
    height: 72vw;
    max-height: 540px;
  }
  .nosotros-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .card-sm { grid-column: span 12; }
  .carta-grid { gap: 14px; }

  .eventos-grid { grid-template-columns: 1fr; }
  .evento-panel { grid-column: auto; }
  .evento-desc { opacity: 1; transform: none; }

  .menu-grid { grid-template-columns: 1fr 1fr; }

  .test-grid { grid-template-columns: 1fr; }
  .test-grid .test-card:last-child { grid-column: auto; }

  .contacto-grid { grid-template-columns: 1fr; max-width: 400px; margin: 40px auto 0; }

  .footer-inner { flex-direction: column; text-align: center; padding: 40px 20px; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { padding: 18px 20px; }

  .hero-stats { flex-direction: column; gap: 16px; }
  .hstat-sep { width: 44px; height: 1px; }

  .nosotros-stats { flex-wrap: wrap; gap: 24px; }
  .proceso-grid { gap: 0; }
  .proceso-item { min-width: 100%; max-width: 340px; }

  .hstat { padding: 0 16px; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 4rem); }
  .intro-inner blockquote { font-size: 1.3rem; }
}

/* ── REDUCED MOTION SAFETY (Windows default) ── */
@media (prefers-reduced-motion: reduce) {
  .hero-inner,
  .hero-kicker,
  .hero-logo-wrap,
  .hero-title,
  .hero-sub,
  .hero-actions,
  .hero-stats,
  .hero-scroll,
  .hero-bg img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


