/* =====================================================
   KWARLEYZ GROUP — Design System
   Senior Frontend Build · Video + Image Enriched
===================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --navy: #0d1f35;
  --gold: #C9A84C;
  --gl: #e8c97a;
  --white: #fff;
  --off: #f5f4f0;
  --grey: #8a8f9a;
  --body: #4a5568;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease-smooth: cubic-bezier(.16, 1, .3, 1);
  --ease-expo: cubic-bezier(.19, 1, .22, 1);
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--white);
  color: var(--navy);
  font-family: var(--sans);
  overflow-x: hidden
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, backdrop-filter .4s
}

nav.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(0, 0, 0, .07)
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0
}

.logo-box {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  transition: background .25s
}

.logo:hover .logo-box {
  background: rgba(201, 168, 76, .12)
}

.logo-box span {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold)
}

.logo-name {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  transition: color .35s
}

nav.scrolled .logo-name {
  color: rgba(13, 31, 53, .45)
}

.nav-links {
  display: flex;
  align-items: center;
  height: 68px;
  list-style: none;
  gap: 0
}

.ni {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center
}

.ntl {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  padding: 0 1.1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: .28rem;
  white-space: nowrap;
  transition: color .2s;
  position: relative
}

nav.scrolled .ntl {
  color: rgba(13, 31, 53, .55)
}

.ntl:hover,
nav.scrolled .ntl:hover {
  color: var(--gold) !important
}

.ntl.active-page {
  color: var(--gold) !important
}

.chev {
  font-size: .6rem;
  opacity: .38;
  transition: transform .25s
}

.ni:hover .chev {
  transform: rotate(90deg)
}

.dd {
  position: absolute;
  top: 68px;
  left: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
  min-width: 420px;
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s var(--ease-smooth), transform .22s var(--ease-smooth)
}

.ni:hover .dd {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0)
}

.ddi {
  display: flex
}

.ddc {
  padding: 1.8rem 2rem;
  flex: 1;
  border-right: 1px solid rgba(0, 0, 0, .06)
}

.ddc:last-child {
  border-right: none
}

.ddh {
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(201, 168, 76, .2)
}

.ddl {
  display: block;
  font-size: .85rem;
  color: var(--navy);
  text-decoration: none;
  padding: .4rem 0;
  font-family: var(--serif);
  opacity: .78;
  transition: color .2s, opacity .2s
}

.ddl:hover {
  color: var(--gold);
  opacity: 1
}

.ddl-future {
  color: var(--grey);
  opacity: .55;
  display: flex;
  align-items: center;
  gap: .6rem
}

.ddl-future::after {
  content: '· Planned';
  font-family: var(--serif);
  font-style: italic;
  font-size: .72rem;
  letter-spacing: .03em;
  color: var(--gold);
  opacity: .8;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0
}

.nav-cta {
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .48rem 1.4rem;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .25s;
  margin-left: 1.5rem;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy)
}

/* ── HERO ── */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--navy)
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #071528 0%, #0f2540 40%, #152d4a 70%, #071520 100%)
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: .55
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 1;
  opacity: .35
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, .05) 1px, transparent 1px);
  background-size: 90px 90px;
  animation: gmove 22s linear infinite;
  z-index: 2;
  pointer-events: none
}

@keyframes gmove {
  to {
    transform: translateY(90px)
  }
}

.hero-vig {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 21, 40, .1) 0%, rgba(7, 21, 40, .35) 40%, rgba(7, 21, 40, .88) 100%);
  z-index: 2;
  pointer-events: none
}

.hero-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8rem 3.5rem 0;
  gap: 4rem
}

.hero-eyebrow {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.3rem;
  opacity: 0;
  animation: up .7s .2s both
}

.hero-ebar {
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0
}

h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.01em;
  opacity: 0;
  animation: up .9s .35s both
}

h1 em {
  font-style: italic;
  color: var(--gl)
}

.hero-rdesc {
  display: flex;
  align-items: flex-start;
  padding-top: .4rem;
  opacity: 0;
  animation: up .9s .5s both
}

.hero-rdesc p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.88;
  font-weight: 300;
  max-width: 380px;
  margin-left: auto;
  background: rgba(7, 21, 40, .5);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .06)
}

.hero-bottom {
  position: relative;
  z-index: 3;
  padding: 2rem 3.5rem 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  animation: up .9s .65s both
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn {
  border: none;
  padding: .85rem 2.2rem;
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: inline-block
}

.btn-gold {
  background: var(--gold);
  color: var(--navy)
}

.btn-gold:hover {
  background: var(--gl);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .25)
}

.btn-outline {
  background: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .3)
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap
}

.hs-lbl {
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: .3rem
}

.hs-num {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1
}

.hosp-summary {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, .12)
}

.hs-item {
  display: flex;
  flex-direction: column
}

.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: up .8s 1.1s both
}

.hero-scroll span {
  font-size: .48rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28)
}

.hero-scroll-bar {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollbar 2s ease-in-out infinite
}

@keyframes scrollbar {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }
}

/* TICKER */
.ticker {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, .14);
  overflow: hidden;
  padding: .65rem 0;
  position: relative;
  z-index: 2
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
  pointer-events: none
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent)
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent)
}

.tick-inner {
  display: flex;
  white-space: nowrap;
  animation: tscroll 42s linear infinite
}

.ti {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .6);
  padding: 0 2.5rem;
  flex-shrink: 0
}

@keyframes tscroll {
  to {
    transform: translateX(-50%)
  }
}

/* ── SECTIONS ── */
.s {
  padding: 7rem 3.5rem
}

.s-off {
  background: var(--off)
}

.s-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
}

.s-navy h2 {
  color: #ffffff;
}

.s-navy h2 em {
  color: rgba(232, 201, 122, 0.95);
}

.s-navy p {
  color: rgba(255, 255, 255, 0.78);
}

.s-navy .slbl:not(.slbl-gold) {
  color: rgba(201, 168, 76, 0.85);
}

.slbl {
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .9rem
}

.slbl-gold {
  color: var(--gold)
}

h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--navy)
}

h2 em {
  font-style: italic
}

h2.wh {
  color: var(--white)
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-smooth), transform .8s var(--ease-smooth)
}

.rv.on {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .22s
}

.d3 {
  transition-delay: .34s
}

.d4 {
  transition-delay: .46s
}

.rv-l {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .8s var(--ease-smooth), transform .8s var(--ease-smooth)
}

.rv-l.on {
  opacity: 1;
  transform: none
}

.rv-r {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .8s var(--ease-smooth), transform .8s var(--ease-smooth)
}

.rv-r.on {
  opacity: 1;
  transform: none
}

/* ── THESIS ── */
.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.thesis-pull {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  font-weight: 300;
  line-height: 1.48;
  color: var(--navy);
  margin-bottom: 1.8rem
}

.thesis-pull em {
  font-style: italic;
  color: var(--gold)
}

.thesis-body {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.92;
  font-weight: 300
}

.thesis-body p+p {
  margin-top: 1rem
}

/* Thesis visual panel */
.thesis-visual {
  position: relative;
  display: grid;
  gap: 12px
}

.tv-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px
}

.tv-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-smooth)
}

.tv-img-wrap:hover img {
  transform: scale(1.04)
}

.tv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 31, 53, .15) 0%, transparent 50%);
  pointer-events: none
}

.tv-quote {
  padding: 1.8rem 2rem;
  background: var(--off);
  position: relative
}

.tv-quote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 4.5rem;
  color: rgba(201, 168, 76, .15);
  position: absolute;
  top: .2rem;
  left: 1rem;
  line-height: 1
}

.tv-quote-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.6;
  position: relative;
  z-index: 1
}

.tv-quote-author {
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .8rem
}

.tv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  border-radius: 4px;
  overflow: hidden
}

.tv-stat {
  background: var(--white);
  padding: 1.2rem 1rem;
  text-align: center;
  transition: background .3s
}

.tv-stat:hover {
  background: var(--off)
}

.tv-stat-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1
}

.tv-stat-lbl {
  font-size: .5rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: .3rem
}

.tstat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.tstat:first-child {
  border-top: 1px solid rgba(0, 0, 0, .08)
}

.tstat-l {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey)
}

.tstat-n {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1
}

/* ── IMAGE BAND (replaces video panels) ── */
.img-band {
  position: relative;
  height: 82vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end
}

.img-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 8s ease
}

