/*
Theme Name: Oveja Negra
Theme URI: https://ovejanegra.com
Author: Custom Theme
Author URI: https://ovejanegra.com
Description: Tema personalizado para Sala de Ensayo Oveja Negra. Diseñado para uso con Elementor.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oveja-negra
Tags: elementor, one-page, music, dark
*/

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

:root {
  --color-bg:        #0a0a0a;
  --color-surface:   #111111;
  --color-red:       #e31c1c;
  --color-accent:    #e31c1c;
  --color-red-dark:  #b51515;
  --color-white:     #ffffff;
  --color-gray:      #888888;
  --color-gray-light:#cccccc;
  --color-border:    #222222;

  --font-display:    'Bebas Neue', sans-serif;
  --font-body:       'DM Sans', sans-serif;

  --container:       1200px;
  --radius:          4px;
  --transition:      0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-red);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: 1.25rem; }

p {
  font-size: 1rem;
  color: var(--color-gray-light);
  line-height: 1.75;
}

.text-red    { color: var(--color-red); }
.text-gray   { color: var(--color-gray); }
.text-small  { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* =============================================
   NAVBAR
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

#site-header.scrolled {
  background: rgba(10,10,10,0.98);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.site-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--color-red);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-light);
  transition: color var(--transition);
}

nav.main-nav a:hover {
  color: var(--color-white);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--color-red);
  color: var(--color-white) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-book:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
  color: var(--color-white) !important;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

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

#hero .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero:hover .hero-bg {
  transform: scale(1.0);
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--color-bg) 100%);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.05em;
  line-height: 0.9;
}

#hero h1 .line-white { color: var(--color-white); display: block; }
#hero h1 .line-red   { color: var(--color-red);   display: block; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gray);
}

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

/* =============================================
   ABOUT
   ============================================= */
#about {
  background: var(--color-bg);
}

#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#about .about-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
  font-weight: 600;
}

#about h2 {
  margin-bottom: 24px;
}

#about blockquote {
  font-style: italic;
  font-size: 1rem;
  color: var(--color-gray-light);
  border-left: 3px solid var(--color-red);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.7;
}

#about .about-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

#about .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

#about .about-image:hover img {
  filter: grayscale(0%);
}

#about .about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  z-index: 1;
  pointer-events: none;
}

.about-logo-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--color-gray);
}

/* =============================================
   SPACES
   ============================================= */
#spaces {
  background: var(--color-surface);
  padding: 100px 0;
}

#spaces .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

#spaces .section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  font-weight: 600;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
}

.space-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.space-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

/* =============================================
   SPECS
   ============================================= */
#specs {
  background: var(--color-bg);
}

#specs .specs-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
}

#specs h2 {
  text-align: center;
  margin-bottom: 64px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.specs-column {
  background: var(--color-surface);
  padding: 40px;
}

.specs-column-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.specs-column-header h3 {
  font-size: 2.5rem;
}

.specs-icon {
  color: var(--color-red);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--color-gray);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.spec-value {
  color: var(--color-white);
  font-weight: 500;
  text-align: right;
  max-width: 60%;
}

/* =============================================
   RATES
   ============================================= */
#rates {
  background: var(--color-red);
  padding: 100px 0;
}

#rates .rates-eyebrow {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

#rates h2 {
  text-align: center;
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--color-white);
  margin-bottom: 8px;
}

#rates .rates-subtitle {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 64px;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.rate-card {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}

/* Push button to bottom regardless of content height */
.rate-card .rate-features {
  flex: 1;
}

.rate-card:hover {
  transform: translateY(-4px);
}

.rate-card.featured {
  background: var(--color-bg);
  border-color: var(--color-bg);
  position: relative;
  padding-top: 48px;
}

.rate-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.rate-card .plan-name {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-weight: 600;
}

.rate-card.featured .plan-name {
  color: var(--color-gray);
}

.rate-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}

.rate-currency {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 12px;
  color: var(--color-white);
}

