 
    :root {
      --brand: #012A2D;
      --dark: #1f2d1f;
    }

    body {
      font-family: "Inter", sans-serif;
      background: #fff;
    }

    /* Top strip */
    .top-strip {
      background: var(--brand);
      color: #fff;
      font-size: 14px;
      padding: 6px 0;

       position: sticky;
  top: 0;
  z-index: 999999;
  /* background: white; */
  transition: transform 0.35s cubic-bezier(0.4, 0, 1, 1),
            opacity 0.25s ease-in;
    
    }

    .top-strip a {
      color: #fff;
      text-decoration: none;
      margin-left: 18px;
      font-weight: 500;
    }

    /* Hide top strip on mobile */
@media (max-width: 768px) {
  .top-strip {
    font-size: 8.5px;
    padding: 4px 0;
  }
}
    /* Main navbar */
    .main-navbar {
      border-bottom: 1px solid #f3f3f3;
      padding: 14px 0;
    }

    .brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px; /* adjust based on header */
}

.brand-logo {
  height: 100%;
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .brand {
    height: 50px;
  }

  .brand-logo {
    max-height: 40px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .brand {
    height: 45px;
  }

  .brand-logo {
    max-height: 35px;
  }
}
    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-left: 52px;
    }

    .country {
      font-size: 19px;
      color: var(--dark);
      font-weight: 500;
    }

    .divider {
      width: 1px;
      height: 22px;
      background: #ccc;
    }
.brand-title {
  font-family: "Cinzel Decorative", serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--brand);
}



    .brand-sub {
      font-size: 6px;
      letter-spacing: 1.2px;
      color: #777;
      text-transform: uppercase;
    }

 .nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #AE9751;
  transition: 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #AE9751 !important;
}


    /* desktop spacing fix */
.navbar-nav .nav-item {
  margin-left: 28px;  /* increase gap (try 28–36px as per your design) */
}

/* remove double spacing if you had margin on .nav-link */
.nav-link {
  margin-left: 0;
}

/* mobile fix */
@media (max-width: 991px) {

  .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 12px; /* spacing between items vertically */
  }

  .nav-link {
    display: inline-block; /* important for underline */
    padding-bottom: 5px;
  }

  .nav-link::after {
    bottom: 0; /* bring underline closer in mobile */
  }
}

    /* Mobile */
    /* @media (max-width: 991px) {
      .nav-link {
        margin-left: 0;
        padding: 10px 0;
      }
      .brand-wrap {
        flex-direction: column;
        align-items: flex-start;
      }
    } */

/* ---------- MOBILE NAV FIX ---------- */
/* =========================
   LUXURY INTRO – MOBILE FIX
========================= */
@media (max-width: 575px) {

  .luxury-intro {
    padding: 26px 16px 22px;
  }

  .luxury-intro .container {
    padding-left: 0;
    padding-right: 0;
  }

  .luxury-intro h2 {
    text-align: left;     /* IMPORTANT */
    margin-left: 0;
    margin-right: 0;
    font-size: 22px;
    line-height: 1.25;
    max-width: 100%;
  }
}



/* =========================
   LUXURY INTRO SECTION
========================= */

/* =========================
   LUXURY INTRO SECTION (COMPACT)
========================= */

.luxury-intro {
  background: #ffffff;
  padding: 40px 0 60px;   /* much smaller height */
}

.luxury-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;       /* reduced font */
  font-weight: 500;
  line-height: 1.2;
  color: var(--brand);
  max-width: 620px;
}

/* Tablet */
@media (max-width: 991px) {
  .luxury-intro {
    padding: 30px 16px 24px;
  }

  .luxury-intro h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .luxury-intro {
    padding: 22px 14px 18px;   /* very compact */
  }

  .luxury-intro h2 {
    font-size: 22px;
    line-height: 1.3;
  }
}


/* =========================
   HERO VIDEO
========================= */

.hero-video {
  position: relative;
  width: 100%;
   height: calc(100vh + 100px);
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.05)
  );
  z-index: 1;

  
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  /* font-size: clamp(2.4rem, 5vw, 4.2rem); */
  max-width: 640px;
  line-height: 1.1;
}