.img-band:hover .img-band-bg {
  transform: scale(1.03)
}

.img-band-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 31, 53, .1) 0%, rgba(13, 31, 53, .65) 50%, rgba(13, 31, 53, .92) 100%);
  z-index: 2
}

.img-band-ov-right {
  background: linear-gradient(to left, rgba(13, 31, 53, .1) 0%, rgba(13, 31, 53, .65) 50%, rgba(13, 31, 53, .92) 100%)
}

.img-band-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 90px 90px;
  z-index: 2;
  pointer-events: none
}

.img-band-c {
  position: relative;
  z-index: 3;
  padding: 4rem 3.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end
}

.img-band-c-right {
  direction: rtl
}

.img-band-c-right>* {
  direction: ltr
}

.img-band-eyebrow {
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .8rem
}

.img-band-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.4rem
}

.img-band-body {
  font-size: .88rem;
  color: rgb(255, 255, 255);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem
}

/* ── VIDEO PANEL (kept for hero only) ── */
.vp {
  position: relative;
  height: 82vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end
}

.vp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1
}

.vp-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center
}

.vp-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 31, 53, .08) 0%, rgba(13, 31, 53, .62) 50%, rgba(13, 31, 53, .9) 100%);
  z-index: 2
}

.vp-ov-left {
  background: linear-gradient(to left, rgba(13, 31, 53, .08) 0%, rgba(13, 31, 53, .62) 50%, rgba(13, 31, 53, .9) 100%)
}

.vp-c {
  position: relative;
  z-index: 3;
  padding: 4rem 3.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end
}

.vp-eyebrow {
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .8rem
}

.vp-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.4rem
}

.vp-body {
  font-size: .88rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem
}

.vp-muted-tag {
  position: absolute;
  bottom: 1.8rem;
  right: 2rem;
  z-index: 4;
  font-size: .48rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  gap: .4rem
}

.vp-muted-tag svg {
  width: 12px;
  height: 12px;
  opacity: .4
}

/* video unmute button */
.vid-unmute {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 5;
  background: rgba(13, 31, 53, .6);
  border: 1px solid rgba(201, 168, 76, .3);
  color: rgba(255, 255, 255, .65);
  font-size: .48rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: .4rem
}

.vid-unmute:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.vid-unmute svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0
}

/* ── PHOTO PANEL (static image) ── */
.pp {
  position: relative;
  height: 82vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.pp-bg {
  position: absolute;
  inset: 0;
  z-index: 1
}

.pp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 6s ease
}

.pp:hover .pp-img {
  transform: scale(1.03)
}

.pp-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 31, 53, .1) 0%, rgba(13, 31, 53, .7) 58%, rgba(13, 31, 53, .88) 100%);
  z-index: 2
}

.pp-c {
  position: relative;
  z-index: 3;
  padding: 4rem 3.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end
}

.pp-eyebrow {
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .8rem
}

.pp-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.4rem
}

.pp-body {
  font-size: .88rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem
}

.btn-ghost {
  background: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: .72rem 1.8rem;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* ── PILLARS ── */
.pillar-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem
}

.pillar-hdr-desc {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.9;
  font-weight: 300;
  max-width: 420px;
  margin-left: auto
}

.pillar-row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 2.5rem 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  position: relative;
  transition: all .25s;
  text-decoration: none;
  cursor: pointer
}

.pillar-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, .07)
}

.pillar-row:hover {
  background: rgba(201, 168, 76, .04);
  padding-left: .8rem
}

.pillar-row::after {
  content: '›';
  position: absolute;
  right: 0;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translateX(-8px)
}

.pillar-row:hover::after {
  opacity: 1;
  transform: none
}

.p-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(0, 0, 0, .08)
}

.p-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy)
}

.p-sub {
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .28rem
}

.p-desc {
  font-size: .78rem;
  color: var(--navy);
  line-height: 1.78
}

/* ── HOSPITALITY ── */
.hosp-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem
}

.hosp-hdr-desc {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.9;
  font-weight: 300;
  margin-left: auto;
  max-width: 420px;
  padding-top: .3rem
}

.prop {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  transition: background .2s
}

.prop:first-child {
  border-top: 1px solid rgba(0, 0, 0, .07)
}

.prop:hover {
  background: rgba(201, 168, 76, .025)
}

.prop-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  color: var(--navy)
}

.prop-award {
  font-size: .62rem;
  color: var(--gold);
  margin-top: .28rem
}

.prop-detail {
  font-size: .76rem;
  color: var(--grey);
  line-height: 1.72
}

.badge {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .2rem 0;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: none;
  background: none;
  font-weight: 500;
  white-space: nowrap
}

.badge-op {
  color: var(--gold)
}

.badge-op::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, .7);
  flex-shrink: 0
}

.badge-pip {
  color: var(--grey);
  opacity: .75
}

.badge-pip::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grey);
  opacity: .45;
  flex-shrink: 0
}

/* ── INDUSTRIAL ── */
.ind-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem
}

.ind-big {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 300;
  color: var(--navy);
  line-height: .88;
  letter-spacing: -.02em
}

.ind-big-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .8rem
}

.ind-body {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.8rem
}

.ind-zones {
  display: grid;
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-bottom: 3.5rem
}

.iz {
  background: var(--white);
  padding: 1.9rem 1.5rem;
  transition: background .3s;
  position: relative;
  overflow: hidden
}

.iz::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-smooth)
}

.iz:hover {
  background: var(--off)
}

.iz:hover::before {
  transform: scaleX(1)
}

.iz-tag {
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem
}

.iz-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .38rem
}

.iz-desc {
  font-size: .7rem;
  color: var(--grey);
  line-height: 1.72;
  margin-bottom: .7rem
}

.iz-partner {
  font-size: .54rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .65
}

.ind-status {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.8rem 2.2rem;
  background: var(--off);
  border: 1px solid rgba(0, 0, 0, .07)
}

.ist {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--body)
}

.ist-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0
}

.dot-g {
  background: #22c55e
}

.dot-y {
  background: #f59e0b
}

/* ── LEISURE ── */
.leisure-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem
}

.leisure-body {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.9;
  font-weight: 300;
  max-width: 420px;
  margin-left: auto;
  padding-top: .3rem
}

.leisure-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-bottom: 3.5rem
}

.lc {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  transition: background .3s, transform .3s;
  position: relative
}

.lc:hover {
  background: var(--off)
}

.lc-icon {
  margin-bottom: 1rem;
  color: var(--gold);
  transition: transform .3s
}

.lc:hover .lc-icon {
  transform: scale(1.1)
}

.lc-icon svg {
  width: 30px;
  height: 30px;
  display: block
}

.lc-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .4rem
}

.lc-desc {
  font-size: .72rem;
  color: var(--grey);
  line-height: 1.75
}

/* ── IMPACT ROW ── */
.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .07)
}

.ic {
  padding: 3rem 2.5rem;
  border-top: 2px solid rgba(255, 255, 255, .08);
  transition: background .3s
}

.ic:hover {
  background: rgba(255, 255, 255, .03)
}

.ic:nth-child(2) {
  border-top-color: var(--gold)
}

.ic-num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem
}

.ic-lbl {
  font-size: .65rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
}

.ic-desc {
  font-size: .78rem;
  color: rgba(255, 255, 255, .75);
  margin-top: .75rem;
  line-height: 1.75
}

/* ── SIGNED PARTNERS ── */
.signed-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07)
}

.sp-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background .3s;
  position: relative;
  overflow: hidden
}

.sp-card:hover {
  background: var(--off)
}

.sp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold)
}

.sp-logo {
  font-size: 1.5rem;
  color: var(--navy);
  opacity: .15;
  margin-bottom: 1rem;
  font-family: var(--serif)
}

.sp-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: .2rem;
  line-height: 1.3
}

.sp-country {
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem
}

.sp-desc {
  font-size: .76rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1rem
}

.sp-tag {
  font-size: .56rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--body);
  background: var(--off);
  padding: .3rem .7rem;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, .07)
}

/* PARTNER ROWS */
.prow {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  min-height: 160px;
  transition: background .2s
}

.prow:first-child {
  border-top: 1px solid rgba(0, 0, 0, .07)
}

.prow:hover {
  background: rgba(201, 168, 76, .025)
}

.prow-img {
  overflow: hidden
}

.prow-body {
  padding: 2.2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.prow-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: .5rem
}

