:root {
  --gold: #b8965a;
  --gold-lt: #d4b47a;
  --off: #f5f2ec;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.58);
  --line: rgba(17, 17, 17, 0.13);
  --line-lt: rgba(255, 255, 255, 0.2);
  --nav-h: 80px;

  /* Luxury Glass Tokens */
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
  --glass-blur: blur(18px) saturate(1.7);
  --champagne: #F5E6CC;
  --silver-glass: rgba(220, 220, 225, 0.08);
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.site *,
.site *::before,
.site *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.site html {
  scroll-behavior: smooth;
}
.site {
  background: var(--off);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
/* ─── HONEYPOT (anti-spam trap) ─── */
.site .hp-trap {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* ─── FORM ERROR ─── */
.site .form-error-msg {
  display: none;
  padding: 14px 20px;
  background: #fff3f3;
  border: 1px solid rgba(180, 50, 50, .22);
  color: #b43232;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  margin-top: -1px;
}
.site .form-error-msg.show {
  display: block;
}
/* ─── CURSOR ─── */
.site .cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s;
}
.site .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 150, 90, .45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .4s cubic-bezier(.16, 1, .3, 1),
    height .4s cubic-bezier(.16, 1, .3, 1),
    border-color .3s;
}
.site .cursor.large {
  width: 12px;
  height: 12px;
}
.site .cursor-ring.large {
  width: 48px;
  height: 48px;
  border-color: rgba(184, 150, 90, .75);
}
/* ΓöÇΓöÇΓöÇ NAV ΓöÇΓöÇΓöÇ */
.site #mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
/* on hero: fully transparent */
.site nav.on-hero {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* scrolled off hero: glassmorphism */
.site nav.scrolled {
  background: rgba(245, 242, 236, 0.72);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom-color: rgba(184, 150, 90, 0.2);
  box-shadow:
    0 2px 24px rgba(17, 17, 17, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
}
/* Navbar Dark Theme (Pass-through for Dark Sections) */
.site nav.nav-dark-theme {
  background: rgba(11, 10, 8, 0.9) !important;
  backdrop-filter: blur(28px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.8) !important;
  border-bottom-color: rgba(212, 175, 55, 0.15) !important;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4) !important;
}
.site nav.nav-dark-theme .nav-links a {
  color: #ffffff !important;
}
.site nav.nav-dark-theme .nav-links a:hover {
  color: var(--gold-lt) !important;
}
.site nav.nav-dark-theme .nav-logo-img-white {
  opacity: 1 !important;
}
.site nav.nav-dark-theme .nav-logo-img-dark {
  opacity: 0 !important;
}
.site .nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
}
/* Both logos stacked, fade between them */
.site .nav-logo-img-white,
.site .nav-logo-img-dark {
  height: 14px;
  width: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .2s ease;
}
/* On hero: show white, hide dark */
.site nav.on-hero .nav-logo-img-white {
  opacity: 1;
}
.site nav.on-hero .nav-logo-img-dark {
  opacity: 0;
}
.site nav:not(.on-hero) .nav-logo-img-dark {
  opacity: 1;
}
@media (max-width: 768px) {
  .site .nav-logo {
     z-index: 1001 !important; /* Keep logo above form on mobile scroll */
  }
}
.site .nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.site .nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .3s, letter-spacing .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  padding: 8px 0;
}
.site .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
}
.site .nav-links a:hover {
  color: var(--ink);
  letter-spacing: .22em;
  /* Breathing effect */
}
.site .nav-links a:hover::after {
  width: 100%;
}
.site nav.on-hero .nav-links a {
  color: rgba(255, 255, 255, .72);
}
.site nav.on-hero .nav-links a:hover {
  color: #fff;
}
.site .nav-cta {
  background: #1a1510;
  color: #fff;
  border: none;
  padding: 12px 34px;
  border-radius: 9999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  /* Premium Claymorphism */
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -4px -4px 12px rgba(255, 255, 255, 0.03),
    inset 3px 3px 6px rgba(255, 255, 255, 0.08),
    inset -3px -3px 6px rgba(0, 0, 0, 0.4);
}
.site nav.on-hero .nav-cta {
  background: rgba(20, 15, 10, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.site .nav-cta:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 15px 35px rgba(184, 150, 90, 0.4),
    0 0 20px rgba(184, 150, 90, 0.2),
    inset 2px 2px 4px rgba(255, 255, 255, 0.3);
}
.site nav.on-hero .nav-cta:hover {
  background: var(--gold-lt);
  box-shadow:
    0 0 40px rgba(212, 180, 122, 0.5),
    inset 2px 2px 5px rgba(255, 255, 255, 0.4);
}
@media(max-width:768px) {
  .site nav {
    padding: 0 24px;
  }

  .site .nav-links {
    display: none;
  }
}
/* ΓöÇΓöÇΓöÇ HERO ΓöÇΓöÇΓöÇ */
.site .hero {
  position: relative;
  min-height: 100vh;
  /* Ensures full visual luxury on all device sizes */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.site .hero-viewport {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(100vh - var(--nav-h));
  width: 100%;
  padding: 0 52px 60px 52px;
  gap: 120px;
  overflow: visible;
}
.site .hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
}
.site .hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 2rem;
}
.site .hero-inquiry-module {
  position: absolute !important;
  top: 48% !important;
  right: 52px;
  transform: translateY(-50%) !important;
  flex: 0 0 420px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.08); /* solid single color */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px !important;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0px !important;
  max-height: 90vh;
  overflow: visible !important;
  z-index: 1000;
}
.site .hero-inquiry-module::-webkit-scrollbar {
  display: none;
}
@media(max-width: 1180px) {
  .site .hero-viewport {
    gap: 40px;
  }

  .site .hero-inquiry-module {
    flex: 0 0 360px;
    padding: 1.4rem 1.5rem;
  }
}
@media(max-width: 1100px) {
  .site .hero {
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
  }

  .site .hero-viewport {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--nav-h) + 60px) 40px 80px 40px;
    gap: 40px;
  }

  .site .hero-content {
    flex: none;
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }

  .site .hero-title {
    font-size: clamp(48px, 8vw, 80px);
  }

  .site .hero-actions {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .site .hero-inquiry-module {
    flex: none;
    width: 100%;
    max-width: 520px;
    align-self: center;
    margin-top: 2rem;
    max-height: none;
  }
}
.site .f-field-glass {
  position: relative;
  margin-bottom: 0.25rem !important;
  /* Ultra-mini spacing */
}
.site .eyebrow-hero {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  color: var(--gold-lt);
  font-size: 0.5rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.1),
    inset -1px -1px 2px rgba(0, 0, 0, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.4);
}
.site .form-title-hero {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 1.85rem !important;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 4px !important;
  letter-spacing: 0.02em;
}
.site .form-title-hero em {
  font-style: italic;
  color: var(--gold-lt);
}
.site .form-desc-hero {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem !important;
  line-height: 1.2;
  margin-bottom: 0.5rem !important;
}
.site .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.site .form-full {
  grid-column: span 2;
}
.site .f-label-hero {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.site .f-input-hero {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem !important;
  color: #ffffff;
  outline: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(5px);
}
.site .f-input-hero::placeholder {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
}
.site .f-input-hero:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 180, 122, 0.4);
  box-shadow: 0 0 15px rgba(212, 180, 122, 0.15);
}
.site .f-area-hero {
  resize: none;
  min-height: 80px;
  max-height: 120px;
}
/* ─── Turnstile Widget Center Control ─── */
.site .turnstile-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 1.2rem 0 !important;
}
/* ─── Turnstile Widget Integration ─── */
.site .turnstile-wrap .cf-turnstile {
  transform: scale(0.9) !important;
  height: 65px !important;
  overflow: hidden;
  border-radius: 6px;
  display: inline-flex !important;
}
@keyframes fadeInTurnstile {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(5px);
  }

  to {
    opacity: 1;
    transform: scale(0.92) translateY(0);
  }
}
/* ─── Luxury Glass Liquid Submit Button (Pill Style) ─── */
.site .hero-inquiry-module .btn-submit-hero {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px !important;
  margin-top: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 30px !important;
  cursor: pointer;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;

  /* Premium Glass surface */
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.06) 100%) !important;
  backdrop-filter: blur(12px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.6) !important;

  /* Depth & Shimmer Shadow */
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    inset 0 -2px 4px rgba(0, 0, 0, 0.22) !important;

  /* Typography */
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  color: #ffffff !important;

  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.site .hero-inquiry-module .btn-submit-hero:hover {
  transform: translateY(-1px) scale(1.01);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.12) 100%) !important;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(212, 175, 55, 0.45) !important;
  /* Golden Liquid Glow */
  border-color: rgba(212, 175, 55, 0.5) !important;
}
/* Liquid Shimmer Interaction Effect */
.site .hero-inquiry-module .btn-submit-hero::after {
  content: '';
  position: absolute;
  top: -150%;
  left: -50%;
  width: 200%;
  height: 400%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  transform: rotate(35deg);
  transition: all 1s ease;
  pointer-events: none;
}
.site .hero-inquiry-module .btn-submit-hero:hover::after {
  top: -100%;
  left: 0;
}
.site .hero-inquiry-module .btn-submit-hero:active {
  transform: scale(0.975);
}
/* ─── Integrated Verification Component (Turnstile) ─── */
.site .turnstile-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0.15rem 0 !important;
  /* Tightest possible */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.site .turnstile-wrap .cf-turnstile {
  transform: scale(0.8) !important;
  /* Smaller footprint */
  transform-origin: center;
}
/* Subtle inner light reflection */
.site .btn-submit-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%);
  pointer-events: none;
}
/* Gold accent underline on the span text — connects to brand */
.site .btn-submit-hero span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site .btn-submit-hero span::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: #D4AF37;
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
/* Hover — gentle iOS lift */
.site .btn-submit-hero:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.14) inset,
    0 -1px 0 0 rgba(0, 0, 0, 0.25) inset,
    0 8px 20px rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.08) 100%), #1f1f3a;
}
.site .btn-submit-hero:hover span::after {
  transform: scaleX(1);
  opacity: 1;
}
/* Active — physical press with inset shadow */
.site .btn-submit-hero:active {
  transform: translateY(0px) scale(0.995);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.25) inset,
    0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 1px 3px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(255, 255, 255, 0.04) 100%), #151528;
  transition: transform 0.06s ease, box-shadow 0.06s ease;
}
/* Focus ring — accessibility, Apple-style */
.site .btn-submit-hero:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.3);
}
.site .success-title-hero {
  color: #ffffff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  text-align: center;
}
.site .success-desc-hero {
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 0.75rem;
  opacity: 0.8;
}
.site .hero-inquiry-module .form-success {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 40px 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1;
}
.site .hero-inquiry-module .form-success.show {
  display: flex;
}
.site .success-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(184, 150, 90, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  margin-bottom: 24px;
  animation: successFloat 3s ease-in-out infinite;
}
.site .success-icon-wrap svg {
  width: 28px;
  height: 28px;
}
.site .success-note-hero {
  display: block;
  margin-top: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
}
@keyframes successFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
.site .f-field-glass input,
.site .f-field-glass textarea {
  transition: border-color 0.4s ease, border-width 0.4s ease;
}
.site .f-field-glass input:focus,
.site .f-field-glass textarea:focus {
  border-bottom-color: var(--gold-lt) !important;
}
/* SLIDE BG */
.site .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Rest of hero styles... */
.site .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.2s cubic-bezier(.4, 0, .2, 1), transform 9s ease;
  transform: scale(1.06);
  will-change: opacity, transform;
}
.site .slide.active {
  opacity: 1;
  transform: scale(1);
}
.site .slide:nth-child(1) {
  background-image: url('../assets/imgs/i-x7qk9a1.webp');
}
.site .slide:nth-child(2) {
  background-image: url('../assets/imgs/i-m4tz8b2.webp');
}
.site .slide:nth-child(3) {
  background-image: url('../assets/imgs/i-r9p2vd3.webp');
}
.site .slide:nth-child(4) {
  background-image: url('../assets/imgs/i-k6w3nx4.webp');
}
.site .slide:nth-child(5) {
  background-image: url('../assets/imgs/i-j8c5qy5.webp');
}
/* overlays */
.site .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .18) 0%,
      rgba(0, 0, 0, .08) 40%,
      rgba(0, 0, 0, .62) 100%);
}
.site .hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, .45) 100%);
}
/* hero decorators */
.site .hero-tag {
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  left: 52px;
  z-index: 10;
  font-size: 8px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
  opacity: 0;
  animation: fadeIn .8s .2s forwards;
}
.site .hero-index {
  position: absolute;
  top: calc(var(--nav-h) + 36px);
  right: 52px;
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .2em;
}
/* ─── FORM CONSENT ─── */
.site .f-consent-wrap {
  margin-bottom: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site .f-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  line-height: 1.4;
}
.site .f-checkbox-label input {
  accent-color: var(--gold-lt);
  width: 14px;
  height: 14px;
  margin-top: 2px;
}
.site .f-checkbox-label a {
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 150, 90, 0.3);
  transition: all 0.3s;
}
.site .f-checkbox-label a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.site .hero-index {
  position: absolute;
  top: calc(var(--nav-h) + 36px);
  right: 52px;
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .45);
  opacity: 0;
  animation: fadeIn .8s .3s forwards;
}
.site .slide-dots {
  position: absolute;
  bottom: 40px;
  left: 52px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.site .sdot {
  width: 20px;
  height: 0px;
  background: rgba(255, 255, 255, .3);
  transition: width .5s, background .5s;
}
.site .sdot.active {
  width: 40px;
  background: var(--gold-lt);
}
/* hero content */
.site .hero-content {
  position: relative;
  z-index: 10;
  will-change: transform, opacity;
}
.site .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #f5f0e8;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1.1s 0.5s forwards cubic-bezier(0.16, 1, .3, 1);
  max-width: 840px;
}
.site .hero-title em {
  font-style: italic;
  color: #D4AF37;
  font-weight: 300;
}
.site .hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 36px;
  gap: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s 0.85s forwards cubic-bezier(0.16, 1, .3, 1);
}
.site .hero-sub {
  font-family: 'DM Sans', Helvetica, sans-serif;
  font-size: 11.5px;
  line-height: 2;
  color: rgba(245, 240, 232, 0.55);
  max-width: 340px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* ─── Hero Eyebrow ─── */
.site .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s 0.2s forwards cubic-bezier(0.16, 1, .3, 1);
}
.site .hero-eyebrow__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: #D4AF37;
  flex-shrink: 0;
}
.site .hero-eyebrow__label {
  font-family: 'DM Sans', Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}
