@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Color System */
  --bg:         hsl(210, 18%, 4%);
  --bg-alt:     hsl(210, 15%, 6.5%);
  --fg:         hsl(40, 25%, 96%);
  --fg-muted:   hsl(210, 8%, 55%);
  --gold:       hsl(42, 72%, 58%);
  --gold-light: hsl(44, 80%, 70%);
  --gold-dark:  hsl(38, 60%, 44%);
  --border:     hsl(210, 10%, 14%);
  --card:       hsl(210, 14%, 7%);

  /* Gradients */
  --grad-gold:  linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  --grad-dark:  linear-gradient(180deg, transparent, hsla(210,18%,4%,0.98));
  --grad-vign:  radial-gradient(ellipse at center, transparent 40%, hsla(210,18%,4%,0.7) 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(5rem, 10vw, 9rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; }
em { font-style: italic; color: var(--gold); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
a { text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: hsl(210,10%,18%); border-radius: 99px; }

/* Layout helpers */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section-pad { padding: var(--section-py) 0; }
.alt-bg { background: var(--bg-alt); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY SYSTEM
═══════════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow-light { color: hsla(42, 72%, 75%, 0.85); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}
.section-head h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.25rem; }

.section-desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gold);
  color: hsl(210, 18%, 6%);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 99px;
  transition: filter 0.2s, transform 0.2s;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 99px;
  border: 1px solid hsla(40, 25%, 96%, 0.18);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: hsla(40,25%,96%,0.05); border-color: hsla(40,25%,96%,0.35); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

.btn-gold {
  display: inline-flex; align-items: center;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 99px;
  border: 1.5px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.btn-gold:hover { background: var(--gold); color: hsl(210, 18%, 6%); }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
}
nav.scrolled {
  background: hsla(210, 18%, 4%, 0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.875rem;
  cursor: pointer;
}
.logo-moa {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-divider {
  width: 1px; height: 1.25rem;
  background: hsla(40,25%,96%,0.2);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.nav-links { display: flex; align-items: center; gap: 0.125rem; }
.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  border-radius: 99px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-link.active { color: var(--gold); background: hsla(42,72%,58%,0.1); }
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid hsla(42,72%,58%,0.4);
  border-radius: 99px;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: hsl(210,18%,6%); border-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--fg); border-radius: 99px; transition: 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1.25rem 1rem;
  background: hsla(210, 18%, 4%, 0.97);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu button {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: left;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu button:last-child { border-bottom: none; }
.mobile-menu button:hover { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 4rem; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Grain texture overlay */
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, hsla(210,18%,4%,0.25) 0%, transparent 30%, transparent 55%, hsla(210,18%,4%,0.9) 85%, var(--bg) 100%),
    radial-gradient(ellipse at center, transparent 30%, hsla(210,18%,4%,0.5) 100%);
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: hsla(40,25%,96%,0.5);
  margin-bottom: 2rem;
  opacity: 0;
}
.eyebrow-line { flex: 1; max-width: 3rem; height: 1px; background: hsla(40,25%,96%,0.2); }

#hero h1 {
  display: flex; flex-direction: column;
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.h1-line { opacity: 0; }
.h1-italic { font-style: italic; font-weight: 300; }
.h1-gold {
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: hsla(40,25%,96%,0.6);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  opacity: 0;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  cursor: pointer; z-index: 10;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsla(40,25%,96%,0.35);
}
.scroll-track {
  width: 1px; height: 3rem;
  background: hsla(40,25%,96%,0.15);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: -100%;
  width: 1px; height: 50%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center; align-items: center;
  gap: 0;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  background: hsla(210,18%,4%,0.75);
  backdrop-filter: blur(20px);
  border-top: 1px solid hsla(40,25%,96%,0.07);
  opacity: 0;
  z-index: 10;
}
.hstat {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; max-width: 200px;
}
.hstat-n {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hstat-l {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hstat-div { width: 1px; height: 2.5rem; background: var(--border); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   WHY MOA
═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-big {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-big img { transition: transform 8s var(--ease-out); }
.why-big:hover img { transform: scale(1.04); }
.why-big-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsla(210,18%,4%,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.why-big-stat {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.why-big-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: hsla(40,25%,96%,0.7);
  margin-top: 0.5rem;
}

.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.why-card:hover { border-color: hsla(42,72%,58%,0.3); }
.wc-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.why-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* Demographics bar */
.demo-bar {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
}
.demo-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 2rem;
  flex: 1; min-width: 100px;
}
.demo-n {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.demo-l { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }
.demo-sep { width: 1px; height: 2.5rem; background: var(--border); flex-shrink: 0; }
@media (max-width: 640px) { .demo-sep { display: none; } .demo-item { width: 50%; padding: 1rem; } }

/* ═══════════════════════════════════════════
   SPLIT LAYOUT (Retail, Dining)
═══════════════════════════════════════════ */
.split-layout {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split-layout { grid-template-columns: 1fr 1fr; }
  .split-layout.reverse .split-text { order: 2; }
  .split-layout.reverse .split-image { order: 1; }
}

.split-text h2 { font-size: clamp(2.25rem, 4vw, 3.5rem); margin-bottom: 1.25rem; }
.split-text .section-desc { margin: 0 0 2rem; text-align: left; }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.pill {
  padding: 0.4375rem 1rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--card);
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: hsla(42,72%,58%,0.4); color: var(--gold); }

.split-metrics {
  display: flex; gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.sm-item { display: flex; flex-direction: column; }
.sm-n {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.sm-l { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }

/* Image frame */
.img-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px hsla(210,18%,2%,0.6);
}
.img-frame img { transition: transform 8s var(--ease-out); }
.img-frame:hover img { transform: scale(1.04); }
.img-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: hsla(210,18%,4%,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}
.img-badge span {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: hsla(42,72%,58%,0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  margin-bottom: 0.375rem;
}
.img-badge p { font-size: 0.8125rem; font-weight: 500; color: var(--fg); }

/* Dining quote */
.dining-quote {
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: hsla(42,72%,58%,0.05);
  border-radius: 0 0.75rem 0.75rem 0;
}
.dining-quote p {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.dining-quote span { font-size: 0.75rem; font-weight: 500; color: var(--fg-muted); }

/* ═══════════════════════════════════════════
   LUXURY SECTION
═══════════════════════════════════════════ */
.luxury-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.luxury-bg {
  position: absolute; inset: 0;
}
.luxury-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, hsla(210,18%,4%,0.97) 0%, hsla(210,18%,4%,0.85) 50%, hsla(210,18%,4%,0.97) 100%),
    linear-gradient(to bottom, hsla(210,18%,4%,0.5) 0%, transparent 30%, transparent 70%, hsla(210,18%,4%,0.5) 100%);
}
.luxury-content { position: relative; z-index: 5; padding: var(--section-py) 0; }
.luxury-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.luxury-h2 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.luxury-desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: hsla(40,25%,96%,0.6);
  margin-bottom: 3rem;
}
.luxury-brands {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-bottom: 3rem;
}
.lb-item {
  padding: 0.625rem 1.375rem;
  border-radius: 99px;
  border: 1px solid hsla(42,72%,58%,0.25);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: hsla(40,25%,96%,0.7);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
}
.lb-item:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════
   ENTERTAINMENT
═══════════════════════════════════════════ */
.ent-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) { .ent-grid { grid-template-columns: 1.3fr 1fr; } }

.ent-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.ent-card:hover { border-color: hsla(42,72%,58%,0.25); }
.ent-card img {
  aspect-ratio: 16/9;
  transition: transform 8s var(--ease-out);
}
.ent-card:hover img { transform: scale(1.04); }
.ent-card-big img { aspect-ratio: 4/3; }

.ent-card-body { padding: 1.5rem; }
.ent-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ent-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.ent-card-big .ent-card-body h3 { font-size: 1.75rem; }
.ent-card-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.ent-meta { display: flex; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; color: var(--gold); }

.ent-col { display: flex; flex-direction: column; gap: 1.25rem; }
.ent-col .ent-card img { aspect-ratio: 16/7; }

/* ═══════════════════════════════════════════
   EVENTS SECTION
═══════════════════════════════════════════ */
.events-section { position: relative; overflow: hidden; padding: 0; }
.events-bg { position: absolute; inset: 0; }
.events-overlay {
  position: absolute; inset: 0;
  background: hsla(210,18%,4%,0.88);
}
.events-content { position: relative; z-index: 5; padding: var(--section-py) 0; }
.events-content .section-head { color: var(--fg); }

.events-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .events-grid { grid-template-columns: repeat(4, 1fr); } }

.ev-card {
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid hsla(40,25%,96%,0.1);
  background: hsla(210,18%,8%,0.6);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: border-color 0.3s;
}
.ev-card:hover { border-color: hsla(42,72%,58%,0.4); }
.ev-n {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.625rem;
}
.ev-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.ev-desc { font-size: 0.8125rem; line-height: 1.65; color: var(--fg-muted); }
.events-cta { text-align: center; }

/* ═══════════════════════════════════════════
   LEASING MODULE
═══════════════════════════════════════════ */
.lease-filters {
  display: flex; flex-wrap: wrap; gap: 0.625rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.lf-btn {
  padding: 0.5625rem 1.25rem;
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  background: var(--card);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lf-btn:hover { color: var(--fg); border-color: hsla(40,25%,96%,0.25); }
.lf-btn.active { color: var(--gold); border-color: var(--gold); background: hsla(42,72%,58%,0.08); }

.lease-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.lease-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), opacity 0.35s;
}
.lease-card:hover { border-color: hsla(42,72%,58%,0.3); transform: translateY(-3px); }
.lease-card.hidden { display: none; }

.lc-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.lc-img img { transition: transform 6s var(--ease-out); }
.lease-card:hover .lc-img img { transform: scale(1.06); }
.lc-badge {
  position: absolute; top: 0.875rem; left: 0.875rem;
  padding: 0.3125rem 0.75rem;
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: hsla(210,18%,4%,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}
.lc-badge-gold { color: var(--gold); border-color: hsla(42,72%,58%,0.3); }
.lc-badge-green { color: hsl(152, 60%, 55%); border-color: hsla(152,60%,55%,0.3); }

.lc-body { padding: 1.5rem; }
.lc-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.lc-body p { font-size: 0.875rem; line-height: 1.65; color: var(--fg-muted); margin-bottom: 1rem; }
.lc-specs {
  display: flex; gap: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.lc-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: letter-spacing 0.2s;
}
.lc-cta:hover { letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════
   CONTACT / PARTNER
═══════════════════════════════════════════ */
.partner-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 4rem;
}
@media (max-width: 640px) { .partner-grid { grid-template-columns: 1fr; } }

.partner-card {
  padding: 2rem;
  border-radius: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.partner-card:hover { border-color: hsla(42,72%,58%,0.35); transform: translateY(-2px); }
.pc-icon { font-size: 2rem; margin-bottom: 1rem; }
.partner-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.partner-card p { font-size: 0.875rem; line-height: 1.65; color: var(--fg-muted); margin-bottom: 1.25rem; }
.pc-link { font-size: 0.8125rem; font-weight: 600; color: var(--gold); }

/* CTA strip */
.cta-strip {
  display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: space-between;
  padding: 2.5rem 3rem;
  border-radius: 1.25rem;
  border: 1px solid hsla(42,72%,58%,0.2);
  background: linear-gradient(135deg, hsla(42,72%,58%,0.05) 0%, transparent 60%);
  box-shadow: 0 0 60px hsla(42,72%,58%,0.06);
}
.cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.5rem;
}
.cta-text p { font-size: 0.9375rem; color: var(--fg-muted); max-width: 400px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: 0;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.footer-loc { font-size: 0.8125rem; color: var(--fg-muted); }
.footer-copy { font-size: 0.75rem; color: hsla(210,8%,55%,0.5); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE PATCHES
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .why-cards { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .cta-strip { flex-direction: column; padding: 2rem; }
  .ent-grid { grid-template-columns: 1fr; }
  .split-layout { gap: 2.5rem; }
}
@media (max-width: 480px) {
  .events-grid { grid-template-columns: 1fr; }
  .lease-grid { grid-template-columns: 1fr; }
}