.prow-desc {
  font-size: .78rem;
  color: var(--grey);
  line-height: 1.72;
  max-width: 460px
}

.prow-arr {
  display: flex;
  align-items: center;
  padding: 0 2.2rem;
  color: var(--grey);
  font-size: 1.3rem;
  transition: color .2s, transform .2s
}

.prow:hover .prow-arr {
  color: var(--gold);
  transform: translateX(4px)
}

.pi1 {
  background: linear-gradient(135deg, #1a3a5c, #0d2a40)
}

.pi2 {
  background: linear-gradient(135deg, #1a4a2a, #0d3020)
}

.pi3 {
  background: linear-gradient(135deg, #2a1a4a, #1a0d30)
}

.pimg-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.pimg-ltr {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 168, 76, .3);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(201, 168, 76, .5)
}

/* ── FINANCIALS ── */
.fin-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.5rem
}

.fin-desc {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.9;
  font-weight: 300;
  max-width: 400px;
  margin-left: auto
}

.fin-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-bottom: 2.5rem
}

.fc {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  transition: background .25s;
  position: relative;
  overflow: hidden
}

.fc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-smooth)
}

.fc:hover {
  background: var(--off)
}

.fc:hover::before {
  transform: scaleX(1)
}

.fc-val {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1
}

.fc-lbl {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: .45rem
}

.fin-note {
  font-size: .75rem;
  color: var(--grey);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ── FUTURE VENTURES ── */
.fv-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .28);
  background: rgba(201, 168, 76, .06);
  padding: .3rem .82rem;
  margin-bottom: .9rem
}

.fv-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.fv-pull {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300;
  line-height: 1.52;
  color: var(--navy);
  margin-bottom: 1.4rem;
  max-width: 660px
}

.fv-pull em {
  font-style: italic;
  color: var(--gold)
}

.fv-body {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.9;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 3.5rem
}

.fv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07)
}

.fvc {
  background: var(--white);
  padding: 2.4rem 2rem;
  opacity: .72;
  transition: background .3s, opacity .3s;
  position: relative
}

.fvc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: .35
}

.fvc:hover {
  background: var(--off);
  opacity: 1
}

.fvc-tag {
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
  opacity: .7
}

.fvc-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: .45rem
}

.fvc-desc {
  font-size: .76rem;
  color: var(--grey);
  line-height: 1.78
}

.fvc-status {
  margin-top: 1.4rem;
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .45rem
}

.fvc-status::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite
}

.fv-quote {
  margin-top: 3.5rem;
  padding: 2.4rem 3rem;
  background: var(--off);
}

.fv-qt {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: .8rem
}

.fv-qa {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey)
}

/* ── ESG ── */
.esg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.esg-stats {
  display: flex;
  flex-direction: column
}

.esg-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.esg-stat-lbl {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
}

.esg-stat-val {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 14px rgba(201, 168, 76, 0.25);
}

/* ── AWARDS ── */
.aw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-top: 3.5rem
}

.aw {
  background: var(--white);
  padding: 2.4rem;
  transition: background .25s;
  position: relative;
  overflow: hidden
}

.aw:hover {
  background: var(--off)
}

.aw::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height .45s var(--ease-smooth)
}

.aw:hover::before {
  height: 100%
}

.aw-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: .8rem
}

.aw-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .28rem
}

.aw-org {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45rem
}

.aw-desc {
  font-size: .73rem;
  color: var(--grey);
  line-height: 1.65
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem
}

.ch2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.7rem
}

.ch2 em {
  font-style: italic;
  color: var(--gl)
}

.clinks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2.2rem
}

.clink {
  font-size: .85rem;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .75rem
}

.clink:hover {
  color: var(--gold)
}

.cdot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

.cpara {
  font-size: .84rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.85;
  max-width: 380px
}

.cf {
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.cr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem
}

.ci {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: var(--white);
  padding: .9rem 0;
  font-family: var(--sans);
  font-size: .82rem;
  outline: none;
  transition: border-color .25s;
  width: 100%
}

.ci::placeholder {
  color: rgba(255, 255, 255, .55)
}

.ci:focus {
  border-color: var(--gold)
}

.csel {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .75);
  padding: .9rem 0;
  font-family: var(--sans);
  font-size: .8rem;
  outline: none;
  width: 100%;
  cursor: pointer
}

.csel option {
  background: var(--navy)
}

textarea.ci {
  resize: vertical;
  min-height: 80px
}

.contact-status {
  padding: 1.1rem 1.4rem;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.contact-status.success {
  background: rgba(13, 31, 53, 0.85);
  border: 1px solid var(--gold);
  color: #f5d58a;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.15);
}

.contact-status.error {
  background: rgba(40, 15, 15, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.6);
  color: #fca5a5;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.contact-status.sending {
  background: rgba(13, 31, 53, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

/* ── DEDICATED EXECUTIVE CONTACT PAGE REDESIGN ── */
.contact-page-main {
  background: #071528;
  padding: 5rem 3.5rem 6.5rem;
  color: #ffffff;
  position: relative;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-hq-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 2.2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-hq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.contact-meta-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-meta-item:last-child {
  margin-bottom: 0;
}

.contact-meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-meta-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-meta-val {
  font-size: 0.92rem;
  color: #ffffff !important;
  line-height: 1.5;
}

.contact-meta-val a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-meta-val a:hover {
  color: var(--gold) !important;
}

.contact-desks-title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-desks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-desk-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  transition: all 0.25s ease;
}

.contact-desk-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}

.contact-desk-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #ffffff !important;
  margin-bottom: 0.2rem;
}

.contact-desk-email {
  font-size: 0.72rem;
  color: var(--gold) !important;
  text-decoration: none;
  word-break: break-all;
}

/* Right Side: Form Card */
.contact-form-card {
  background: #091a30;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 14px;
  padding: 2.8rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.1);
  position: relative;
}

.contact-form-title {
  font-family: var(--serif);
  font-size: 2rem;
  color: #ffffff !important;
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.contact-form-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}

.contact-form-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
}

.contact-form-label span.req {
  color: var(--gold) !important;
}

.contact-form-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  padding: 0.8rem 1rem !important;
  font-family: var(--sans) !important;
  font-size: 0.84rem !important;
  outline: none !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.contact-form-input::placeholder {
  color: rgba(255, 255, 255, 0.38) !important;
}

.contact-form-input:focus {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.2) !important;
}

.contact-form-select {
  background: #091a30 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  padding: 0.8rem 1rem !important;
  font-family: var(--sans) !important;
  font-size: 0.84rem !important;
  outline: none !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}

.contact-form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.2) !important;
}

.contact-form-select option {
  background: #091a30 !important;
  color: #ffffff !important;
  padding: 0.5rem !important;
}

.contact-form-textarea {
  min-height: 110px !important;
  resize: vertical !important;
}

.contact-form-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.6rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 6px;
  margin-top: 0.5rem;
}

/* Strategic Location Map Card */
.contact-map-section {
  background: #050e1b;
  padding: 5rem 3.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  color: #ffffff;
}

.contact-map-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-map-visual {
  background: #091a30;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 2.2rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-map-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .contact-page-main,
  .contact-map-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contact-desks-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.8rem 1.4rem;
  }
}

/* ── LUXURY ARCHITECTURAL FOOTER ── */
footer {
  background: #050d18;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--white);
  padding: 5rem 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.7), transparent);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.footer-logo-box {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 4px;
}

.footer-logo-box span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
}

.footer-logo-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
  font-weight: 300;
}

.footer-logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer-mission {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 300;
  max-width: 360px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col-title::after {
  content: '';
  height: 1px;
  width: 20px;
  background: rgba(201, 168, 76, 0.4);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
  font-weight: 300;
}

.footer-links li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-cta-card {
  background: linear-gradient(135deg, rgba(16, 38, 66, 0.75) 0%, rgba(7, 21, 40, 0.9) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-cta-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 300;
}

.footer-cta-card p {
  font-size: 0.76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer-tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

@media(max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media(max-width: 680px) {
  footer {
    padding: 3.5rem 1.5rem 2rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 11rem 3.5rem 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
  z-index: 0
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .55;
  z-index: 0
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 31, 53, .5) 0%, rgba(13, 31, 53, .88) 100%);
  z-index: 1
}

.page-hero-content {
  position: relative;
  z-index: 2
}

.page-hero-eyebrow {
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, #f4e5ba 75%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block
}

.page-hero-title em {
  font-style: italic;
  -webkit-text-fill-color: var(--gl)
}

.page-hero-desc {
  font-size: .92rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.88;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 2.5rem
}

.page-stat-row {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, .18)
}

.page-stat-row>div {
  transition: transform .3s cubic-bezier(.16, 1, .3, 1)
}

.page-stat-row>div:hover {
  transform: translateY(-2px)
}

.page-stat-lbl {
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  margin-bottom: .3rem
}

.page-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 16px rgba(201, 168, 76, .15)
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, .04) 1px, transparent 1px);
  background-size: 90px 90px;
  z-index: 1;
  pointer-events: none
}

