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

:root {
  --bg-deep: #faf8f5;
  --bg-mid: #f3efe8;
  --bg-white: #ffffff;
  --gold: #a67c00;
  --gold-bright: #c9a227;
  --gold-dark: #7a5a10;
  --amber: #d4922a;
  --warm: #1f1c18;
  --text: #1a1814;
  --text-muted: rgba(26, 24, 20, 0.58);
  --glass: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(166, 124, 0, 0.22);
  --shadow-soft: rgba(26, 24, 20, 0.06);
  --shadow-mid: rgba(26, 24, 20, 0.1);
  --shadow-gold: rgba(166, 124, 0, 0.2);
  --building: #f0ece4;
  --building-mid: #e4dfd4;
  --building-side: #d8d2c6;
}

html {
  font-size: 16px;
  color-scheme: light;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  background: var(--bg-deep);
  color: var(--text);
  height: 100dvh;
  max-height: 100dvh;
  line-height: 1.6;
  overflow: hidden;
  overscroll-behavior: none;
}

/* ── Ambient background ── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(212, 146, 42, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse 50% 40% at 100% 60%, rgba(166, 124, 0, 0.04) 0%, transparent 40%),
    linear-gradient(175deg, #ffffff 0%, #faf8f5 45%, #f5f1ea 100%);
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orb-float 12s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(201, 162, 39, 0.1);
  top: 5%;
  left: 10%;
  animation: orb-float 12s ease-in-out infinite, orb-rotate 20s linear infinite;
}

.orb-2 {
  width: 240px;
  height: 240px;
  background: rgba(212, 146, 42, 0.08);
  bottom: 20%;
  right: 5%;
  animation: orb-float 12s ease-in-out infinite, orb-rotate 15s linear infinite reverse;
  animation-delay: -4s, 0s;
}

.orb-3 {
  width: 180px;
  height: 180px;
  background: rgba(166, 124, 0, 0.06);
  top: 40%;
  right: 25%;
  animation: orb-float 12s ease-in-out infinite, orb-rotate 25s linear infinite;
  animation-delay: -8s, 0s;
}

@keyframes orb-float {
  0%, 100% { translate: 0 0; scale: 1; }
  33% { translate: 20px -15px; scale: 1.05; }
  66% { translate: -15px 10px; scale: 0.95; }
}

@keyframes orb-rotate {
  from { rotate: 0deg; border-radius: 50% 45% 55% 50%; }
  to { rotate: 360deg; border-radius: 45% 55% 50% 50%; }
}

/* ── 3D Scene ── */
.scene-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38vh;
  max-height: 320px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 900px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, black 35%, transparent 92%);
  -webkit-mask-image: linear-gradient(to bottom, black 35%, transparent 92%);
}

.scene-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, var(--bg-deep) 100%);
  pointer-events: none;
}

.scene-3d {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-8deg);
  animation: scene-float 6s ease-in-out infinite;
}

@keyframes scene-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* Rotating orbit rings */
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 55%;
  border-radius: 50%;
  border: 1px dashed rgba(166, 124, 0, 0.28);
  transform-style: preserve-3d;
  pointer-events: none;
}

.ring-outer {
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  transform: rotateX(72deg);
  animation: ring-spin 18s linear infinite;
}

.ring-inner {
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  border-style: solid;
  border-color: rgba(166, 124, 0, 0.18);
  border-width: 1px;
  transform: rotateX(72deg);
  animation: ring-spin 12s linear infinite reverse;
}

@keyframes ring-spin {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to { transform: rotateX(72deg) rotateZ(360deg); }
}

/* Moon orbit */
.moon-orbit {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  transform-style: preserve-3d;
  animation: moon-orbit 14s linear infinite;
  pointer-events: none;
}

@keyframes moon-orbit {
  from { transform: rotateX(65deg) rotateZ(0deg); }
  to { transform: rotateX(65deg) rotateZ(360deg); }
}

.moon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fffef5, #f5e6a8 50%, #e8c860 100%);
  box-shadow:
    0 0 30px 8px rgba(245, 200, 80, 0.35),
    0 4px 12px rgba(26, 24, 20, 0.08);
  transform: translateZ(60px);
}

/* Building 360° showcase rotation */
.building-rotator {
  transform-style: preserve-3d;
  animation: building-spin 22s linear infinite;
}

@keyframes building-spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.building-group {
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: building-tilt 8s ease-in-out infinite;
}

@keyframes building-tilt {
  0%, 100% { transform: rotateX(0deg) rotateZ(0deg); }
  25% { transform: rotateX(3deg) rotateZ(-1deg); }
  75% { transform: rotateX(-2deg) rotateZ(1deg); }
}