.hero-content p {
  margin-top: 14px;
  font-size: 17px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* CTA */
.hero-cta {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
}

.hero-cta .arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
  transform: translateX(6px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
  .hero-video {
    height: 65vh;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
  .hero-video {
    height: 55vh;   /* matches Sotheby’s style */
  }

  .hero-content {
    justify-content: flex-end;
    padding: 0 16px 32px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    max-width: 100%;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-cta {
    font-size: 11px;
    gap: 10px;
  }
}

.hero-video video {
  animation: zoomSlow 18s ease-in-out infinite alternate;
}

@keyframes zoomSlow {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}



/* FEATURED SECTION */
.featured-section {
  /* padding: 120px 0; */
  background: #fff;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--brand);
}

.tabs {
  display: flex;
  gap: 50px;
  margin-bottom: 16px;
}

.tab {
  background: none;
  border: none;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  color: #999;
  position: relative;
  padding-bottom: 10px;
  cursor: pointer;
}

.tab.active {
  color: var(--brand);
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--brand);
}

.divider-line {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 60px;
}

/* Cards */
.property-card {
  background: #fff;
  border: 1px solid #eee;
  transition: transform .4s ease, box-shadow .4s ease;
  height: 100%;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.08);
}

.image-wrap {
  position: relative;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .6s ease;
}

.property-card:hover img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--brand);
  background:#fff;
  /* color:  */
  font-size: 11px;
  padding: 6px 14px;
  letter-spacing: 1px;
}

.property-body {
  padding: 26px;
}

.property-body h4 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.property-body p {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

.price {
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 6px;
}

.meta {
  font-size: 13px;
  color: #999;
}

/* Animation */
.animate-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.animate-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}


/* CTA BUTTON */
.featured-cta {
  margin-top: 80px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 46px;
  border: 1.5px solid #c9a24d;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  transition: all 0.35s ease;
}

.view-all-btn span {
  font-size: 20px;
  transition: transform 0.35s ease;
}

.view-all-btn:hover {
  background: var(--brand);
  color: #fff;
}

.view-all-btn:hover span {
  transform: translateX(6px);
}

/* Mobile */
@media (max-width: 576px) {
  .view-all-btn {
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}


/* ===== SECTION ===== */
.sw-about-section {
  background: #fff;
  padding: 80px 0;
}

/* ===== GRID ===== */
.sw-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

/* ===== LEFT ===== */
.sw-about-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;   /* LEFT ALIGN DESKTOP */
  text-align: left;          /* LEFT ALIGN TEXT */
}

/* TEXT */
.sw-about-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 18px;
}

.sw-about-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  color: var(--brand);
  margin-bottom: 25px;
}

.sw-about-divider {
  width: 60px;
  height: 2px;
  background: var(--brand);
  margin-bottom: 25px;
}

.sw-about-left p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 18px;
  max-width: 520px;
}

/* BUTTON */
.sw-about-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid #c9a24d;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.sw-about-btn span {
  transition: transform 0.3s ease;
}

.sw-about-btn:hover {
  background: var(--brand);
  color: #fff;
}

.sw-about-btn:hover span {
  transform: translateX(5px);
}

/* ===== IMAGE ===== */
.sw-about-right {
  width: 100%;
  height: 100%;
}

.sw-about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .sw-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sw-about-right img {
    height: auto;
  }

  /* CENTER ON MOBILE */
  .sw-about-left {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .sw-about-section {
    padding: 50px 0;
  }

  .sw-about-left h2 {
    font-size: 1.6rem;
  }

  .sw-about-left p {
    font-size: 14px;
    max-width: 100%;
  }

  .sw-about-btn {
    padding: 12px 24px;
    font-size: 12px;
  }
}

/* SERVICES SECTION */
.services-section {
  padding: 100px 0 90px;
  background: #fff;
}

/* Heading */
.services-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  /* color: #1f2d1f; */
  color: var(--brand);
  margin-bottom: 14px;
}

.services-head p {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #777;
}

/* View All */
.services-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--brand);
  text-decoration: none;
  margin-bottom: 55px;
}

.services-view span {
  transition: transform 0.25s ease;
}

.services-view:hover span {
  transform: translateX(5px);
}