.site .btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 17px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background .3s, transform .3s;
}
.site .btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}
.site .btn-ghost-hero {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  padding: 17px 44px;
  border-radius: 9999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.site .btn-ghost-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
}
@media(max-width:600px) {
  .site .hero {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 60px;
  }

  .site .hero-tag {
    left: 24px;
  }

  .site .hero-index {
    right: 24px;
  }

  .site .slide-dots {
    right: 24px;
  }

  .site .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ΓöÇΓöÇΓöÇ ANIMATIONS ΓöÇΓöÇΓöÇ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* ΓöÇΓöÇΓöÇ REVEAL ΓöÇΓöÇΓöÇ */
.site .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.16, 1, .3, 1),
    transform .85s cubic-bezier(.16, 1, .3, 1);
}
.site .reveal.visible {
  opacity: 1;
  transform: none;
}
/* ΓöÇΓöÇΓöÇ LAYOUT HELPERS ΓöÇΓöÇΓöÇ */
.site .section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}
@media(max-width:600px) {
  .site .section-wrap {
    padding: 0 24px;
  }
}
.site .eyebrow {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(184, 150, 90, 0.05);
  border-radius: 9999px;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}
.site .rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}
/* light-section buttons */
.site .btn-dark {
  background: var(--ink);
  color: var(--off);
  border: none;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: background .3s, transform .3s;
}
.site .btn-dark:hover {
  background: var(--gold);
  transform: translateY(-1px);
}
.site .btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: border-color .3s, color .3s, transform .3s;
}
.site .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
/* ─── STATS ─── */
.site .stats-bar {
  border-bottom: none;
  padding: 64px 0 0;
}
.site .stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.site .stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--line);
}
.site .stat-item:first-child {
  padding-left: 0;
}
.site .stat-item:last-child {
  border-right: none;
}
.site .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.site .stat-num span {
  color: var(--gold);
}
.site .stat-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
/* Investor conversion: highlights 18–24% annual appreciation */
.site .appreciation-callout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 52px 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
/* ─── APPRECIATION CALLOUT ─── */
.site .appreciation-callout__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: linear-gradient(135deg, rgba(184, 150, 90, 0.09) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid rgba(184, 150, 90, 0.22);
  border-radius: 4px;
  padding: 10px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  box-shadow: 0 2px 18px rgba(184, 150, 90, 0.08);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, .3, 1);
}
.site .appreciation-callout__badge:hover {
  box-shadow: 0 6px 32px rgba(184, 150, 90, 0.18);
  transform: translateY(-2px);
}
.site .appreciation-callout__badge sup {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.72;
}
.site .appreciation-callout__text {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
}
.site .appreciation-callout__text strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  margin-bottom: 3px;
}
@media(max-width:700px) {
  .site .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .site .stat-item {
    padding: 28px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .site .stat-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

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

  .site .appreciation-callout {
    padding: 32px 24px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 0;
  }
}
/* ─── PROPERTIES CAROUSEL ─── */
.site .property-section {
  padding: 0;
  background: #0e0d0b;
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
/* Gold seam — intentional, replaces the accidental double-line */
.site .property-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(184, 150, 90, 0.2) 20%,
      rgba(212, 175, 55, 0.5) 50%,
      rgba(184, 150, 90, 0.2) 80%,
      transparent 100%);
  z-index: 2;
  pointer-events: none;
}
/* Radial ambient glow behind cards */
.site .property-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184, 150, 90, 0.045) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 0% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* ─── Section Header ─── */
.site .prop-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 100px 80px 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.site .prop-header .eyebrow {
  background: rgba(184, 150, 90, 0.07);
  border: 1px solid rgba(184, 150, 90, 0.16);
  color: var(--gold-lt);
}
.site .prop-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  max-width: 480px;
  color: rgba(245, 240, 232, 0.92);
}
.site .prop-header h2 em {
  font-style: italic;
  color: var(--gold-lt);
}
.site .prop-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.site .prop-header-right p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.32);
  max-width: 280px;
  line-height: 1.85;
  text-align: right;
}
/* carousel nav */
.site .carousel-nav {
  display: flex;
  gap: 10px;
}
/* Hide Swiper dot bullets — we use the progress bar only */
.site .property-section .swiper-pagination {
  display: none !important;
}
/* nav arrows — dark theme override */
.site .carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.site .carousel-btn svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.45);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s;
}
.site .carousel-btn:hover {
  border-color: var(--gold);
  background: rgba(184, 150, 90, 0.1);
}
.site .carousel-btn:hover svg {
  stroke: var(--gold-lt);
}
/* ─── Swiper / Track ─── */
.site .carousel-outer.swiper {
  margin-top: 64px;
  padding: 16px 80px 52px 80px !important;
  overflow: visible;
  position: relative;
  z-index: 1;
}
/* Progress bar */
.site .swiper-pagination-progressbar {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0 80px 80px;
  border-radius: 1px;
  overflow: hidden;
}
.site .swiper-pagination-progressbar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-lt)) !important;
  transition: width .7s cubic-bezier(.16, 1, .3, 1);
  border-radius: 1px;
}
/* Swiper bullets */
.site .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  width: 5px !important;
  height: 5px !important;
  transition: background .3s, transform .3s !important;
}
.site .swiper-pagination-bullet-active {
  background: var(--gold-lt) !important;
  transform: scale(1.4) !important;
}
/* ─── PROPERTY CARD — Luxury Dark ─── */
.site .prop-card {
  background: rgba(20, 18, 15, 1);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
  transition:
    transform .7s cubic-bezier(.16, 1, .3, 1),
    box-shadow .7s cubic-bezier(.16, 1, .3, 1),
    border-color .4s ease;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 1px 4px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}
