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

:root {
  --black:   #090909;
  --dark:    #121212;
  --dark2:   #1c1c1c;
  --dark3:   #242424;
  --gold:    #e8a020;
  --gold2:   #d4913a;
  --amber:   #f5c842;
  --coral:   #e84c3d;
  --cream:   #f0ead8;
  --cream2:  #e8e0cc;
  --white:   #ffffff;
  --purple:  #a78bfa;
  --teal:    #2dd4bf;
  --green:   #4ade80;
  --text:    #e8e0cc;
  --muted:   #8a8070;
  --border:  rgba(255,255,255,.07);
  --shadow:  0 20px 60px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Lato', sans-serif; color: var(--text); background: var(--black); overflow-x: hidden; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: 'Bebas Neue', 'Oswald', sans-serif; letter-spacing: .04em; }
p { line-height: 1.75; }

/* ── NAV ── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 76px;
  background: transparent;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
}
nav#navbar.scrolled {
  background: rgba(9,9,9,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 8px 30px rgba(0,0,0,.5);
}

.nav-logo { display: flex; align-items: center; text-decoration: none; gap: .75rem; }
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .08em;
  color: var(--gold); line-height: 1;
}
.nav-logo-text span { display: block; font-size: .65rem; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(240,234,216,.75);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: .5rem 1.25rem; border-radius: 6px;
  font-weight: 700; transition: background .2s, transform .1s !important;
}
.nav-links .nav-cta:hover { background: var(--amber); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .5rem; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(9,9,9,.97); backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column; padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  transform: translateY(-6px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.mobile-menu.open { display: flex; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  text-decoration: none; color: var(--cream);
  font-size: 1rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); }
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  position: relative;
  width: 100%; height: 100dvh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
#hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,9,.3) 0%, rgba(9,9,9,.55) 50%, rgba(9,9,9,.92) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.hero-logo { width: clamp(100px, 18vw, 200px); height: auto; object-fit: contain; }
.hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; animation: fade-up .8s .3s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1; color: var(--cream);
  opacity: 0; animation: fade-up .8s .5s forwards;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  color: rgba(240,234,216,.75); max-width: 540px; line-height: 1.6;
  opacity: 0; animation: fade-up .8s .7s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fade-up .8s .9s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}
.hero-scroll .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .85rem 2rem; border-radius: 6px;
  transition: transform .15s, box-shadow .15s, background .2s;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,.07); }
.btn:active { transform: translateY(2px) scale(.98); }

.btn-primary { background: var(--gold); color: var(--black); box-shadow: 0 0 0 0 rgba(232,160,32,0); }
.btn-primary:hover { box-shadow: 0 4px 24px rgba(232,160,32,.35); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--cream); border: 1.5px solid rgba(240,234,216,.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost { background: rgba(255,255,255,.06); color: var(--cream); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.btn-sm { padding: .6rem 1.25rem; font-size: .76rem; }

/* Press-depth effect */
.btn-press-wrap { display: inline-block; position: relative; padding-bottom: 4px; }
.btn-press-wrap .btn-press-shadow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: rgba(0,0,0,.4); border-radius: 0 0 6px 6px; z-index: 0;
}
.btn-press-wrap .btn { position: relative; z-index: 1; }
.btn-press-wrap:active .btn { transform: translateY(4px); }

/* ── SECTIONS ── */
section { padding: 5.5rem 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .75rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05; color: var(--cream); margin-bottom: 1rem;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-desc { color: var(--muted); font-size: 1rem; max-width: 540px; line-height: 1.7; }
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem 0 1.5rem; }

/* ── ANIMATED BG ── */
.anim-bg {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.anim-bg::before, .anim-bg::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.anim-bg::before {
  width: 60vw; height: 60vw;
  top: -20%; left: -10%;
  background: radial-gradient(ellipse, rgba(232,160,32,.12) 0%, transparent 70%);
  animation: orb-drift1 12s ease-in-out infinite alternate;
}
.anim-bg::after {
  width: 50vw; height: 50vw;
  bottom: -20%; right: -10%;
  background: radial-gradient(ellipse, rgba(167,139,250,.08) 0%, transparent 70%);
  animation: orb-drift2 15s ease-in-out infinite alternate;
}
.anim-bg > * { position: relative; z-index: 1; }

.anim-bg-red::before { background: radial-gradient(ellipse, rgba(232,76,61,.12) 0%, transparent 70%); }
.anim-bg-red::after  { background: radial-gradient(ellipse, rgba(232,160,32,.07) 0%, transparent 70%); }

.anim-bg-teal::before { background: radial-gradient(ellipse, rgba(45,212,191,.1) 0%, transparent 70%); }
.anim-bg-teal::after  { background: radial-gradient(ellipse, rgba(232,160,32,.07) 0%, transparent 70%); }

/* ── PILLARS ── */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; margin-top: 4rem; }
.pillar-card {
  position: relative; overflow: hidden;
  padding: 3.5rem 2.5rem;
  background: var(--dark2);
  border: 1px solid var(--border);
  transition: transform .4s, background .3s;
  cursor: default;
}
.pillar-card:hover { background: var(--dark3); transform: translateY(-4px); }
.pillar-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  transition: transform .4s;
  transform: scaleX(0); transform-origin: left;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-art::before    { background: var(--purple); }