/* ── GALLERY GRIDS ── */
.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-bottom: 3.5rem
}

.img-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-bottom: 3.5rem
}

.img-cell {
  overflow: hidden;
  position: relative
}

.img-cell img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease-smooth)
}

.img-cell:hover img {
  transform: scale(1.04)
}

.img-caption {
  padding: .9rem 1rem;
  background: var(--off);
  transition: background .25s
}

.img-cell:hover .img-caption {
  background: #ece9e3
}

.img-caption-title {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: .2rem
}

.img-caption-sub {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold)
}

/* masonry-style featured grid */
.img-grid-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 420px 320px;
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-bottom: 3.5rem
}

.img-cell-tall {
  grid-row: 1/3
}

.img-cell-tall img,
.img-grid-hero .img-cell img {
  height: 100%;
  object-fit: cover;
  display: block;
  width: 100%;
  transition: transform .55s var(--ease-smooth)
}

.img-grid-hero .img-cell:hover img {
  transform: scale(1.04)
}

/* ── VIDEO PREVIEW CARD ── */
.vid-card {
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.vid-card video {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s var(--ease-smooth)
}

.vid-card:hover video {
  transform: scale(1.03)
}

.vid-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 53, .8) 0%, rgba(13, 31, 53, .15) 60%, transparent 100%)
}

.vid-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem
}

.vid-card-label {
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem
}

.vid-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.28
}

.vid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  background: rgba(13, 31, 53, .3);
  transition: all .3s;
  pointer-events: none
}

.vid-card:hover .vid-play {
  border-color: var(--gold);
  background: rgba(201, 168, 76, .15);
  transform: translate(-50%, -50%) scale(1.1)
}

.vid-play svg {
  width: 16px;
  height: 16px;
  fill: white;
  margin-left: 3px
}

/* video section grid */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-bottom: 3.5rem
}

.vid-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, .07);
  margin-bottom: 3.5rem
}

/* ── GLAM STATS ── */
.glam-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, .14);
  margin: 3.5rem 0
}

.gsr {
  padding: 2.5rem 2rem;
  background: var(--navy);
  position: relative
}

.gsr::before {
  content: attr(data-n);
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 168, 76, .06);
  line-height: 1;
  pointer-events: none
}

.gsr-val {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem
}

.gsr-lbl {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
}

.gsr-desc {
  font-size: .78rem;
  color: rgba(255, 255, 255, .75);
  margin-top: .7rem;
  line-height: 1.72
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 610;
  flex-shrink: 0
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transition: transform .3s, opacity .3s
}

nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

nav.open .nav-toggle span:nth-child(2) {
  opacity: 0
}

nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ── TABLET ── */
@media(max-width:1100px) {
  nav {
    padding: 0 2rem
  }

  .s {
    padding: 5.5rem 2rem
  }

  .vp-c,
  .pp-c {
    padding: 3rem 2rem;
    grid-template-columns: 1fr
  }

  .page-hero {
    padding: 9rem 2rem 4rem
  }

  .ind-zones {
    grid-template-columns: repeat(3, 1fr) !important
  }

  .leisure-cards,
  .impact-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .fin-cards {
    grid-template-columns: repeat(3, 1fr)
  }

  .img-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .glam-stat-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .vid-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ── MOBILE ── */
@media(max-width:900px) {
  nav {
    padding: 0 1.4rem;
    height: 64px;
    background: rgba(7, 21, 40, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.16);
  }

  .nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 6px;
    transition: all 0.25s ease;
  }

  .nav-toggle:active {
    transform: scale(0.94);
    background: rgba(201, 168, 76, 0.15);
  }

  .nav-cta {
    display: none
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background: rgba(7, 21, 40, 0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 0 max(3rem, env(safe-area-inset-bottom, 24px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .38s var(--ease-smooth);
    border-top: 1px solid rgba(201, 168, 76, .18);
    z-index: 499
  }

  nav.open .nav-links {
    transform: translateX(0)
  }

  .ni {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
  }

  .ntl,
  nav.scrolled .ntl {
    height: auto;
    padding: 1.15rem 1.8rem;
    font-size: .84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    justify-content: space-between;
    transition: all 0.2s ease;
  }

  .ntl:active {
    background: rgba(201, 168, 76, 0.1);
  }

  .ntl.active-page {
    color: var(--gold) !important;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.12) 0%, transparent 100%) !important;
    padding-left: calc(1.8rem - 3px) !important;
    font-weight: 500 !important;
  }

  .chev {
    font-size: .8rem;
    transition: transform .25s
  }

  .ni.open .chev {
    transform: rotate(90deg)
  }

  .dd {
    position: static;
    min-width: 0;
    box-shadow: none;
    border-top: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(0, 0, 0, .2);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
  }

  .ni.open .dd {
    max-height: 700px
  }

  .ddi {
    flex-direction: column
  }

  .ddc {
    padding: 1rem 1.6rem 1.2rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
  }

  .ddc:last-child {
    border-bottom: none
  }

  .ddh {
    color: var(--gl)
  }

  .ddl {
    color: rgba(255, 255, 255, .72)
  }

  .ddl-future {
    color: rgba(255, 255, 255, .4)
  }

  #hero {
    min-height: 0;
    height: auto;
    padding-top: 60px
  }

  .hero-top {
    position: static;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 3.5rem 1.6rem 0
  }

  .hero-rdesc p {
    margin-left: 0;
    max-width: none
  }

  .hero-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    padding: 2.5rem 1.6rem 3.5rem
  }

  .hero-ctas {
    flex-direction: column
  }

  .btn,
  .nav-cta {
    width: 100%;
    text-align: center
  }

  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap
  }

  .s {
    padding: 4rem 1.6rem
  }

  .thesis-grid,
  .pillar-hdr,
  .hosp-hdr,
  .ind-hdr,
  .leisure-hdr,
  .fin-hdr,
  .esg-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem
  }

  .thesis-visual {
    order: -1
  }

  .pillar-hdr-desc,
  .hosp-hdr-desc,
  .leisure-body,
  .fin-desc {
    margin-left: 0;
    max-width: none
  }

  .vp,
  .pp {
    height: auto;
    min-height: 0
  }

  .vp-c,
  .pp-c {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 5rem 1.6rem 3rem
  }

  .pillar-row {
    grid-template-columns: auto 1fr;
    gap: .8rem 1.2rem;
    padding: 1.6rem 0
  }

  .pillar-row .p-desc {
    grid-column: 1/-1
  }

  .pillar-row::after {
    display: none
  }

  .prop {
    grid-template-columns: 1fr;
    gap: .7rem;
    align-items: start
  }

  .badge {
    justify-self: start
  }

  .ind-big {
    font-size: clamp(4rem, 18vw, 6rem)
  }

  .ind-zones,
  .leisure-cards,
  .impact-row,
  .fin-cards,
  .fv-cards,
  .signed-partners,
  .aw-grid,
  .img-grid-2,
  .img-grid-3,
  .vid-grid,
  .vid-grid-3,
  .glam-stat-row,
  .img-grid-hero {
    grid-template-columns: 1fr !important
  }

  .img-grid-hero {
    grid-template-rows: auto
  }

  .img-cell-tall img {
    height: 280px
  }

  .prow {
    grid-template-columns: 1fr
  }

  .prow-img {
    min-height: 120px
  }

  .prow-body {
    padding: 1.6rem
  }

  .prow-arr {
    display: none
  }

  .cr {
    grid-template-columns: 1fr
  }

  footer {
    padding: 1.6rem;
    flex-direction: column;
    align-items: flex-start
  }

  .page-hero {
    padding: 7rem 1.6rem 3rem;
    min-height: 0
  }

  .page-stat-row {
    gap: 2rem
  }
}