/* Gopuram 3D */
.gopuram-3d {
  position: relative;
  z-index: 10;
  transform-style: preserve-3d;
  transform: translateZ(30px);
  animation: gopuram-glow 4s ease-in-out infinite, gopuram-sway 6s ease-in-out infinite;
}

@keyframes gopuram-glow {
  0%, 100% { filter: drop-shadow(0 4px 12px rgba(166, 124, 0, 0.25)); }
  50% { filter: drop-shadow(0 6px 20px rgba(201, 162, 39, 0.4)); }
}

@keyframes gopuram-sway {
  0%, 100% { transform: translateZ(30px) rotateY(-6deg); }
  50% { transform: translateZ(30px) rotateY(6deg); }
}

.gp-tier {
  margin: 0 auto;
  background: linear-gradient(180deg, #e8c860 0%, #c9a227 45%, #a67c00 100%);
  border: 1px solid rgba(166, 124, 0, 0.35);
  transform-style: preserve-3d;
  position: relative;
}

.gp-tier::before,
.gp-tier::after {
  content: '';
  position: absolute;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(90deg, #8b6914, #c9a227);
}

.gp-tier::before { left: -8px; transform: rotateY(-90deg); transform-origin: right; }
.gp-tier::after { right: -8px; transform: rotateY(90deg); transform-origin: left; }

.gp-5 { width: 28px; height: 14px; clip-path: polygon(15% 100%, 50% 0%, 85% 100%); }
.gp-4 { width: 44px; height: 16px; margin-top: -2px; clip-path: polygon(10% 100%, 50% 0%, 90% 100%); }
.gp-3 { width: 60px; height: 18px; margin-top: -2px; clip-path: polygon(8% 100%, 50% 0%, 92% 100%); }
.gp-2 { width: 76px; height: 20px; margin-top: -2px; clip-path: polygon(6% 100%, 50% 0%, 94% 100%); }
.gp-1 { width: 92px; height: 22px; margin-top: -2px; clip-path: polygon(5% 100%, 50% 0%, 95% 100%); }

.gp-base {
  width: 108px;
  height: 12px;
  background: linear-gradient(180deg, #c9a227, #a67c00);
  border: 1px solid rgba(166, 124, 0, 0.35);
  margin-top: -1px;
}

/* Hotel tower */
.tower {
  position: relative;
  width: 140px;
  transform-style: preserve-3d;
  transform: translateZ(20px);
  margin-top: -2px;
}

.floor {
  width: 140px;
  height: 36px;
  background: linear-gradient(135deg, var(--building) 0%, var(--building-mid) 50%, #ebe6dc 100%);
  border: 1px solid rgba(166, 124, 0, 0.15);
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 12px;
  transform-style: preserve-3d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    4px 0 16px var(--shadow-soft),
    -2px 0 8px var(--shadow-soft);
}

.floor::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(90deg, var(--building-side), #ccc6b8);
  transform: rotateY(90deg);
  transform-origin: left;
}

.win {
  width: 18px;
  height: 22px;
  background: rgba(220, 228, 240, 0.9);
  border: 1px solid rgba(166, 124, 0, 0.12);
  border-radius: 2px 2px 0 0;
  transition: background 0.5s, box-shadow 0.5s;
}

.win.lit {
  background: linear-gradient(180deg, #fff8d8 0%, #f0d060 40%, #d4a830 100%);
  box-shadow: 0 0 10px 2px rgba(212, 168, 48, 0.45);
  animation: window-flicker 5s ease-in-out infinite;
}

.win.lit:nth-child(2n) { animation-delay: -1.5s; }
.win.lit:nth-child(3n) { animation-delay: -3s; }

@keyframes window-flicker {
  0%, 90%, 100% { opacity: 1; }
  92% { opacity: 0.7; }
  94% { opacity: 1; }
  96% { opacity: 0.85; }
}

.floor.lobby {
  height: 44px;
  background: linear-gradient(180deg, #f5f1ea 0%, var(--building-mid) 100%);
  border-bottom: 1px solid rgba(166, 124, 0, 0.2);
  position: relative;
  justify-content: center;
}

.door {
  width: 36px;
  height: 32px;
  background: linear-gradient(180deg, #8b6914 0%, #6b5010 100%);
  border: 2px solid var(--gold);
  border-radius: 2px 2px 0 0;
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.15);
}

.canopy {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 8px;
  background: linear-gradient(180deg, var(--gold), #8b6914);
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(166, 124, 0, 0.25);
}

.ground {
  width: 220px;
  height: 16px;
  background: linear-gradient(180deg, #e8e4dc, #d4cfc4);
  transform: rotateX(75deg) translateZ(-8px);
  border-radius: 4px;
  box-shadow: 0 16px 40px var(--shadow-mid);
  margin-top: -4px;
}

.float-icons {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.fi {
  position: absolute;
  font-size: 1.25rem;
  opacity: 0.65;
  filter: drop-shadow(0 0 8px var(--shadow-gold));
  animation: fi-orbit 10s linear infinite;
}

.fi-1 { left: -50px; top: 35%; animation-duration: 9s; }
.fi-2 { right: -50px; top: 50%; animation-duration: 11s; animation-direction: reverse; }
.fi-3 { left: 50%; top: -30px; margin-left: -12px; animation-duration: 13s; }

@keyframes fi-orbit {
  from {
    transform: translateZ(50px) rotate(0deg) translateX(28px) rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: translateZ(70px) rotate(180deg) translateX(28px) rotate(-180deg);
    opacity: 0.75;
  }
  to {
    transform: translateZ(50px) rotate(360deg) translateX(28px) rotate(-360deg);
    opacity: 0.45;
  }
}

/* ── Page & hero ── */
.page {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(96rem, 100%);
  height: 100dvh;
  max-height: 100dvh;
  margin: 0 auto;
  padding: min(30vh, 240px) clamp(1rem, 4vw, 3rem) 0.65rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.hero {
  flex: 1;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1.2vh, 0.75rem);
}

.hero-body {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.4rem, 1.2vh, 0.7rem);
  text-align: center;
}

.hero-brand {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-coming-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
}

.hero-lower {
  width: 100%;
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-content: end;
}

.hero-highlights {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.4rem, 1.2vw, 0.85rem);
}

.hero-highlights .card-3d {
  min-width: 0;
}

.hero-location {
  width: 100%;
}

.hero-footer {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(166, 124, 0, 0.3) 40deg,
    transparent 80deg,
    rgba(201, 162, 39, 0.22) 140deg,
    transparent 200deg,
    rgba(166, 124, 0, 0.28) 280deg,
    transparent 360deg
  );
  mask: radial-gradient(circle, transparent 58%, black 59%, black 68%, transparent 69%);
  -webkit-mask: radial-gradient(circle, transparent 58%, black 59%, black 68%, transparent 69%);
  animation: brand-ring-spin 10s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

@keyframes brand-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.brand-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.85rem, 6.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.brand-line {
  display: block;
  letter-spacing: 0.04em;
}

.brand-line.accent {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(166, 124, 0, 0.2));
}

.brand-line:not(.accent) {
  color: var(--text);
}

.brand-tagline {
  margin-top: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  padding: 0.25rem 0.65rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 6px rgba(212, 146, 42, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Hero — Coming Soon */
.hero-coming-soon {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0.5rem 1rem 0.65rem;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #faf6ee);
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow:
    0 16px 48px var(--shadow-mid),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 8px 28px rgba(166, 124, 0, 0.14);
  overflow: hidden;
  animation: hero-badge-float 5s ease-in-out infinite;
  transform-style: preserve-3d;
  width: auto;
  max-width: 100%;
}

@keyframes hero-badge-float {
  0%, 100% {
    transform: perspective(600px) rotateX(6deg) rotateY(-4deg) translateY(0);
  }
  50% {
    transform: perspective(600px) rotateX(4deg) rotateY(4deg) translateY(-6px);
  }
}

.hero-coming-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
  animation: hero-shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-shine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

.hero-coming-text {
  position: relative;
  display: block;
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.85rem, 9vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 45%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-text-in 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.subhead {
  font-size: clamp(0.75rem, 2.2vw, 0.88rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .hero-coming-soon {
    padding: 0.85rem 1rem 1rem;
    border-radius: 10px;
  }

  .hero-coming-text {
    font-size: clamp(2rem, 14vw, 2.75rem);
    letter-spacing: 0.05em;
  }
}

.card-3d {
  perspective: 600px;
  transition: transform 0.15s ease-out;
}

.card-inner {
  height: 100%;
  padding: clamp(0.55rem, 1.2vh, 0.85rem) clamp(0.45rem, 1vw, 0.75rem);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 8px 28px var(--shadow-soft),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: box-shadow 0.3s, border-color 0.3s;
  transform-style: preserve-3d;
}

.card-3d:hover .card-inner {
  border-color: rgba(166, 124, 0, 0.4);
  box-shadow:
    0 16px 40px var(--shadow-mid),
    0 0 24px rgba(166, 124, 0, 0.08);
}

.card-icon {
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 90, 0.3));
  animation: icon-spin 8s linear infinite;
}

.card-3d:hover .card-icon {
  animation: icon-spin-fast 0.8s linear infinite;
}

@keyframes icon-spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

@keyframes icon-spin-fast {
  from { transform: rotateY(0deg) scale(1.1); }
  to { transform: rotateY(360deg) scale(1.1); }
}

.card-inner h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.8rem, 1.1vw, 1.05rem);
  font-weight: 600;
  color: var(--warm);
  margin-bottom: 0.2rem;
}

.card-inner p {
  font-size: clamp(0.58rem, 0.85vw, 0.72rem);
  color: var(--text-muted);
  line-height: 1.35;
}

.location-glass {
  padding: 0.65rem 0.85rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 36px var(--shadow-soft);
  animation: location-rock 10s ease-in-out infinite;
  transition: box-shadow 0.4s;
}

.location-glass:hover {
  animation: none;
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(-4px);
  box-shadow: 0 20px 44px var(--shadow-mid), 0 0 24px rgba(166, 124, 0, 0.08);
}

.location-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.address .city {
  font-weight: 600;
  color: var(--gold-dark);
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.45rem 0.85rem;
  background: linear-gradient(135deg, rgba(166, 124, 0, 0.12), rgba(166, 124, 0, 0.04));
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.map-btn:hover {
  background: linear-gradient(135deg, rgba(166, 124, 0, 0.2), rgba(166, 124, 0, 0.08));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(166, 124, 0, 0.15);
  color: var(--gold);
}

.hero-footer p {
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Responsive — full-width centered coming soon + 4-column card row */
@media (min-width: 720px) {
  .page {
    padding-top: min(26vh, 195px);
  }

  .hero-coming-center {
    width: 100%;
  }

  .hero-coming-soon {
    margin-inline: auto;
  }

  .hero-lower {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(200px, 1.15fr);
    gap: clamp(0.5rem, 1.2vw, 1rem);
    align-items: stretch;
  }

  .hero-highlights {
    display: contents;
  }

  .hero-highlights .card-3d:nth-child(1) { grid-column: 1; }
  .hero-highlights .card-3d:nth-child(2) { grid-column: 2; }
  .hero-highlights .card-3d:nth-child(3) { grid-column: 3; }

  .hero-location {
    grid-column: 4;
    grid-row: 1;
    display: flex;
    min-height: 0;
  }

  .location-glass {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 0.9rem;
    text-align: left;
  }

  .address {
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
  }

  .map-btn {
    margin-top: auto;
  }

  .card-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
}

@media (min-width: 960px) {
  .page {
    padding-top: min(25vh, 185px);
    padding-bottom: 0.75rem;
  }

  .hero-lower {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(240px, 1.25fr);
    gap: clamp(0.65rem, 1.4vw, 1.15rem);
  }

  .location-glass {
    padding: 0.9rem 1rem;
  }

  .address {
    font-size: 0.78rem;
  }

  .card-inner h3 {
    font-size: 0.95rem;
  }

  .card-inner p {
    font-size: 0.68rem;
  }

  .scene-wrap {
    height: 34vh;
    max-height: 280px;
  }
}

@media (min-width: 1200px) {
  .brand-name {
    font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  }

  .hero-coming-text {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
  }

  .subhead {
    font-size: 0.95rem;
    max-width: 40rem;
  }
}

@media (min-width: 640px) and (max-width: 719px) {
  .page {
    padding-bottom: 1rem;
  }

  .scene-wrap {
    height: 36vh;
    max-height: 320px;
  }

  .tower { width: 160px; }
  .floor { width: 160px; }
}

@media (min-width: 900px) {
  .scene-wrap {
    max-height: 520px;
  }

  .tower { width: 180px; }
  .floor { width: 180px; height: 40px; }
}

@keyframes location-rock {
  0%, 100% { transform: perspective(800px) rotateX(2deg) rotateY(-2deg); }
  50% { transform: perspective(800px) rotateX(2deg) rotateY(2deg); }
}

@media (max-height: 740px) {
  .scene-wrap {
    height: 26vh;
    max-height: 200px;
  }

  .page {
    padding-top: min(24vh, 180px);
  }

  .hero {
    gap: 0.25rem;
  }

  @media (min-width: 720px) {
    .page {
      padding-top: min(22vh, 170px);
    }
  }

  .brand-name {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-coming-text {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .brand-ring {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
  }

  .card-inner {
    padding: 0.4rem 0.35rem;
  }

  .card-icon {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scene-3d,
  .building-rotator { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
