:root {
   --primary: linear-gradient(
  180deg,
  #5A0F1B 0%,
  #4A0C16 100%
);    /* Wine Red */
  --gold: #C6A25D;         /* Antique Gold */
  --dark: #1A1A1A;         /* Charcoal */
  --light: #F6F2EA; 
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: #222;
  margin: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

section {
  padding: 100px 0;
  scroll-margin-top: 150px; /* fixed header offset */
}

/* ================= HEADER ================= */
.main-header {
  position: fixed;
  top: 40px; /* PUSHED BELOW TOPBAR */
  width: 100%;
  height: 90px;
  background: rgba(45, 15, 15, 0.96);
  backdrop-filter: blur(10px);
  z-index: 9999;
}

.main-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* NAV */
.nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* HEADER CTA */
.header-cta {
  margin-left: 20px;
}

/* ================= BUTTON ================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 40px;
  background: var(--gold);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: #b08d4f;
  transform: translateY(-2px);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}

/* ================= HERO ================= */
#hero {
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
}

#hero h1 {
    padding-top: 130px;

  font-size: 4rem;
}

#hero p {
  font-size: 1.2rem;
  margin-top: 20px;
}

/* ================= STORY ================= */
.story-box {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

/* ================= ICON ================= */
.icon-box {
  padding: 30px;
  transition: 0.4s;
}

.icon-box:hover {
  transform: translateY(-10px);
}

/* ================= AMENITIES ================= */
.amenity-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.amenity-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 1s;
}

.amenity-card:hover img {
  transform: scale(1.1);
}

.amenity-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 20px;
  font-weight: 500;
}

/* ================= DARK SECTION ================= */
.dark-section {
  background: var(--dark);
  color: #fff;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

   .topbar {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 9999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .nav-menu a {
    font-size: 20px;
  }

  .header-cta {
    display: none;
  }

  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  #hero p {
    font-size: 1rem;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}


/* ================= PREMIUM HEADER ================= */
.main-header {
  height: 96px;
  background:  linear-gradient(
    180deg,
   rgba(10,32,26,0.98) 0%,
   rgba(22,66,54,0.96) 50%,
    rgba(6,22,18,0.98) 100%
  );
}  

.main-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #C6A25D,
    transparent
  );
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* LOGO */
.header-left img {
  height: 56px;
}

/* NAV CENTER */
.nav-menu {
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  display: flex;
  gap: 36px;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* CONTACT INFO */
.header-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #d6e2dc;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item .icon {
  font-size: 14px;
  color: var(--gold);
}

/* CTA */
.header-cta {
  padding: 10px 28px;
  font-size: 14px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 9999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 30px;
  }

  .header-contact,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ================= TOP BAR ================= */
.topbar {
    position: fixed;
    width: 100%;
  height: 42px;
  background: linear-gradient(
  180deg,
  rgba(6,22,18,0.98) 100%,
    rgba(15,45,36,0.96) 55%
    
);;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 9999;
  
}

.topbar-inner {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Contact items */
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cfded7;
  font-size: 13px;
  text-decoration: none;
  transition: all .3s ease;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}

.topbar-item:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* Social */
.topbar-social {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(200,164,93,0.4);
  color: var(--gold);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s ease;
}

.topbar-social:hover {
  background: var(--gold);
  color: #0f2d24;
}

.topbar-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.topbar-social:hover svg {
  transform: scale(1.1);
}
/*slider*/
/* ================= HERO ================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.heroSwiper,
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  height: 100%;
}

/* SLIDE */
.hero-slide {
  position: relative;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 9s ease;
}

/* CINEMATIC ZOOM */
.swiper-slide-active .hero-bg {
  transform: scale(1.12);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11,36,29,0.55),
    rgba(11,36,29,0.75)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-left: 80px;
  padding-top: 140px;
  color: #fff;
}

/* TEXT ANIMATION */
.hero-content h1,
.hero-content p,
.hero-content .btn-gold {
  opacity: 0;
  transform: translateY(35px);
  transition: all 1.1s cubic-bezier(.25,.46,.45,.94);
}

.hero-content p {
  transition-delay: .2s;
}

.hero-content .btn-gold {
  transition-delay: .4s;
}

/* ACTIVE */
.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content p,
.swiper-slide-active .hero-content .btn-gold {
  opacity: 1;
  transform: translateY(0);
}

