:root {
  --primary-color: #c9a063;
  --primary-color-dark: #b48d53;
  --bg-dark: #0d0c0a;
  --bg-darker: #0c0c0c;
  --bg-panel: #151310;
  --bg-card: #1a1a1a;
  --text-light: #f4f4f4;
  --text-muted: #a0a0a0;
  --text-soft: #cccccc;
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --font-main: "Helvetica Neue", Arial, sans-serif;
  --transition: all 0.3s ease;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --container: 1200px;
  --header-height: 90px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

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

a:hover {
  opacity: 0.9;
}

ul {
  list-style-position: outside;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.compact-container {
  max-width: 860px;
}

.center {
  text-align: center;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  color: var(--primary-color);
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.section {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 45px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(13, 12, 10, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.desktop-header-flex {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  max-height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}

.desktop-nav-links a {
  color: #fff;
  white-space: nowrap;
}

.desktop-nav-links a:hover,
.desktop-nav-links a:focus {
  color: var(--primary-color);
  opacity: 1;
}

.nav-book {
  border: 1px solid var(--primary-color);
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  color: var(--primary-color) !important;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.header-phone:hover {
  color: var(--primary-color);
  opacity: 1;
}

.phone-icon {
  line-height: 1;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #666;
}

.lang-switcher a {
  color: #fff;
  font-weight: 600;
}

.lang-switcher a.active {
  color: var(--primary-color);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
}

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

.hero-overlay {
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(13, 12, 10, 0.94));
}

.hero-inner {
  width: 100%;
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.hero-lead {
  font-size: 1.1rem;
  color: #e4e4e4;
  max-width: 720px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 28px 0 22px;
}

.hero-note {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-rating {
  font-size: 0.95rem;
  color: #ededed;
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-dark);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
  opacity: 1;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff !important;
  border: 2px solid #25d366;
}

.whatsapp-btn:hover {
  background: #128c7e;
  border-color: #128c7e;
  opacity: 1;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 50px;
  align-items: start;
}

.intro-copy {
  line-height: 1.85;
  color: var(--text-light);
}

/* Generic panels */
.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
}

/* Split sections & Benefits */
.split-dark {
  background-color: var(--bg-darker);
}

.benefits-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0;
  border-left: 2px solid var(--primary-color);
  padding-left: 20px;
}

.benefit-card, .benefit-item {
  flex: 1 1 220px;
}

.benefit-card h3, .benefit-item h4 {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 0;
}

.benefit-card p, .benefit-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-soft);
  margin-bottom: 0;
}

.split-images-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  margin-top: 25px;
}

.split-images-grid img,
.split-images-grid video {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: #000;
}

.full-width-loft-view {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  margin-top: 36px;
  margin-bottom: 30px;
}

.seo-text-block {
  margin-top: 28px;
  margin-bottom: 0;
  padding-left: 20px;
  border-left: 2px solid var(--primary-color);
}

.seo-text-block p {
  margin-bottom: 0;
  line-height: 1.8;
}

/* Signature */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.signature-card {
  min-width: 0;
}

.signature-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
}

.signature-copy p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Embedded media */
.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: var(--radius-lg);
  margin-top: 15px;
}

.responsive-iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-btn {
  margin-top: 15px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-item {
  min-width: 0;
  margin: 0;
}

.gallery-item a {
  display: block;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, filter 0.35s ease;
}

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

/* Feature list */
.features-list-section {
  background: #111;
  padding: 60px 0;
}

.features-list {
  padding-left: 22px;
  color: #fff;
  line-height: 1.9;
  font-size: 1.08rem;
}

.features-list li {
  margin-bottom: 8px;
}

/* FAQ */
.faq-section {
  background: var(--bg-darker);
  padding: 80px 0;
}

.faq-container {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-soft);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* Reviews */
.reviews-section {
  background: #111;
  padding: 60px 0;
  border-top: 1px solid #222;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid #333;
  border-radius: var(--radius-lg);
  padding: 24px;
}

.stars {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.review-author {
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 700;
  color: var(--primary-color);
}

/* CTA */
.cta-section {
  padding: 90px 0;
}

.cta-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-panel,
.cta-box {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(180deg, #171512 0%, #100f0d 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 56px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.cta-title {
  color: var(--primary-color);
  margin-bottom: 14px;
}

.cta-subtitle {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #bdbdbd;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.cta-main-btn {
  margin-bottom: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 18px;
}

.contact-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-card a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.contact-details {
  color: #fff;
  margin-bottom: 20px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details a {
  color: var(--primary-color);
}

.cta-whatsapp-wrap {
  margin-bottom: 24px;
}

.social-links,
.social-links-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-links a,
.social-links-cta a {
  color: #fff;
  font-weight: 700;
}

.social-links a:hover,
.social-links-cta a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Footer */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid #222;
  color: var(--text-muted);
}

.footer-flex {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 56px 20px 36px;
}

.footer-brand img {
  max-width: 160px;
  width: 100%;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--text-soft);
  margin-bottom: 0;
}

.footer-links h4,
.footer-social h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  color: var(--text-muted);
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: #666;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox-nav {
  position: absolute;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  padding: 20px;
}

#lightbox-prev {
  left: 10px;
}

