/* ==========================================================================
   VICTORY SUPER DEVELOPMENT - LUXURY REAL ESTATE STYLESHEET
   ========================================================================== */

:root {
  --navy: #071A2B;
  --royal-navy: #102B45;
  --gold: #C6A15B;
  --gold-soft: rgba(198, 161, 91, 0.35);
  --ivory: #F7F4ED;
  --off-white: #FAFAF8;
  --charcoal: #252525;
  --white: #FFFFFF;
  --max: 1440px;
  --side: clamp(24px, 5vw, 80px);
  --section: clamp(64px, 9vw, 140px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.serif { font-family: 'Cormorant Garamond', serif; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--side); }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.08; color: var(--navy); }
h2 { font-size: clamp(32px, 4vw, 52px); }
p { line-height: 1.75; color: #4b4b4b; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid transparent;
  transition: all .4s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b5924e; transform: translateY(-2px); }
.btn-outline { border-color: rgba(255, 255, 255, .55); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }

/* ---------- Photo placeholder system ---------- */
.photo-holder {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--royal-navy);
  background-image:
    repeating-linear-gradient(135deg, rgba(198, 161, 91, .10) 0 2px, transparent 2px 22px),
    linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-holder .ph-tag {
  text-align: center;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  padding: 14px 18px;
  border: 1px dashed var(--gold-soft);
}
.photo-holder .ph-tag b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.photo-holder .ph-tag span { font-size: 12px; letter-spacing: .05em; color: var(--gold); }
.photo-holder.light { background-color: #e7e1d3; border-color: rgba(7, 26, 43, .18); }
.photo-holder.light .ph-tag { border-color: rgba(7, 26, 43, .18); }
.photo-holder.light .ph-tag b { color: var(--navy); }
.photo-holder.light .ph-tag span { color: #8a7756; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 14px 0;
  background: var(--off-white);
  box-shadow: 0 6px 24px rgba(7, 26, 43, .08);
  transition: all .5s var(--ease);
}
header .header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: .03em;
  transition: color .5s;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
}
.logo span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--gold);
  font-weight: 700;
}
.logo-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
/* Default navbar state (solid/scrolled): Normal (black/dark) logo shows, White logo is hidden */
.logo-img.logo-white {
  display: none !important;
}
.logo-img.logo-normal {
  display: block !important;
}
nav.main-nav {
  display: flex;
  gap: 34px;
}
nav.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
  transition: color .5s;
}
nav.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  width: 100%;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold) !important;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.social-icons {
  display: flex;
  gap: 14px;
}
.social-icons a {
  width: 16px;
  height: 16px;
  color: var(--navy);
  opacity: .85;
  transition: opacity .3s, color .5s;
}
.social-icons a:hover {
  color: var(--gold);
}
.social-icons a svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--navy);
  transition: background .5s;
}

/* Transparent Header ONLY on Home Page top */
body.is-home header.transparent-top:not(.scrolled) {
  background: transparent;
  box-shadow: none;
  padding: 22px 0;
}
body.is-home header.transparent-top:not(.scrolled) .logo {
  color: #fff;
  text-shadow: none;
}
/* On transparent navbar before scroll: hide normal logo, show white logo */
body.is-home header.transparent-top:not(.scrolled) .logo-img.logo-normal {
  display: none !important;
}
body.is-home header.transparent-top:not(.scrolled) .logo-img.logo-white {
  display: block !important;
}
/* If only normal logo exists without separate white file, automatically invert black logo to pure crisp white */
body.is-home header.transparent-top:not(.scrolled) .logo-img.logo-normal.logo-auto-white {
  display: block !important;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
body.is-home header.transparent-top:not(.scrolled) nav.main-nav a {
  color: #fff;
  text-shadow: none;
  filter: none;
}
body.is-home header.transparent-top:not(.scrolled) nav.main-nav a:hover,
body.is-home header.transparent-top:not(.scrolled) nav.main-nav a.active {
  color: var(--gold) !important;
  text-shadow: none;
}
body.is-home header.transparent-top:not(.scrolled) .social-icons a {
  color: #fff;
  filter: none;
}
body.is-home header.transparent-top:not(.scrolled) .social-icons a:hover {
  color: var(--gold);
}
body.is-home header.transparent-top:not(.scrolled) .hamburger span {
  background: #fff;
  box-shadow: none;
}

/* mobile nav panel */
.mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #fff;
  padding: 12px 0;
  display: block;
  opacity: 0;
  transform: translateY(14px);
  transition: all .5s var(--ease);
}
.mobile-panel.open a { opacity: 1; transform: translateY(0); }
.mobile-close { position: absolute; top: 26px; right: 30px; color: #fff; font-size: 14px; letter-spacing: .2em; cursor: pointer; background: none; border: none; }
.mobile-social { display: flex; gap: 20px; margin-top: 30px; }
.mobile-social a { color: var(--gold); width: 20px; height: 20px; padding: 0; }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 130px;
  background: var(--navy);
  overflow: hidden;
}
.hero .photo-holder {
  position: absolute;
  inset: 0;
  border: none;
  background: var(--navy);
  z-index: 0;
}
.hero .photo-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 1;
  filter: none;
}
/* Hero Image Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s cubic-bezier(0.1, 0, 0.1, 1);
  transform: scale(1.04);
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 1;
  filter: none;
}
/* Hero Slider Navigation Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 38px;
  right: var(--side);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  background: rgba(7, 26, 43, 0.55);
  padding: 8px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero-dot {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  padding: 0;
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}
.hero-dot.active {
  width: 44px;
  background: var(--gold);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.52) 0%, rgba(7, 26, 43, 0.26) 45%, rgba(7, 26, 43, 0.04) 75%, transparent 100%),
    linear-gradient(180deg, rgba(7, 26, 43, 0.3) 0%, transparent 25%, transparent 75%, rgba(7, 26, 43, 0.22) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 140px;
  color: #fff;
  max-width: 660px;
  margin: 0;
  text-align: left;
}
.hero > .container.hero-content {
  margin-left: 0;
  margin-right: auto;
}
.hero-content .eyebrow {
  color: #F8D888;
  font-weight: 800;
  letter-spacing: .28em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(7, 26, 43, 0.95);
}
.hero-content .eyebrow::before {
  background: #F8D888;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}
.hero-content h1 {
  color: #ffffff;
  font-size: clamp(38px, 5.6vw, 70px);
  margin: 18px 0 20px;
  line-height: 1.1;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 16px rgba(7, 26, 43, 0.95),
    0 8px 32px rgba(7, 26, 43, 0.9),
    0 0 60px rgba(7, 26, 43, 0.75);
}
.hero-content p {
  color: #ffffff;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 3px 12px rgba(7, 26, 43, 0.95),
    0 6px 24px rgba(7, 26, 43, 0.85);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-buttons .btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}
.hero-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  background: rgba(7, 26, 43, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
  font-weight: 700;
}
.hero-buttons .btn-outline:hover {
  background: rgba(7, 26, 43, 0.9);
  border-color: #ffffff;
  color: var(--gold);
}
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(7, 26, 43, 0.95);
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-indicator .line {
  width: 1px;
  height: 46px;
  background: linear-gradient(#fff, transparent);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
  animation: scrollpulse 2s infinite;
}
@keyframes scrollpulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Finder panel ---------- */
.finder-wrap { position: relative; z-index: 5; margin-top: -90px; }
.finder-panel {
  background: var(--off-white);
  box-shadow: 0 30px 60px rgba(7, 26, 43, .16);
  border-top: 2px solid var(--gold);
  padding: 40px var(--side);
}
.finder-title { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--navy); margin-bottom: 22px; }
.finder-fields { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 20px; align-items: end; }
.field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8a8a8a; margin-bottom: 8px; }
.field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(7, 26, 43, .18);
  background: transparent;
  padding: 10px 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--navy);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%23C6A15B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.finder-fields .btn { height: 44px; justify-content: center; }