.pillar-music::before  { background: var(--coral); }
.pillar-commerce::before { background: var(--gold); }
.pillar-community::before { background: var(--green); }

.pillar-icon {
  font-size: 3rem; margin-bottom: 1.5rem; display: block;
  transition: transform .3s;
}
.pillar-card:hover .pillar-icon { transform: scale(1.1); }
.pillar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: .06em;
  margin-bottom: .75rem; color: var(--cream);
}
.pillar-art    .pillar-title { color: var(--purple); }
.pillar-music  .pillar-title { color: var(--coral); }
.pillar-commerce .pillar-title { color: var(--gold); }
.pillar-community .pillar-title { color: var(--green); }
.pillar-desc { color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* ── SPACES PREVIEW CARDS ── */
.spaces-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 4rem; }
.space-card {
  position: relative; overflow: hidden;
  min-height: 460px;
  display: flex; align-items: flex-end;
  cursor: default;
}
.space-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  filter: brightness(.6);
}
.space-card:hover img { transform: scale(1.06); filter: brightness(.4); }
.space-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,.9) 0%, transparent 55%);
  transition: background .4s;
}
.space-card:hover .space-card-overlay {
  background: linear-gradient(to top, rgba(9,9,9,.95) 0%, rgba(9,9,9,.3) 60%);
}
.space-card-content {
  position: relative; z-index: 1; padding: 2.5rem;
}
.space-card-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .6rem;
}
.space-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream); line-height: 1; margin-bottom: .75rem;
}
.space-card-desc {
  color: rgba(240,234,216,.65); font-size: .88rem; line-height: 1.6;
  max-height: 0; overflow: hidden;
  transition: max-height .4s, opacity .4s, margin .4s;
  opacity: 0;
}
.space-card:hover .space-card-desc { max-height: 100px; opacity: 1; margin-bottom: 1rem; }
.space-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.space-card:hover .space-card-link { opacity: 1; transform: translateX(0); }
.space-card-link:hover { color: var(--amber); }

/* ── EVENTS PREVIEW ── */
.events-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; }
.event-row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  padding: 1.8rem 2.5rem;
  background: var(--dark2); border: 1px solid var(--border);
  text-decoration: none; transition: background .3s, transform .3s;
}
.event-row:hover { background: var(--dark3); transform: translateX(4px); }
.event-date {
  text-align: center; min-width: 64px;
}
.event-date .month {
  font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); display: block;
}
.event-date .day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; line-height: 1; color: var(--cream); display: block;
}
.event-info { }
.event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: .04em;
  color: var(--cream); margin-bottom: .3rem;
}
.event-meta { font-size: .78rem; color: var(--muted); display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.event-tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: .25rem .65rem;
  border-radius: 4px; background: rgba(232,160,32,.12); color: var(--gold);
}
.event-tag.tag-music  { background: rgba(232,76,61,.12);  color: var(--coral); }
.event-tag.tag-art    { background: rgba(167,139,250,.12); color: var(--purple); }
.event-tag.tag-community { background: rgba(74,222,128,.12); color: var(--green); }
.event-tag.tag-worship { background: rgba(45,212,191,.12); color: var(--teal); }
.event-caret { color: var(--gold); font-size: 1.3rem; opacity: 0; transition: opacity .2s, transform .2s; }
.event-row:hover .event-caret { opacity: 1; transform: translateX(4px); }

/* ── TESTIMONIALS ── */
.testimonials-section { overflow: hidden; background: var(--dark); }
.testimonials-cols {
  display: flex; gap: 1.5rem; margin-top: 3rem;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  max-height: 700px; overflow: hidden;
}
.testimonials-col { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.testimonials-col-inner { display: flex; flex-direction: column; gap: 1.5rem; animation: scroll-up var(--dur, 20s) linear infinite; }
.testimonial-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem;
  flex-shrink: 0;
}
.testimonial-text { font-size: .92rem; color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-stars { color: var(--gold); font-size: .85rem; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border);
}
.testimonial-name { font-weight: 600; font-size: .88rem; color: var(--cream); display: block; }
.testimonial-role { font-size: .75rem; color: var(--muted); display: block; }

