/* ============ A&M Cocina Gourmet ============ */

:root {
  /* Paleta base - Clásico Romántico (v1) */
  --burgundy: #8B1E2E;
  --burgundy-deep: #5C1520;
  --burgundy-soft: #A94050;
  --orchid: #E8B4B8;
  --orchid-light: #F3D4D6;
  --orchid-deep: #C98A8F;
  --cream: #FAF5F0;
  --cream-warm: #F5EDE4;
  --ivory: #FFFBF7;
  --ink: #2A1A1D;
  --ink-soft: #5A4448;
  --ink-muted: #8B7579;
  --gold: #B89968;
  --line: rgba(42, 26, 29, 0.12);

  /* Type */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-accent: "Italiana", "Cormorant Garamond", serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
  --font-script: "Tangerine", "Dancing Script", cursive;
}

/* Variante Editorial Moderno */
[data-variant="editorial"] {
  --cream: #F4F0EA;
  --cream-warm: #EBE4D8;
  --ivory: #FCFAF6;
  --burgundy: #7A1A28;
  --orchid: #D9A0A5;
}

/* Variante Florido Ornamentado */
[data-variant="ornate"] {
  --cream: #FFF8F4;
  --cream-warm: #F8E8E4;
  --ivory: #FFFCF9;
  --orchid-light: #F8DCDE;
  --burgundy: #7B1628;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }

.script { font-family: var(--font-script); font-weight: 400; }
.italiana { font-family: var(--font-accent); font-weight: 400; letter-spacing: 0.02em; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============ Layout ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

section { position: relative; }

.section-pad {
  padding: clamp(80px, 10vw, 140px) 0;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--burgundy);
  opacity: 0.6;
}
.eyebrow.left::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 16px 0 20px;
  line-height: 1.05;
}
.section-title em { color: var(--burgundy); font-style: italic; }

.section-sub {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 620px;
  line-height: 1.7;
}

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.3s ease;
}
.nav.scrolled .nav-logo img { height: 42px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--burgundy-deep); transform: translateY(-1px); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
  .nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: all 0.3s; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
}

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 220px);
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: -10px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--ink);
  margin: 8px 0 28px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--burgundy);
  display: block;
}
.hero-sub {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  font-weight: 500;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--burgundy-deep); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(139, 30, 46, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }

.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 12px 12px;
  overflow: hidden;
  background: var(--orchid-light);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--orchid-deep) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(135deg, var(--orchid) 0%, var(--orchid-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image .placeholder-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--burgundy-deep);
  background: rgba(255, 251, 247, 0.9);
  padding: 8px 14px;
  border-radius: 4px;
  text-transform: uppercase;
}

.hero-floral {
  position: absolute;
  width: 280px;
  opacity: 0.85;
  pointer-events: none;
}
.hero-floral.tl { top: -40px; left: -60px; transform: rotate(-15deg); }
.hero-floral.br { bottom: -40px; right: -40px; transform: rotate(165deg); }

.hero-meta {
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 clamp(20px, 4vw, 48px);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-meta-item {
  flex: 1;
}
.hero-meta-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--burgundy);
  line-height: 1;
}
.hero-meta-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-height: 500px; }
  .hero-meta { position: static; flex-wrap: wrap; margin-top: 40px; }
}

/* ============ Servicios ============ */
.services {
  background: var(--ivory);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.service-card {
  padding: 40px 32px 44px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--orchid) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(139, 30, 46, 0.18);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: "❋";
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-size: 12px;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============ Reservar ============ */
.reserve {
  background: var(--burgundy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(233, 180, 184, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(233, 180, 184, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.reserve .eyebrow { color: var(--orchid); }
.reserve .eyebrow::before, .reserve .eyebrow::after { background: var(--orchid); }
.reserve .section-title { color: var(--ivory); }
.reserve .section-title em { color: var(--orchid); }
.reserve .section-sub { color: rgba(250, 245, 240, 0.75); }

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 64px;
  position: relative;
}
.reserve-side {
  position: sticky;
  top: 120px;
  align-self: start;
}
.reserve-side h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--orchid);
  margin-bottom: 16px;
}
.reserve-side p {
  color: rgba(250, 245, 240, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}
.reserve-side-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(233, 180, 184, 0.3);
}
.reserve-side-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  color: rgba(250, 245, 240, 0.9);
}
.reserve-side-list li strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--orchid);
  min-width: 24px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orchid);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(233, 180, 184, 0.4);
  color: var(--ivory);
  padding: 10px 0;
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--orchid);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250, 245, 240, 0.35); }
.form-field select option { background: var(--burgundy-deep); color: var(--ivory); }
.form-field textarea { resize: vertical; min-height: 80px; }