/* Grid */
.services-grid {
  row-gap: 28px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #FFD700;
  cursor: pointer;
  transition: color 0.25s ease;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item span {
  color: #1f2d1f;
}

.service-item .arrow {
  color: var(--brand);
  transition: transform 0.25s ease;
}

.service-item:hover span {
  color: var(--brand);
}

.service-item:hover .arrow {
  transform: translateX(5px);
}

/* Mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 70px 0;
  }

  .services-head h2 {
    font-size: 1.7rem;
  }

  .service-item {
    font-size: 16px;
  }
}



  /* WORK SECTION */
.work-section {
  padding: 130px 0;
 background: linear-gradient(120deg, #001112, #012A2D);

  color: #fff;
}

/* LEFT */
.work-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 24px;
}

.work-content p {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 18px;
}

.divider1 {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  margin: 30px 0 16px;
}

.small-text {
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 12px;
}

.work-btn {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.work-btn span {
  transition: transform .3s ease;
}

.work-btn:hover span {
  transform: translateX(6px);
}

/* RIGHT SLIDER */
.slider-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slider-image-box {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.slider-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Nav buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 26px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 2;
}

.slider-btn.prev { left: 14px; }
.slider-btn.next { right: 14px; }

/* Info Row */
.slider-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.slider-info-row h5 {
  font-size: 18px;
  margin-bottom: 2px;
}

.slider-info-row p {
  font-size: 13px;
  opacity: 0.85;
}

.contact small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.contact strong {
  display: block;
  margin: 6px 0;
}

.contact a {
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #fff;
}

/* Progress Bar */
.slider-progress {
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,0.25);
  position: relative;
}

.slider-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33%;
  background: #fff;
  transition: transform .4s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .slider-image-box {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .slider-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}


/* FOOTER */
.site-footer {
  padding: 120px 0 60px;
  background: #fff;
  border-top: 1px solid #eee;
}

/* GRID FIX */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
  column-gap: 60px; /* ✅ THIS FIXES YOUR ISSUE */
}

/* Make columns flexible instead of tight bootstrap widths */
.footer-grid > div {
  flex: 1 1 200px;
}

/* Brand */
.footer-brand {
  flex: 1.5 1 300px;
}

.footer-brand h4 {
  font-size: 16px;
  color: #444;
  margin-bottom: 6px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--brand);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.9;
  color: #777;
  max-width: 420px;
}

/* Columns */
.footer-links {
  min-width: 180px;
}

.footer-links h6 {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  font-size: 15px;
  margin-bottom: 14px;
  color: #111;
}

.footer-links a {
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 80px;
  padding-top: 26px;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    column-gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 80px 0 50px;
  }

  .footer-grid {
    flex-direction: column;
    row-gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    text-align: center;
  }
}


/* PROPERTY GALLERY */
.property-gallery {
  background: #fff;
  overflow: hidden;
}

/* Top bar */
.gallery-top-bar {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 0;
  font-weight: 600;
}
/* ================= GALLERY ================= */

/* Wrapper */
.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

/* Track */
.gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* Slide */
.gallery-slide {
  min-width: 33.333%;
  position: relative;
  opacity: 0.45;
  transition: opacity 0.4s ease;
}

.gallery-slide.active {
  opacity: 1;
}

/* Image */
.gallery-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* Caption (RESTORED & FIXED) */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #012A2D;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    z-index: 5;
}

.slide-caption.dark {
  background: var(--brand);
}

/* Navigation */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

/* ================= INFO SECTION ================= */

.property-info {
  display: grid;
  grid-template-columns: 1.5fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 0 90px;
}

/* LEFT SIDE */
.prop-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 10px;
}

.prop-meta {
  font-size: 16px;
  color: #2f3c4d;
}

/* CENTER GOLD DIVIDER */
.prop-divider {
  display: flex;
  justify-content: center;
}

.prop-divider span {
  width: 1px;
  height: 60px;
  background: #c9a24d;
  position: relative;
}

.prop-divider span::after {
  content: "↓";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  color: #c9a24d;
  font-size: 18px;
}

/* RIGHT SIDE */
.prop-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-end;
}

/* SLIDER BOX */
.prop-slider-box {
  border: 1px solid #c9a24d;
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  font-weight: 500;
}

.prop-arrow {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--brand);
}

.prop-count {
  font-size: 16px;
}

/* BUTTONS */
.prop-actions {
  display: flex;
  gap: 20px;
}

.prop-outline-btn {
  border: 1px solid #c9a24d;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--brand);
  transition: 0.3s ease;
}

.prop-outline-btn:hover {
  background: var(--brand);
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .property-info {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .prop-divider {
    display: none;
  }

  .prop-right {
    align-items: center;
  }

  .prop-actions {
    flex-direction: column;
    width: 100%;
  }

  .prop-outline-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= MOBILE FIX (NO WHITE SPACE) ================= */

@media (max-width: 576px) {

  .gallery-wrapper {
    overflow: hidden;
  }

  .gallery-track {
    display: flex;
  }

  /* IMPORTANT: keep slides in layout */
  .gallery-slide {
    min-width: 100%;
    opacity: 1;
  }

  .gallery-slide img {
    height: 240px;
  }

  /* DO NOT hide slides (fixes white space) */
  /* .gallery-slide:not(.active) { display: none; }  ❌ REMOVED */

  /* Navigation */
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
    background: rgba(0,0,0,0.55);
  }

  .gallery-nav.prev { left: 8px; }
  .gallery-nav.next { right: 8px; }

  /* Caption mobile */
  .slide-caption {
    font-size: 13px;
    padding: 8px 12px;
  }
}

  /* Property Info */
  .property-info {
    flex-direction: column;
    padding: 24px 15px 40px;
    gap: 18px;
  }

  .info-left h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .info-left p {
    font-size: 13px;
  }

  .info-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  /* Counter */
  .counter-box {
    text-align: center;
    width: 100%;
    padding: 10px 0;
  }

  /* Buttons */
  .action-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .outline-btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
  }