@media(max-width:480px) {
  .hero-stats {
    gap: 1.4rem
  }

  .hs-num {
    font-size: 1.7rem
  }

  .ti {
    padding: 0 1.2rem
  }

  .s {
    padding: 3.2rem 1.2rem
  }

  .gsr-val {
    font-size: 2.2rem
  }
}

/* ── LUXURY SENIOR DEV POLISH ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.35);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Interactive modal for blueprints & plans */
.kg-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 28, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.kg-modal.active {
  display: flex;
  animation: modalFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.kg-modal-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.kg-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  z-index: 10;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s;
}

.kg-modal-close:hover {
  background: var(--gold);
  color: var(--navy);
}

.kg-modal-body {
  overflow: auto;
  padding: 1rem;
  text-align: center;
}

.kg-modal-body img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  object-fit: contain;
}

.kg-modal-title {
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── HERO PROPERTY SHOWCASE MODAL ── */
.hero-hotel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 11, 22, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-hotel-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-hotel-modal-window {
  position: relative;
  max-width: 980px;
  width: 100%;
  max-height: 90vh;
  background: radial-gradient(circle at 50% 10%, rgba(13, 31, 53, 0.98) 0%, rgba(7, 21, 40, 0.99) 100%);
  border: 1px solid rgba(201, 168, 76, 0.38);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.85), 0 0 45px rgba(201, 168, 76, 0.18);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: scale(0.96) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-hotel-modal-overlay.active .hero-hotel-modal-window {
  transform: scale(1) translateY(0);
}

.hhm-header {
  padding: 1.8rem 2.2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.hhm-pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5d58a;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 4px;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.4rem;
}

.hhm-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
}

.hhm-loc {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

.hhm-close {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.hhm-close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}

.hhm-body {
  padding: 1.6rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hhm-stage {
  position: relative;
  width: 100%;
  height: clamp(300px, 44vw, 440px);
  border-radius: 10px;
  overflow: hidden;
  background: #040d1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6);
}

.hhm-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.hhm-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 11, 22, 0.9) 100%);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.hhm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(7, 21, 40, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #f5d58a;
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 5;
}

.hhm-arrow:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
  color: #ffffff;
}

.hhm-prev {
  left: 14px;
}

.hhm-next {
  right: 14px;
}

.hhm-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.hhm-thumb {
  width: 100px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: #061120;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.25s ease;
  position: relative;
}

.hhm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hhm-thumb:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.hhm-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

.hhm-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.hhm-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-weight: 300;
}

.hhm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
}

.hhm-stat-val {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1.1;
}

.hhm-stat-lbl {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.3rem;
}

.hhm-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hhm-header {
    padding: 1.4rem 1.4rem 1rem;
  }

  .hhm-body {
    padding: 1.2rem 1.4rem 1.6rem;
  }

  .hhm-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hhm-stage {
    height: 260px;
  }

  .hhm-thumb {
    width: 75px;
    height: 50px;
  }
}

/* Interactive zoom trigger cursor */
.zoomable {
  cursor: zoom-in;
}

.zoomable::after {
  content: '🔍 Expand Blueprint';
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(7, 21, 40, 0.75);
  backdrop-filter: blur(4px);
  color: var(--gold);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.zoomable:hover::after {
  opacity: 1;
}

/* ── IMMERSIVE CROSSFADE CAROUSEL ── */
.kc {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  background: #071528
}

.kc-full {
  height: 100vh;
  min-height: 600px
}

.kc-slides {
  position: relative;
  width: 100%;
  height: 100%
}

.kc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.2s cubic-bezier(.4, 0, .2, 1);
  z-index: 1
}

.kc-slide.active {
  opacity: 1;
  z-index: 2
}

.kc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 7s cubic-bezier(.25, .46, .45, .94)
}

.kc-slide.active img {
  transform: scale(1)
}

.kc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 40, .82) 0%, rgba(7, 21, 40, .18) 55%, rgba(7, 21, 40, .04) 100%);
  z-index: 3;
  pointer-events: none
}

.kc-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.4rem 2.8rem;
  z-index: 4
}

.kc-cap-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: .35rem
}

.kc-cap-sub {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .8)
}

.kc-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  gap: .55rem;
  align-items: center
}

.kc-dot {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, .28);
  cursor: pointer;
  transition: all .4s;
  border: none;
  padding: 0
}

.kc-dot.active {
  background: var(--gold);
  width: 36px
}

.kc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 6;
  transform-origin: left;
  animation: none
}

.kc-progress.running {
  animation: kcprog 5s linear forwards
}

/* ── DIVISION 01 ARCHITECTURAL STAGE ── */
.hosp-stage-container {
  max-width: 1240px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

.hosp-stage-chassis {
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(13, 31, 53, 0.95) 0%, rgba(7, 21, 40, 0.98) 100%);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 35px rgba(201, 168, 76, 0.1);
}

.hosp-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem 1rem;
}

.hosp-stage-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
}

.hosp-stage-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.hosp-stage-counter {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.hosp-kc {
  position: relative;
  width: 100%;
  height: clamp(380px, 46vw, 520px);
  aspect-ratio: 16 / 9;
  max-height: 520px;
  min-height: 380px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.hosp-kc .kc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hosp-kc .kc-ov {
  background: linear-gradient(180deg,
      rgba(7, 21, 40, 0.12) 0%,
      rgba(7, 21, 40, 0.35) 50%,
      rgba(5, 14, 26, 0.92) 100%);
}

.hosp-kc .kc-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2.8rem;
  z-index: 4;
}

.kc-cap-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5d58a;
  background: rgba(7, 21, 40, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

/* Interactive Property Selector Strip */
.hosp-selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 1rem;
}

.hosp-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hosp-tab:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.35);
}

.hosp-tab.active {
  background: rgba(201, 168, 76, 0.14);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(201, 168, 76, 0.1);
}

.ht-num {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  transition: color 0.3s ease;
}

.hosp-tab.active .ht-num {
  color: var(--gold);
}

.ht-name {
  font-family: var(--serif);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.hosp-tab.active .ht-name {
  color: #ffffff;
  font-weight: 500;
}

@media (max-width: 992px) {
  .hosp-selector {
    grid-template-columns: repeat(3, 1fr);
  }

  .hosp-kc {
    aspect-ratio: 16 / 10;
    max-height: 440px;
  }

  .hosp-kc .kc-cap {
    padding: 1.8rem 1.6rem;
  }
}

@media (max-width: 600px) {
  .hosp-stage-container {
    padding: 0 1rem;
  }

  .hosp-stage-chassis {
    padding: 0.8rem;
  }

  .hosp-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .hosp-tab {
    padding: 0.65rem 0.75rem;
  }

  .hosp-kc {
    aspect-ratio: 4 / 3;
    min-height: 300px;
    max-height: 360px;
  }

  .hosp-kc .kc-cap {
    padding: 1.2rem 1.1rem;
  }
}

/* ── ROTATING TEXT CAROUSEL ── */
.rot-carousel {
  position: relative;
  height: 180px;
  overflow: hidden
}

.rot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.rot-slide.active {
  opacity: 1
}

.rot-slide p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.9;
  font-weight: 300;
  max-width: 520px
}

.rot-dots {
  display: flex;
  gap: .5rem;
  margin-top: 1rem
}

.rot-dot {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all .4s
}

.rot-dot.active {
  background: var(--gold);
  width: 40px
}

/* ── EXQUISITE ARCHITECTURAL MASONRY GALLERY ── */
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 2rem;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  background: rgba(13, 31, 53, 0.9);
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  aspect-ratio: 16 / 10;
  max-height: 275px;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease;
  filter: brightness(0.95) contrast(1.04);
}

.masonry-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(201, 168, 76, 0.22);
}

.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.02) contrast(1.06);
}

/* Framed wide / hero variants without vertical overflow */
.masonry-wide {
  grid-column: span 2;
  aspect-ratio: 32 / 10;
  max-height: 275px;
}

.masonry-hero {
  grid-column: span 2;
  aspect-ratio: 32 / 10;
  max-height: 275px;
}

.masonry-tall {
  aspect-ratio: 16 / 10;
  max-height: 275px;
}

/* Shimmer light-glare sweep on hover */
.masonry-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      transparent 35%,
      rgba(255, 255, 255, 0.16) 48%,
      rgba(201, 168, 76, 0.28) 52%,
      transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  pointer-events: none;
}

.masonry-item:hover::before {
  transform: translateX(120%);
}