.form-submit {
  grid-column: 1 / -1;
  margin-top: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.form-hint {
  font-size: 12px;
  color: rgba(250, 245, 240, 0.5);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .reserve-grid { grid-template-columns: 1fr; gap: 40px; }
  .reserve-side { position: static; }
  .form { grid-template-columns: 1fr; }
}

/* ============ Ubicación / Mapa ============ */
.location {
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 64px;
}
.location-card {
  padding: 48px 40px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
}
.location-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--burgundy);
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.location-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.location-info-row:last-child { border-bottom: none; }
.location-info-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orchid-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--burgundy);
}
.location-info-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2px;
}
.location-info-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.map-wrap {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  background: var(--cream-warm);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-overlay {
  position: absolute;
  bottom: 20px; right: 20px;
  display: flex;
  gap: 10px;
}

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

/* ============ Reseñas ============ */
.reviews {
  background: var(--ivory);
  overflow: hidden;
}
.reviews-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.reviews-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 20px 28px;
  background: var(--cream);
  border-radius: 2px;
  border: 1px solid var(--line);
}
.reviews-stats-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  color: var(--burgundy);
  line-height: 1;
}
.reviews-stars-lg { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.reviews-stats-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
}

.reviews-masonry {
  columns: 3;
  column-gap: 24px;
}
.review-card {
  break-inside: avoid;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px 28px 24px;
  margin-bottom: 24px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(139, 30, 46, 0.2);
}
.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--burgundy);
  position: absolute;
  top: 14px;
  right: 20px;
  opacity: 0.3;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
}
.review-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.review-event {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.review-form-card {
  margin-top: 48px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 48px;
  border-radius: 2px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.review-form-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.review-form-card > div:first-child p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.review-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-form .form-field.full { grid-column: 1 / -1; }
.review-form .form-field label {
  color: var(--ink-muted);
}
.review-form .form-field input,
.review-form .form-field textarea {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.review-form .form-field input:focus,
.review-form .form-field textarea:focus { border-bottom-color: var(--burgundy); }
.review-form .form-field input::placeholder,
.review-form .form-field textarea::placeholder { color: var(--ink-muted); opacity: 0.6; }

.star-input {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}
.star-input button {
  font-size: 24px;
  color: var(--line);
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 2px;
}
.star-input button.active { color: var(--gold); }
.star-input button:hover { transform: scale(1.15); }

@media (max-width: 1000px) {
  .reviews-masonry { columns: 2; }
}
@media (max-width: 680px) {
  .reviews-masonry { columns: 1; }
  .review-form-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .review-form { grid-template-columns: 1fr; }
}

/* ============ Galería ============ */
.gallery {
  background: var(--cream);
  overflow: hidden;
}
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-top: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter {
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all 0.3s ease;
  background: var(--ivory);
}
.gallery-filter:hover { border-color: var(--burgundy); color: var(--burgundy); }
.gallery-filter.active {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--orchid-light);
  transition: all 0.4s ease;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--burgundy-deep);
  text-transform: uppercase;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 26, 29, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-label {
  color: var(--ivory);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
}
.gallery-overlay-cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 29, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-content {
  max-width: 900px;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--orchid-light);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.2s ease;
}
.lightbox-nav:hover { background: white; transform: translateY(-50%) scale(1.08); }
.lightbox-nav.prev { left: -70px; }
.lightbox-nav.next { right: -70px; }
@media (max-width: 900px) {
  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }
}

/* ============ Instagram ============ */
.instagram {
  background: var(--ivory);
}
.instagram-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ig-post {
  aspect-ratio: 1;
  position: relative;
  background: var(--orchid-light);
  overflow: hidden;
  cursor: pointer;
}
.ig-post-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform 0.4s ease;
}
.ig-post:hover .ig-post-bg { transform: scale(1.08); }
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 30, 46, 0.78);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  gap: 10px;
  padding: 20px;
  text-align: center;
}
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-post-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
}
.ig-post-stats span { display: flex; align-items: center; gap: 6px; }

@media (max-width: 900px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ Sobre Nosotros ============ */
.about {
  background: var(--cream);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  background: var(--orchid);
}
.about-visual-inner {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      var(--burgundy-soft) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(135deg, var(--orchid-deep) 0%, var(--orchid) 60%, var(--orchid-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px; height: 180px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
  padding: 20px;
}
.about-badge .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--burgundy);
  line-height: 1;
}
.about-badge .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.about-body p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-signature {
  font-family: var(--font-script);
  font-size: 48px;
  color: var(--burgundy);
  margin-top: 20px;
  line-height: 1;
}
.about-signature-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-height: 460px; }
}