/* ===== SUB NAV ===== */
.subnav-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
}

.subnav {
  max-width: 1280px;
  margin: auto;
  padding: 16px 24px;
  border-bottom: 1px solid #eaeaea;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Left */
.subnav-left {
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* Tabs */
.subnav-tabs {
  display: flex;
  justify-content: center;
  gap: 46px;
}

.subnav-tabs a {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 500;
  text-decoration: none;
  color: #9a9a9a;
  padding-bottom: 14px;
  position: relative;
}

.subnav-tabs a.active {
  color: #111;
}

.subnav-tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 100%;
  height: 2px;
  background: #c9a24d;
}

/* Right */
.subnav-right {
  display: flex;
  gap: 22px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ===== OVERVIEW LAYOUT ===== */
.overview-layout {
  max-width: 1280px;
  margin: 90px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}

/* Left Image */
.overview-left img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

.overview-left p {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

/* Right */
.overview-right {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.overview-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
}

/* Info */
.overview-info h2 {
  font-family: "Georgia", serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
}

.overview-info h2::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #c9a24d;
}

.info-block {
  margin-bottom: 26px;
}

.info-block label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: #9a9a9a;
  margin-bottom: 6px;
}

.info-block strong {
  font-size: 20px;
  font-weight: 500;
}

/* Sections */
.page-section {
  padding: 120px 24px;
  max-width: 1280px;
  margin: auto;
  min-height: 80vh;
}
/* =========================
   MOBILE FIX (Exact Match)
========================= */
@media (max-width: 768px) {

  /* NAV BAR */
  .subnav {
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }

  .subnav-left {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* Hide desktop tabs */
  .subnav-tabs {
    display: none;
  }

  /* Right side becomes arrow + save */
  .subnav-right {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 12px;
  }

  .subnav-right span {
    white-space: nowrap;
  }

  /* SINGLE divider line */
  .subnav-wrapper {
    border-bottom: 1px solid #1e355a;
  }

  .subnav {
    border-bottom: none;
  }

  /* ===== OVERVIEW SECTION ===== */
  .overview-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 30px auto 50px;
    padding: 0 16px;
  }

  .overview-left img {
    height: auto;
    border-radius: 2px;
  }

  .overview-left p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  /* Right image full width */
  .overview-thumb img {
    height: auto;
  }
@media (max-width: 768px) {

  /* ===== OVERVIEW SECTION FIX ===== */

  .overview-info {
    width: 100%;
  }

  .overview-info h2 {
    font-size: 22px;
    margin-bottom: 18px;
    line-height: 1.3;
  }

  .overview-info h2::after {
    display: none;
  }

  .info-block {
    display: flex;
    flex-direction: column;   /* 🔥 important fix */
    align-items: flex-start;
    gap: 6px;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .info-block:last-child {
    border-bottom: none;
  }

  .info-block label {
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #8a8a8a;
  }

  .info-block strong {
    font-size: 17px;
    line-height: 1.4;
    word-break: break-word; /* prevents overflow */
  }
}}


/* =========================
   PROPERTY DESCRIPTION
========================= */
.property-description {
  background: #f6f4f1;   /* Same beige tone */
  padding: 120px 0;
}

.desc-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 120px;
}

/* LEFT */
.desc-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 36px;
}

.desc-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 26px;
  max-width: 720px;
}

.show-more {
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #002f6c;
  text-decoration: underline;
}

/* RIGHT */
.desc-sidebar {
  position: relative;
  padding-top: 60px;
}

.gold-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c9a24d;
}

.desc-sidebar small {
  display: block;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #666;
}

.desc-sidebar h3 {
  margin-top: 16px;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
}

.company-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: #002f6c;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .desc-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .desc-content h1 {
    font-size: 32px;
  }

  .desc-content p {
    font-size: 16px;
  }

  .desc-sidebar {
    padding-top: 40px;
  }
}

@media (max-width: 576px) {
  .property-description {
    padding: 70px 0;
  }

  .desc-content h1 {
    font-size: 26px;
  }

  .desc-content p {
    font-size: 15px;
  }

  .desc-sidebar h3 {
    font-size: 22px;
  }
}