.site .swiper-slide.prop-card {
  max-width: 88vw;
}
.site .prop-card:hover {
  transform: translateY(-12px);
  border-color: rgba(184, 150, 90, 0.28);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(184, 150, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
/* ─── Image ─── */
.site .pc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
  background: #1a1815;
}
.site .pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.16, 1, .3, 1), filter 1.2s ease;
  filter: brightness(0.85) saturate(0.85);
}
.site .prop-card:hover .pc-img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1.0);
}
.site .pc-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(12, 10, 8, 0.88) 0%,
      rgba(12, 10, 8, 0.1) 55%,
      transparent 100%);
  opacity: 0;
  transition: opacity .6s ease;
}
.site .prop-card:hover .pc-hover-overlay {
  opacity: 1;
}
/* ─── Card Content ─── */
.site .pc-content {
  padding: 20px 22px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site .pc-top {
  flex: 1;
}
/* Status tag */
.site .pc-tag {
  display: inline-block;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 11px;
}
.site .pc-tag.status-available {
  background: rgba(34, 197, 94, 0.09);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.18);
}
.site .pc-tag.status-sold {
  background: rgba(239, 68, 68, 0.07);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.14);
}
.site .pc-tag.status-muted {
  background: rgba(184, 150, 90, 0.09);
  color: var(--gold-lt);
  border: 1px solid rgba(184, 150, 90, 0.18);
}
.site .pc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.42rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.88);
  margin-bottom: 9px;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