/* ── ABOUT PAGE ── */
.page-hero {
  position: relative; padding: 10rem 2rem 6rem;
  background: var(--dark); overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 420px;
}
.page-hero-particles { position: absolute; inset: 0; z-index: 0; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1; color: var(--cream);
}
.page-hero-title em { color: var(--gold); font-style: normal; }
.page-hero-sub { color: var(--muted); font-size: 1.05rem; margin-top: 1rem; max-width: 540px; margin-left: auto; margin-right: auto; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-stack { position: relative; }
.about-img-main {
  width: 100%; border-radius: 12px;
  aspect-ratio: 4/5; object-fit: cover;
  border: 1px solid var(--border);
}
.about-img-accent {
  position: absolute; width: 55%; border-radius: 10px;
  aspect-ratio: 1/1; object-fit: cover;
  bottom: -2rem; right: -2rem;
  border: 4px solid var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.about-badge {
  position: absolute; top: 2rem; left: -1.5rem;
  background: var(--gold); color: var(--black);
  padding: 1.25rem 1.5rem; border-radius: 10px;
  font-family: 'Bebas Neue', sans-serif;
  text-align: center;
  box-shadow: 0 8px 30px rgba(232,160,32,.3);
}
.about-badge-num { display: block; font-size: 2.5rem; line-height: 1; }
.about-badge-label { font-size: .72rem; letter-spacing: .12em; font-family: 'Inter', sans-serif; font-weight: 600; }

.pillar-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3rem; }
.pillar-full-card {
  padding: 2.5rem; border-radius: 12px;
  background: var(--dark2); border: 1px solid var(--border);
  transition: transform .3s;
}
.pillar-full-card:hover { transform: translateY(-4px); }
.pillar-full-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.pillar-full-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; margin-bottom: .75rem;
}

/* ── SPACES PAGE ── */
.spaces-detail { display: grid; gap: 5rem; margin-top: 2rem; }
.space-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.space-detail-row.reverse { direction: rtl; }
.space-detail-row.reverse > * { direction: ltr; }
.space-detail-img {
  width: 100%; border-radius: 12px;
  aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid var(--border);
  transition: transform .5s;
}
.space-detail-row:hover .space-detail-img { transform: scale(1.02); }
.space-amenities { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.amenity-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: .35rem .8rem;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 4px; color: var(--muted);
}

/* ── EVENTS PAGE ── */
.events-filter { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }
.filter-btn {
  padding: .5rem 1.1rem; border-radius: 20px;
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--dark3); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.event-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.event-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .5s;
}
.event-card:hover .event-card-img { transform: scale(1.05); }
.event-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.event-card-date { font-size: .72rem; color: var(--gold); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
.event-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--cream); margin-bottom: .5rem; }
.event-card-desc { font-size: .85rem; color: var(--muted); line-height: 1.6; flex: 1; }
.event-card-footer { padding: 0 1.75rem 1.75rem; display: flex; justify-content: space-between; align-items: center; }
.event-card-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--cream); }

/* ── GALLERY PAGE ── */
.gallery-grid { columns: 3; gap: 1rem; margin-top: 3rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  position: relative; overflow: hidden; border-radius: 8px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform .5s, filter .4s;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(.7); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  background: rgba(9,9,9,.4);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom-icon { color: #fff; font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 6px; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: white; font-size: 2rem; cursor: pointer; opacity: .6; transition: opacity .2s;
  background: none; border: none;
}
.lightbox-close:hover { opacity: 1; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  padding: 2rem; background: var(--dark2); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: flex-start; gap: 1.25rem;
  transition: transform .3s;
}
.contact-info-card:hover { transform: translateX(4px); }
.contact-icon {
  font-size: 1.5rem; width: 48px; height: 48px;
  border-radius: 10px; background: rgba(232,160,32,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .3rem; }
.contact-value { font-size: .95rem; color: var(--cream); }
.contact-value a { color: var(--cream); text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

.contact-form { background: var(--dark2); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  padding: .85rem 1rem; background: var(--dark3); border: 1px solid var(--border);
  border-radius: 8px; color: var(--cream); font-family: 'Inter', sans-serif;
  font-size: .9rem; transition: border-color .2s, box-shadow .2s; outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,160,32,.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select option { background: var(--dark2); }
.success-msg {
  display: none; background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.2);
  color: var(--green); padding: 1rem 1.5rem; border-radius: 8px;
  margin-top: 1rem; font-size: .9rem; align-items: center; gap: .75rem;
}
.success-msg.show { display: flex; }

.map-container {
  margin-top: 4rem; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); height: 420px;
}
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(.8) invert(1) hue-rotate(180deg) brightness(.8); }

/* ── HOURS WIDGET ── */
.hours-grid { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .88rem; padding: .4rem 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border: none; }
.hours-day { color: var(--muted); }
.hours-time { color: var(--cream); font-weight: 600; }
.hours-closed { color: var(--coral); }

/* ── GATHERING SECTION ── */
.gathering-section {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1228 50%, #1a1208 100%);
  position: relative; overflow: hidden;
}
.gathering-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(167,139,250,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(232,160,32,.1) 0%, transparent 60%);
  animation: orb-drift1 10s ease-in-out infinite alternate;
}
.gathering-content { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
footer.visible { opacity: 1; transform: translateY(0); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.footer-logo img { height: 44px; width: auto; }
.footer-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: .06em; color: var(--gold); }
.footer-socials { display: flex; gap: .75rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--dark3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--muted); font-size: 1rem;
  transition: background .2s, color .2s, border-color .2s;
}
.social-btn:hover { background: rgba(232,160,32,.12); color: var(--gold); border-color: rgba(232,160,32,.3); }

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: .1em; color: var(--cream);
  margin-bottom: 1rem; text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  text-decoration: none; color: var(--muted); font-size: .88rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom { padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .78rem; color: var(--muted); }