/* ---------- Section base ---------- */
section { padding: var(--section) 0; }
.about-section { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-photo { aspect-ratio: 4/5; position: relative; }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .4s var(--ease);
  z-index: 3;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: rgba(255, 255, 255, .08); }
.play-btn svg { width: 16px; height: 16px; fill: #fff; margin-left: 3px; }
.about-copy h2 { margin: 18px 0 20px; }
.about-cta-wrap { margin-top: 32px; }
.stat-row { display: flex; gap: 52px; margin: 40px 0 34px; }
.stat b { display: block; font-family: 'Cormorant Garamond', serif; font-size: 40px; color: var(--navy); }
.stat span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #8a8a8a; }

/* Bottom full-width stats strip with architectural gold accent */
.about-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
  padding-top: 44px;
  border-top: 1px solid rgba(198, 161, 91, 0.25);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  border-left: 2px solid rgba(198, 161, 91, 0.45);
  transition: all 0.3s ease;
}

.about-stat-item:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}

.about-stat-item b.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.about-stat-item span.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b8895;
  margin-top: 8px;
}

/* ---------- Projects ---------- */
.projects-section { background: var(--off-white); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
.section-head h2 { margin-top: 16px; }
.carousel-controls { display: flex; gap: 10px; }
.carousel-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(7, 26, 43, .2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
}
.carousel-controls button:hover { background: var(--navy); border-color: var(--navy); }
.carousel-controls button:hover svg { stroke: #fff; }
.carousel-controls svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; }
.project-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.project-track::-webkit-scrollbar { display: none; }
.project-card {
  flex: 0 0 auto;
  width: min(78vw, 430px);
  scroll-snap-align: start;
  cursor: pointer;
}
.project-card .photo-holder { aspect-ratio: 4/5; transition: transform .6s var(--ease); }
.project-card:hover .photo-holder { transform: scale(1.02); }
.project-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 20px; }
.project-num { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--gold); }
.project-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy); margin-top: 6px; }
.project-loc { font-size: 12px; color: #8a8a8a; margin-top: 4px; letter-spacing: .03em; }
.project-line { width: 0; height: 1px; background: var(--gold); margin-top: 14px; transition: width .5s var(--ease); }
.project-card:hover .project-line { width: 60px; }
.view-link { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); }

/* ---------- Why Victory ---------- */
.why-section {
  background: var(--navy);
  color: #fff;
  padding: var(--section) 0;
  position: relative;
}
.why-section h2 {
  color: #fff;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  margin-top: 50px;
}
.pillar {
  transition: transform .35s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
}
.pillar-icon {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
  margin-bottom: 20px;
  transition: transform .35s var(--ease);
}
.pillar:hover .pillar-icon {
  transform: scale(1.08);
}
.pillar h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  color: #ffffff;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

/* ---------- Philosophy ---------- */
.philosophy { background: var(--navy); position: relative; overflow: hidden; color: #fff; }
.philosophy .photo-holder { position: absolute; inset: 0; opacity: .22; border: none; }
.philosophy-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }
.philosophy h2 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); }
.philosophy h2 em { font-style: normal; color: var(--gold); }
.philosophy p { color: rgba(255, 255, 255, .7); max-width: 520px; margin: 24px auto 0; }

