
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Space+Grotesk:wght@300..700&display=swap');
/* Global Layout Adjustments & Variables Override */
:root {
  --font-display: "Philosopher", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --clr-bg-dark: #181d25;
  --clr-card-bg: #161a23;
  --clr-gold: #C8A96E;
  --clr-gold-light: #e0ca9e;
  --clr-text-muted: #9fa4b0;
}

body {
  background-color: var(--clr-bg-dark);
  font-family: var(--font-body);
  color: #ffffff;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll[data-delay] {
  transition-delay: var(--reveal-delay, 0ms);
}

/* ─── HEADER REFACTOR STYLES ─── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent !important;
}
.site-nav__link {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #ffffff !important;
}
.site-header__phone {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.btn--primary {
  background-color: transparent;
  border: 1px solid var(--clr-gold);
  color: #ffffff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background-color: var(--clr-gold);
  color: #11141a;
}

/* ─── HERO LUXURY ─── */
.hero-luxury {
  position: relative;
  min-height: 105vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
  background: rgba(17, 15, 10, 0.6);
}
.hero-luxury__slides {
  position: absolute;
  inset: 0;
  top: 0;
  z-index: 1;
}
.hero-luxury__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 1.2s ease;
  pointer-events: none;
}
.hero-luxury__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.66) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 0;
}
.hero-luxury__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero-luxury__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding-top: 200px;
}
.hero-luxury__slide.is-active .hero-luxury__content {
  opacity: 1;
  transform: translateX(0);
}
.eyebrow-luxury {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--clr-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
 
}
.hero-luxury__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 3.5rem;
}
.hero-luxury__social-proof {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Pill Button Style from image */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid var(--clr-gold);
  padding: 0.5rem 0.5rem 0.5rem 1.75rem;
  border-radius: 50px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
}
.btn-pill__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  color: #11141a;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.btn-pill:hover {
  background-color: var(--clr-gold);
}
.btn-pill:hover .btn-pill__arrow {
  transform: translateX(3px);
  background-color: var(--clr-gold);
}

/* Avatars Style */
.avatar-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.avatar-group__images {
  display: flex;
  align-items: center;
}
.avatar-group__images img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-bg-dark);
  margin-right: -12px;
}
.avatar-group__plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--clr-gold);
  color: #11141a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--clr-bg-dark);
}
.avatar-group__text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin: 0;
}
.avatar-group__text strong {
  color: #ffffff;
}

/* ─── 4-CARD FEATURES SECTION ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background-color: #11141a;
  padding: 3rem 2rem;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card__icon {
  margin-bottom: 2rem;
}
.feature-card__icon svg{
    fill: var(--clr-gold);
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.feature-card__desc {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── ABOUT / WHO WE ARE SPLIT SECTION ─── */
.about-split__grid {
  display: grid;
  grid-template-columns: 45% 50%;
  gap: 5%;
  align-items: center;
}
.about-split__image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Double-Border Circular Image Container */
.circle-frame {
  position: relative;
  width: 85%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 315px 315px 315px 315px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 315px 315px 315px 315px;
  pointer-events: none;
}
.circle-frame__inner {
  width: 100%;
  height: 100%;
  border-radius: 315px 315px 315px 315px;
  overflow: hidden;
}
.circle-frame__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 300px 300px 300px 300px;
  
    display: inline-block;
    vertical-align: middle;
}