/* GOLD UNDERLINE */
.hero-title {
  position: relative;
  display: inline-block;
}

.gold-underline {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a45d, transparent);
  transition: width 1s ease;
}

.swiper-slide-active .gold-underline {
  width: 120px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 24px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}




/* MOBILE */
@media (max-width: 768px) {
  .hero-slider {
    height: calc(100vh - 90px);
  }

  .hero-content {
    padding: 0 25px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}





.hero-title {
  position: relative;
  display: inline-block;
}

/* Gold underline */
.gold-underline {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  transition: width 1s ease;
  opacity: 1;
}

.swiper-slide-active .gold-underline {
  width: 120px;
}


@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 120px;
    opacity: 1;
  }
}


/* ================= HERO TEXT INITIAL STATE ================= */
.hero-content h1,
.hero-content p,
.hero-content .btn-gold,
.gold-underline {
  opacity: 0;
  transform: translateY(30px);
}

/* ================= TRANSITIONS ================= */
.hero-content h1 {
  transition: all 1.1s cubic-bezier(.25,.46,.45,.94);
}

.hero-content p {
  transition: all 1.1s cubic-bezier(.25,.46,.45,.94);
  transition-delay: .2s;
}

.hero-content .btn-gold {
  transition: all .9s ease;
  transition-delay: .4s;
}

/* ================= ACTIVE SLIDE ================= */
.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content p,
.swiper-slide-active .hero-content .btn-gold {
  opacity: 1;
  transform: translateY(0);
}


/* ================= CINEMATIC ZOOM ================= */
.hero-slide {
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 9s ease;
  z-index: 0;
}

/* When slide becomes active */
.swiper-slide-active.hero-slide::before {
  transform: scale(1.12);
}

/* Overlay must stay above zoom */
.hero-overlay {
  z-index: 1;
}

/* Content above everything */
.hero-content {
  z-index: 2;
}

/* ================= PARALLAX TEXT ================= */
.hero-content {
  transform: translateY(40px);
  transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}

.swiper-slide-active .hero-content {
  transform: translateY(0);
}


/* ================= ABOUT SECTION ================= */
.about-section {
  position: relative;
  background:
    radial-gradient(
      circle at top,
      rgba(200,164,93,0.08),
      rgba(245,245,245,0.95) 60%
    );
  overflow: hidden;
}

/* subtle texture overlay */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.04;
  pointer-events: none;
}


/* ================= GOLD DIVIDER ================= */
.gold-divider {
  width: 0;
  height: 2px;
  margin: 28px auto 40px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  transition: width 1.4s cubic-bezier(.25,.46,.45,.94);
}

/* animate when revealed */
.reveal.active .gold-divider {
  width: 120px;
}

/* ================= ABOUT TEXT ================= */
.about-text {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2a2a2a;

  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.25,.46,.45,.94);
}

/* staggered reveal */
.reveal.active .about-text:nth-of-type(1) { transition-delay: .2s; }
.reveal.active .about-text:nth-of-type(2) { transition-delay: .4s; }
.reveal.active .about-text:nth-of-type(3) { transition-delay: .6s; }
.reveal.active .about-text:nth-of-type(4) { transition-delay: .8s; }

.reveal.active .about-text {
  opacity: 1;
  transform: translateY(0);
}


/* ================= LOCATION SECTION ================= */
.location-section {
  position: relative;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f6f6f6
    );
}

.location-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

/* ================= LOCATION CARDS ================= */
.location-card {
  padding: 30px 20px;
  transition: all 0.6s cubic-bezier(.25,.46,.45,.94);
  opacity: 0;
  transform: translateY(30px);
}

/* stagger reveal */
.reveal.active .location-card:nth-child(1) { transition-delay: .2s; }
.reveal.active .location-card:nth-child(2) { transition-delay: .4s; }
.reveal.active .location-card:nth-child(3) { transition-delay: .6s; }
.reveal.active .location-card:nth-child(4) { transition-delay: .8s; }

.reveal.active .location-card {
  opacity: 1;
  transform: translateY(0);
}

/* hover */
.location-card:hover {
  transform: translateY(-8px);
}

.location-value {
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
}

/* subtle gold accent underline */
.location-value::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--gold);
  opacity: 0.8;
}

.location-label {
  font-size: 0.95rem;
  color: #555;
  letter-spacing: 0.4px;
}