/* ---------- 05. Reels Video Gallery (Matching d7.jpeg) ---------- */
.reels-section {
  background: #fbfbf9;
  position: relative;
  overflow: hidden;
}
.reels-section.dark-reels-theme {
  background: var(--navy);
  color: #ffffff;
  padding: var(--section) 0;
}
.reels-section.dark-reels-theme .reels-title {
  color: #ffffff;
}
.reels-section.dark-reels-theme .eyebrow {
  color: var(--gold);
}
.reels-section.dark-reels-theme .eyebrow::before {
  background: var(--gold);
}
.reels-section.dark-reels-theme .reels-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.reels-section.dark-reels-theme .reels-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 161, 91, 0.4);
}
.reels-section.dark-reels-theme .reel-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
.reels-section.dark-reels-theme .reel-card:hover {
  border-color: rgba(198, 161, 91, 0.65);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 0 1.5px rgba(198, 161, 91, 0.6);
}
.reels-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 34px;
}
.reels-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
}
.reels-nav-controls {
  display: flex;
  gap: 10px;
}
.reels-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(7, 26, 43, 0.18);
  background: #ffffff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(7, 26, 43, 0.05);
}
.reels-nav-btn:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 26, 43, 0.16);
}
.reels-nav-btn:active {
  transform: translateY(0);
}
.reels-carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.reels-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 22px 4px;
}
.reels-track::-webkit-scrollbar {
  display: none;
}
.reel-card {
  flex: 0 0 calc((100% - (3 * 22px)) / 4);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  background: #091927;
  box-shadow: 0 10px 28px rgba(7, 26, 43, 0.12), 0 2px 6px rgba(7, 26, 43, 0.06);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.reel-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(7, 26, 43, 0.22), 0 0 0 1.5px rgba(198, 161, 91, 0.45);
}
.reel-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.reel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reel-card:hover .reel-img {
  transform: scale(1.07);
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 26, 43, 0.2) 0%,
    rgba(7, 26, 43, 0.05) 30%,
    rgba(7, 26, 43, 0.35) 60%,
    rgba(7, 26, 43, 0.92) 100%
  );
  transition: background .35s ease;
}
.reel-card:hover .reel-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 43, 0.3) 0%,
    rgba(7, 26, 43, 0.1) 30%,
    rgba(7, 26, 43, 0.4) 60%,
    rgba(7, 26, 43, 0.95) 100%
  );
}

