:root {
  --navy-deep: #070e24;
  --navy: #0b1530;
  --navy-mid: #0e1a3a;
  --navy-light: #142152;
  --gold: #e6b94d;
  --gold-light: #f3cd6e;
  --white: #ffffff;
  --offwhite: #f4f6fb;
  --gray-text: #9aa3c0;
  --line: rgba(230, 185, 77, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

body {
  font-family: 'Outfit', 'Segoe UI', Arial, sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
header.site-header {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8e6, var(--gold) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy-deep);
  border: 2px solid var(--gold-light);
  flex-shrink: 0;
}

.brand-text .t1 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--white);
  transition: all 0.3s ease;
}

.brand-text .t2 {
  font-size: 9.5px;
  color: var(--gray-text);
  letter-spacing: .3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav.main-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  color: #dfe3ef;
  text-transform: uppercase;
  transition: color .2s;
}

nav.main-nav a:hover {
  color: var(--gold-light);
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-toggle .caret {
  font-size: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-mid);
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 170px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 120;
  margin-top: 12px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle .caret {
  transform: rotate(180deg);
  color: var(--gold-light);
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #dfe3ef !important;
  text-transform: none !important;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
  text-align: left;
}

.dropdown-menu a:hover {
  background-color: var(--navy-light) !important;
  color: var(--gold-light) !important;
}

.btn-stall-nav {
  background: var(--gold);
  color: #1a1304;
  font-weight: 800;
  font-size: 12px;
  padding: 11px 20px;
  border-radius: 4px;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-stall-nav:hover {
  background: var(--gold-light);
}

.btn-stall-drawer {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 28px;
  height: 20px;
  z-index: 110;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--gold);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--gold);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 20, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 101;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px 70px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.125rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #cfd5ea;
  text-transform: uppercase;
  margin: 14px 0 26px;
}

.hero-meta {
  display: flex;
  gap: 34px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-meta .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-meta .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

.hero-meta .label-main {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.hero-meta .label-sub {
  font-size: 11px;
  color: var(--gray-text);
  letter-spacing: .3px;
}

.hero-desc {
  color: #aab1cc;
  font-size: 14.5px;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-desc strong {
  color: #dfe3ef;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: all .2s;
}

.btn-gold {
  background: var(--gold);
  color: #1a1304;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid #4a5378;
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}

.skyline-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: saturate(0.2) brightness(0.6);
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 1;
}

.badge-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 320px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  border: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1240px;
  transform: translateY(-44px);
  background: var(--navy);
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 5;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 19px;
}

.stat-num {
  font-size: 23px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 10.5px;
  color: var(--subtext-color, #ffffff);
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===== ABOUT EDCEA ===== */
.about-section {
  background: var(--about-bg, var(--navy));
  padding: 30px 0 70px;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
  padding-top: 30px;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-grid p {
  color: #aab1cc;
  font-size: 14.5px;
  margin-bottom: 16px;
}

.know-more {
  display: inline-flex;
  margin-top: 6px;
  background: var(--gold);
  color: #1a1304;
  font-weight: 800;
  font-size: 12.5px;
  padding: 13px 24px;
  border-radius: 4px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.know-more:hover {
  background: var(--gold-light);
}

.edcea-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.edcea-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.edcea-card .tagline {
  font-size: 11.5px;
  color: var(--gold-light);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ===== THREE COLUMN INFO ===== */
.info-section {
  background: var(--offwhite);
  color: #1a2140;
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-col {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(7, 14, 36, 0.03);
  border: 1px solid rgba(7, 14, 36, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(7, 14, 36, 0.08);
}

.info-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #eef1fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  font-size: 18px;
}

.info-head h3 {
  font-size: 17px;
  font-weight: 800;
  color: #10173a;
}

.info-col ul li {
  font-size: 13.5px;
  color: #3c4360;
  padding: 7px 0;
  display: flex;
  gap: 10px;
}

.info-col ul li::before {
  content: "›";
  color: var(--gold);
  font-weight: 800;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  padding: 12px 22px;
  border-radius: 4px;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-top: auto;
}

.btn-navy:hover {
  background: var(--navy-light);
}

.gallery-btn {
  display: inline-flex;
  background: var(--gold);
  color: #1a1304;
  font-weight: 800;
  font-size: 12px;
  padding: 12px 26px;
  border-radius: 4px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.gallery-btn:hover {
  background: var(--gold-light);
}

/* ===== COUNTDOWN + GALLERY ===== */
.cd-gallery-section {
  background: var(--navy-deep);
  padding: 50px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
}

.countdown-box {
  background: var(--navy-mid);
  border-radius: 8px;
  padding: 36px 30px;
  margin: 0 0 0 24px;
  border: 1px solid var(--line);
}

.countdown-box h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #dfe3ef;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.cd-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}

.cd-unit {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 14px 10px;
  transition: all 0.3s ease;
}

.cd-unit:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(230, 185, 77, 0.2);
}

.cd-unit .num {
  font-size: clamp(1.8rem, 4vw + 0.8rem, 2.2rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
}

.cd-unit .lab {
  font-size: 10px;
  color: var(--subtext-color, #ffffff);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 6px;
}

.gallery-box {
  padding: 0 24px 0 40px;
}

.gallery-box h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #dfe3ef;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.gallery-thumb {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-thumb img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== LOCATION ===== */
.location-section {
  background: var(--navy);
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.location-section>.wrap>h2 {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.map-box {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8eaf0;
  min-height: 260px;
}

.venue-box {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.venue-info {
  background: var(--navy-deep);
  padding: 22px 26px;
  position: relative;
  z-index: 2;
}

.venue-info h3 {
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.venue-info p {
  font-size: 13px;
  color: #cfd5ea;
  margin-bottom: 14px;
}

.get-dir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1a1304;
  font-weight: 800;
  font-size: 11.5px;
  padding: 10px 18px;
  border-radius: 4px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg, var(--navy-deep));
  padding: 50px 0 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  gap: 14px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--gray-text);
  margin-top: 6px;
}

.footer-col h4 {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13px;
  color: #aab1cc;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-row a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white);
  transition: background-color 0.2s, color 0.2s;
}

.social-row a:hover {
  background: var(--gold);
  color: #1a1304;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: var(--gray-text);
}

.footer-bottom strong {
  color: #dfe3ef;
}

/* Announcement Bar style */
.announcement-bar {
  background: var(--gold);
  color: #1a1304;
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  position: relative;
  z-index: 105;
}

.announcement-bar a {
  text-decoration: underline;
  color: inherit;
}

.announcement-bar a:hover {
  color: #000;
}
