/* ============================================================
   LOS VIKINGOS — Master Stylesheet
   Viking Longhouse Aesthetic: Dark, Gold, Epic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #1a2744;
  --navy-dark:  #0f1a30;
  --navy-mid:   #213156;
  --gold:       #C9A227;
  --gold-light: #e8c84a;
  --gold-dim:   #8a6e1a;
  --black:      #0a0a0a;
  --stone:      #1e1e1e;
  --stone-mid:  #2d2d2d;
  --stone-light:#3d3d3d;
  --white:      #ffffff;
  --cream:      #f0ead6;
  --text-muted: #9aa3b8;

  --font-heading: 'Cinzel', serif;
  --font-body:    'Crimson Pro', Georgia, serif;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.25);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ── Utility ── */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.gold { color: var(--gold); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Scroll animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(201,162,39,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }


/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/header.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,0.08) 0%,
    rgba(5,5,5,0.0)  35%,
    rgba(5,5,5,0.55) 75%,
    rgba(5,5,5,0.82) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 2rem;
  text-align: center;
}

.hero-logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin: 0 auto 2rem;
  box-shadow: 0 0 40px rgba(201,162,39,0.4);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-title .title-accent {
  display: block;
  font-size: 1em;
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 0.3em;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    #fff0a0 35%,
    #ffe066 50%,
    #fff0a0 65%,
    var(--gold) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 3.5s linear infinite;
}

@keyframes shimmerGold {
  from { background-position: 250% center; }
  to   { background-position: -250% center; }
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,162,39,0.4);
}

.btn-outline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 1rem 2.5rem;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* Section divider — diagonal */
.divider-down {
  position: relative;
  z-index: 1;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.divider-down svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
#menu {
  background: var(--stone);
  padding: 7rem 0 6rem;
  position: relative;
}

.menu-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
}

.menu-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* ── Carousel ── */
.menu-carousel {
  position: relative;
  padding: 0 2rem;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc(100% / 3);
  padding: 0 0.6rem;
  box-sizing: border-box;
}

.slide-inner {
  background: var(--stone);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.slide-inner:hover {
  border-color: rgba(201,162,39,0.4);
  box-shadow: var(--shadow-gold);
}

.slide-img {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--black);
}

.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform 0.6s ease;
  display: block;
}

.slide-inner:hover .slide-img img {
  transform: scale(1.06);
}

.slide-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.65) 100%);
}

.slide-info {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.slide-badge {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.slide-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.slide-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.slide-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* Arrow buttons */
.carousel-arrow {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  width: 2.6rem;
  height: 2.6rem;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  z-index: 3;
  font-family: var(--font-heading);
}

.carousel-arrow.prev { left: -0.2rem; }
.carousel-arrow.next { right: -0.2rem; }

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.carousel-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201,162,39,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

/* CTA Ver Carta */
.menu-cta-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-menu-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--gold);
  color: var(--black);
  padding: 1.1rem 3.5rem;
  display: inline-block;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-menu-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,162,39,0.4);
}

/* Responsive carousel */
@media (max-width: 768px) {
  .carousel-slide { flex: 0 0 50%; }
}

@media (max-width: 480px) {
  .carousel-slide { flex: 0 0 100%; }
  .menu-carousel { padding: 0; }
  .carousel-arrow { display: none; }
}


/* ============================================================
   DELIVERY SECTION
   ============================================================ */
#delivery {
  background: var(--navy);
  padding: 7rem 0;
  position: relative;
}

.delivery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.delivery-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.delivery-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.delivery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.delivery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