/* Floating Gold Experience Badge */
.badge-experience {
  position: absolute;
  top: 15%;
  right: -5px;
  width: 130px;
  height: 130px;
  background-color: var(--clr-gold);
  color: #11141a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.badge-experience__content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.badge-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
}
.badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* About Typography & Layout */
.eyebrow-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.eyebrow-line {
  width: 25px;
  height: 2px;
  background-color: var(--clr-gold);
}
.about-split__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.about-split__text {
  font-size: 17px;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Lower Circular Feature Badges */
.about-split__badges {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.badge-item__circle {
  width: 60px;
  height: 60px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-item__circle span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-gold);
}
.badge-item__label {
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

/* ─── GENERAL HELPERS ─── */
.text-center { text-align: center; }
.justify-center { justify-content: center; }

.services-luxury__header { margin-bottom: 3.5rem; }
.services-luxury__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* ─── CAROUSEL WRAPPER & ARROWS ─── */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--clr-bg-dark);
  border: 1px solid rgba(200, 169, 110, 0.4);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.carousel-arrow:hover {
  background-color: var(--clr-gold);
  color: #11141a;
}
.carousel-arrow--prev { left: -25px; }
.carousel-arrow--next { right: -25px; }

/* ─── CAROUSEL TRACK (Scroll Snap) ─── */
.services-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  width: 100%;
  padding-block: 1rem; /* Prevent hover shadows from clipping */
}
.services-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* ─── SLIDES SIZING (3 on Desktop) ─── */
.slide {
  /* Calculate: 100% width, minus the 2 gaps (4rem total), divided by 3 cards */
  flex: 0 0 calc((100% - 4rem) / 3);
  scroll-snap-align: start;
}

/* ─── LUXURY CARD STYLING ─── */
.luxury-card {
  display: block;
  background-color: var(--clr-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
}
.luxury-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 110, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.luxury-card__img-wrapper { position: relative; width: 100%; height: 260px; overflow: hidden; }
.luxury-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.luxury-card:hover .luxury-card__img { transform: scale(1.05); }

.luxury-card__overlay {
  position: absolute; top: 1rem; right: 1rem;
  background-color: rgba(17, 20, 26, 0.85);
  backdrop-filter: blur(4px);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(200, 169, 110, 0.3);
}
.luxury-card__duration {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; color: var(--clr-gold);
  text-transform: uppercase; letter-spacing: 0.05em;
}

.luxury-card__content { padding: 2.5rem 2rem; }
.luxury-card__title-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1rem; }
.luxury-card__title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: #ffffff; margin: 0; white-space: nowrap; }
.luxury-card__line { flex-grow: 1; border-bottom: 1px dashed rgba(255, 255, 255, 0.15); margin: 0 1rem; position: relative; top: -4px; }
.luxury-card__price { font-size: 1.4rem; font-weight: 600; color: var(--clr-gold); font-family: var(--font-display); }
.luxury-card__desc { font-size: 0.95rem; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 1.5rem; }

.luxury-card__link {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--clr-gold-light); font-weight: 600; position: relative; padding-bottom: 0.25rem;
}
.luxury-card__link::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0%; height: 1px; background-color: var(--clr-gold); transition: width 0.3s ease; }
.luxury-card:hover .luxury-card__link::after { width: 100%; }
/* ─── VIDEO PROMO SECTION ─── */
.video-promo {
  position: relative;
  width: 100vw;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%); 
  margin-right: calc(-50vw + 50%);
  padding: 4rem 1rem;
}

/* Background & Overlay */
.video-promo__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-promo__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 20, 26, 0.65);
  z-index: 1;
}

/* ─── NEW LAYOUT STRUCTURE ─── */
.video-promo__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px; /* Wide enough to allow space between text and button */
  margin: 0 auto;
}

/* Row 1: Text Left | Button Right */
.video-promo__top {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Aligns the button with the middle of the text */
  gap: 2rem;
}

.video-promo__text {
  max-width: 700px;
}

.stars { 
  color: var(--clr-gold); 
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
}

.video-promo__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.video-promo__action {
  flex-shrink: 0; /* Prevents the button from shrinking */
}

/* Row 2: Full Width Divider */
.video-promo__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 3rem 0; /* Space above and below the divider */
}

/* Row 3: Rating Left Aligned */
.video-promo__bottom {
  display: flex;
  justify-content: flex-start;
}

.rating { 
  text-align: left; 
  color: rgba(255,255,255,0.8); 
}

.rating__score { 
  font-weight: bold; 
  color: var(--clr-gold); 
  font-size: 1.2rem; 
  margin-right: 0.5rem;
}




/* Responsive adjustments */
@media (max-width: 992px) {
  .video-promo__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-promo__heading {
    font-size: 2.2rem;
  }
  .video-promo__divider {
    margin: 2rem 0;
  }
}
/* ─── RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1024px) {
  /* Show 2 cards on tablet */
  .slide { flex: 0 0 calc((100% - 2rem) / 2); }
}