/* =========================
   LOCATION MAP SECTION
========================= */
.location-section {
  background: #ffffff;
  padding: 100px 0 120px;
}

.location-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
}

/* MAP FRAME */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 2px;
  overflow: hidden;
  background: #f1f1f1;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Note */
.map-note {
  margin-top: 14px;
  font-size: 13px;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .location-section {
    padding: 70px 0 90px;
  }

  .map-wrapper {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .map-wrapper {
    height: 280px;
  }

  .map-note {
    font-size: 12px;
  }
}



/* =========================
   AMENITIES & FEATURES
========================= */

.amenities-section {
  background: #ffffff;
  padding: 120px 0 90px;
}

/* HEADER */
.amenities-header {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px 40px;
}

.gold-divider {
  height: 2px;
  width: 100%;
  background: #c9a24d;
  margin-bottom: 40px;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-row h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 500;
  margin: 0;
}

.toggle-btn {
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  color: #002f6c;
}

/* CONTAINER */
.amenities-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
}

/* BLOCK */
.amenity-block {
  margin-bottom: 70px;
}

.amenity-block h4 {
  font-size: 18px;
  font-weight: 500;
  color: #c9a24d;
  margin-bottom: 30px;
}

/* GRID */
.grid {
  display: grid;
  gap: 60px 40px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.item label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: #777;
  margin-bottom: 6px;
}

.item strong {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

/* Span helpers */
.span-2 {
  grid-column: span 2;
}

/* Bottom divider */
.bottom-divider {
  max-width: 1280px;
  height: 2px;
  background: #c9a24d;
  margin: 60px auto 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-row h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .amenities-section {
    padding: 70px 0 60px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .amenity-block {
    margin-bottom: 50px;
  }

  .item strong {
    font-size: 18px;
  }

  .toggle-btn {
    font-size: 22px;
  }
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  background: #ffffff;
  padding: 120px 0;
}

.contact-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 120px;
}

/* LEFT */
.contact-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 500;
  color: #012A2D;
}

.subtitle {
  margin-top: 18px;
  font-size: 18px;
  color: #666;
  max-width: 420px;
}

.follow {
  margin-top: 80px;
}

.follow span {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.social-icons {
  margin-top: 22px;
  display: flex;
  gap: 22px;
  align-items: center;
}

.social-icons img {
  width: 26px;
  height: 26px;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* RIGHT */
.contact-right h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 50px;
}

/* FORM */
.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: span 2;
}

.field label {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  border: none;
  border-bottom: 1px solid #012A2D;
  padding: 8px 2px;
  font-size: 15px;
  outline: none;
  background: transparent;
}

.field textarea {
  resize: none;
  border: 1px solid #012A2D;
  padding: 12px;
  margin-top: 6px;
}

/* CAPTCHA */
.captcha-text {
  font-size: 12px;
  color: #555;
  margin-top: 28px;
}

.captcha-text a {
  color: #012A2D;
  text-decoration: underline;
}

/* BUTTON */
.submit-btn {
  margin-top: 40px;
  background: #012A2D;
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .contact-right h3 {
    font-size: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .field.full {
    grid-column: span 1;
  }

  .follow {
    margin-top: 50px;
  }
}



/* =========================
   BLOG SECTION
========================= */

.blog-section {
  background: #ffffff;
  padding: 140px 0 120px;
}

/* HEADER */
.blog-header {
  text-align: center;
  position: relative;
  margin-bottom: 120px;
}

.blog-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 500;
  color: #012A2D;
}

.vertical-line {
  display: block;
  width: 1px;
  height: 70px;
  background: #c9a24d;
  margin: 30px auto 0;
}

/* GRID */
.blog-grid {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  align-items: start;
}

/* CARD */
.blog-card {
  position: relative;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Vertical line under image */
.card-line {
  display: block;
  width: 1px;
  height: 60px;
  background: #c9a24d;
  margin: 0 auto 30px;
}

/* Alignment offsets */
.blog-card.left {
  margin-top: 80px;
}

.blog-card.center {
  margin-top: 0;
}

.blog-card.right {
  margin-top: 120px;
}

/* TEXT */
.blog-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #012A2D;
}

.blog-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card.right {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 90px 0 80px;
  }

  .blog-header h2 {
    font-size: 32px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .blog-card.left,
  .blog-card.center,
  .blog-card.right {
    margin-top: 0;
  }

  .blog-card img {
    height: 220px;
  }
}


/* =========================
   ABOUT / WHITE GLOVE
========================= */

.about-section {
  background: #ffffff;
  padding: 140px 0 120px;
  text-align: center;
}