@media (max-width: 768px) {
  .location-value {
    font-size: 2.2rem;
  }

  .location-card {
    margin-bottom: 20px;
  }
}


.location-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid rgba(200,164,93,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
}

.location-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
}

/* hover magic */
.location-card:hover .location-icon {
  background: var(--gold);
}

.location-card:hover .location-icon svg {
  stroke: #0f2d24;
}



.location-image {
  position: relative;
  margin-top: 70px;
  border-radius: 24px;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}

/* cinematic slow zoom */
.reveal.active .location-image img {
  transform: scale(1.08);
}

.location-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15,45,36,0.25),
    rgba(15,45,36,0.55)
  );
}

.location-caption {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: .4px;
}

.location-map {
  margin-top: 60px;
  text-align: center;
}

.location-map img {
  width: 100%;
  border-radius: 18px;
  opacity: 0.92;
}

.map-label {
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #777;
  text-transform: uppercase;
}
/* ================= LOCATION MAP ================= */
#location-map {
  background: linear-gradient(
    180deg,
    #f7f7f7,
    #ffffff
  );
}

.map-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.map-header p {
  font-size: 0.95rem;
  color: #777;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.map-wrapper {
  position: relative;
  margin-top: 40px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* Map iframe */
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(90%) contrast(1.05);
  transition: filter 0.6s ease;
}

/* On hover → bring life */
.map-wrapper:hover iframe {
  filter: grayscale(20%) contrast(1.1);
}

/* Overlay caption */
.map-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(
    rgba(15,45,36,0),
    rgba(15,45,36,0.85)
  );
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 300px;
  }

  .map-header h2 {
    font-size: 1.9rem;
  }

  .map-overlay {
    font-size: 0.85rem;
    text-align: center;
  }
}


/* ================= AMENITIES ================= */
.amenities-section {
  background: #fff;
}

.amenities-header h2 {
  font-size: 2.6rem;
  font-family: 'Playfair Display', serif;
}

.amenities-header p {
  color: #777;
  margin-top: 10px;
  font-size: 1rem;
}

.gold-divider {
  display: block;
  width: 90px;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  animation: dividerGlow 2.5s infinite;
}

@keyframes dividerGlow {
  0% { opacity: .4; }
  50% { opacity: 1; }
  100% { opacity: .4; }
}

/* Amenity Card */


/* ================= AMENITIES ================= */
.amenities-section {
  background: #fff;
}

.amenities-header h2 {
  font-size: 2.6rem;
  font-family: 'Playfair Display', serif;
}

.amenities-header p {
  color: #777;
  margin-top: 10px;
  font-size: 1rem;
}

.gold-divider {
  display: block;
  width: 90px;
  height: 2px;
  margin: 22px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  animation: dividerGlow 2.5s infinite;
}

@keyframes dividerGlow {
  0% { opacity: .4; }
  50% { opacity: 1; }
  100% { opacity: .4; }
}

/* Cinematic Card */
.amenity-cinematic {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
  background: #111;
}

.amenity-cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1.6s ease;
  will-change: transform;
}

/* Zoom only on hover */
.amenity-cinematic:hover img {
  transform: scale(1.12);
}

/* Overlay */
.amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0),
    rgba(15,45,36,0.85)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  transition: transform .4s ease;
}

.amenity-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.amenity-overlay span {
  font-size: .85rem;
  opacity: .85;
  letter-spacing: .4px;
}

/* Subtle lift */
.amenity-cinematic:hover .amenity-overlay {
  transform: translateY(-6px);
}

/* Mobile */
@media (max-width: 768px) {
  .amenities-header h2 {
    font-size: 2.1rem;
  }
}


/* ================= MEMBERSHIP ================= */
.membership-section {
  background: linear-gradient(180deg,#fff,#f8f8f6);
}

.membership-header h2 {
  font-size: 2.7rem;
  font-family: 'Playfair Display', serif;
}

.membership-header p {
  max-width: 720px;
  margin: 18px auto 0;
  color: #666;
  font-size: 1rem;
}

/* Card */
.membership-card {
  background: #fff;
  border-radius: 26px;
  padding: 42px 34px;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
}

.membership-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
}

.membership-card .tier {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.membership-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.membership-card .desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 22px;
}

/* List */
.membership-card ul {
  list-style: none;
  padding: 0;
}

.membership-card ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