.site .pc-meta-elite {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.site .pc-sep {
  color: var(--gold);
  opacity: 0.3;
  font-size: 0.65rem;
}
.site .pc-desc {
  font-size: 0.79rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.26);
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
  letter-spacing: 0.01em;
}
/* ─── Card Footer ─── */
.site .pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  background: rgba(14, 12, 9, 0.7);
  flex-shrink: 0;
}
.site .pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.86);
  line-height: 1;
}
.site .pc-price small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 4px;
  font-weight: 400;
}
.site .btn-pc-inquire {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, color .4s, transform .3s;
  border-radius: 2px;
}
.site .btn-pc-inquire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.site .btn-pc-inquire span {
  position: relative;
  z-index: 1;
}
.site .btn-pc-inquire:hover {
  border-color: var(--gold);
  color: #0e0d0b;
  transform: translateY(-1px);
}
.site .btn-pc-inquire:hover::before {
  transform: translateX(0);
}
/* ─── Skeleton dark theme ─── */
.site .prop-card--skeleton {
  background: rgba(20, 18, 15, 1);
  border-color: rgba(255, 255, 255, 0.05) !important;
}
.site .prop-card--skeleton .pc-img-wrap {
  background: rgba(255, 255, 255, 0.04);
}
.site .pc-content .skeleton-line {
  height: 13px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.site .pc-content .skeleton-line.short {
  width: 55%;
}
.site .pc-content .skeleton-line.medium {
  width: 78%;
}
@media(max-width:768px) {
  .site .prop-header {
    padding: 80px 40px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .site .prop-header-right {
    align-items: flex-start;
  }

  .site .prop-header-right p {
    text-align: left;
  }

  .site .carousel-outer.swiper {
    padding: 16px 40px 52px 40px !important;
  }

  .site .swiper-pagination-progressbar {
    margin: 0 40px 60px;
  }
}
@media(max-width:600px) {
  .site .prop-header {
    padding: 60px 24px 0;
  }

  .site .carousel-outer.swiper {
    padding: 16px 24px 52px 24px !important;
  }

  .site .swiper-pagination-progressbar {
    margin: 0 24px 60px;
  }

  .site .prop-card {
    max-width: 92vw;
  }
}
/* ─── PROPERTY GRID ─── */
.site .property-grid-section {
  padding: 120px 0;
  background: #fff;
}
.site .grid-header {
  max-width: 800px;
  margin-bottom: 60px;
}
.site .grid-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.site .grid-header p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}
.site .prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1100px) {
  .site .prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .site .prop-grid {
    grid-template-columns: 1fr;
  }

  .site .grid-header h2 {
    font-size: 2.5rem;
  }
}
.site .grid-skeleton {
  aspect-ratio: 4/5;
  background: #f4f4f4;
  border-radius: 20px;
}
/* ─── SKELETON shimmer animation ─── */
.site .prop-card--skeleton .pc-img-wrap::after,
.site .skeleton-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  animation: shimmer 2s infinite;
}
@media(max-width:600px) {
  .site .prop-header {
    padding: 60px 24px 0;
  }
}
/* ─── SOVEREIGN LUXURY ABOUT ─── */
.site .about-section {
  padding: 180px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.site .grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}