#lightbox-next {
  right: 10px;
}

#lightbox-close {
  top: 18px;
  right: 20px;
  font-size: 46px;
}

/* ========================================= */
/* Responsive Breakpoints & Mobile Fixes     */
/* ========================================= */

@media (max-width: 1100px) {
  .desktop-nav-links {
    gap: 16px;
    font-size: 0.76rem;
  }

  .phone-text {
    display: none;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  
  /* HIDE GALLERY ON MOBILE */
  .gallery-section, #gallery {
    display: none !important;
  }

  .site-header {
    position: relative;
    background: var(--bg-darker);
  }

  .desktop-header-flex {
    min-height: auto;
    padding: 14px 0;
  }

  .brand img {
    max-height: 52px;
  }

  .desktop-nav-links {
    display: none;
  }

  .header-phone {
    font-size: 1.35rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: #111;
    border-top: 1px solid #333;
    padding: 10px 20px 16px;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav a {
    color: #fff;
    font-size: 1.04rem;
    padding: 12px 0;
    border-bottom: 1px solid #222;
  }

  .mobile-book-link {
    color: var(--primary-color) !important;
    font-weight: 700;
  }

  .hero {
    min-height: auto; /* Remove 100vh constraint for mobile */
    padding-top: 40px;
    padding-bottom: 60px; /* Reduce padding */
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-images-grid {
    grid-template-columns: 1fr;
  }

  .split-images-grid img,
  .split-images-grid video {
    aspect-ratio: auto;
    height: auto;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px; /* Smaller gap between buttons */
  }

  .hero-actions a,
  .cta-actions a {
    width: 100%;
  }

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

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

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

  .cta-panel,
  .cta-box {
    padding: 36px 20px;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 50px 0; /* Reduced padding on mobile */
  }

  .panel {
    padding: 24px 16px;
  }

  /* --- COMPACT HERO TEXT --- */
  h1 {
    font-size: clamp(2rem, 6vw, 2.5rem); /* Smaller H1 */
    margin-bottom: 12px;
  }
  
  .hero-lead {
    font-size: 0.95rem; /* Smaller lead text */
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .hero-note, .hero-rating {
    font-size: 0.85rem;
  }

  .btn {
    min-height: 44px; /* Shorter buttons */
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* --- COMPACT BENEFITS (HOT TUB) FIX --- */
  .benefits-grid, .benefit-grid {
    flex-direction: column;
    border-left: none; /* Remove left border */
    padding-left: 0;
    gap: 10px; /* Super small gap */
    margin: 20px 0;
  }

  .benefit-card, .benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-color);
    padding: 12px 15px; /* Tight padding */
    border-radius: 6px; /* Smaller radius */
  }

  .benefit-card h3, .benefit-item h4 {
    font-size: 0.95rem; /* Smaller title */
    margin-bottom: 4px;
  }

  .benefit-card p, .benefit-item p {
    font-size: 0.85rem; /* Smaller text */
    line-height: 1.4;
  }

  /* --- COMPACT FOOTER FIX --- */
  .footer-flex {
    grid-template-columns: 1fr;
    padding: 30px 15px 20px; /* Reduced overall padding */
    gap: 20px; /* Reduced gap between sections */
    text-align: center;
  }
  
  .footer-brand img {
    margin: 0 auto 10px;
    max-width: 120px; /* Smaller logo */
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-links h4, .footer-social h4 {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Tight list */
  }

  .footer-links li {
    margin-bottom: 0; /* Override default */
  }

  .footer-links a, .footer-social a {
    font-size: 0.9rem;
  }

  .social-icons {
    flex-direction: row; /* Horizontal layout for social */
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-bottom {
    padding: 15px 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .panel {
    padding: 20px 15px;
  }

  .header-right {
    gap: 8px;
  }

  h2 {
    font-size: 1.7rem !important;
  }

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

  #lightbox img {
    max-width: 94%;
    max-height: 76%;
  }
}