/* Notes */
.membership-card .note {
  display: block;
  margin-top: 22px;
  font-size: 0.75rem;
  letter-spacing: .5px;
  opacity: .7;
}

/* Featured */
.membership-card.featured {
  background: linear-gradient(
    180deg,
    rgba(200,164,93,0.15),
    #fff
  );
  border: 1px solid rgba(200,164,93,.4);
}

.membership-card.featured::before {
  content: "Most Preferred";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  padding: 6px 14px;
  border-radius: 20px;
}

/* CTA */
.membership-cta .btn-gold {
  padding: 16px 38px;
  font-size: 1rem;
}

.small-note {
  margin-top: 14px;
  font-size: 0.8rem;
  opacity: .7;
}

/* Mobile */
@media (max-width: 768px) {
  .membership-header h2 {
    font-size: 2.2rem;
  }
}


/* ================= EVENTS ================= */
.events-section {
  background: linear-gradient(180deg,#fff,#f6f5f2);
}

.events-header h2 {
  font-size: 2.7rem;
  font-family: 'Playfair Display', serif;
}

.events-header p {
  max-width: 680px;
  margin: 18px auto 0;
  color: #666;
}

.events-story p {
  max-width: 900px;
  margin: 16px auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

/* Event Card */
.event-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.1);
  transition: transform .5s ease, box-shadow .5s ease;
}

.event-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.event-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent,rgba(0,0,0,.45));
}

.event-content {
  padding: 32px 26px;
}

.event-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.event-content p {
  font-size: 0.95rem;
  color: #555;
}

/* CTA */
.events-cta .btn-gold {
  padding: 16px 38px;
}

/* Mobile */
@media (max-width: 768px) {
  .events-header h2 {
    font-size: 2.2rem;
  }

  .event-img {
    height: 220px;
  }
}



/* ================= MEMBER STORIES ================= */
/* ================= STORIES SECTION ================= */

.stories-section {
  background: #0b241d;
  padding: 120px 0;
  color: #fff;
  position: relative;
}

.stories-section h2 {
  font-size: 2.8rem;
}

.section-subtext {
  max-width: 720px;
  margin: 20px auto 60px;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Divider */
.gold-divider {
  width: 90px;
  height: 2px;
  margin: 18px auto;
  background: linear-gradient(
    90deg,
    rgba(200,164,93,0),
    rgba(200,164,93,1),
    rgba(200,164,93,0)
  );
}

/* Swiper container */
.stories-slider {
  margin-top: 40px;
}

/* Story cards */
.story-card {
  background: rgba(255,255,255,0.05);
  border-radius: 28px;
  padding: 42px 38px;
  height: auto;
  transition: all .6s cubic-bezier(.19,1,.22,1);
}

.story-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.story-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

.story-card h4 {
  margin-top: 26px;
  font-size: 1.15rem;
}

.story-card span {
  font-size: 13px;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
  .stories-section h2 {
    font-size: 2.2rem;
  }
}


/* ================= FINAL INVITATION CTA ================= */

.final-invite {
  position: relative;
  padding: 160px 0;
  background:
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80')
    center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.invite-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11,36,29,0.75),
    rgba(11,36,29,0.92)
  );
  z-index: 1;
}

.final-invite .container {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.final-invite h2 {
  font-size: 3rem;
  line-height: 1.25;
}

.invite-lead {
  font-size: 1.2rem;
  margin: 30px auto 20px;
  opacity: 0.95;
}

.invite-sub {
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 50px;
}

/* CTA button */
.invite-btn {
  font-size: 15px;
  padding: 16px 44px;
  letter-spacing: 0.4px;
}

/* subtle trust note */
.invite-note {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.6;
}

/* Gold divider reuse */
.final-invite .gold-divider {
  margin: 24px auto;
}

/* Cinematic parallax feel */
.final-invite {
  background-attachment: fixed;
}

/* MOBILE */
@media (max-width: 768px) {
  .final-invite {
    padding: 120px 20px;
    background-attachment: scroll;
  }

  .final-invite h2 {
    font-size: 2.2rem;
  }

  .invite-lead {
    font-size: 1.05rem;
  }
}

/* ================= PREMIUM FOOTER ================= */

.premium-footer {
  position: relative;
  background:
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80')
    center / cover no-repeat;
  color: #dce7e2;
  padding: 120px 0 0;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11,36,29,0.92),
    rgba(11,36,29,0.98)
  );
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 80px;
}