/* Header */
.about-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 500;
  color: #012A2D;
}

.tagline {
  margin-top: 10px;
  font-size: 18px;
  font-style: italic;
  color: #333;
}

.divider-line {
  display: block;
  width: 1px;
  height: 80px;
  background: #c9a24d;
  margin: 28px auto 80px;
}

/* Image */
.about-image img {
  width: 720px;
  max-width: 90%;
  height: auto;
  margin: auto;
  display: block;
}

/* Content */
.about-content {
  margin-top: 90px;
}

.about-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #012A2D;
}

.about-content ol {
  list-style: decimal;
  max-width: 560px;
  margin: auto;
  padding-left: 20px;
  text-align: left;
}

.about-content li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .about-section {
    padding: 90px 0 80px;
  }

  .about-header h2 {
    font-size: 32px;
  }

  .about-content h3 {
    font-size: 26px;
  }

  .divider-line {
    height: 60px;
    margin-bottom: 50px;
  }

  .about-content {
    margin-top: 60px;
  }
}

/*  */

/* ================= BLOG HERO ================= */

.blog-hero {
  background: var(--brand); /* navy */
  padding: 80px 0 100px;
  text-align: center;
}

.blog-hero-container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

/* Image */
.blog-hero-image img {
  width: 100%;
  max-width: 780px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto 40px;
}

/* Breadcrumb */
.blog-breadcrumb {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.blog-breadcrumb a {
  color: #c7d5e0;
  text-decoration: none;
  font-weight: 500;
}

.blog-breadcrumb span {
  margin: 0 10px;
  color: #c7d5e0;
}

/* Title */
.blog-title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Date */
.blog-date {
  color: #c7d5e0;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .blog-title {
    font-size: 38px;
  }

  .blog-hero {
    padding: 70px 0 80px;
  }

}

@media (max-width: 768px) {

  .blog-title {
    font-size: 30px;
  }

  .blog-hero-image img {
    margin-bottom: 30px;
  }

}

@media (max-width: 480px) {

  .blog-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .blog-breadcrumb {
    font-size: 10px;
  }

  .blog-date {
    font-size: 12px;
  }

  .blog-hero {
    padding: 60px 0 70px;
  }

}



.blog-content-section {
  padding: 90px 0;
}

/* GAP BETWEEN LEFT AND RIGHT */
.blog-layout {
  column-gap: 70px;
}

/* LEFT ARTICLE */
.blog-intro {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.blog-block {
  margin-bottom: 60px;
}

.blog-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  /* border-radius: 8px; */
  margin-bottom: 18px;
}

.blog-caption {
  font-size: 13px;
  color: #777;
  font-style: italic;
  margin-bottom: 20px;
}

.blog-paragraph {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

/* SIDEBAR */
.blog-sidebar {
  max-width: 330px;
}

.sidebar-title {
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.sidebar-card {
  margin-bottom: 35px;
}

.sidebar-card img {
  width: 100%;
  height: 160px;   /* FIXED SMALLER HEIGHT */
  object-fit: cover;
  /* border-radius: 6px; */
  margin-bottom: 12px;
}

.sidebar-category {
  font-size: 11px;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
}

.sidebar-card h6 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.4;
}

/* RESPONSIVE */
@media(max-width:992px){

  .blog-layout {
    column-gap: 0;
  }

  .blog-sidebar {
    max-width: 100%;
    margin-top: 60px;
  }

  .blog-block img {
    height: 320px;
  }

}

@media(max-width:576px){

  .blog-intro {
    font-size: 18px;
  }

  .blog-paragraph {
    font-size: 15px;
  }

  .blog-block img {
    height: 230px;
  }

}


.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link:hover .service-item {
  background: #f8f8f8; /* optional hover effect */
}

.service-item .arrow {
  transition: transform 0.3s ease;
}

.service-link:hover .arrow {
  transform: translateX(6px);
}


.extraordinary-section {
  padding: 90px 0;
  background: #f5f5f5;
}

/* HEADING */
.extra-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

.living-text {
  font-style: italic;
  display: block;
}

.extra-heading p {
  font-size: 18px;
  color: #666;
  margin-top: 8px;
}

.latest-title {
  margin-top: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  border-bottom: 1px solid #c9b27c;
  padding-bottom: 8px;
  margin-bottom: 40px;
}

/* GRID */
.extra-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

/* REMOVE LINK STYLE */
.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.3s;
}

.blog-card:hover img {
  transform: scale(1.04);
}

/* FEATURED */
.featured-article img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 15px;
  transition: 0.4s;
}