.site .section-label-vertical {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 10px;
  letter-spacing: 0.6em;
  color: rgba(212, 175, 55, 0.3);
  white-space: nowrap;
  font-weight: 700;
  z-index: 2;
}
.site .section-wrap-magazine {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 3;
}
.site .about-magazine-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 100px;
  align-items: flex-start;
}
@media(max-width: 1280px) {
  .site .about-magazine-grid {
    gap: 60px;
    grid-template-columns: 1fr 1.2fr 1fr;
  }

  .site .section-wrap-magazine {
    padding: 0 40px;
  }
}
@media(max-width: 1100px) {
  .site .about-magazine-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site .col-prestige {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
  }
}
/* COL 1: Portrait */
.site .portrait-container {
  position: relative;
  width: 100%;
  aspect-ratio: 0.75;
}
.site .agent-photo {
  width: 100%;
  height: 100%;
  background-image: url('../assets/imgs/ap-x9k4bz007.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: sepia(0.2) contrast(1.1) brightness(0.9);
  position: relative;
  z-index: 5;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}
.site .glimmer-border {
  position: absolute;
  inset: -20px;
  border: 0.5px solid rgba(212, 175, 55, 0.2);
  z-index: 1;
  transition: all 1.2s cubic-bezier(.16, 1, .3, 1);
}
.site .glimmer-border.secondary {
  inset: -40px;
  border-color: rgba(212, 175, 55, 0.08);
  transition-delay: 0.1s;
}
.site .portrait-container:hover .glimmer-border {
  inset: -10px;
  border-color: rgba(212, 175, 55, 0.5);
}
/* COL 2: Narrative */
.site .mag-col {
  position: relative;
}
.site .mag-bio-text {
  margin: 3rem 0;
}
.site .mag-bio-lead {
  font-size: 22px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 300;
}
.site .mag-bio-text p:not(.mag-bio-lead) {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  font-weight: 300;
}
.site .manuscript-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 42px;
  color: var(--gold-lt);
  margin: 4rem 0 0.5rem;
  opacity: 0.9;
  letter-spacing: -0.01em;
}
.site .agent-title-mag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}
/* COL 3: Prestige Stats */
.site .prestige-stats-magazine {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.site .mag-stat-item {
  display: flex;
  flex-direction: column;
}
.site .mag-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 300;
}
.site .mag-stat-val span {
  color: var(--gold-lt);
}
.site .mag-stat-lab {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.6);
  font-weight: 700;
}
.site .mag-creds-list {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.site .m-cred {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site .m-cred::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-lt);
  border-radius: 50%;
  opacity: 0.5;
}
.site .mag-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site .btn-mag-primary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 36px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.site .btn-mag-primary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-lt);
  transform: translateY(-4px) scale(1.02);
  color: #fff;
  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.35),
    0 10px 40px rgba(0, 0, 0, 0.3);
}
.site .link-mag-call {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}
.site .link-mag-call:hover {
  color: #fff;
  border-bottom-color: var(--gold-lt);
}
.site .mag-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--gold-lt), transparent);
  margin: 2rem 0;
}
/* ΓöÇΓöÇΓöÇ LOCATION ΓöÇΓöÇΓöÇ */
.site .location-section {
  padding: 100px 0 120px;
  background: var(--off);
  border-bottom: none;
  position: relative;
}
/* Gold seam separating dark About from light Location */
.site .location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(184, 150, 90, 0.18) 20%,
      rgba(212, 175, 55, 0.4) 50%,
      rgba(184, 150, 90, 0.18) 80%,
      transparent 100%);
  pointer-events: none;
}
.site .location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media(max-width:900px) {
  .site .location-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.site .location-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.site .location-text h2 em {
  font-style: italic;
  color: var(--gold);
}
.site .location-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.site .map-frame {
  border: 1px solid var(--line);
  overflow: hidden;
}
.site .map-frame iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
  filter: grayscale(.1);
}
.site .btn-wa-loc {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 150, 90, 0.15);
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  font-weight: 400;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
  margin-top: 8px;
}
.site .btn-wa-loc:hover {
  background: rgba(184, 150, 90, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(184, 150, 90, 0.25);
}
.site .btn-wa-loc svg {
  width: 14px;
  height: 14px;
  fill: #25D366;
  flex-shrink: 0;
}
/* ΓöÇΓöÇΓöÇ FORM ΓöÇΓöÇΓöÇ */
.site .form-section {
  padding: 120px 0 140px;
  background: linear-gradient(180deg, var(--off) 0%, #efe9df 100%);
  position: relative;
}
.site .form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .35;
}
.site .form-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}
.site .form-header {
  margin-bottom: 1rem;
}
.site .form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 18px;
}
.site .form-header h2 em {
  font-style: italic;
  color: var(--gold);
}
.site .form-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
  max-width: 420px;
}
/* ΓöÇΓöÇ form wrapper card ΓöÇΓöÇ */
.site .inquiry-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(184, 150, 90, .18);
  box-shadow: 0 8px 64px rgba(17, 17, 17, .07), 0 2px 12px rgba(184, 150, 90, .06);
  animation: formReveal 1s .3s both cubic-bezier(.16, 1, .3, 1);
}
@keyframes formReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ΓöÇΓöÇ field grid rows ΓöÇΓöÇ */
.site .f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media(max-width:600px) {
  .site .f-row {
    grid-template-columns: 1fr;
  }
}
/* ΓöÇΓöÇ each field ΓöÇΓöÇ */
.site .f-field {
  position: relative;
  border: 1px solid rgba(17, 17, 17, .1);
  margin: -1px 0 0 -1px;
  transition: border-color .35s, background .35s;
  background: transparent;
  overflow: hidden;
}
/* gold shimmer line at bottom on focus */
.site .f-field::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--gold) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
  z-index: 2;
}
.site .f-field:focus-within {
  border-color: rgba(184, 150, 90, .35);
  background: rgba(255, 255, 255, .6);
  z-index: 1;
}
.site .f-field:focus-within::after {
  transform: scaleX(1);
}
.site .f-field label {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, .38);
  pointer-events: none;
  transition: top .28s cubic-bezier(.16, 1, .3, 1), font-size .28s cubic-bezier(.16, 1, .3, 1), color .28s, letter-spacing .28s;
}
.site .f-field input,
.site .f-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 42px 24px 18px;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .02em;
  resize: none;
}
.site .f-field textarea {
  min-height: 148px;
}
.site .f-field input:focus+label,
.site .f-field input:not(:placeholder-shown)+label,
.site .f-field textarea:focus+label,
.site .f-field textarea:not(:placeholder-shown)+label {
  top: 12px;
  font-size: 7px;
  color: var(--gold);
  letter-spacing: .28em;
}
.site .f-field input::placeholder,
.site .f-field textarea::placeholder {
  color: transparent;
}
/* ΓöÇΓöÇ phone hint ΓöÇΓöÇ */
.site .field-hint {
  font-size: 10px;
  color: rgba(17, 17, 17, .36);
  padding: 7px 24px 10px;
  letter-spacing: .06em;
  border-left: 1px solid rgba(17, 17, 17, .1);
  border-right: 1px solid rgba(17, 17, 17, .1);
  border-top: none;
  margin-top: -1px;
  background: rgba(248, 245, 240, .5);
}
/* ΓöÇΓöÇ consent row ΓöÇΓöÇ */
.site .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 11.5px;
  color: rgba(17, 17, 17, .45);
  padding: 22px 24px 0;
  cursor: pointer;
  line-height: 1.7;
  letter-spacing: .02em;
}
.site .consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid rgba(184, 150, 90, .45);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background .2s, border-color .2s;
}
.site .consent-label input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.site .consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: 1.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
/* ΓöÇΓöÇ submit button ΓöÇΓöÇ */
.site .btn-submit {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--off);
  border: none;
  padding: 26px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
  margin-top: 24px;
  transition: color .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.site .btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}