/* BRAND */
.footer-brand img {
  height: 54px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 320px;
}

/* LINKS */
.footer-links span,
.footer-contact span {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #dce7e2;
  text-decoration: none;
  margin-bottom: 12px;
  opacity: 0.85;
  transition: all .3s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* CONTACT */
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dce7e2;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 14px;
  opacity: 0.85;
  transition: all .3s ease;
}

.footer-contact a:hover {
  opacity: 1;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* BOTTOM BAR */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
   justify-content: center;
  
}

.footer-note {
  font-style: italic;
 
}

/* MOBILE */
@media (max-width: 991px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-contact a {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ADDRESS */
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  opacity: 0.85;
}

.footer-address svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  margin-top: 2px;
}

.footer-address p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #dce7e2;
}


/* ================= STICKY CTA ================= */
.sticky-cta {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Pill wrapper */
.cta-pill {
  width: 56px;
  height: 56px;
  border-radius: 40px;

  overflow: hidden; /* CONTROLLED reveal */
  transition: width .45s cubic-bezier(.25,.46,.45,.94),
              box-shadow .45s ease;

  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

/* Expand on hover */
.cta-pill:hover {
  width: 190px;
  box-shadow: 0 26px 60px rgba(0,0,0,.42);
}

/* Link */
.cta-pill a {
  display: flex;
  align-items: center;
  gap: 14px;

  width: 100%;
  height: 100%;
  padding: 0 18px;

  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Icon */
.cta-pill i {
  font-size: 1.05rem;
  min-width: 20px;
}

/* Text */
.cta-pill span {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s ease, transform .35s ease;
}

/* Text reveal */
.cta-pill:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* COLORS */
.cta-pill.enquiry {
  background: linear-gradient(135deg, #c8a45d, #9c7b3f);
}

.cta-pill.call {
  background: linear-gradient(
    180deg,
    rgba(10,32,26,0.98) 0%,
   rgba(22,66,54,0.96) 50%,
    rgba(6,22,18,0.98) 100%
  );
}

/* Mobile: icon only */
@media (max-width: 768px) {
  .cta-pill {
    width: 52px;
  }
  .cta-pill:hover {
    width: 52px;
  }
  .cta-pill span {
    display: none;
  }
}


/* ================= SLIDE ENQUIRY FORM ================= */

#enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
transition: opacity .45s ease;
  z-index: 9998;
}

#enquiry-panel {
  position: fixed;
  top: 0;

  width: 420px;
  height: 100vh;
  background: #fff;
  padding: 50px 40px;
  box-shadow: -30px 0 80px rgba(0,0,0,.35);
  z-index: 9999;
}

#enquiry-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

#enquiry-panel p {
  font-size: .95rem;
  color: #666;
  margin-bottom: 30px;
}

/* Inputs */
#enquiry-panel input,
#enquiry-panel select,
#enquiry-panel textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

#enquiry-panel textarea {
  resize: none;
  height: 90px;
}

.btn-gold.full {
  width: 100%;
  padding: 15px;
}

/* Close */
.close-enquiry {
  position: absolute;
  top: 20px;
  right: 22px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
}

/* ACTIVE STATE */
.enquiry-active #enquiry-overlay {
  opacity: 1;
  pointer-events: all;
}

#enquiry-panel {
  position: fixed;
  top: 0;
  right: 0;

  width: 420px;
  height: 100vh;
  background: #fff;
  padding: 50px 40px;

  transform: translateX(100%);
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);

  will-change: transform;
  box-shadow: -30px 0 80px rgba(0,0,0,.35);
  z-index: 9999;
}

/* ACTIVE */
.enquiry-active #enquiry-panel {
  transform: translateX(0);
}


/* Mobile */
@media(max-width: 520px){
  #enquiry-panel {
    width: 100%;
  }
}

#form-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 20px);

  background: linear-gradient(
    180deg,
   rgba(10,32,26,0.98) 0%,
   rgba(22,66,54,0.96) 50%,
    rgba(6,22,18,0.98) 100%
  );
  color: #fff;

  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: .3px;

  box-shadow: 0 18px 50px rgba(0,0,0,.35);

  opacity: 0;
  pointer-events: none;
  transition: all .45s cubic-bezier(.25,.46,.45,.94);
  z-index: 10000;
}

#form-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