.rate-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-white);
}

.rate-period {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.rate-schedule {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.rate-features {
  list-style: none;
  margin-bottom: 28px;
}

.rate-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rate-card.featured .rate-features li {
  color: var(--color-gray-light);
  border-bottom-color: var(--color-border);
}

.rate-features li::before {
  content: '—';
  color: var(--color-red);
  font-weight: 700;
}

.btn-rate {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-rate:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.rate-card.featured .btn-rate {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.rate-card.featured .btn-rate:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

/* =============================================
   BOOKING
   ============================================= */
#booking {
  background: var(--color-bg);
}

#booking h2 {
  text-align: center;
  margin-bottom: 12px;
}

#booking .booking-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}

.booking-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-panel-inner {
  padding: 40px;
}

/* =============================================
   CONTACT
   ============================================= */
#contact {
  background: var(--color-surface);
}

#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

#contact h2 {
  margin-bottom: 20px;
}

#contact .contact-lead {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.7;
  max-width: 380px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray);
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  width: 100%;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-gray);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-red);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-red);
  background: rgba(227,28,28,0.1);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #cccccc;
  transition: fill var(--transition);
}

.footer-social a:hover svg {
  fill: #ffffff;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--color-gray);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--color-red);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-gray);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--color-red);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .specs-column { padding: 28px; }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }

  #about .about-grid,
  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spaces-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .rates-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #site-header { padding: 0 20px; }
  section { padding: 64px 0; }

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

  #spaces .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  .rates-grid { grid-template-columns: 1fr; }
}

/* =============================================
   UTILITIES
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Elementor compatibility */
.elementor-section { width: 100%; }
.elementor-widget-wrap { width: 100%; }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.whatsapp-float:active {
    transform: scale(0.97);
}

/* =============================================
   GOOGLE CALENDAR
   ============================================= */
#calendar {
    background: var(--color-surface);
}

#calendar h2 {
    text-align: center;
    margin-bottom: 12px;
}

.calendar-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
}

.calendar-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    border: none;
    color-scheme: dark;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .calendar-wrapper iframe {
        min-height: 400px;
    }
}

/* =============================================
   SPACES CAROUSEL
   ============================================= */
.spaces-carousel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.space-carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-surface);
}

.carousel-track {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Label at bottom */
.carousel-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 24px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
    z-index: 10;
}

.carousel-label-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: var(--color-white);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.carousel-label-link:hover {
    gap: 16px;
    color: var(--color-white);
}

.carousel-label-link svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-label-link:hover svg {
    opacity: 1;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.carousel-dot.active {
    background: var(--color-white);
    transform: scale(1.3);
}

.carousel-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .spaces-carousel-grid {
        grid-template-columns: 1fr;
    }

    .carousel-track {
        aspect-ratio: 3/4;
    }
}

/* =============================================
   SPECS - SINGLE COLUMN
   ============================================= */
.specs-single {
    grid-template-columns: 1fr !important;
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================
   RATES - TWO COLUMNS CENTERED
   ============================================= */
.rates-two {
    grid-template-columns: 1fr 1fr !important;
    max-width: 820px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 640px) {
    .rates-two {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================
   FOOTER UPDATES
   ============================================= */

/* Logo in footer */
.footer-logo img {
    max-height: 60px;
    width: auto;
    max-width: 200px;
    margin-bottom: 16px;
    display: block;
    object-fit: contain;
}

/* Footer grid: 4 cols normally, adapt when no map */
.footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.6fr;
}

/* Email link in footer */
.footer-email-link {
    color: var(--color-gray);
    font-size: 0.85rem;
    transition: color var(--transition);
    word-break: break-all;
}

.footer-email-link:hover {
    color: var(--color-red);
}

/* Google Maps embed in footer */
.footer-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    min-height: 180px;
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: none;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-map {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-map {
        grid-column: span 1;
    }
    .rates-two {
        grid-template-columns: 1fr !important;
    }
}
