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

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --gold: #d4af37;
  --gold-dark: #c5a028;
  --white: #f5f5f0;
  --wine: #8b0000;
  --olive: #556b2f;
  --taupe: #b38b6d;
  --gray: #b3b3b3;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --border-gold: 1px solid rgba(212, 175, 55, 0.3);
  --transition: all 0.3s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--white);
  background-color: var(--black);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

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

.section-tag {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-tag.light {
  color: var(--gold);
}

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

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}

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

.nav-link {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link-cta {
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
}

.nav-link-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navbar-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-video-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(26, 26, 26, 0.85) 50%, rgba(10, 10, 10, 0.92) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.4) 70%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 5rem);
  line-height: 1;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-logo-en {
  color: var(--white);
}

.hero-logo-boca {
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--white);
  max-width: 600px;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  border: 2px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  animation: heroBtnPulse 2s infinite ease-in-out;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

@keyframes heroBtnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceDown 1.5s infinite ease-in-out;
}

.hero-scroll-indicator a {
  color: rgba(245, 245, 240, 0.7);
  transition: var(--transition);
}

.hero-scroll-indicator a:hover {
  color: var(--gold);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.anim-hero {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: heroFadeIn 1s ease forwards;
}

.anim-hero[data-delay="0"] { animation-delay: 0s; }
.anim-hero[data-delay="0.4"] { animation-delay: 0.4s; }
.anim-hero[data-delay="0.6"] { animation-delay: 0.6s; }
.anim-hero[data-delay="0.8"] { animation-delay: 0.8s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--black);
  padding: 4rem 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.info-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.info-bar-divider {
  width: 1px;
  height: 100%;
  min-height: 120px;
  background: rgba(212, 175, 55, 0.2);
  align-self: center;
}

.info-bar-item {
  text-align: center;
  padding: 1rem;
  transition: var(--transition);
}

.info-bar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.info-bar-item:hover .info-bar-icon {
  transform: rotate(360deg) scale(1.1);
}

.info-bar-item:nth-child(5):hover .info-bar-icon {
  transform: rotate(0deg) translateX(5px) scale(1.1);
}

.info-bar-item:nth-child(3):hover .info-bar-icon {
  transform: scale(1.2);
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.info-bar-item h3 {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.info-bar-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.info-bar-details p {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.6;
}

.info-closed {
  color: var(--gold) !important;
  font-style: italic;
  font-size: 0.8rem !important;
  margin-top: 0.5rem;
}

.info-bar-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.info-bar-link:hover {
  border-bottom-color: var(--gold);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--black);
  padding: 6rem 2.5rem;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay h4 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.gallery-item-overlay p {
  font-size: 0.875rem;
  color: rgba(245, 245, 240, 0.8);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.gallery-price {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
}

.gallery-price-cta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ===== ABOUT ===== */
.about {
  background: #faf9f6;
  padding: 7rem 2.5rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  border: 2px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image:hover .about-image-frame img {
  transform: scale(1.03);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.about-badge-text {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
}

.about-text .section-tag {
  color: var(--gold-dark);
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.about-text h2 em {
  color: var(--gold-dark);
  font-style: italic;
}

.about-lead {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 400;
}

.about-text > p {
  color: #555;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.about-stat {
  text-align: center;
  flex: 1;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== EXPERIENCE ===== */
.experience {
  position: relative;
  padding: 7rem 2.5rem;
  background: var(--charcoal);
}

.experience-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 0, 0, 0.05) 0%, transparent 60%);
}

.experience-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.experience-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: var(--border-gold);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.experience-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

.experience-card h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.experience-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== AWARDS ===== */
.awards {
  background: var(--black);
  padding: 6rem 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.awards-container h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 3rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.award-item {
  padding: 2rem 1rem;
  border: var(--border-gold);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.award-item:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.award-year {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.award-stars,
.award-trophy,
.award-rank,
.award-badge {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.award-rank {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.5rem;
}

.award-item p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== RESERVATION ===== */
.reservation {
  background: var(--charcoal);
  padding: 7rem 2.5rem;
}

.reservation-container {
  max-width: 1100px;
  margin: 0 auto;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.reservation-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reservation-info-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.reservation-info-item strong {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.reservation-info-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

.reservation-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border: var(--border-gold);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.03);
}

.reservation-note p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.reservation-form {
  background: rgba(10, 10, 10, 0.5);
  border: var(--border-gold);
  border-radius: 8px;
  padding: 2.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

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

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

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transform: scale(1.02);
}

/* ===== TEAM ===== */
.team {
  background: var(--black);
  padding: 7rem 2.5rem;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal);
  border: var(--border-gold);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

.team-card-img {
  height: 280px;
  background-size: cover;
  background-position: center top;
  transition: var(--transition-smooth);
}

.team-card:hover .team-card-img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 1.5rem;
}

.team-card-info h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-card-info > span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.team-card-info p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--charcoal);
  padding: 7rem 2.5rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-map {
  height: 100%;
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  border: var(--border-gold);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  filter: grayscale(0.7) contrast(1.1) brightness(0.8);
  transition: var(--transition);
}

.contact-map:hover iframe {
  filter: grayscale(0) contrast(1) brightness(1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 5rem 2.5rem 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-logo-en {
  color: var(--white);
}

.footer-logo-boca {
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-slogan {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-closed {
  color: var(--gold) !important;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-bottom-content p {
  font-size: 0.8rem;
  color: var(--gray);
}

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

.footer-social a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-legal p {
  font-size: 0.7rem;
  color: rgba(179, 179, 179, 0.5);
  text-align: center;
  margin-bottom: 0.25rem;
}

/* ===== FORM MODAL ===== */
.form-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.form-modal.active {
  display: flex;
}

.form-modal-content {
  background: var(--charcoal);
  border: var(--border-gold);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 450px;
  width: 90%;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.form-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.form-modal-close:hover {
  color: var(--gold);
}

.form-modal-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.form-modal-content h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.form-modal-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-scroll {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-scroll[data-animation="slideUp"] {
  transform: translateY(30px);
}

.anim-scroll[data-animation="scaleIn"] {
  transform: scale(0.9);
}

.anim-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-card:nth-child(4),
  .experience-card:nth-child(5) {
    grid-column: span 1;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .info-bar-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .info-bar-divider {
    width: 100%;
    height: 1px;
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-frame img {
    height: 350px;
  }

  .about-badge {
    bottom: -15px;
    right: 10px;
    width: 90px;
    height: 90px;
  }

  .about-badge-number {
    font-size: 2rem;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 350px;
  }

  .contact-map iframe {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
  }

  .navbar-menu.active {
    right: 0;
  }

  .navbar-toggle {
    display: flex;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

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

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

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

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero-logo {
    font-size: 2.5rem;
  }

  .gallery {
    padding: 4rem 1rem;
  }

  .reservation-form {
    padding: 1.5rem;
  }
}
