/* ============================================================
   SERGIO TRAID PELUQUEROS — Design System & Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors – extracted from salon photos */
  --color-primary: #D42020;
  --color-primary-dark: #A01818;
  --color-primary-light: #E84545;
  --color-accent: #E91E6C;
  --color-bg-dark: #111111;
  --color-bg-darker: #0A0A0A;
  --color-surface: #1A1A1A;
  --color-surface-light: #252525;
  --color-surface-hover: #2A2A2A;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #B0B0B0;
  --color-text-accent: #D42020;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(212, 32, 32, 0.4);

  /* Glassmorphism */
  --glass-bg: rgba(17, 17, 17, 0.75);
  --glass-blur: 20px;
  --glass-border: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --fs-hero-title: clamp(2.5rem, 6vw, 5rem);
  --fs-hero-subtitle: clamp(1rem, 2vw, 1.35rem);
  --fs-section-title: clamp(2rem, 4vw, 3rem);
  --fs-section-subtitle: clamp(0.95rem, 1.5vw, 1.15rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
  --container-max: 1200px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 12px 40px rgba(212, 32, 32, 0.15);
  --shadow-glow: 0 0 40px rgba(212, 32, 32, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-darker);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-size: var(--fs-section-title);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--color-text-primary), var(--color-text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: var(--fs-section-subtitle);
  color: var(--color-text-secondary);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Animated elements (IntersectionObserver) --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

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

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 0.6rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 42px;
  width: auto;
  transition: height var(--transition-smooth);
}

.navbar.scrolled .navbar-logo img {
  height: 34px;
}

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

.navbar-menu a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-text-secondary);
  position: relative;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--color-text-primary);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 600;
  font-size: var(--fs-small);
  border-radius: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
  cursor: pointer;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 32, 32, 0.4);
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.navbar-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
  transform-origin: center;
}

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

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.65) 40%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-logo {
  width: clamp(220px, 40vw, 380px);
  margin: 0 auto 1.5rem;
  animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-title {
  font-size: var(--fs-hero-title);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-title .line-accent {
  display: block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--fs-hero-subtitle);
  color: var(--color-text-secondary);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: var(--fs-body);
  cursor: pointer;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 32, 32, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 32, 32, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

.hero-scroll-indicator span {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

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

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 32, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 260px;
  max-width: 340px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform var(--transition-smooth),
              box-shadow var(--transition-smooth),
              border-color var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  position: relative;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  background: linear-gradient(135deg, rgba(212, 32, 32, 0.3), rgba(233, 30, 108, 0.2));
  transition: transform var(--transition-spring), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(212, 32, 32, 0.6);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-icon img {
  transform: scale(1.15);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================================
   GALLERY — NUESTRO LOCAL
   ============================================================ */
.gallery {
  padding: var(--section-padding);
  background: var(--color-bg-darker);
  position: relative;
}

.gallery::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(233, 30, 108, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0) 60%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item-overlay svg {
  width: 36px;
  height: 36px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  transform: scale(0.8);
  transition: transform var(--transition-spring);
}

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

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

.gallery-item:hover .gallery-item-overlay svg {
  transform: scale(1);
}

/* Span first item for visual interest */
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform var(--transition-spring);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-prev:hover {
  transform: translateY(-50%) translateX(-3px);
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-next:hover {
  transform: translateY(-50%) translateX(3px);
}

/* ============================================================
   BOOKING / RESERVA DE CITA
   ============================================================ */
.booking {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 32, 32, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.booking-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  box-shadow: var(--shadow-card);
}

.booking-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.booking-phone-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.booking-phone-text {
  font-size: var(--fs-section-subtitle);
  color: var(--color-text-secondary);
  font-weight: 300;
  max-width: 450px;
  line-height: 1.6;
}

.booking-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 4px 25px rgba(212, 32, 32, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.booking-phone-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 35px rgba(212, 32, 32, 0.6);
  filter: brightness(1.1);
}

.booking-phone-btn:active {
  transform: translateY(-1px);
}

.booking-phone-btn svg {
  animation: phoneShake 2s ease-in-out infinite;
}

.booking-phone-schedule {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  font-weight: 300;
  opacity: 0.85;
}

@keyframes phoneShake {
  0%, 90%, 100% { transform: rotate(0); }
  92%, 96% { transform: rotate(-10deg); }
  94%, 98% { transform: rotate(10deg); }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-padding);
  background: var(--color-bg-darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 32, 32, 0.15), rgba(233, 30, 108, 0.1));
  border-radius: var(--radius-md);
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.8;
}

.contact-item-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item-content p,
.contact-item-content a {
  color: var(--color-text-secondary);
  font-weight: 300;
  font-size: var(--fs-small);
  line-height: 1.6;
}

.contact-item-content a:hover {
  color: var(--color-primary);
}

/* Schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.schedule-table tr {
  border-bottom: 1px solid var(--color-border);
}

.schedule-table tr:last-child {
  border-bottom: none;
}

.schedule-table td {
  padding: 0.5rem 0;
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
  font-weight: 300;
}

.schedule-table td:first-child {
  font-weight: 500;
  color: var(--color-text-primary);
  width: 120px;
}

.schedule-table tr.today td {
  color: var(--color-primary);
}

.schedule-table tr.today td:first-child {
  color: var(--color-primary);
  font-weight: 700;
}

.schedule-table .closed {
  color: rgba(176, 176, 176, 0.5);
  font-style: italic;
}

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 100%;
  min-height: 380px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  filter: grayscale(0.6) brightness(0.7) contrast(1.1);
  transition: filter var(--transition-smooth);
}

.contact-map:hover iframe {
  filter: grayscale(0.2) brightness(0.85) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-darker);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img {
  height: 30px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-text {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  font-weight: 300;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  font-weight: 400;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--color-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--color-border);
  }

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

  .navbar-menu a {
    font-size: 1rem;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .btn-cta-nav {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-logo {
    width: clamp(180px, 50vw, 260px);
  }

  /* Services */
  .services-grid {
    gap: 1rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  /* Booking */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* Footer */
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 1 1 100%;
  }

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

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }
}