.site .btn-submit span {
  position: relative;
  z-index: 1;
}
.site .btn-submit-arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
  vertical-align: middle;
  margin-bottom: 1px;
}
.site .btn-submit-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.site .btn-submit:hover::before {
  transform: translateX(0);
}
.site .btn-submit:hover .btn-submit-arrow {
  width: 40px;
}
/* ΓöÇΓöÇ form note ΓöÇΓöÇ */
.site .form-note {
  font-size: 10.5px;
  color: rgba(17, 17, 17, .32);
  margin-top: 16px;
  padding: 0 4px;
  text-align: center;
  letter-spacing: .04em;
  line-height: 1.85;
}
.site .form-note a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 150, 90, .3);
  transition: border-color .2s;
}
.site .form-note a:hover {
  border-color: var(--gold);
}
/* ΓöÇΓöÇ form error ΓöÇΓöÇ (override position) */
.site #formErrMsg {
  margin: 0;
  border-left: 2px solid #b43232;
  border-top: none;
}
/* ΓöÇΓöÇ success state ΓöÇΓöÇ */
.site .form-success {
  display: none;
  text-align: center;
  padding: 96px 48px;
  background: #fff;
  border: 1px solid rgba(184, 150, 90, .18);
  box-shadow: 0 8px 64px rgba(17, 17, 17, .06);
}
.site .form-success.show {
  display: block;
}
.site .form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 6px;
  color: var(--gold);
  letter-spacing: -.01em;
}
.site .form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 2.1;
}
/* ─── FOOTER ─── */
.site footer {
  background: #0d0c0a;
  color: var(--off);
  padding: 96px 52px 0;
  position: relative;
  overflow: hidden;
}
/* Subtle gold top border line */
.site footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(184, 150, 90, 0.4) 30%, rgba(212, 175, 55, 0.6) 50%, rgba(184, 150, 90, 0.4) 70%, transparent 100%);
}
/* Very subtle noise/grain */
.site footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.018;
  pointer-events: none;
}
.site .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}
@media(max-width:900px) {
  .site footer {
    padding: 72px 40px 0;
  }

  .site .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .site .footer-brand {
    grid-column: span 2;
  }
}
@media(max-width:600px) {
  .site footer {
    padding: 60px 24px 0;
  }

  .site .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site .footer-brand {
    grid-column: span 1;
  }
}
/* Brand Column */
.site .footer-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
}
.site .footer-logo-img {
  height: 14px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity .3s;
}
.site .footer-logo:hover .footer-logo-img {
  opacity: 1;
}
.site .footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 2;
  max-width: 280px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