/* Floating luxury inspect pill */
.masonry-item::after {
  content: '⤢ Enlarge';
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(7, 21, 40, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: #f5d58a;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
  pointer-events: none;
}

.masonry-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Permanent luxury glass caption bar with high-contrast text */
.masonry-caption {
  position: relative;
  width: 100%;
  padding: 1rem 1.25rem 0.9rem;
  background: linear-gradient(180deg,
      rgba(4, 11, 22, 0) 0%,
      rgba(4, 11, 22, 0.75) 24%,
      rgba(4, 11, 22, 0.95) 75%,
      rgba(2, 7, 14, 0.99) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 168, 76, 0.24);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.masonry-caption::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.4rem;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.4);
}

.masonry-item:hover .masonry-caption::before {
  width: 38px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.masonry-item:hover .masonry-caption {
  background: linear-gradient(180deg,
      rgba(4, 11, 22, 0.08) 0%,
      rgba(4, 11, 22, 0.88) 25%,
      rgba(3, 8, 16, 0.99) 100%);
  border-top-color: rgba(201, 168, 76, 0.55);
}

.masonry-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 2px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.015em;
}

.masonry-sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5d58a;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95);
}

@media (max-width: 1024px) {
  .masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .masonry-item {
    aspect-ratio: 16 / 10.5;
    max-height: 260px;
    min-height: 190px;
  }

  .masonry-wide,
  .masonry-hero {
    grid-column: span 2;
    aspect-ratio: 32 / 10.5;
    max-height: 260px;
  }
}

@media (max-width: 640px) {
  .masonry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .masonry-item {
    aspect-ratio: 16 / 10.5;
    max-height: 240px;
    min-height: 180px;
  }

  .masonry-wide,
  .masonry-hero {
    grid-column: span 1;
    aspect-ratio: 16 / 10.5;
    max-height: 240px;
  }

  .masonry-caption {
    padding: 0.85rem 1rem;
  }

  .masonry-title {
    font-size: 0.98rem;
  }
}

/* ── INTERACTIVE ORB / GLOBE ── */
.interactive-orb {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: crosshair
}

.orb-globe {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, rgba(201, 168, 76, .08) 0%, rgba(13, 31, 53, .6) 50%, rgba(7, 21, 40, .9) 100%);
  border: 1px solid rgba(201, 168, 76, .15);
  box-shadow: 0 0 60px rgba(201, 168, 76, .08), inset 0 0 40px rgba(201, 168, 76, .05);
  transition: transform .8s cubic-bezier(.25, .46, .45, .94)
}

.orb-globe::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, .1);
  animation: orbSpin 20s linear infinite
}

.orb-globe::after {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .08);
  transform: rotateX(60deg)
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .1);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .8s cubic-bezier(.25, .46, .45, .94);
  pointer-events: none
}

.orb-ring.active {
  border-color: rgba(201, 168, 76, .35)
}

.orb-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
  pointer-events: none
}

.orb-dot.active {
  opacity: 1;
  box-shadow: 0 0 8px rgba(201, 168, 76, .6)
}

.orb-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .15) 0%, transparent 70%);
  pointer-events: none;
  transition: transform .3s;
  opacity: 0
}

.orb-glow.active {
  opacity: 1
}

.orb-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, .2), transparent);
  transform-origin: left center;
  transition: all .6s;
  pointer-events: none;
  opacity: 0
}

.orb-line.active {
  opacity: 1
}

@keyframes orbSpin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.interactive-orb-light .orb-globe {
  border-color: rgba(201, 168, 76, .12)
}

.interactive-orb-light .orb-ring {
  border-color: rgba(201, 168, 76, .08)
}

/* ── HERO MUTE BUTTON ── */
.hero-mute-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .45rem;
  background: rgba(7, 21, 40, .45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .45rem 1rem;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .25s
}

.hero-mute-btn:hover {
  background: rgba(7, 21, 40, .7);
  color: var(--white);
  border-color: rgba(201, 168, 76, .4)
}

.hero-mute-btn svg {
  flex-shrink: 0
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .35s
}

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

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  transform: scale(.92);
  transition: transform .4s cubic-bezier(.25, .46, .45, .94), opacity .2s
}

.lightbox.open .lightbox-img {
  transform: scale(1)
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-size: 1.2rem
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, .18)
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s
}

.lightbox-nav:hover {
  background: rgba(201, 168, 76, .25);
  border-color: rgba(201, 168, 76, .4)
}

.lightbox-nav svg {
  width: 20px;
  height: 20px
}

.lightbox-prev {
  left: -64px
}

.lightbox-next {
  right: -64px
}

.lightbox-caption {
  position: absolute;
  bottom: -48px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: .08em
}

.lightbox-caption strong {
  color: var(--white);
  font-weight: 400
}

.lightbox-counter {
  position: absolute;
  top: -48px;
  left: 0;
  color: rgba(255, 255, 255, .35);
  font-size: .7rem;
  letter-spacing: .1em
}

@media(max-width:900px) {
  .lightbox-prev {
    left: 8px
  }

  .lightbox-next {
    right: 8px
  }

  .lightbox-nav {
    width: 40px;
    height: 40px
  }
}

.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  backdrop-filter: blur(8px)
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold)
}

.scroll-top svg {
  width: 18px;
  height: 18px
}

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999
}

.chat-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 168, 76, .3);
  transition: all .3s
}

.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(201, 168, 76, .45)
}

.chat-toggle.active {
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .3)
}

.chat-toggle svg {
  width: 18px;
  height: 18px
}

.chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 360px;
  height: 480px;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s
}

.chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.chat-header {
  padding: 1rem 1.2rem;
  background: rgba(7, 21, 40, .8);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: .7rem
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .05em
}

.chat-name {
  font-size: .78rem;
  color: var(--white);
  font-weight: 500
}

.chat-status {
  font-size: .58rem;
  color: rgba(34, 197, 94, .8);
  margin-top: 1px
}

.chat-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .4);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 .2rem;
  transition: color .2s
}

.chat-close:hover {
  color: var(--white)
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.chat-msg {
  max-width: 80%;
  padding: .65rem 1rem;
  border-radius: 12px;
  font-size: .78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .06);
  align-self: flex-start;
  border-bottom-left-radius: 2px
}

.chat-msg.user {
  background: rgba(201, 168, 76, .15);
  color: var(--white);
  align-self: flex-end;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 2px
}

.chat-msg a {
  color: var(--gold);
  text-decoration: underline;
  word-break: break-word;
}

.chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  border-bottom-left-radius: 2px;
  align-self: flex-start;
}

.chat-typing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  animation: chatBounce 1.2s infinite ease-in-out;
}

.chat-typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.chat-typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chatBounce {

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

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.chat-input-area {
  padding: .7rem;
  border-top: 1px solid rgba(201, 168, 76, .1);
  display: flex;
  gap: .5rem
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: .55rem .8rem;
  color: var(--white);
  font-size: .78rem;
  outline: none;
  transition: border-color .2s
}

.chat-input:focus {
  border-color: rgba(201, 168, 76, .3)
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, .25)
}

.chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0
}

.chat-send:hover {
  transform: scale(1.08)
}

.chat-send svg {
  width: 14px;
  height: 14px
}

@media(max-width:900px) {
  .chat-window {
    width: 300px;
    height: 400px
  }

  .chat-widget {
    right: 1rem;
    bottom: 1rem
  }

  .scroll-top {
    right: 1rem;
    bottom: 4.5rem
  }
}

@keyframes kcprog {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ── PREMIUM POLISH ── */

/* Section dividers */
.s+.s:not(.s-off):not(.s-navy) {
  border-top: 1px solid rgba(201, 168, 76, .08)
}

/* Pillar row gold accent */
.pillar-row {
  transition: background .3s, border-color .3s, padding-left .3s
}

.pillar-row:hover {
  border-left-color: var(--gold)
}

/* Property row accent */
.prop {
  transition: background .3s, border-color .3s
}

.prop:hover {
  border-left-color: var(--gold);
  background: rgba(201, 168, 76, .025)
}

/* Financial card top bar */
.fc {
  border-top: 2px solid transparent;
  transition: border-color .3s
}

.fc:hover {
  border-top-color: var(--gold)
}

/* Partner card lift */
.sp-card {
  transition: transform .3s, box-shadow .3s
}

.sp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .06)
}