/* Platform-specific colors */
.delivery-card.uber-eats { background: #1a1a1a; }
.delivery-card.uber-eats:hover { border-color: #06C167; box-shadow: 0 20px 50px rgba(6,193,103,0.2); }
.delivery-card.uber-eats .delivery-btn { background: #06C167; color: #000; }
.delivery-card.uber-eats .delivery-btn:hover { background: #04a857; }

.delivery-card.glovo { background: #1a1a1a; }
.delivery-card.glovo:hover { border-color: #FFC244; box-shadow: 0 20px 50px rgba(255,194,68,0.2); }
.delivery-card.glovo .delivery-btn { background: #FFC244; color: #000; }
.delivery-card.glovo .delivery-btn:hover { background: #e6ad3c; }

.delivery-card.just-eat { background: #1a1a1a; }
.delivery-card.just-eat:hover { border-color: #FF8000; box-shadow: 0 20px 50px rgba(255,128,0,0.2); }
.delivery-card.just-eat .delivery-btn { background: #FF8000; color: #fff; }
.delivery-card.just-eat .delivery-btn:hover { background: #e07000; }

.delivery-card.direct { background: linear-gradient(135deg, rgba(201,162,39,0.1), var(--stone)); }
.delivery-card.direct:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }

.delivery-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-platform-logo {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.delivery-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.delivery-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.delivery-btn {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  display: inline-block;
  transition: var(--transition);
}

.btn-whatsapp {
  background: #25D366 !important;
  color: #000 !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.btn-whatsapp:hover { background: #1ebe5c !important; transform: translateY(-2px); }

.wa-icon {
  font-size: 1.1rem;
}


/* ============================================================
   RESERVATIONS
   ============================================================ */
#reservaciones {
  background: var(--black);
  padding: 7rem 0;
  position: relative;
}

#reservaciones::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.04) 0%, transparent 70%);
}

.reservas-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.reservas-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.reservas-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.reservas-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(201,162,39,0.08);
  border-left: 3px solid var(--gold);
}

.reservas-note-icon { font-size: 1.5rem; flex-shrink: 0; }

.reservas-note p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--cream);
}

/* Form */
.reservas-form {
  background: var(--stone);
  padding: 2.5rem;
  border: 1px solid rgba(201,162,39,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--stone-mid);
  border: 1px solid rgba(201,162,39,0.15);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  border-radius: 0;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A227' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,163,184,0.5); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--gold);
  color: var(--black);
  padding: 1.1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-muted); }


/* ============================================================
   ABOUT
   ============================================================ */
#nosotros {
  background: var(--stone);
  padding: 7rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center top;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-features {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.about-features li::before {
  content: '⚔';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.15rem;
}


/* ============================================================
   TEAM STORY + REVIEWS  (replaces Gallery)
   ============================================================ */
#galeria {
  background: var(--navy-dark);
  padding: 7rem 0;
}

/* ── Story block ── */
.team-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.team-story-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.team-story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.team-story-p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.team-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 40px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: fit-content;
}

.badge-icon { font-size: 0.9rem; }

/* ── Visual: main photo + floating mini-photos ── */
.team-story-visual {
  position: relative;
  height: 500px;
}

.team-main-photo {
  position: absolute;
  top: 25px;
  right: 0;
  bottom: 25px;
  left: 75px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(201,162,39,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.team-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-float {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.55);
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-float:hover {
  transform: scale(1.06) rotate(0deg) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,0.65);
}

.team-float--1 {
  width: 108px;
  height: 108px;
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.team-float--2 {
  width: 100px;
  height: 128px;
  bottom: 10px;
  left: 8px;
  transform: rotate(4deg);
}

.team-float--3 {
  width: 104px;
  height: 104px;
  top: 50%;
  right: -18px;
  transform: translateY(-50%) rotate(-3deg);
}

/* ── Reviews block ── */
.reviews-block {
  border-top: 1px solid rgba(201,162,39,0.15);
  padding-top: 5rem;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.stars-big {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.rating-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.rating-source {
  color: var(--text-muted);
  font-size: 0.9rem;
  align-self: flex-end;
  padding-bottom: 0.2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 14px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.3s, background 0.3s;
}

.review-card:hover {
  border-color: rgba(201,162,39,0.4);
  background: rgba(255,255,255,0.07);
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.review-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.75;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.review-platform {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}


/* ============================================================
   CONTACT
   ============================================================ */
#contacto {
  background: var(--stone);
  padding: 7rem 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
  filter: grayscale(30%) brightness(0.85);
  border: 2px solid rgba(201,162,39,0.15);
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  font-size: 1.3rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-item-text a { color: var(--cream); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--gold); }

/* Hours Table */
.hours-section h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.hours-table tr:hover { background: rgba(201,162,39,0.04); }

.hours-table td {
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  font-weight: 600;
  width: 40%;
}

.hours-table td:last-child { color: var(--text-muted); }

.hours-table .closed td { color: rgba(154,163,184,0.4) !important; }
.hours-table .closed td:last-child::after {
  content: ' — Cerrado';
  color: #e55;
  font-size: 0.8rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,162,39,0.15);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--stone-mid);
  border: 1px solid rgba(201,162,39,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(154,163,184,0.6);
}

.footer-bottom a { color: var(--gold); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .reservas-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-story-visual { height: 420px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .form-row { grid-template-columns: 1fr; }

  .team-story { grid-template-columns: 1fr; gap: 2rem; }
  .team-story-visual { height: 360px; }
  .team-float--3 { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

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

  .about-image-wrap img { height: 350px; }
  .about-image-badge { position: static; margin-top: 1rem; display: inline-block; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  #hero { height: 100svh; min-height: 500px; }
  .hero-bg {
    background-image: url('../assets/images/hero version movil.jpg');
    background-position: center center;
    background-size: cover;
    transform: none;
    animation: none;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5,5,5,0.0)  0%,
      rgba(5,5,5,0.0)  55%,
      rgba(5,5,5,0.6)  80%,
      rgba(5,5,5,0.85) 100%
    );
  }
  .hero-content { bottom: 3rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; display: block; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .delivery-grid { grid-template-columns: 1fr; }
}

/* ── Fine details ── */
::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