/* Social icons */
.site .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.site .footer-social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color .3s, color .3s, background .3s, transform .3s;
}
.site .footer-social-btn svg {
  width: 14px;
  height: 14px;
}
.site .footer-social-btn:hover {
  border-color: rgba(184, 150, 90, 0.5);
  color: var(--gold-lt);
  background: rgba(184, 150, 90, 0.07);
  transform: translateY(-2px);
}
/* Nav & Contact columns */
.site .footer-col {
  padding-top: 6px;
}
.site .footer-col h4 {
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 28px;
  font-weight: 600;
  position: relative;
  padding-bottom: 16px;
}
/* Gold underline on column headers */
.site .footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: rgba(184, 150, 90, 0.4);
}
.site .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site .footer-col li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: color .25s;
  letter-spacing: 0.01em;
  font-weight: 300;
  line-height: 1.4;
}
.site .footer-col li:hover {
  color: rgba(255, 255, 255, 0.85);
}
.site .footer-col li a {
  color: inherit;
  text-decoration: none;
  transition: color .25s;
}
.site .footer-col li a:hover {
  color: var(--gold-lt);
}
/* Bottom bar */
.site .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.site .footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.20);
  letter-spacing: .08em;
  font-weight: 300;
}
/* ΓöÇΓöÇΓöÇ WHATSAPP FLOAT ΓöÇΓöÇΓöÇ */
.site .wa-float {
  position: fixed;
  bottom: 32px;
  left: 52px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 14px;
  z-index: 9000;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
  transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
  white-space: nowrap;
}
.site .wa-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  flex-shrink: 0;
}
.site .wa-text {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.5s cubic-bezier(.16, 1, .3, 1);
}
.site .wa-float:hover {
  width: 180px;
  box-shadow: 0 15px 45px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.3);
  background: #2ae16f;
}
.site .wa-float:hover .wa-text {
  opacity: 1;
  transform: translateX(0);
}
@media(max-width:600px) {
  .site .wa-float {
    left: 24px;
    bottom: 24px;
  }

  .site .wa-float:hover {
    width: 52px;
  }

  .site .wa-text {
    display: none;
  }
}
.site img {
  -webkit-user-drag: none;
  user-select: none;
}
/* Hide reCAPTCHA badge ΓÇö not in use */
.site .grecaptcha-badge {
  visibility: hidden !important;
  display: none !important;
}
/* ─── UNIFIED MOBILE SOURCE OF TRUTH (v16.2 Final Polishing) ─── */
@media (max-width: 768px) {.site {
  /* 1. SMOOTH SCROLLING & HERO VISIBILITY */

  /* 2. THE ADVISORY (AGENT) SECTION */

  /* 3. UTILITIES */
  
  /* Reset Any Conflicting Overflows */
}
  .site .hero {
    height: auto !important;
    min-height: 100dvh !important;
    display: block !important;
    overflow: visible !important; /* Fixes scroll-sticking */
  }

  .site .hero-viewport {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: unset !important;
    padding: calc(var(--nav-h) + 60px) 20px 80px 20px !important;
    gap: 32px !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .site .hero-inquiry-module {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 460px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 32px 24px !important;
    border-radius: 24px !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
    z-index: 9999 !important; /* Ensure it stays above everything */
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  .site .about-section {
    padding: 100px 0 !important;
  }
  .site .about-magazine-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
    align-items: center !important;
  }
  .site .col-portrait {
    order: -1 !important; /* Portrait at Top */
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 32px auto !important;
  }
  .site .portrait-container {
    width: 320px !important;
    height: 420px !important;
    aspect-ratio: unset !important;
    margin: 0 auto !important;
    position: relative !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6) !important;
  }
  .site .agent-photo {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    background-image: url('../assets/imgs/ap-x9k4bz007.webp') !important;
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
  .site .glimmer-border {
    display: none !important;
  }
  
  .site .col-narrative {
    width: 100% !important;
    text-align: left !important;
    padding: 0 10px !important;
  }
  .site .mag-bio-lead {
    font-size: 18px !important;
    line-height: 1.6 !important;
  }
  .site .agent-name {
    font-size: 42px !important;
  }
  .site .wa-float {
    bottom: 20px !important;
    left: 20px !important;
    z-index: 9999 !important;
  }
  .site .section-label-vertical {
    display: none !important;
  }
  .site body.site, .site html {
    overflow: visible !important;
    height: auto !important;
  }
}