.article-category {
  font-size: 11px;
  letter-spacing: 1px;
  color: #9b8a54;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 12px;
}

.article-desc {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* READ MORE */
.read-more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9b8a54;
  text-transform: uppercase;
}

/* ================================
   RIGHT SIDE GRID — FINAL FIX
================================ */

/*
Each card ≈ 260–270px tall
We FORCE grid rows to fixed height
2 rows × 270px = 540px
=> Exactly 4 cards visible
*/

.side-articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 270px;   /* 🔥 CRITICAL FIX */
  gap: 25px;

  max-height: 540px;      /* 2 rows only */
  overflow-y: auto;
  overflow-x: hidden;

  padding-right: 10px;
}

/* Small article */
.small-article {
  height: 100%;
}

.small-article img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10px;
  transition: 0.4s;
}

.small-article h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* NAVY BLUE SCROLLBAR */
.side-articles::-webkit-scrollbar {
  width: 6px;
}

.side-articles::-webkit-scrollbar-track {
  background: #eaeaea;
  border-radius: 10px;
}

.side-articles::-webkit-scrollbar-thumb {
  background-color: #0a1f44;
  border-radius: 10px;
}

.side-articles::-webkit-scrollbar-thumb:hover {
  background-color: #081a38;
}

/* Firefox */
.side-articles {
  scrollbar-width: thin;
  scrollbar-color: #0a1f44 #eaeaea;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .extra-layout {
    grid-template-columns: 1fr;
  }

  .featured-article img {
    height: 330px;
  }

  /* Disable scroll on mobile */
  .side-articles {
    max-height: none;
    grid-auto-rows: auto;
    overflow: visible;
  }
}

@media (max-width: 576px) {
  .side-articles {
    grid-template-columns: 1fr;
  }

  .extra-heading h2 {
    font-size: 42px;
  }
}



.main-navbar {
  position: sticky;
  top: 0px;
  z-index: 999999;
  background: white;
  
  transition: 
    transform 0.85s 
    opacity   0.7s  ease-out;
}



.nav-section-wrapper {
  position: relative;
}


.brand-wrap {
  text-decoration: none;
  color: inherit;
  display: flex; /* keep if already flex */
  align-items: center;
}



/* UNIVERSAL LINK RESET */
a,
a:visited,
a:hover,
a:active {
  text-decoration: none !important;
  color: inherit;
}

/* REMOVE MOBILE TAP BLUE HIGHLIGHT */
a, button, input, textarea {
  -webkit-tap-highlight-color: transparent;
}

/* REMOVE IOS BLUE LINK STYLE */
a {
  -webkit-touch-callout: none;
}



/* ============================
   TOP HERO SECTION
============================ */
.group-profile-hero {
  background: var(--brand);
  padding: 140px 0 160px;
  color: #fff;
}

.profile-location {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 20px;
}

.profile-name {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 18px;
}

.profile-role {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.profile-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #ffffff;
  color: var(--brand);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: 0.3s ease;
}

.profile-btn:hover {
  background: #6aa74d;
  color: #fff;
}

/* ============================
   LOWER DARK SECTION
============================ */
.group-profile-details {
  background: #062a4a; /* slightly lighter navy */
  padding: 100px 0;
  color: #fff;
  margin-top: -60px;
}

.detail-block {
  margin-bottom: 40px;
}

.detail-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}

.detail-value {
  font-size: 16px;
}

.detail-heading {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.detail-text {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 992px) {
  .profile-name {
    font-size: 48px;
  }

  .detail-heading {
    font-size: 34px;
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .group-profile-hero {
    padding: 100px 0 120px;
  }

  .profile-name {
    font-size: 34px;
  }

  .group-profile-details {
    margin-top: 0;
    padding: 70px 0;
  }
}



/* Make nav-link shrink to text width */
.main-navbar .nav-link {
  position: relative;
  display: inline-block;   /* important */
  padding: 8px 12px;
  font-weight: 500;
  color: #222;
  transition: color 0.3s ease;
}

/* Golden underline */
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f5d76e);
  /* transition: width 0.3s ease-in-out; */
}

/* Hover effect */
.main-navbar .nav-link:hover {
  color: #d4af37;
}

.main-navbar .nav-link:hover::after {
  width: 100%;
}


/* Default link color (black) */
.site-footer .footer-links a {
  color: #000;              /* Black */
  text-decoration: none;    /* Remove underline */
  transition: color 0.3s ease;
}

/* Hover effect */
.site-footer .footer-links a:hover {
  color: #d4af37;           /* Luxury Gold */
  text-decoration: none;    /* Ensure no underline */
}





/* ============================= */
/* JOIN US – EXACT MATCH STYLE */
/* ============================= */