/* Center Red Play Button (Matching d7.jpeg) */
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 55%, #b91c1c 100%);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.55), 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s ease;
}
.reel-play-btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.35);
  z-index: -1;
  animation: reel-btn-pulse 2.2s infinite ease-out;
  pointer-events: none;
}
@keyframes reel-btn-pulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  50% { transform: scale(1.28); opacity: 0.25; }
  100% { transform: scale(1.5); opacity: 0; }
}
.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.14);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.75), 0 4px 12px rgba(0, 0, 0, 0.45);
}
.reel-play-icon {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  margin-left: 4px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

/* Bottom Reel Content */
.reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reel-badge {
  align-self: flex-start;
  background: rgba(198, 161, 91, 0.92);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}
.reel-caption {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.42;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reel-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: .06em;
  font-weight: 500;
}

/* Fallback Architectural Cover Visual */
.reel-fallback-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.reel-fallback-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.reel-bg-1 {
  background: radial-gradient(circle at 30% 20%, #1e3a5f 0%, #0a1b2d 60%, #050d18 100%);
}
.reel-bg-2 {
  background: radial-gradient(circle at 70% 30%, #2b394e 0%, #101c29 60%, #060e16 100%);
}
.reel-bg-3 {
  background: radial-gradient(circle at 40% 70%, #1a2f44 0%, #0c1c2b 60%, #060e17 100%);
}
.reel-bg-4 {
  background: radial-gradient(circle at 60% 80%, #243547 0%, #0e1a27 60%, #070e17 100%);
}
.reel-fallback-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(198, 161, 91, 0.04) 0px,
    rgba(198, 161, 91, 0.04) 2px,
    transparent 2px,
    transparent 20px
  );
}
.reel-fallback-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.reel-brand-pill {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .24em;
  color: var(--gold);
  background: rgba(7, 26, 43, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(198, 161, 91, 0.3);
}
.reel-format-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Reels Breakpoints */
@media (max-width: 1100px) {
  .reel-card {
    flex: 0 0 calc((100% - (2 * 18px)) / 3);
  }
}
@media (max-width: 768px) {
  .reels-header {
    margin-bottom: 24px;
  }
  .reel-card {
    flex: 0 0 calc((100% - 14px) / 2);
    border-radius: 14px;
  }
  .reel-play-btn {
    width: 52px;
    height: 52px;
  }
  .reel-play-icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .reel-card {
    flex: 0 0 78%;
  }
}


/* ---------- Video ---------- */
.video-section { background: var(--navy); color: #fff; }
.video-section h2 { color: #fff; }
.video-featured { aspect-ratio: 16/9; margin-top: 40px; position: relative; }
.video-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 22px; }
.video-thumbs .photo-holder { aspect-ratio: 16/9; }
.video-cats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 18px; }
.video-cats span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .55); font-weight: 600; }

/* ---------- Blog (Home) ---------- */
.blog-section { background: var(--ivory); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.blog-card { display: block; }
.blog-card .photo-holder { aspect-ratio: 4/3; }
.blog-cat { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: 20px; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin-top: 10px; }
.blog-desc { font-size: 13.5px; margin-top: 10px; }
.blog-foot { display: flex; justify-content: space-between; margin-top: 16px; font-size: 11px; color: #9a9a9a; }

/* ---------- CTA (Home) ---------- */
.cta-section { position: relative; padding: 0; height: 70vh; min-height: 460px; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.cta-section .photo-holder { position: absolute; inset: 0; border: none; background: var(--navy); }
.cta-section .photo-holder img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 1; filter: none; }
.cta-overlay { position: absolute; inset: 0; background: rgba(7, 26, 43, .75); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; color: #fff; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255, 255, 255, .78); margin: 20px auto 32px; max-width: 460px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Location ---------- */
.location-section { background: var(--off-white); }
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.loc-item { margin-bottom: 26px; }
.loc-item b { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.location-map { aspect-ratio: 4/3; }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: rgba(255, 255, 255, .7); padding: 90px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 70px; border-bottom: 1px solid rgba(198, 161, 91, .25); }
.footer-brand .logo { color: #fff; }
.footer-brand p { color: rgba(255, 255, 255, .55); margin-top: 18px; font-size: 14px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 22px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 13px; color: rgba(255, 255, 255, .62); transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; margin-top: 22px; }
.footer-social a { width: 17px; height: 17px; color: rgba(255, 255, 255, .62); }
.footer-social a:hover { color: var(--gold); }
.footer-social a svg { width: 100%; height: 100%; display: block; }
.footer-bottom { display: flex; justify-content: space-between; padding: 26px 0; font-size: 12px; color: rgba(255, 255, 255, .45); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { margin-left: 22px; color: rgba(255, 255, 255, .45); }
.footer-bottom a:hover { color: var(--gold); }

/* scroll progress */
#progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--gold); z-index: 300; width: 0%; }

/* mobile sticky cta */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
}
.mobile-cta a { padding: 16px; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.mobile-cta a:first-child { border-right: 1px solid rgba(255, 255, 255, .15); }
.mobile-cta a:last-child { background: var(--gold); color: var(--navy); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
  text-align: left;
  background: var(--navy);
  overflow: hidden;
}
.about-hero .photo-holder { position: absolute; inset: 0; border: none; }
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.72) 0%, rgba(7, 26, 43, 0.42) 50%, rgba(7, 26, 43, 0.12) 80%, transparent 100%),
    linear-gradient(180deg, rgba(7, 26, 43, 0.35) 0%, transparent 40%, rgba(7, 26, 43, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  margin: 0;
  text-align: left;
}
.about-hero-content h1,
.about-hero h1 {
  color: #ffffff;
  font-size: clamp(38px, 5.5vw, 64px);
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.12;
  text-align: left;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 16px rgba(7, 26, 43, 0.95),
    0 8px 32px rgba(7, 26, 43, 0.9);
}
.about-hero-content .eyebrow,
.about-hero .eyebrow {
  color: #F8D888;
  font-weight: 800;
  letter-spacing: .28em;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(7, 26, 43, 0.95);
}
.about-hero-content .eyebrow::before,
.about-hero .eyebrow::before {
  background: #F8D888;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.story { padding: var(--section) 0; background: var(--ivory); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-photo { aspect-ratio: 4/5; }
.story-copy h2 { margin: 16px 0 18px; }

.mv { padding: var(--section) 0; }
.mv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-bottom: var(--section); }
.mv-row:last-child { margin-bottom: 0; }
.mv-row.reverse .mv-photo { order: 2; }
.mv-photo { aspect-ratio: 5/4; }
.mv-copy h2 { margin: 16px 0 16px; }

.chairman { padding: var(--section) 0; background: var(--navy); color: #fff; }
.chairman-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.chairman-photo { aspect-ratio: 4/5; }
.chairman h2 { color: #fff; margin: 16px 0 20px; }
.chairman p { color: rgba(255, 255, 255, .72); }
.chairman blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: #fff; line-height: 1.5; margin-bottom: 24px; border-left: 2px solid var(--gold); padding-left: 24px; }
.signature { margin-top: 30px; }
.signature b { display: block; font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--gold); }
.signature span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }

.team { padding: var(--section) 0; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 48px; }
.team-card .photo-holder { aspect-ratio: 4/5; transition: transform .5s var(--ease); }
.team-card:hover .photo-holder { transform: scale(1.015); }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--navy); margin-top: 18px; }
.team-role { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

.about-cta { position: relative; padding: 0; height: 56vh; min-height: 400px; display: flex; align-items: center; }
.about-cta .photo-holder { position: absolute; inset: 0; border: none; }
.about-cta-overlay { position: absolute; inset: 0; background: rgba(7, 26, 43, .75); }
.about-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto; color: #fff; }
.about-cta-inner h2 { color: #fff; }
.about-cta-inner p { color: rgba(255, 255, 255, .78); margin: 18px auto 30px; max-width: 440px; }

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.services-hero {
  position: relative;
  height: 56vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: var(--navy);
  overflow: hidden;
}
.services-hero .photo-holder { position: absolute; inset: 0; border: none; }
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.72) 0%, rgba(7, 26, 43, 0.42) 50%, rgba(7, 26, 43, 0.12) 80%, transparent 100%),
    linear-gradient(180deg, rgba(7, 26, 43, 0.35) 0%, transparent 40%, rgba(7, 26, 43, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.services-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.services-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  margin: 0;
  text-align: left;
}
.services-hero-content h1,
.services-hero h1 {
  color: #ffffff;
  font-size: clamp(36px, 5.2vw, 58px);
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.12;
  text-align: left;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 16px rgba(7, 26, 43, 0.95),
    0 8px 32px rgba(7, 26, 43, 0.9);
}
.services-hero-content p,
.services-hero p {
  color: #ffffff;
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 3px 12px rgba(7, 26, 43, 0.95);
}
.services-hero-content .eyebrow,
.services-hero .eyebrow {
  color: #F8D888;
  font-weight: 800;
  letter-spacing: .28em;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(7, 26, 43, 0.95);
}
.services-hero-content .eyebrow::before,
.services-hero .eyebrow::before {
  background: #F8D888;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.service-nav { background: var(--ivory); padding: 26px 0; position: sticky; top: 66px; z-index: 40; border-bottom: 1px solid rgba(7, 26, 43, .08); }
.service-nav .container { display: flex; gap: 36px; flex-wrap: wrap; }
.service-nav a { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.service-nav a span { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 16px; }

.service-block { padding: var(--section) 0; }
.service-block:nth-child(even) { background: var(--ivory); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.service-grid.reverse .service-photo { order: 2; }
.service-photo { aspect-ratio: 5/4; }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--gold); margin-bottom: 14px; }
.service-copy h2 { margin: 0 0 20px; }
.service-copy ul { margin: 26px 0 30px; }
.service-copy li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #4b4b4b; margin-bottom: 14px; }
.service-copy li svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }

.process { padding: var(--section) 0; background: var(--navy); color: #fff; }
.process h2 { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 48px; }
.process-step { border-top: 1px solid rgba(198, 161, 91, .35); padding-top: 24px; }
.process-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--gold); margin-bottom: 14px; }
.process-step h3 { font-size: 15px; font-weight: 700; letter-spacing: .06em; font-family: 'Manrope', sans-serif; color: #fff; margin-bottom: 10px; }
.process-step p { color: rgba(255, 255, 255, .65); font-size: 13.5px; }

.services-cta { position: relative; padding: 0; height: 56vh; min-height: 400px; display: flex; align-items: center; }
.services-cta .photo-holder { position: absolute; inset: 0; border: none; }
.services-cta-overlay { position: absolute; inset: 0; background: rgba(7, 26, 43, .75); }
.services-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto; color: #fff; }
.services-cta-inner h2 { color: #fff; }
.services-cta-inner p { color: rgba(255, 255, 255, .78); margin: 18px auto 30px; max-width: 440px; }

/* ==========================================================================
   PROPERTIES LISTING PAGE
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 170px 0 70px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.78) 0%, rgba(7, 26, 43, 0.48) 55%, rgba(7, 26, 43, 0.18) 85%, transparent 100%),
    linear-gradient(180deg, rgba(7, 26, 43, 0.4) 0%, transparent 40%, rgba(7, 26, 43, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0;
  text-align: left;
}
.page-hero h1,
.page-hero-content h1 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 58px);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.12;
  text-align: left;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 16px rgba(7, 26, 43, 0.95),
    0 8px 32px rgba(7, 26, 43, 0.9);
}
.page-hero p,
.page-hero-content p {
  color: #ffffff;
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 3px 12px rgba(7, 26, 43, 0.95);
}
.page-hero .eyebrow,
.page-hero-content .eyebrow {
  color: #F8D888;
  font-weight: 800;
  letter-spacing: .28em;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(7, 26, 43, 0.95);
}
.page-hero .eyebrow::before,
.page-hero-content .eyebrow::before {
  background: #F8D888;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.filter-bar { background: var(--off-white); border-bottom: 1px solid rgba(7, 26, 43, .1); padding: 34px 0; position: sticky; top: 66px; z-index: 40; }
.filter-fields { display: grid; grid-template-columns: repeat(3, 1fr) auto auto; gap: 18px; align-items: end; }
.filter-fields .field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8a8a8a; margin-bottom: 8px; }
.filter-fields .field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(7, 26, 43, .18);
  background: transparent;
  padding: 9px 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--navy);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%23C6A15B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.filter-fields .btn { height: 42px; justify-content: center; }
.reset-link { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #8a8a8a; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; background: none; border: none; padding: 0; }

.results-section { padding: var(--section) 0; }
.results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; flex-wrap: wrap; gap: 14px; }
.results-count { font-size: 13px; color: #8a8a8a; }
.results-count b { color: var(--navy); }

.property-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.property-card { cursor: pointer; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.property-card.hidden { display: none; }
.property-card .photo-holder { aspect-ratio: 4/5; transition: transform .5s var(--ease); }
.property-card:hover .photo-holder { transform: scale(1.015); }
.status-tag { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; z-index: 2; }
.prop-body { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 20px; }
.prop-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy); }
.prop-loc { font-size: 12.5px; color: #8a8a8a; margin-top: 6px; }
.prop-type { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }
.prop-view { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); white-space: nowrap; }
.prop-line { width: 0; height: 1px; background: var(--gold); margin-top: 16px; transition: width .5s var(--ease); }
.property-card:hover .prop-line { width: 70px; }

.empty-state { display: none; text-align: center; padding: 80px 0; }
.empty-state.show { display: block; }
.empty-state h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.empty-state p { max-width: 400px; margin: 0 auto 24px; }

/* ==========================================================================
   PROPERTY DETAILS PAGE
   ========================================================================== */
.breadcrumb { padding: 96px 0 0; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #9a9a9a; }
.breadcrumb a { color: #9a9a9a; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { margin: 0 8px; }
.breadcrumb span.current { color: var(--navy); }

.pd-hero { position: relative; height: 74vh; min-height: 520px; display: flex; align-items: flex-end; margin-top: 26px; }
.pd-hero .photo-holder { position: absolute; inset: 0; border: none; }
.pd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 26, 43, .15) 0%, rgba(7, 26, 43, .85) 100%); }
.pd-hero-content { position: relative; z-index: 2; padding-bottom: 56px; color: #fff; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; width: 100%; }
.pd-hero-content h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin-top: 14px; }
.pd-hero-content .loc { font-size: 14px; color: rgba(255, 255, 255, .75); margin-top: 10px; letter-spacing: .02em; }
.status-pill { display: inline-block; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; margin-bottom: 14px; }

.overview { padding: var(--section) 0; background: var(--ivory); }
.overview-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; background: #fff; padding: 40px 48px; box-shadow: 0 16px 40px rgba(7, 26, 43, 0.06); border-bottom: 3px solid var(--gold); margin-top: -20px; position: relative; z-index: 10; }
.overview-item { border-left: 1px solid rgba(198, 161, 91, 0.3); padding-left: 20px; }
.overview-item:first-child { border-left: none; padding-left: 0; }
.overview-item b { display: block; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8a8a8a; margin-bottom: 8px; }
.overview-item span { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); }

.description { padding: var(--section) 0; }
.desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.desc-copy h2 { margin: 16px 0 18px; }
.desc-photo { aspect-ratio: 1/1; }

/* ==========================================================================
   PROPERTY DETAILS - GALLERY & LIGHTBOX
   ========================================================================== */
.pd-gallery { padding: var(--section) 0; background: var(--ivory); }

.pd-gallery-grid,
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.pd-gallery-item {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 10px;
  overflow: hidden;
  background: #081a2c;
  border: 1px solid rgba(198, 161, 91, 0.2);
  box-shadow: 0 8px 24px rgba(7, 26, 43, 0.08);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.pd-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(7, 26, 43, 0.2);
  border-color: var(--gold);
}

.pd-gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.pd-gallery-item:hover .pd-gallery-thumb {
  transform: scale(1.08);
  filter: brightness(0.92);
}

.pd-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 43, 0.15) 0%, rgba(7, 26, 43, 0.45) 45%, rgba(7, 26, 43, 0.88) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.pd-gallery-item:hover .pd-gallery-overlay {
  opacity: 1;
}

.pd-gallery-badge {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.95);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transform: translateY(-8px) scale(0.85);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, background 0.25s ease;
}

.pd-gallery-item:hover .pd-gallery-badge {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pd-gallery-info {
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.pd-gallery-item:hover .pd-gallery-info {
  transform: translateY(0);
  opacity: 1;
}

.pd-gallery-info .pd-gallery-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.pd-gallery-info .pd-gallery-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

/* Fallback placeholder item styling */
.pd-gallery-item.fallback-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(7, 26, 43, 0.96) 0%, rgba(15, 36, 60, 0.96) 100%);
  border: 1px dashed rgba(198, 161, 91, 0.35);
  cursor: default;
}
.pd-gallery-fallback-content {
  text-align: center;
  padding: 24px;
  color: #ffffff;
}
.pd-gallery-fallback-icon {
  margin-bottom: 12px;
}
.pd-gallery-fallback-content b {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 6px;
}
.pd-gallery-fallback-content span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
}

/* ==========================================================================
   PD LIGHTBOX MODAL
   ========================================================================== */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
}