/* ============ FAQ ============ */
.faq {
  background: var(--ivory);
}
.faq-list {
  max-width: 820px;
  margin: 64px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
  transition: padding 0.3s ease;
}
.faq-item.open { padding: 28px 0; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-q-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  flex: 1;
}
.faq-item.open .faq-q-text { color: var(--burgundy); }
.faq-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--burgundy);
}
.faq-item.open .faq-icon {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 300px;
  margin-top: 16px;
}

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 64px; margin-bottom: 20px; filter: brightness(1.05); }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--orchid);
  margin-bottom: 14px;
  line-height: 1.4;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 245, 240, 0.6);
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(250, 245, 240, 0.7);
  margin-bottom: 10px;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--orchid); }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250, 245, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orchid);
  transition: all 0.3s ease;
}
.footer-social:hover {
  background: var(--burgundy);
  color: var(--ivory);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(250, 245, 240, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(250, 245, 240, 0.5);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--ivory);
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon {
  width: 24px; height: 24px;
  background: var(--orchid);
  color: var(--burgundy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

/* ============ Divider ornamento ============ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
  color: var(--burgundy);
}
.ornament .line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.ornament .mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  opacity: 0.7;
}

/* ============ Floral SVG decorations ============ */
[data-variant="ornate"] .floral-deco { opacity: 1; }
.floral-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

/* ============ Scroll animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Modal "Ver más" ============ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 29, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modal-fade 0.3s ease;
}
@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-content {
  width: 100%;
  max-height: 90vh;
  background: var(--ivory);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modal-slide 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
}
@keyframes modal-slide {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  padding: 32px 40px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--cream);
}
.modal-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--burgundy);
  line-height: 1.1;
}
.modal-close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.modal-close:hover {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
  transform: rotate(90deg);
}
.modal-body {
  padding: 32px 40px 40px;
  overflow-y: auto;
  flex: 1;
}
.modal-body::-webkit-scrollbar { width: 8px; }
.modal-body::-webkit-scrollbar-track { background: var(--cream); }
.modal-body::-webkit-scrollbar-thumb { background: var(--orchid); border-radius: 4px; }

.see-more-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 14px;
  position: relative;
}
.see-more-count {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .modal-header { padding: 24px 24px 20px; }
  .modal-body { padding: 24px; }
  .modal-title { font-size: 28px; }
}

/* Floating WhatsApp button */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  transition: all 0.3s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 12px 32px -4px rgba(37, 211, 102, 0.6); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============ SECCIÓN CHEFS ============ */
.chefs {
  background: var(--cream);
  position: relative;
}
.chefs-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
  margin-bottom: 80px;
}
.chef-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.chef-card-featured:hover {
  box-shadow: 0 20px 40px -20px rgba(139,30,46,0.15);
}
.chef-card-featured.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.chef-card-featured.reverse > * { direction: ltr; }
.chef-photo-wrap {
  position: relative;
  overflow: hidden;
}
.chef-photo-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.chef-card-featured:hover .chef-photo-wrap img { transform: scale(1.04); }
.chef-photo-placeholder {
  width: 100%;
  height: 360px;
  background: var(--orchid-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--burgundy-deep);
  text-transform: uppercase;
}
.chef-info {
  padding: 32px 32px 32px 0;
}
.chef-card-featured.reverse .chef-info {
  padding: 32px 0 32px 32px;
}
.chef-role {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.chef-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}
.chef-desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}
.chef-separator {
  width: 40px;
  height: 1px;
  background: var(--burgundy);
  opacity: .4;
  margin: 16px 0;
}

/* Staff grid (empleados bajo los chefs) */
.staff-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.staff-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: center;
  padding: 28px 20px 24px;
  transition: all 0.3s ease;
}
.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(139,30,46,0.18);
}
.staff-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 3px solid var(--orchid-light);
}
.staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
.staff-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  margin: 0 auto 14px;
}
.staff-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.staff-role {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 1000px) {
  .chefs-featured { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 700px) {
  .chef-card-featured { grid-template-columns: 1fr; }
  .chef-card-featured.reverse { direction: ltr; }
  .chef-info, .chef-card-featured.reverse .chef-info { padding: 24px; }
  .chef-photo-wrap img, .chef-photo-placeholder { height: 280px; }
}

/* ============ Botones "Ver más" (sección reviews) ============ */
.reviews-external-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.btn-google {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .06em;
  transition: all .2s;
}
.btn-google:hover { border-color: #4285F4; color: #4285F4; }
.btn-tripadvisor {
  background: #34E0A1;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .06em;
  transition: all .2s;
}
.btn-tripadvisor:hover { background: #2bc98f; }

/* ============ Instagram profile card ============ */
.ig-profile-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px 10px 12px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: all .2s;
}
.ig-profile-card:hover { border-color: var(--burgundy); box-shadow: 0 4px 16px rgba(139,30,46,.12); }
.ig-profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orchid);
}
.ig-profile-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.ig-profile-name { font-weight: 600; font-size: 14px; color: var(--ink); line-height: 1.3; }
.ig-profile-handle { font-size: 12px; color: var(--ink-muted); }
.ig-profile-followers { font-size: 12px; color: var(--ink-muted); margin-top: 1px; }

/* ============ Scroll reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Loading spinner ============ */
.section-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  color: var(--ink-muted);
  font-family: var(--font-accent);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  gap: 12px;
}
.spinner {
  width: 24px; height: 24px;
  border: 2px solid var(--orchid-light);
  border-top-color: var(--burgundy);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
