@import url('https://fonts.googleapis.com/css2?family=Prata&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Colors extracted from image_creator_logo.png */
  --c-dark: #212121;
  --c-dark-soft: #2e2e2e;
  --c-light: #ffffff;
  --c-muted: #f4f2ef;
  --c-gold: #c5b598;
  --c-gold-light: #dfa968;
  --c-gold-dark: #928773;
  
  --c-border: #e8e5e1;
  --c-border-dark: #3a3a3a;

  --font-display: 'Prata', serif;
  --font-body: 'Inter', sans-serif;

  --radius-none: 0px;
  --radius-sm: 4px;

  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-light);
  color: var(--c-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-dark);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =========================================
   ACCESSIBILITY (WebAIM)
========================================= */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 4px;
}

.btn:focus-visible, .nav-item:focus-visible {
  border-radius: 0;
}

/* =========================================
   UTILITIES
========================================= */
.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 4vw;
}

.text-center {
  text-align: center;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--c-gold);
  color: var(--c-dark);
  border: 1px solid var(--c-gold);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--c-dark);
  color: var(--c-gold);
  border-color: var(--c-dark);
}

/* Ensure primary buttons on dark backgrounds don't disappear on hover */
.navbar .btn-primary:hover,
.hero-wrapper .btn-primary:hover,
.spa-feature-box .btn-primary:hover,
.spa-profile .btn-primary:hover,
.contact-info-panel .btn-primary:hover {
  background-color: var(--c-light);
  color: var(--c-dark);
  border-color: var(--c-light);
}

.btn-outline {
  background-color: transparent;
  color: var(--c-light);
  border: 1px solid var(--c-light);
}

.btn-outline:hover {
  background-color: var(--c-light);
  color: var(--c-dark);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}

.btn-outline-dark:hover {
  background-color: var(--c-dark);
  color: var(--c-light);
}

/* =========================================
   TYPOGRAPHY HIERARCHY
========================================= */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  color: inherit;
  word-wrap: break-word;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #666;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* =========================================
   NAVIGATION (Cinematic Overlay)
========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 4vw;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-dark);
  z-index: 1000;
  border-bottom: 1px solid var(--c-border-dark);
  transition: all var(--transition-smooth);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-brand span {
  color: var(--c-gold);
  font-style: italic;
  text-transform: lowercase;
  font-size: 1.4rem;
}

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

.nav-item {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--c-gold);
  transition: width var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
  color: var(--c-light);
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--c-light);
}

/* =========================================
   SPA VIEWS
========================================= */
.main-content {
  margin-top: 90px;
  min-height: calc(100vh - 90px);
}

.view-section {
  display: none;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.view-section.active {
  display: block;
}

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

.section-spacing {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* =========================================
   HERO (Immersive Full Bleed)
========================================= */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-dark);
  color: var(--c-light);
  overflow: hidden;
  margin-top: -90px; /* Bleed behind nav */
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4; /* Darken for text contrast */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 4vw;
}

.hero-meta {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--c-gold);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 12vw, 8rem);
  line-height: 1;
  color: var(--c-light);
  margin-bottom: 2rem;
  word-wrap: break-word;
}

.hero-title span {
  font-style: italic;
  color: var(--c-gold);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section {
  background-color: var(--c-muted);
  padding: 4rem 0;
  border-bottom: 1px solid var(--c-border);
}

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

.about-text h2 {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid var(--c-gold);
  z-index: -1;
}

/* =========================================
   TEAM & FILTERING
========================================= */
.filter-tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1rem;
}

.filter-tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  padding-bottom: 1rem;
  position: relative;
  transition: color var(--transition-smooth);
}

.filter-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--c-dark);
  transition: width var(--transition-smooth);
}

.filter-tab:hover, .filter-tab.active {
  color: var(--c-dark);
}

.filter-tab:hover::after, .filter-tab.active::after {
  width: 100%;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* =========================================
   INFINITE MARQUEE
========================================= */
.marquee-container {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 20px 0;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); } 
}

.marquee-card {
  width: 260px;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}

.marquee-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  z-index: 10;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

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

.marquee-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  color: white;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.marquee-card:hover .marquee-info {
  transform: translateY(0);
  opacity: 1;
}

.marquee-name {
  color: white;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.marquee-role {
  color: var(--c-gold);
  font-size: 0.8rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  color: var(--c-dark);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.carousel-btn:hover {
  background: var(--c-dark);
  color: var(--c-gold);
  border-color: var(--c-dark);
}
.prev-btn { left: -10px; }
.next-btn { right: -10px; }

@media (max-width: 768px) {
  .carousel-btn {
    display: none; /* Mobile users prefer swiping */
  }
}

.team-card {
  width: 100%;
  max-width: 280px;
  background-color: var(--c-light);
  border: 1px solid var(--c-border);
  text-align: center;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.team-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-smooth);
}

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

.team-info {
  padding: 1.5rem;
  background-color: var(--c-light);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: var(--c-dark);
}

.team-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-gold-dark);
  margin-bottom: 1rem;
}