.pd-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.pd-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 29, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pd-lightbox-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 32px;
  box-sizing: border-box;
  pointer-events: none;
}

.pd-lightbox-header,
.pd-lightbox-stage,
.pd-lightbox-footer {
  pointer-events: auto;
}

.pd-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pd-lightbox-info-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pd-lightbox-counter {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(198, 161, 91, 0.14);
  border: 1px solid rgba(198, 161, 91, 0.35);
  padding: 6px 14px;
  border-radius: 20px;
}

.pd-lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.03em;
  max-width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-lightbox-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pd-lightbox-close:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: rotate(90deg) scale(1.05);
}

.pd-lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 0;
}

.pd-lightbox-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 80vh;
}

.pd-lightbox-img {
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(198, 161, 91, 0.3);
  animation: pdLightboxZoomIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.25s ease, width 0.2s ease, height 0.2s ease;
}

@keyframes pdLightboxZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pd-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, 0.35);
  background: rgba(7, 26, 43, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.pd-lightbox-prev {
  left: 0;
}

.pd-lightbox-next {
  right: 0;
}

.pd-lightbox-nav:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.pd-lightbox-footer {
  text-align: center;
  padding-top: 10px;
}

.pd-lightbox-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.pd-lightbox-hint kbd {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: inherit;
  font-size: 11px;
  color: var(--gold);
  margin: 0 2px;
}


.amenities { padding: var(--section) 0; background: var(--ivory); }
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 46px; }
.amenity { background: #fff; padding: 40px 24px; border-radius: 8px; box-shadow: 0 12px 36px rgba(7, 26, 43, 0.04); text-align: center; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); border: 1px solid rgba(198, 161, 91, 0.1); }
.amenity:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(7, 26, 43, 0.08); border-color: rgba(198, 161, 91, 0.3); }
.amenity-icon { width: 38px; height: 38px; stroke: var(--gold); fill: none; stroke-width: 1.3; margin-bottom: 20px; }
.amenity h3 { font-size: 13.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-family: 'Manrope', sans-serif; color: var(--navy); margin: 0; }