.join-us {
  background: #ffffff;  /* Same soft grey */
  padding: 110px 0;
}

/* Narrow Luxury Width */
.join-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Heading */
.join-title {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 500;
  color: var(--brand);   /* Dark navy tone */
  margin-bottom: 12px;
}

/* Subtitle */
.join-sub {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--brand);
  margin-bottom: 25px;
}

/* Golden Vertical Line */
.join-line {
  width: 1.5px;
  height: 65px;
  background: #b89c54;  /* Muted luxury gold */
  margin: 0 auto 70px auto;
}

/* Image Row */
.join-row {
  display: flex;
  justify-content: center;
  gap: 6px;   /* Tight gap like image */
}

/* Each Panel */
.join-box {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #fff;
}

/* White separators effect */
.join-box:not(:last-child) {
  border-right: 6px solid #efefef;
}

/* Portrait images */
.join-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Play Circle */
.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: #0e1b2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle i {
  color: #fff;
  font-size: 30px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {
  .join-box img {
    height: 460px;
  }
}

@media (max-width: 992px) {
  .join-row {
    flex-wrap: wrap;
  }

  .join-box {
    flex: 0 0 33.33%;
  }

  .join-box img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .join-title {
    font-size: 42px;
  }

  .join-sub {
    font-size: 18px;
  }

  .join-box {
    flex: 0 0 50%;
  }

  .join-box img {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .join-box {
    flex: 0 0 100%;
  }

  .join-box img {
    height: 420px;
  }

  .join-line {
    height: 45px;
  }
}



/* =============================== */
/* JOIN BRAND SECTION (ISOLATED) */
/* =============================== */

.join-brand-section {
  background: #ffffff;
  padding: 120px 0;
}

.join-brand-wrapper {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.join-brand-heading {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 45px;
}

/* Paragraphs */
.join-brand-text p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: var(--brand);
  margin-bottom: 22px;
}

/* Button */
.join-brand-button {
  display: inline-block;
  margin: 45px 0 30px 0;
  padding: 18px 55px;
  border: 1.5px solid #b89c54;
  text-decoration: none;
  color: #0e1b2c;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.join-brand-button span {
  margin-left: 12px;
  font-size: 16px;
}

.join-brand-button:hover {
  background: #b89c54;
  color: #ffffff;
}

/* Disclaimer */
.join-brand-disclaimer {
  font-size: 14px;
  line-height: 1.8;
  color: #4b5565;
  margin-top: 25px;
}

.join-brand-disclaimer a {
  color: #0e1b2c;
  text-decoration: underline;
}

/* =============================== */
/* RESPONSIVE */
/* =============================== */

@media (max-width: 992px) {
  .join-brand-heading {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .join-brand-section {
    padding: 90px 0;
  }

  .join-brand-heading {
    font-size: 32px;
  }

  .join-brand-text p {
    font-size: 16px;
  }

  .join-brand-button {
    padding: 15px 40px;
  }
}

@media (max-width: 576px) {
  .join-brand-heading {
    font-size: 26px;
  }

  .join-brand-text p {
    font-size: 15px;
  }
}


/* ==========================================
   LUXURY FULLSCREEN GALLERY (SOTHEBY STYLE)
========================================== */

.lux-gallery {
  position: fixed;
  inset: 0;
  background: var(--brand); /* deep navy like screenshot */
  z-index: 999999; /* ABOVE NAV */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.lux-gallery.active {
  opacity: 1;
  visibility: visible;
}

/* IMAGE WRAP */
.lux-image-wrap {
  width: 75%;
  max-width: 1100px;
}

.lux-image-wrap img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

/* TOP RIGHT ICONS */
.lux-top-icons {
  position: absolute;
  top: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.lux-close {
  font-size: 26px;
}

.lux-icon {
  opacity: 0.85;
}

/* BOTTOM NAVIGATION */
.lux-bottom-nav {
  position: absolute;
  bottom: 40px;
  right: 120px;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #ffffff;
}

/* Thin line arrows */
.lux-arrow {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.8;
}

.lux-counter {
  font-size: 16px;
  letter-spacing: 2px;
}

/* Hover */
.lux-arrow:hover,
.lux-close:hover,
.lux-icon:hover {
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .lux-image-wrap {
    width: 90%;
  }

  .lux-top-icons {
    right: 30px;
    top: 30px;
  }

  .lux-bottom-nav {
    right: 40px;
    bottom: 25px;
  }
}

@media (max-width: 576px) {

  .lux-bottom-nav {
    right: 20px;
  }

  .lux-top-icons {
    right: 20px;
  }
}