.team-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-phone-card {
  font-size: 0.9rem;
  color: var(--c-dark);
  font-weight: 500;
}

.btn-phone-card:hover {
  color: var(--c-gold);
}

.btn-bio-card {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}

.btn-bio-card:hover {
  color: var(--c-dark);
  border-color: var(--c-dark);
}

/* =========================================
   SERVICES DIRECTORY
========================================= */
.services-container {
  max-width: 900px;
  margin: 0 auto;
}

.services-notice {
  background-color: var(--c-muted);
  border-left: 2px solid var(--c-gold);
  padding: 2rem;
  margin-bottom: 4rem;
  font-size: 0.95rem;
  color: #555;
}

.service-category {
  margin-bottom: 4rem;
}

.service-category h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 1rem;
}

.service-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-muted);
}

.service-name {
  font-size: 1.1rem;
  color: var(--c-dark);
}

.service-price {
  font-family: var(--font-body);
  color: #666;
}

/* =========================================
   SPA (MINNESTHETICS)
========================================= */
.spa-feature-box {
  background-color: var(--c-dark);
  color: var(--c-light);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: stretch;
  margin-bottom: 4rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 769px) {
  .footer-col-right {
    text-align: right;
  }
}

.spa-profile {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--c-dark-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spa-profile img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--c-gold);
}

.spa-profile h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-light);
  margin-bottom: 0.5rem;
}

.spa-profile span {
  color: var(--c-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.spa-feature-text {
  padding: 4rem;
}

.spa-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--c-light);
  line-height: 1.5;
  margin-bottom: 3rem;
  position: relative;
}

.spa-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 6rem;
  color: rgba(255,255,255,0.05);
  font-family: var(--font-display);
}

.spa-promo-banner {
  background-color: var(--c-gold);
  color: var(--c-dark);
  padding: 5rem 2rem;
  text-align: center;
  border-radius: var(--radius-sm);
  margin-bottom: 6rem;
}

.spa-promo-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--c-dark);
  margin-bottom: 1.5rem;
}

.spa-promo-banner p {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(17,17,17,0.85);
}

.promo-badge {
  display: inline-block;
  background-color: var(--c-dark);
  color: var(--c-light);
  padding: 14px 36px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  word-wrap: break-word;
}

.spa-treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.spa-treatment-card {
  padding: 3rem;
  background-color: var(--c-muted);
  border-top: 2px solid transparent;
  transition: border-color var(--transition-smooth);
}

.spa-treatment-card:hover {
  border-top-color: var(--c-gold);
}

.spa-treatment-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Galleries */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1rem;
  margin-bottom: 6rem;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
  background-color: #000;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

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

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 4rem;
}

.testimonial-card {
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--c-dark);
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gold-dark);
}

/* =========================================
   RENTALS
========================================= */
.rentals-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.rentals-list {
  list-style: none;
  margin: 2.5rem 0;
}

.rentals-list li {
  font-size: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
}

.rentals-list li::before {
  content: '—';
  color: var(--c-gold);
  margin-right: 1rem;
}

/* =========================================
   MODALS & DRAWERS
========================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.profile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 500px;
  background: var(--c-light);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
  padding: 4rem 3rem;
}

.profile-drawer.active {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--c-dark);
}

.drawer-header {
  text-align: center;
  margin-bottom: 2rem;
  word-wrap: break-word;
}

.drawer-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

#drawer-name {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  margin-bottom: 0.5rem;
}

#drawer-role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gold-dark);
  margin-bottom: 1.5rem;
}

.drawer-bio {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background-color: var(--c-dark);
  color: var(--c-light);
  padding: 4rem 4vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1500px;
  margin: 0 auto 3rem;
}

.footer-col h4 {
  color: var(--c-light);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 1rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
}

.footer-col a:hover {
  color: var(--c-gold);
}

.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.footer-col-right ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .about-grid, .spa-feature-box, .rentals-card-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image {
    order: -1; /* Image above text */
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }
  .footer-col-right {
    align-items: flex-start;
    text-align: left;
  }
  .footer-col-right ul {
    align-items: flex-start;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--c-dark);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
    border-bottom: 1px solid var(--c-border-dark);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .rentals-card-grid > div:last-child {
    min-height: 400px;
  }
  .hero-wrapper {
    min-height: 80vh;
  }
  .btn {
    padding: 14px 20px;
    font-size: 0.85rem;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .spa-feature-box {
    grid-template-columns: 1fr;
  }
  .spa-feature-text {
    padding: 3rem 2rem;
  }
  .spa-promo-banner {
    padding: 4rem 1.5rem;
  }
  .promo-badge {
    padding: 12px 20px;
  }
  .filter-tabs-container {
    gap: 1rem;
  }
  .profile-drawer {
    padding: 3rem 1.5rem;
  }
}