.floorplans { padding: var(--section) 0; background: var(--navy); color: #fff; }
.floorplans h2 { color: #fff; }
.fp-tabs { display: flex; gap: 10px; margin: 36px 0 30px; flex-wrap: wrap; }
.fp-tab { padding: 11px 22px; border: 1px solid rgba(255, 255, 255, .25); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; background: transparent; color: #fff; transition: all .3s; }
.fp-tab.active, .fp-tab:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.fp-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.fp-plan { aspect-ratio: 4/3; position: relative; }
.fp-unit { position: absolute; border: 1px solid rgba(198, 161, 91, .5); background: rgba(198, 161, 91, .08); display: flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: .06em; cursor: pointer; transition: all .3s; color: var(--gold); }
.fp-unit:hover, .fp-unit.selected { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.fp-unit.sold { background: rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .3); border-color: rgba(255, 255, 255, .15); cursor: not-allowed; }
.fp-info { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); padding: 34px; }
.fp-info h3 { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 20px; }
.fp-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 13px; color: rgba(255, 255, 255, .75); }
.fp-row b { color: #fff; font-weight: 600; }
.fp-info .btn { margin-top: 24px; width: 100%; justify-content: center; }
.fp-empty { color: rgba(255, 255, 255, .5); font-size: 13.5px; }

.pd-location { padding: var(--section) 0; background: var(--off-white); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.landmark-list { margin-top: 26px; }
.landmark { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(7, 26, 43, .08); font-size: 14px; }
.landmark span:first-child { color: var(--navy); }

.why-invest { padding: var(--section) 0; background: var(--ivory); }
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 44px; }
.invest-num { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--gold); margin-bottom: 14px; }
.invest h3 { font-size: 19px; margin-bottom: 10px; }

.pd-cta { position: relative; padding: 0; height: 56vh; min-height: 400px; display: flex; align-items: center; }
.pd-cta .photo-holder { position: absolute; inset: 0; border: none; }
.pd-cta-overlay { position: absolute; inset: 0; background: rgba(7, 26, 43, .75); }
.pd-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto; color: #fff; }
.pd-cta-inner h2 { color: #fff; }
.pd-cta-inner p { color: rgba(255, 255, 255, .78); margin: 18px auto 30px; max-width: 440px; }

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.gallery-hero {
  position: relative;
  padding: 170px 0 60px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  overflow: hidden;
}
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.78) 0%, rgba(7, 26, 43, 0.48) 55%, rgba(7, 26, 43, 0.18) 85%, transparent 100%),
    linear-gradient(180deg, rgba(7, 26, 43, 0.4) 0%, transparent 40%, rgba(7, 26, 43, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.gallery-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0;
  text-align: left;
}
.gallery-hero h1,
.gallery-hero-content h1 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 58px);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.12;
  text-align: left;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 16px rgba(7, 26, 43, 0.95),
    0 8px 32px rgba(7, 26, 43, 0.9);
}
.gallery-hero p,
.gallery-hero-content p {
  color: #ffffff;
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 3px 12px rgba(7, 26, 43, 0.95);
}
.gallery-hero .eyebrow,
.gallery-hero-content .eyebrow {
  color: #F8D888;
  font-weight: 800;
  letter-spacing: .28em;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(7, 26, 43, 0.95);
}
.gallery-hero .eyebrow::before,
.gallery-hero-content .eyebrow::before {
  background: #F8D888;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.cat-filter { background: var(--off-white); border-bottom: 1px solid rgba(7, 26, 43, .08); padding: 26px 0; position: sticky; top: 66px; z-index: 40; }
.cat-filter .container { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cat-btn { padding: 10px 22px; border: 1px solid rgba(7, 26, 43, .15); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: transparent; cursor: pointer; transition: all .3s; }
.cat-btn.active, .cat-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.gallery-section { padding: var(--section) 0; }
.masonry { column-count: 4; column-gap: 20px; }
.masonry-item { break-inside: avoid; margin-bottom: 20px; transition: opacity .4s var(--ease); cursor: pointer; }
.masonry-item.hidden { display: none; }
.masonry-item .photo-holder { transition: transform .5s var(--ease); }
.masonry-item:hover .photo-holder { transform: scale(1.015); }
.masonry-item .cat-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }

.lightbox { position: fixed; inset: 0; background: rgba(7, 26, 43, .96); z-index: 300; display: none; align-items: center; justify-content: center; padding: 60px; }
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 900px; width: 100%; }
.lightbox-inner .photo-holder { aspect-ratio: 4/3; height: auto; }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 13px; letter-spacing: .12em; cursor: pointer; background: none; border: none; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .4); background: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }
.lightbox-caption { text-align: center; color: rgba(255, 255, 255, .7); font-size: 12.5px; margin-top: 18px; letter-spacing: .04em; }