@media (max-width: 768px) {
  .services-luxury__heading { font-size: 2.2rem; }
  .luxury-card__title { font-size: 1.3rem; }
  .carousel-arrow--prev { left: -10px; }
  .carousel-arrow--next { right: -10px; }
}

@media (max-width: 600px) {
  /* Show 1 card on mobile */
  .slide { flex: 0 0 100%; }
  /* Native swiping is preferred on mobile, so we hide the arrows */
  .carousel-arrow { display: none; } 
}
/* ─── STRICT RESPONSIVE BREAKPOINTS ─── */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .about-split__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-split__image-wrapper {
    order: 1; /* Image moves below on mobile for better text layout flow */
  }
  .about-split__content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .hero-luxury__title {
    font-size: 3.2rem;
  }
  .hero-luxury__social-proof {
    gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .about-split__badges {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
    .hero-luxury {
   min-height: 70vh;

  overflow: hidden;

}
.hero-luxury__content{
    padding-top: 70px;
}
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-luxury__title {
    font-size: 2.6rem;
  }
  .badge-experience {
    width: 110px;
    height: 110px;
  }
  .badge-number {
    font-size: 1.8rem;
  }
  
   .header-book-button{
      display: none;
  }
  #header-hidden{
      display:none;
  }
}

/* ─── HEADER BASE (Transparent & Blended) ─── */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff; /* Blends with hero */
  transition: all 0.3s ease;
}

/* ─── CENTERED DIV & BROWN LINE ─── */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center; /* Centers all items horizontally */
  gap: 3rem; /* Adjust this to control spacing between logo, links, etc. */
  padding: 1.5rem 2rem;
  margin: 0 auto;
  max-width: var(--container-max);
  border-bottom: 1px solid var(--clr-gold-dim); /* The brownish line under the centered items */
}

/* ─── STICKY SWIPE-DOWN ANIMATION ─── */
.site-header.is-sticky {
  position: fixed;
  background: #11141a !important; /* Solid dark background when scrolling */
  transform: translateY(-100%);
  animation: swipeDown 0.4s ease forwards;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.site-header.is-sticky .site-header__inner {
  border-bottom: none; /* Removes the line when sticky to keep it clean */
  padding: 1rem 2rem; /* slightly tighter padding for sticky state */
}

@keyframes swipeDown {
  to { transform: translateY(0); }
}

/* Responsive fix for mobile: stack items if screen is too small */
@media (max-width: 992px) {
  .site-header__inner {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}


/* ─── RESPONSIVE HEADER FIXES ─── */
@media (max-width: 992px) {
  .site-header__inner {
    justify-content: space-between; /* Pushes logo left, hamburger right */
    padding: 1rem 1.5rem; /* Slightly tighter padding for mobile */
    gap: 1rem;
    border-bottom: none; /* Looks cleaner on mobile */
  }

  /* Hide Desktop Elements */
  .site-nav,
  .site-header__phone,
  .header-btn-desktop {
    display: none !important;
  }

  /* Show Hamburger Menu */
  .nav-toggle {
    display: flex !important;
  }
}


/* Logo Container */
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0; /* Prevents the logo from squishing when nav gets crowded */
  text-decoration: none;
}

/* Responsive Logo Image */
.site-logo__img {
  height: 90px;          /* Set target desktop logo height */
  width: auto;           /* Automatically maintains proper aspect ratio */
  max-width: 100%;       /* Ensures image never overflows container */
  object-fit: contain;
  display: block;
  transition: height 0.3s ease; /* Smooth transition if header shrinks on scroll */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .site-logo__img {
    height: 55px;        /* Slightly smaller logo for mobile screens */
  }
}
/* Footer Logo Styling */
.footer-brand__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand__logo {
  height: 80px;          /* Target desktop height for footer */
  width: auto;           /* Automatically maintains aspect ratio */
  max-width: 100%;       /* Prevents overflow on tiny screens */
  object-fit: contain;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-brand__logo {
    height: 80px;        /* Slightly smaller scale on mobile */
  }
}