/* Button shine */
.btn-gold {
  position: relative;
  overflow: hidden
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  transition: left .5s
}

.btn-gold:hover::after {
  left: 100%
}

/* Section label gold dash */
.slbl::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 1px;
  background: var(--gold);
  margin-right: .6rem;
  vertical-align: middle
}

/* Selection color */
::selection {
  background: rgba(201, 168, 76, .2);
  color: var(--navy)
}

/* Focus styles */
a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px
}

/* Font smoothing */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

/* Lazy image fade */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity .4s
}

img[loading="lazy"].loaded {
  opacity: 1
}

/* Stat number shadow */
.hs-num,
.tstat-n,
.ic-num,
.fc-val {
  text-shadow: 0 1px 2px rgba(0, 0, 0, .04)
}

/* Footer gradient */
footer {
  background: linear-gradient(180deg, #07101c 0%, #050c16 100%)
}

/* Carousel caption gradient */
.kc-cap {
  background: linear-gradient(to top, rgba(7, 21, 40, .85) 0%, rgba(7, 21, 40, .3) 70%, transparent 100%)
}

@media(max-width:900px) {
  .kc {
    height: 340px
  }

  .kc-full {
    height: 70vh;
    min-height: 400px
  }

  .kc-cap {
    padding: 1.6rem
  }

  .kc-cap-title {
    font-size: 1.1rem
  }
}

/* ── ACTIVE NAV HIGHLIGHT ── */
.ntl.active-page {
  color: var(--gold) !important;
  position: relative;
}

.ntl.active-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--gold);
}

/* =====================================================
   STICKY SCROLL CANVAS HERO & 3-HOTEL CAROUSEL
   ===================================================== */
#hero-scroll-container {
  position: relative;
  width: 100%;
  height: 450vh;
  background: var(--navy);
  contain: paint;
}

#hero-sticky-stage {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #071528;
  z-index: 10;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.hero-canvas-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(7, 21, 40, 0.1) 0%, rgba(7, 21, 40, 0.55) 75%, rgba(7, 21, 40, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-canvas-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 3;
  pointer-events: none;
}

/* ── STORY PANELS (Scroll Overlays) ── */
.hero-story-panel {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6.5rem 4rem 3.5rem;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(.16, 1, .3, 1), transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

/* Panel 1: Brand Hero */
.hero-panel-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: auto;
  margin-bottom: auto;
  pointer-events: auto;
}

.hero-gold-glow-title {
  background: linear-gradient(135deg, #ffffff 30%, #f4e5ba 70%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.2vw, 6.5rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 35px rgba(201, 168, 76, 0.22);
}

.hero-gold-glow-title em {
  font-style: italic;
  -webkit-text-fill-color: var(--gl);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-ebar {
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-lead-box {
  background: rgba(14, 33, 57, 0.7);
  color: white;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 2.2rem 2.4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-lead-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 1.8rem;
}

.hero-btn-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Panel Footer Affordance */
.hero-panel-footer,
.hero-panel-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  pointer-events: auto;
}

.hero-stats-strip {
  display: flex;
  gap: 3.5rem;
}

.h-stat-n {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.h-stat-l {
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Architectural Scroll Affordance (Replacing AI Pill) */
.hero-scroll-affordance {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.hsa-line-track {
  width: 1px;
  height: 38px;
  background: rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.hsa-line-bead {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 12px;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: hsaSlide 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes hsaSlide {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(350%);
    opacity: 0;
  }
}

.hsa-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
}

.hsa-index {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
}

/* ── PANEL 2: INTERACTIVE 3-HOTEL CAROUSEL ── */
.hotel-showcase-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  pointer-events: auto;
}

.hotel-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

/* Architectural Underline Tabs (Replacing AI Pill Capsules) */
.hotel-nav-tabs,
.hotel-nav-pills {
  display: flex;
  gap: 2rem;
}

.hotel-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.4rem 0.2rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: -1.3rem;
}

.hotel-tab-btn:hover {
  color: var(--gold);
}

.hotel-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hotel-stage-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

/* 3D Cutout Stage & Spatial Depth */
.hotel-display-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 490px;
  perspective: 1200px;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* 3D Floor Pedestal & Grounding Atmospheric Shadow Disc */
.hotel-pedestal-disc {
  position: absolute;
  bottom: 20px;
  width: 380px;
  height: 95px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.32) 0%, rgba(201, 168, 76, 0.12) 35%, rgba(4, 11, 22, 0.85) 65%, transparent 85%);
  filter: blur(14px);
  transform: rotateX(75deg) translateZ(-35px);
  pointer-events: none;
  transition: opacity 0.4s ease;
  will-change: transform;
}

.hotel-halo-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.24) 0%, rgba(201, 168, 76, 0.06) 45%, transparent 72%);
  filter: blur(36px);
  pointer-events: none;
  transform: translateZ(-80px);
  will-change: transform;
}

.hotel-cutout-img {
  max-width: 92%;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.78)) drop-shadow(0 0 30px rgba(201, 168, 76, 0.16));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, opacity 0.35s ease;
  will-change: transform, filter;
  transform: scale(1);
}

.hotel-display-stage:hover .hotel-cutout-img {
  transform: scale(1.022) translateY(-4px);
  filter: drop-shadow(0 38px 55px rgba(0, 0, 0, 0.84)) drop-shadow(0 0 42px rgba(201, 168, 76, 0.28));
}

.hotel-display-stage:hover .hotel-halo-glow {
  opacity: 0.95;
  transform: translateZ(-80px) scale(1.06);
}

.hotel-display-stage:hover .hotel-pedestal-disc {
  opacity: 0.85;
  transform: rotateX(75deg) translateZ(-35px) scale(1.04);
}

/* Glassmorphism Luxury Specs Card */
.hotel-info-card {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 38, 66, 0.82) 0%, rgba(7, 21, 40, 0.92) 100%);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(201, 168, 76, 0.55);
  border-left: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  padding: 2.6rem 2.8rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 0 35px rgba(201, 168, 76, 0.05);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.hotel-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.8), transparent);
  pointer-events: none;
}

.hotel-info-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 0 45px rgba(201, 168, 76, 0.08);
}

/* Architectural Category Marker (Replacing AI Pill Badge) */
.hotel-category-tag,
.hotel-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hotel-category-tag::before,
.hotel-badge-tag::before {
  content: '';
  width: 10px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.hotel-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.hotel-loc {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.2rem;
}

.hotel-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 2rem;
}

.h-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.16);
  border-bottom: 1px solid rgba(201, 168, 76, 0.16);
  margin-bottom: 2rem;
}

.h-stat-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.h-stat-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.h-stat-num {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.h-stat-lbl {
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hotel-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel-nav-arrows {
  display: flex;
  gap: 0.6rem;
}

.hotel-arrow-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.28);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hotel-arrow-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── PANEL 3: SCALE & IMPACT ── */
.scale-showcase-container {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  pointer-events: auto;
}

.scale-showcase-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.scale-card {
  background: rgba(13, 31, 53, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.scale-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.scale-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.scale-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.scale-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.scale-sub {
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* ── RESPONSIVE ADAPTATIONS ── */
@media (max-width: 1100px) {
  .hero-panel-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hotel-stage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hotel-display-stage {
    height: 320px;
  }

  .hotel-cutout-img {
    max-height: 38vh;
  }

  .scale-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-story-panel {
    padding: 5.5rem 1.6rem 2.5rem;
  }

  .hero-panel-footer,
  .hero-panel-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
  }

  .hotel-showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hotel-nav-tabs,
  .hotel-nav-pills {
    width: 100%;
    overflow-x: auto;
    gap: 1.2rem;
  }

  .hotel-tab-btn {
    padding: 0.4rem 0.2rem;
    font-size: 0.54rem;
    white-space: nowrap;
    margin-bottom: -1rem;
  }

  .hotel-info-card {
    padding: 1.6rem;
  }

  .scale-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-strip {
    gap: 1.8rem;
  }
}

/* ── LENIS SMOOTH SCROLL INTEGRATION ── */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ── DIVISION 06: ANTHILL PARALLAX SHOWCASE ── */
.anthill-parallax-wrap {
  position: relative;
  width: 100%;
  height: clamp(500px, 62vh, 680px);
  overflow: hidden;
  margin: 3.5rem 0 3.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  background: #061220;
}

.anthill-parallax-img-container {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  will-change: transform;
}

.anthill-parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.92) contrast(1.05);
  transition: filter 0.4s ease;
}

.anthill-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 40, 0.6) 0%, rgba(7, 21, 40, 0.15) 45%, rgba(7, 21, 40, 0.78) 100%);
  pointer-events: none;
}