.footer-bottom a { color: var(--gold); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--amber); }
.footer-clm { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--muted); }
.footer-clm a { color: var(--muted); transition: color .2s; }
.footer-clm a:hover { color: var(--gold); }
.footer-clm::before { content: '⚡'; font-size: .7rem; }

/* ── ANIMATIONS ── */
@keyframes fade-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce-down { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes scroll-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes orb-drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(4%,3%) scale(1.1); } }
@keyframes orb-drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-4%,-3%) scale(1.08); } }
@keyframes particle-float { 0%,100% { transform: translateY(0) translateX(0); opacity: .5; } 33% { transform: translateY(-30px) translateX(10px); opacity: .8; } 66% { transform: translateY(-15px) translateX(-8px); opacity: .6; } }
@keyframes pulse-ring { 0% { transform: scale(.8); opacity: .7; } 100% { transform: scale(2); opacity: 0; } }
@keyframes slide-right { from { transform: translateX(-40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slide-left { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes zoom-in-card { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes blur-in { from { filter: blur(12px); opacity: 0; } to { filter: blur(0); opacity: 1; } }
@keyframes gradient-x { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ── SCROLL ANIMATIONS ── */
.anim { opacity: 0; transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1), filter .8s; }
.anim.from-down  { transform: translateY(40px); }
.anim.from-up    { transform: translateY(-40px); }
.anim.from-left  { transform: translateX(-50px); }
.anim.from-right { transform: translateX(50px); }
.anim.zoom-in    { transform: scale(.88); }
.anim.zoom-out   { transform: scale(1.1); }
.anim.blur       { filter: blur(10px); }
.anim.visible { opacity: 1; transform: none; filter: none; }

.anim-delay-1 { transition-delay: .1s !important; }
.anim-delay-2 { transition-delay: .2s !important; }
.anim-delay-3 { transition-delay: .3s !important; }
.anim-delay-4 { transition-delay: .4s !important; }
.anim-delay-5 { transition-delay: .5s !important; }
.anim-delay-6 { transition-delay: .6s !important; }

/* ── STAT BAR ── */
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { padding: 2.5rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: .4rem; letter-spacing: .1em; text-transform: uppercase; }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--gold); overflow: hidden; padding: .75rem 0;
  white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 2rem; animation: marquee 20s linear infinite; }
.marquee-track span { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: .15em; color: var(--black); padding: 0 1rem; }
.marquee-track span::before { content: '✦'; margin-right: 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CTA SECTION ── */
.cta-section { text-align: center; background: var(--dark); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,160,32,.1) 0%, transparent 65%);
  animation: orb-drift1 8s ease-in-out infinite alternate;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section .section-title { font-size: clamp(2.5rem, 6vw, 5rem); }

/* ── PAGE TRANSITION ── */
.page-enter { animation: fade-in .4s ease-in-out; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}
@media (max-width: 900px) {
  nav#navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .spaces-grid { grid-template-columns: 1fr; }
  .space-card { min-height: 360px; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-accent { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 1rem; }
  .about-badge { display: none; }
  .space-detail-row, .space-detail-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .events-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .pillar-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .event-row { grid-template-columns: auto 1fr; padding: 1.25rem 1.5rem; gap: 1rem; }
  .event-caret { display: none; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-cols .col-2, .testimonials-cols .col-3 { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
}