/* ==========================================================================
   BLOG INDEX & SHOW PAGES
   ========================================================================== */
.blog-hero {
  position: relative;
  padding: 170px 0 70px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  overflow: hidden;
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 43, 0.78) 0%, rgba(7, 26, 43, 0.48) 55%, rgba(7, 26, 43, 0.18) 85%, transparent 100%),
    linear-gradient(180deg, rgba(7, 26, 43, 0.4) 0%, transparent 40%, rgba(7, 26, 43, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.blog-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0;
  text-align: left;
}
.blog-hero h1,
.blog-hero-content h1 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 58px);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.12;
  text-align: left;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 16px rgba(7, 26, 43, 0.95),
    0 8px 32px rgba(7, 26, 43, 0.9);
}
.blog-hero p,
.blog-hero-content p {
  color: #ffffff;
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.95),
    0 3px 12px rgba(7, 26, 43, 0.95);
}
.blog-hero .eyebrow,
.blog-hero-content .eyebrow {
  color: #F8D888;
  font-weight: 800;
  letter-spacing: .28em;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 14px rgba(7, 26, 43, 0.95);
}
.blog-hero .eyebrow::before,
.blog-hero-content .eyebrow::before {
  background: #F8D888;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.featured { padding: var(--section) 0; background: var(--off-white); }
.featured-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.featured-photo { aspect-ratio: 4/3; position: relative; }
.featured-tag { background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; position: absolute; top: 16px; left: 16px; z-index: 2; }
.featured-cat { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.featured-title { font-size: clamp(26px, 3vw, 38px); margin: 14px 0 16px; font-family: 'Cormorant Garamond', serif; color: var(--navy); }
.featured-meta { display: flex; gap: 20px; font-size: 12px; color: #9a9a9a; margin-top: 20px; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 50px auto 0; flex-wrap: wrap; }
.pagination a, .pagination span, .pagination .page-link { min-width: 44px; height: 44px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(7, 26, 43, .15); font-size: 13px; font-weight: 700; color: var(--navy); background: #fff; transition: all .25s cubic-bezier(0.16, 1, 0.3, 1); text-decoration: none; border-radius: 4px; box-shadow: 0 2px 5px rgba(7, 26, 43, 0.04); }
.pagination a:hover, .pagination .page-link:hover:not(.disabled):not(.active) { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(7, 26, 43, 0.12); }
.pagination .active, .pagination span.active { background: var(--navy) !important; color: var(--gold) !important; border-color: var(--gold) !important; font-weight: 800; cursor: default; }
.pagination .disabled, .pagination span.disabled { opacity: 0.35; cursor: not-allowed; background: rgba(7, 26, 43, .04); border-color: rgba(7, 26, 43, .1); color: var(--text-muted); }
.pagination .dots { border: none; background: transparent; min-width: 24px; box-shadow: none; font-weight: 700; }
.pagination svg { width: 16px !important; height: 16px !important; max-width: 16px !important; max-height: 16px !important; display: inline-block; flex-shrink: 0; }

/* Article Details */
.article-head { padding: 36px 0 40px; text-align: center; }
.article-head-inner { max-width: 760px; margin: 0 auto; }
.article-cat { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.article-title { font-size: clamp(32px, 4.6vw, 54px); margin: 18px 0 26px; }
.article-meta { display: flex; justify-content: center; gap: 26px; font-size: 12.5px; color: #9a9a9a; flex-wrap: wrap; }
.article-meta b { color: var(--navy); }

.article-hero-photo { max-width: 1100px; margin: 0 auto; aspect-ratio: 16/9; }

.article-body { padding: var(--section) 0 80px; }
.article-body-inner { max-width: 740px; margin: 0 auto; }
.article-body-inner p { font-size: 16.5px; margin-bottom: 26px; }
.article-body-inner h3 { font-size: 26px; margin: 44px 0 18px; }
.pull-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 26px; line-height: 1.5; color: var(--navy); border-left: 2px solid var(--gold); padding-left: 28px; margin: 40px 0; }
.inline-photo { aspect-ratio: 16/9; margin: 36px 0; }
.inline-photo-caption { font-size: 12px; color: #9a9a9a; margin-top: 10px; text-align: center; }

.share-row { display: flex; align-items: center; gap: 16px; max-width: 740px; margin: 50px auto 0; padding-top: 30px; border-top: 1px solid rgba(7, 26, 43, .08); }
.share-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #9a9a9a; }
.share-icons { display: flex; gap: 14px; }
.share-icons a { width: 16px; height: 16px; color: var(--navy); }
.share-icons a:hover { color: var(--gold); }

.related { padding: var(--section) 0; background: var(--ivory); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 44px; }
.related-card { display: block; }
.related-card .photo-holder { aspect-ratio: 4/3; }
.related-cat { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: 18px; }
.related-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--navy); margin-top: 8px; }

/* ==========================================================================
   APPOINTMENT / CONTACT PAGE
   ========================================================================== */
.appt-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.appt-photo { position: relative; }
.appt-form-side { display: flex; align-items: center; padding: 150px var(--side) 80px; }
.appt-form-inner { max-width: 460px; width: 100%; margin: 0 auto; }
.appt-form-inner h1 { font-size: clamp(32px, 3.6vw, 44px); margin: 16px 0 14px; }
.form-row { margin-bottom: 22px; }
.form-row label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #8a8a8a; margin-bottom: 9px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(7, 26, 43, .2);
  background: transparent;
  padding: 11px 2px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: var(--navy);
  outline: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%23C6A15B'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; }
.form-error { font-size: 11.5px; color: #c0392b; margin-top: 6px; display: none; }
.form-row.invalid input, .form-row.invalid select, .form-row.invalid textarea { border-color: #c0392b; }
.form-row.invalid .form-error { display: block; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.success-state { display: none; text-align: center; padding: 40px 0; }
.success-state.show { display: block; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }
.success-state h1 { font-size: 28px; margin-bottom: 12px; }
.form-note { font-size: 12px; color: #9a9a9a; margin-top: 16px; text-align: center; }

/* ==========================================================================
   VIDEO PLAY BUTTONS & LIGHTBOX MODAL
   ========================================================================== */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(7, 26, 43, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all .35s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.play-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  transform: translateX(2px);
  transition: transform .3s ease;
}
.play-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(198, 161, 91, 0.5);
}
.play-btn:hover svg {
  fill: var(--navy);
  transform: translateX(2px) scale(1.05);
}

.play-btn-mini {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(7, 26, 43, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all .3s var(--ease);
}
.play-btn-mini svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  transform: translateX(1px);
}
.photo-holder:hover .play-btn-mini {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.12);
}
.photo-holder:hover .play-btn-mini svg {
  fill: var(--navy);
}

/* Video Lightbox Modal */
/* Video Lightbox Modal (Matching d8.png) */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(92vw, 920px);
  background: #000;
  border-radius: 6px;
  overflow: visible;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85);
  transform: scale(0.95);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-modal.open .video-modal-dialog {
  transform: scale(1);
}
.video-modal-close {
  position: absolute;
  top: -36px;
  right: 0;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.92;
  transition: transform .2s ease, opacity .2s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
  z-index: 20;
}
.video-modal-close:hover {
  opacity: 1;
  transform: scale(1.15);
  color: #ffffff;
  background: transparent;
  border-color: transparent;
}
.video-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio matching d8.png */
  height: 0;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}
.video-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media(max-width: 1024px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-strip { gap: 28px; margin-top: 48px; padding-top: 36px; }
  .finder-fields { grid-template-columns: repeat(2, 1fr); }
  .finder-fields .btn { grid-column: span 2; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .video-thumbs { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .story-grid, .mv-row, .chairman-grid { grid-template-columns: 1fr; gap: 36px; }
  .mv-row.reverse .mv-photo { order: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-grid.reverse .service-photo { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .service-nav { top: 0; overflow-x: auto; }
  .overview-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; padding: 32px; }
  .overview-item:nth-child(4) { border-left: none; padding-left: 0; }
  .desc-grid, .loc-grid, .fp-layout { grid-template-columns: 1fr; gap: 36px; }
  .pd-gallery-grid, .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pd-lightbox-stage .pd-lightbox-prev { left: 8px; }
  .pd-lightbox-stage .pd-lightbox-next { right: 8px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .invest-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 3; }
  .cat-filter { top: 0; }
  .filter-fields { grid-template-columns: repeat(2, 1fr); }
  .filter-fields .btn, .filter-fields .reset-link { grid-column: span 2; justify-self: start; }
  .property-grid { grid-template-columns: 1fr; }
  .filter-bar { top: 0; }
  .featured-card { grid-template-columns: 1fr; gap: 30px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media(max-width: 640px) {
  .header-right .social-icons { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .stat-row { gap: 30px; }
  .about-stats-strip { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; padding-top: 28px; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 0; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); padding: 24px; row-gap: 28px; }
  .overview-item:nth-child(4) { border-left: 1px solid rgba(198, 161, 91, 0.3); padding-left: 20px; } /* Reset from tablet */
  .overview-item:nth-child(odd) { border-left: none; padding-left: 0; }
  .overview-item:nth-child(even) { border-left: 1px solid rgba(198, 161, 91, 0.3); padding-left: 16px; }
  .masonry { column-count: 2; column-gap: 14px; }
  .masonry-item { margin-bottom: 14px; }
  .pd-gallery-grid, .gallery-masonry { grid-template-columns: 1fr; gap: 16px; }
  .pd-lightbox-wrapper { padding: 16px; }
  .pd-lightbox-title { display: none; }
  .pd-lightbox-hint { display: none; }
  .pd-lightbox-nav { width: 42px; height: 42px; }
  .pd-lightbox-stage .pd-lightbox-prev { left: 4px; }
  .pd-lightbox-stage .pd-lightbox-next { right: 4px; }
  .pd-lightbox-counter { font-size: 11px; padding: 4px 10px; }
  .lightbox { padding: 20px; }
  .lightbox-nav { width: 36px; height: 36px; }
  .article-meta { gap: 14px; }
  .appt-wrap { grid-template-columns: 1fr; }
  .appt-photo { height: 280px; }
  .appt-form-side { padding: 32px var(--side) 60px; }
  .two-col { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & SCROLL TO TOP)
   ========================================================================== */
.floating-action-group {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.scroll-to-top-btn {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  background-color: #b0b0b0;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background-color: var(--navy, #0B2036);
  transform: translateY(-2px);
}

.scroll-to-top-btn:active {
  transform: translateY(0);
}

.floating-whatsapp-btn {
  pointer-events: auto;
  position: relative;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.floating-whatsapp-btn:active {
  transform: scale(0.96);
}

.whatsapp-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.28);
  z-index: -1;
  animation: wa-halo-pulse 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes wa-halo-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.25;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .floating-action-group {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .floating-whatsapp-btn {
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp-btn svg {
    width: 27px;
    height: 27px;
  }
  .scroll-to-top-btn {
    width: 36px;
    height: 36px;
  }
}