.anthill-parallax-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  pointer-events: none;
  z-index: 2;
}

.anthill-coord-tag {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(7, 21, 40, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
}

.anthill-floating-card {
  max-width: 540px;
  background: linear-gradient(135deg, rgba(13, 31, 53, 0.88) 0%, rgba(7, 21, 40, 0.95) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  pointer-events: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.anthill-floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.anthill-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.anthill-card-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.anthill-card-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.anthill-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.anthill-pill {
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

@media(max-width: 768px) {
  .anthill-parallax-wrap {
    height: 480px;
  }

  .anthill-floating-card {
    padding: 1.5rem;
    max-width: 100%;
  }

  .anthill-coord-tag {
    display: none;
  }
}

/* ── TECHNOLOGY SHOWCASE SECTION (SPLIT LAYOUT) ── */
.tech-split-section {
  background: #071528;
  padding: 5.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.tech-split-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 440px;
  gap: 4rem;
  align-items: center;
}

.tech-split-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.95rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 999px;
  margin-bottom: 1rem;
  width: fit-content;
}

.tech-brand-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.tech-brand-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.tech-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.tech-eyebrow::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.tech-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}

.tech-heading em {
  font-style: italic;
  color: rgba(232, 201, 122, 0.95);
}

.tech-lead {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.tech-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0.2rem 0 0.8rem;
}

.tech-feature-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.tech-feature-item:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateX(4px);
}

.tech-feat-icon {
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-feat-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.tech-feat-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Compact, Razor-Sharp Device Mockup Frame */
.tech-device-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-device-frame {
  width: 100%;
  max-width: 440px;
  background: #091a30;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 35px rgba(201, 168, 76, 0.12);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.tech-device-bar {
  background: rgba(4, 13, 24, 0.95);
  padding: 0.65rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-dots {
  display: flex;
  gap: 5px;
}

.tech-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tech-dot-red {
  background: #ff5f56;
}

.tech-dot-yellow {
  background: #ffbd2e;
}

.tech-dot-green {
  background: #27c93f;
}

.tech-url-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 0.22rem 0.65rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.tech-video-holder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #030a14;
  overflow: hidden;
}

.tech-device-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tech-video-holder::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 30px rgba(7, 21, 40, 0.5);
  pointer-events: none;
}

.tech-live-tag {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(7, 21, 40, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.tech-pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #27c93f;
  box-shadow: 0 0 6px #27c93f;
  animation: techPulse 1.8s infinite ease-in-out;
}

@keyframes techPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@media(max-width: 992px) {
  .tech-split-section {
    padding: 4.5rem 1.8rem;
  }

  .tech-split-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tech-device-frame {
    max-width: 440px;
  }
}

@media(max-width: 500px) {
  .tech-device-frame {
    max-width: 100%;
  }
}

/* ── COMPREHENSIVE SMALL-DEVICE MOBILE POLISH (320px - 768px) ── */
.nav-mobile-cta-item {
  display: none;
}

@media (max-width: 900px) {
  .nav-mobile-cta-item {
    display: block !important;
    padding: 1.2rem 1.6rem 0.8rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    margin-top: 0.5rem;
  }

  /* Prevent iOS Safari zooming in on input fields */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Chat window responsive sizing */
  .chat-window {
    width: calc(100vw - 2rem) !important;
    max-width: 340px !important;
    height: clamp(380px, 68vh, 480px) !important;
    right: 1rem !important;
    bottom: 5.2rem !important;
  }

  .chat-widget {
    right: 1rem !important;
    bottom: 1rem !important;
  }

  .scroll-top {
    right: 1rem !important;
    bottom: 4.8rem !important;
    width: 42px !important;
    height: 42px !important;
  }
}

@media (max-width: 600px) {

  /* Logo breathing room */
  .logo {
    gap: 0.75rem;
  }

  .logo-box {
    width: 36px;
    height: 36px;
  }

  .logo-name {
    font-size: 1.05rem;
  }

  .logo-sub {
    font-size: 0.45rem;
  }

  /* Global Section & Hero Spacing on Mobile */
  .s {
    padding: 3.5rem 1.25rem !important;
  }

  .page-hero {
    padding: 7rem 1.25rem 3rem !important;
  }

  .page-hero-title {
    font-size: clamp(2rem, 8.5vw, 3rem) !important;
  }

  .page-hero-desc {
    font-size: 0.84rem !important;
    line-height: 1.75 !important;
  }

  /* Headings on mobile */
  h2 {
    font-size: clamp(2rem, 7.5vw, 2.8rem) !important;
  }

  /* Ticker touch overflow */
  .ticker {
    height: 42px !important;
  }

  .ti {
    font-size: 0.62rem !important;
  }

  /* Hero Sticky Stage on phones */
  #hero-sticky-stage {
    min-height: 100dvh;
    height: 100dvh;
  }

  .hero-story-panel {
    padding: 4.8rem 1.2rem 1.8rem !important;
  }

  .hero-gold-glow-title {
    font-size: clamp(2.2rem, 9vw, 3.4rem) !important;
    margin-bottom: 0.8rem !important;
  }

  .hero-lead-box {
    padding: 1.2rem 1.3rem !important;
  }

  .hero-lead-text {
    font-size: 0.82rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.2rem !important;
  }

  .hero-btn-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-strip {
    gap: 1.2rem !important;
  }

  .hero-stat-val {
    font-size: 1.3rem !important;
  }

  /* Hotel Carousel Panel on small phones */
  .hotel-display-stage {
    height: 220px !important;
  }

  .hotel-cutout-img {
    max-height: 25vh !important;
  }

  .hotel-info-card {
    padding: 1.1rem 1.2rem !important;
  }

  .hotel-title {
    font-size: 1.5rem !important;
  }

  .hotel-desc {
    font-size: 0.76rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
  }

  .h-stat-grid {
    gap: 0.4rem !important;
    padding: 0.6rem 0 !important;
    margin-bottom: 1rem !important;
  }

  .h-stat-item {
    padding: 0.5rem 0.6rem !important;
  }

  .h-stat-num {
    font-size: 1.15rem !important;
  }

  .h-stat-lbl {
    font-size: 0.48rem !important;
  }

  /* Lightbox on mobile */
  .lightbox-inner {
    padding: 1rem !important;
  }

  .lightbox-nav {
    width: 38px !important;
    height: 38px !important;
  }

  .lightbox-prev {
    left: 0.5rem !important;
  }

  .lightbox-next {
    right: 0.5rem !important;
  }
}

@media (max-width: 360px) {

  /* Extra small screens (iPhone SE 1st gen, older devices) */
  .logo-name {
    font-size: 0.95rem !important;
  }

  .hero-gold-glow-title {
    font-size: 2rem !important;
  }

  .contact-form-card {
    padding: 1.4rem 1rem !important;
  }

  .h-stat-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── ULTRA-CLEAN MOBILE POLISH & TOUCH OPTIMIZATIONS ── */
@media (max-width: 768px) {

  /* Prevent horizontal wobble / side-scrolling */
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Refined masonry cards on mobile */
  .masonry-item {
    border-radius: 8px !important;
    overflow: hidden !important;
    margin-bottom: 1.25rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
  }

  .masonry-caption {
    padding: 1rem 1.2rem !important;
  }

  .masonry-title {
    font-size: 1.15rem !important;
  }

  .masonry-sub {
    font-size: 0.65rem !important;
  }

  /* Property list rows on mobile */
  .prop {
    padding: 1.25rem 1.4rem !important;
    border-radius: 6px !important;
    gap: 0.8rem !important;
  }

  .prop-name {
    font-size: 1.15rem !important;
  }

  .prop-detail {
    font-size: 0.8rem !important;
    line-height: 1.65 !important;
  }

  /* Full-bleed image bands on mobile */
  .img-band {
    min-height: 480px !important;
    padding: 3rem 1.4rem !important;
  }

  .img-band-c {
    gap: 1.8rem !important;
  }

  /* Touch buttons */
  .btn,
  .btn-ghost,
  .btn-gold {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    touch-action: manipulation;
  }

  /* Footer on mobile */
  .footer-inner {
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 20px)) !important;
  }
}