/* ============================================
   THE LAKE CLUB — Main Stylesheet
   Brand: #CC5A2A (orange), #1A1A1A (black), #FFFFFF (white)
   Font: Google Sans
============================================ */

/* ─── Google Sans — Self-hosted ─────────────────── */
@font-face {
  font-family: 'Google Sans';
  src: local('Google Sans'),
       url('../fonts/GoogleSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: local('Google Sans Italic'),
       url('../fonts/GoogleSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: local('Google Sans Medium'),
       url('../fonts/GoogleSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Google Sans';
  src: local('Google Sans Bold'),
       url('../fonts/GoogleSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #CC5A2A;
  --black:  #1A1A1A;
  --white:  #FFFFFF;
  --off-white: #F5F4F2;
  --grey:   #9B9B9B;
  --light-grey: #E8E7E5;
  --font: 'Google Sans', sans-serif;
  --section-y: clamp(84px, 9vw, 112px);
  --section-gap: clamp(40px, 5vw, 72px);
  --title-main: clamp(32px, 4vw, 56px);
  --body-copy: 15px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  line-height: 1.5;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ─── Custom Scrollbar ──────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ─── Utility Classes ───────────────────────────── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.orange { color: var(--orange); }
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  padding-bottom: 16px;
}

/* ─── Navigation ────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--light-grey);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo svg { height: 36px; width: auto; }
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  font-size: 14px;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--black);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

/* Home top state: white nav text on hero */
#navbar:not(.scrolled):not(.nav-interior) .nav-links a { color: var(--white); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1.5px solid var(--black);
  border-radius: 0;
  color: var(--black);
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--black);
  color: var(--white);
}

#navbar:not(.scrolled):not(.nav-interior) .nav-cta {
  color: var(--white);
  border-color: var(--white);
}
#navbar:not(.scrolled):not(.nav-interior) .nav-cta:hover {
  background: var(--white);
  color: var(--black);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all var(--transition);
}
#navbar:not(.scrolled):not(.nav-interior) .nav-hamburger span { background: var(--white); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { overflow: hidden; }
.mobile-menu ul li a {
  display: block;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  padding: 8px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color var(--transition);
}
.mobile-menu.open ul li a { transform: translateY(0); }
.mobile-menu ul li a:hover { color: var(--orange); }
.mobile-menu .mobile-bottom {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.mobile-menu .mobile-bottom p {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.05em;
}

/* ─── Hero Section ──────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--off-white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.02) 0%,
    rgba(26,26,26,0.4) 100%
  );
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-dots {
  position: absolute;
  left: auto !important;
  right: 24px !important;
  bottom: 180px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  transition: transform var(--transition), background var(--transition);
}
.hero-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 48px 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-headline {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  color: var(--orange);
}
.hero-right {
  text-align: right;
  color: var(--white);
}
.hero-right .hero-scroll {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-right .hero-scroll::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* Opening Soon badge */
.badge-soon {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.badge-soon .badge-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-align: right;
}
.badge-soon .badge-logo svg { height: 48px; }

/* Hero Ticker */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44px;
  background: var(--orange);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 3;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 32px;
}
.ticker-track .dot {
  color: rgba(255,255,255,0.4);
  padding: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section: Intro Text ───────────────────────── */
#about {
  padding: 120px 0;
  border-bottom: 1px solid var(--light-grey);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.about-label {
  padding-top: 8px;
}
.about-text h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: justify;
}
.about-text .about-pillars {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--light-grey);
}
.pillar {
  flex: 1;
}
.pillar .pillar-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--orange);
}
.pillar h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* ─── Section: Our Space ────────────────────────── */
#our-space {
  padding: 120px 0;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.section-header .section-desc {
  max-width: 360px;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  text-align: right;
}

/* ─── Shared Utilities (Phase 2) ───────────────── */
.section-block { padding: var(--section-y) 0; }
.section-divider { border-bottom: 1px solid var(--light-grey); }
.section-title-wrap { margin-bottom: var(--section-gap); }
.section-title-xl {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.centered-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro-heading {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: color var(--transition), border-color var(--transition), opacity var(--transition);
}
.link-inline-black { color: var(--black); }
.link-inline-orange { color: var(--orange); }
.link-inline-white { color: var(--white); border-bottom-color: rgba(255,255,255,0.6); }
.link-inline-black:hover { color: var(--orange); border-bottom-color: var(--orange); }
.link-inline-orange:hover { opacity: 0.7; }
.link-inline-white:hover { border-bottom-color: var(--white); }

.home-feature {
  position: relative;
  background-size: cover;
  background-position: center;
}
.home-feature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.home-feature-content {
  position: relative;
  z-index: 1;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 56px;
  align-items: center;
}
.home-feature-copy {
  min-width: 0;
}
.home-feature-grid-reverse {
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 0.95fr);
}
.home-feature-visual {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.home-feature-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home-feature-card {
  padding: 56px;
  text-align: center;
}
.home-feature-card-light { background: rgba(255,255,255,0.95); }
.home-feature-card-orange { background: var(--orange); color: var(--white); }

.ig-embed-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
}
.ig-embed-frame {
  width: 100%;
  min-height: 600px;
  border: 0;
  overflow: hidden;
  display: block;
}

.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.home-menu-card {
  display: block;
  padding: 56px 48px;
  background: var(--off-white);
  color: var(--black);
  transition: background var(--transition), opacity var(--transition);
}
.home-menu-card h3,
.home-menu-card p { transition: color var(--transition); }
.home-menu-card .menu-index {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 48px;
}
.home-menu-card h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 12px;
}
.home-menu-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--grey);
}
.home-menu-card:hover {
  background: var(--black);
}
.home-menu-card:hover h3 { color: var(--white); }
.home-menu-card:hover p { color: rgba(255,255,255,0.5); }

.home-menu-card.dark {
  background: var(--black);
  color: var(--white);
}
.home-menu-card.dark h3 { color: var(--white); }
.home-menu-card.dark p { color: rgba(255,255,255,0.5); }
.home-menu-card.dark:hover { background: var(--orange); }

.home-menu-card.accent {
  background: var(--orange);
  color: var(--white);
}
.home-menu-card.accent .menu-index,
.home-menu-card.accent p { color: rgba(255,255,255,0.7); }
.home-menu-card.accent h3 { color: var(--white); }
.home-menu-card.accent:hover { opacity: 0.88; }

.home-menu-card.light-grey { background: var(--light-grey); }

.vendors-cta-section {
  padding: var(--section-y) 0;
  background: var(--off-white);
}
.vendors-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vendors-cta-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0 24px;
}
.vendors-cta-title em { font-style: italic; color: var(--orange); }
.vendors-cta-copy {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 32px;
}
.vendors-criteria-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-grey);
}
.vendors-criteria-index {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--orange);
  min-width: 24px;
}
.vendors-criteria-label {
  font-size: 17px;
  font-weight: 400;
}
.vendor-space-tags { margin-top: 20px; }
.vendor-desc-top { margin-top: 10px; }

.space-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.space-card {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.space-card:nth-child(1) { grid-column: 1/8; grid-row: 1; aspect-ratio: 4/3; }
.space-card:nth-child(2) { grid-column: 8/13; grid-row: 1; aspect-ratio: 3/4; }
.space-card:nth-child(3) { grid-column: 1/5; grid-row: 2; aspect-ratio: 3/4; }
.space-card:nth-child(4) { grid-column: 5/9; grid-row: 2; aspect-ratio: 3/4; }
.space-card:nth-child(5) { grid-column: 9/13; grid-row: 2; aspect-ratio: 4/3; }

.space-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.space-card:hover .space-card-img { transform: scale(1.04); }
.space-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,26,26,0.7), transparent);
  color: var(--white);
  transform: translateY(8px);
  transition: transform var(--transition);
}
.space-card:hover .space-card-info { transform: translateY(0); }
.space-card-info .space-name {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}
.space-card-info .space-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Placeholder Images */
.space-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
}
.space-placeholder .ph-icon {
  font-size: 48px;
  opacity: 0.15;
}

/* ─── Section: Marquee ──────────────────────────── */
.marquee-section {
  padding: 60px 0;
  overflow: hidden;
  background: var(--black);
}
.marquee-row {
  display: flex;
  animation: marquee-left 30s linear infinite;
  white-space: nowrap;
}
.marquee-row.reverse { animation: marquee-right 30s linear infinite; }
.marquee-row span {
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.15);
  padding: 0 24px;
  display: inline-block;
  line-height: 1;
  padding-bottom: 8px;
}
.marquee-row span.filled { color: var(--white); -webkit-text-stroke: 0; }
.marquee-row span.orange-txt { color: var(--orange); -webkit-text-stroke: 0; }
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ─── Section: Our Vendors ──────────────────────── */
#our-vendors {
  padding: var(--section-y) 0;
  background: var(--off-white);
}
.vendors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: var(--section-gap);
}
.vendor-card {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--light-grey);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(26,26,26,0.04);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.vendor-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vendor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 64px;
  background: linear-gradient(180deg, rgba(204,90,42,0.08) 0%, rgba(204,90,42,0) 100%);
  pointer-events: none;
}
.vendor-card:hover::after { width: 100%; }
.vendor-card:hover {
  background: var(--black);
  color: var(--white);
  border-color: #2f2f2f;
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
  transform: translateY(-6px);
}
.vendor-card .vendor-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 24px;
}
.vendor-card .vendor-name {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}
.vendor-card .vendor-cat {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.vendor-card:hover .vendor-cat { color: rgba(255,255,255,0.5); }
.vendor-card .vendor-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey);
  transition: color var(--transition);
}
.vendor-card:hover .vendor-desc { color: rgba(255,255,255,0.6); }
.vendor-card .space-tags {
  margin-top: 24px !important;
  gap: 10px;
}
.vendor-card .space-tag-pill {
  padding: 7px 14px;
  border: 1px solid #dcd9d4;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.09em;
  background: #faf9f7;
  color: #6c6c6c;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.vendor-card:hover .space-tag-pill {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.82);
}

/* ─── Section: Activity ─────────────────────────── */
#our-activity {
  padding: var(--section-y) 0;
}
.activity-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--light-grey);
}
.activity-cat {
  padding: 48px 40px;
  border-right: 1px solid var(--light-grey);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--transition);
}
.activity-cat:last-child { border-right: none; }
.activity-cat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.activity-cat:hover::before { transform: translateY(0); }
.activity-cat * { position: relative; z-index: 1; }
.activity-cat:hover * { color: var(--white); }

.activity-cat .cat-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 48px;
  transition: color var(--transition);
}
.activity-cat .cat-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
  transition: all var(--transition);
}
.activity-cat:hover .cat-icon { border-color: var(--orange); color: var(--orange); }
.activity-cat .cat-name {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.activity-cat .cat-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  transition: color var(--transition);
}
.activity-cat:hover .cat-desc { color: rgba(255,255,255,0.6); }

/* ─── Section: Horizontal Scroll Gallery ───────── */
#gallery {
  padding: 120px 0 0;
  overflow: hidden;
}
.gallery-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-scroll-container:active { cursor: grabbing; }
.gallery-scroll-container::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 48px 80px;
  width: max-content;
}
.gallery-item {
  flex-shrink: 0;
  width: 360px;
  height: 500px;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ─── Section: Community ────────────────────────── */
#our-community {
  padding: var(--section-y) 0;
  background: var(--black);
  color: var(--white);
}
#our-community .tag { color: var(--orange); }
#our-community .section-header h2 { color: var(--white); }
#our-community .section-desc { color: rgba(255,255,255,0.5); }

/* ─── Instagram Feed Tile ───────────────────────── */
.ig-tile img { transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.ig-tile:hover img { transform: scale(1.06); }

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.community-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.05);
}
.community-item img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.community-item:hover img { transform: scale(1.05); }
.community-item:nth-child(odd) { margin-top: 32px; }

/* ─── Section: Contact ──────────────────────────── */
#contact {
  padding: var(--section-y) 0;
}
.contact-page {
  padding-top: 12px;
}
.contact-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(380px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}
.contact-panel {
  background: linear-gradient(180deg, #fbfaf8 0%, #f5f4f2 100%);
  border: 1px solid #e3dfd9;
  border-radius: var(--radius-lg);
  padding: 38px 34px;
}
.contact-title {
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 18px 0 28px;
}
.contact-title em {
  font-style: italic;
  color: var(--orange);
}
.contact-info-list {
  display: grid;
  gap: 14px;
}
.contact-item {
  background: rgba(255,255,255,0.78);
  border: 1px solid #e9e5df;
  border-radius: var(--radius-sm);
  padding: 18px;
}
.contact-item-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-item-text {
  font-size: var(--body-copy);
  color: var(--grey);
  line-height: 1.75;
}
.contact-item-text-spaced { margin-top: 10px; }
.contact-item-text strong { color: var(--black); font-weight: 500; }
.contact-inline-link {
  font-size: 14px;
  color: var(--orange);
  border-bottom: 1px solid rgba(204,90,42,0.5);
  padding-bottom: 2px;
}
.contact-social-wrap {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e1ddd7;
}
.contact-social-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}
.contact-social {
  display: flex;
  gap: 16px;
}
.contact-page .social-link {
  width: 44px; height: 44px;
  border: 1px solid #d7d3cd;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.contact-page .social-link:hover {
  border-color: #d4693d;
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.contact-page .social-link svg { width: 18px; height: 18px; }

/* Form */
.contact-form-card {
  padding: 36px 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid #e7e3dc;
  box-shadow: 0 12px 34px rgba(26,26,26,0.06);
}
.contact-form { margin-top: 24px; }
.contact-success {
  padding: 22px;
  background: #f7f4ef;
  border: 1px solid #eadfce;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  margin-bottom: 28px;
}
.contact-success-title { font-size: 16px; font-weight: 500; }
.contact-success-note {
  font-size: 14px;
  color: var(--grey);
  margin-top: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #e3dfd9;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--black);
  background: #fdfcfb;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #d78a61;
  box-shadow: 0 0 0 3px rgba(204,90,42,0.12);
  background: var(--white);
}
.form-group textarea { min-height: 140px; }
.contact-map-frame {
  border: 1px solid #e5e0d9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26,26,26,0.08);
}
.contact-map-section {
  padding: 0 0 calc(var(--section-y) + 10px);
}
.map-embed {
  border: 0;
  display: block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 40px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.btn-primary:hover { background: var(--orange); }
.btn-primary svg { width: 20px; height: 20px; transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary-orange { background: var(--orange); }
.btn-inline-icon {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

/* ─── Newsletter Bar ────────────────────────────── */
.newsletter-bar {
  padding: 72px 0;
  background: var(--orange);
  color: var(--white);
  text-align: center;
}
.newsletter-bar h3 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.newsletter-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 16px;
  color: var(--white);
  padding: 12px 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 12px 0 12px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
}
.newsletter-form button:hover { opacity: 0.7; }

/* ─── Footer ────────────────────────────────────── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 48px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand svg { height: 40px; width: auto; margin-bottom: 24px; }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom .footer-back-top {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
  cursor: pointer;
}
.footer-back-top:hover { color: var(--orange); }

/* ─── Floating Nav Buttons (DOWN / TOP) ─────────── */
.float-nav {
  position: fixed;
  right: 28px;
  bottom: 40px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #CC5A2A;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(204,90,42,0.38);
  transition: background 0.2s ease, opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
}
.float-btn:hover {
  background: #b34d24;
  box-shadow: 0 8px 28px rgba(204,90,42,0.48);
}
.float-btn svg { display: block; flex-shrink: 0; }

/* DOWN: visible by default, hides when scrolled */
#floatDown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-nav.is-scrolled #floatDown {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

/* TOP: hidden by default, shows when scrolled */
#floatTop {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.float-nav.is-scrolled #floatTop {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ─── About Page (Phase 3) ─────────────────────── */
.about-brand-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--section-gap);
  align-items: start;
}
.about-metrics { margin-top: 48px; }
.about-metric { margin-bottom: 32px; }
.about-metric:last-child { margin-bottom: 0; }
.about-metric-value {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--orange);
}
.about-metric-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}
.about-copy-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: justify;
  margin-bottom: 32px;
}
.about-copy-text {
  font-size: var(--body-copy);
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 24px;
}
.about-copy-text:last-child { margin-bottom: 0; }

.about-pillars-section {
  background: var(--black);
  color: var(--white);
  border-top: none;
}
.about-pillars-head { margin-bottom: var(--section-gap); }
.about-pillars-section .tag { color: var(--orange); }
.about-pillars-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--white);
}
.about-pillars-desc {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  font-size: 15px;
}
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.about-pillar-card {
  padding: 48px 40px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about-pillar-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 28px;
}
.about-pillar-name {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}
.about-pillar-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.about-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--section-gap);
  align-items: center;
}
.about-vision-visual {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg,#CC5A2A,#8B3D1C);
  overflow: hidden;
}
.about-vision-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 16px 0 24px;
}
.about-vision-copy {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-vision-copy:last-of-type { margin-bottom: 40px; }

/* ─── Space Page (Phase 3) ─────────────────────── */
.space-overview-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.space-overview-lead {
  font-size: 18px;
  line-height: 1.9;
  color: var(--black);
  margin-top: 10px;
}
.space-overview-copy {
  font-size: 16px;
  line-height: 1.9;
  color: var(--grey);
  margin-top: 18px;
}
.space-overview-copy.compact { margin-top: 10px; }

.space-strip {
  background: var(--black);
}
.space-strip-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.space-strip-link {
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color var(--transition);
}
.space-strip-link:hover { color: var(--orange); }
.space-strip-index {
  color: var(--orange);
  font-size: 10px;
}

.space-section-tight { padding: 0; }
.space-section-alt { background: var(--off-white); }
.space-detail-roomy { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.space-detail-function { margin-top: 14px; }

.space-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--space-bg, linear-gradient(135deg,#2A2A2A,#3D3D3D));
}
.space-image-placeholder p {
  color: var(--space-text, rgba(255,255,255,0.1));
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.space-bottom-cta {
  padding: 80px 0;
  background: var(--black);
  text-align: center;
}
.space-bottom-cta-title {
  font-size: clamp(32px,4vw,56px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

/* ─── Activity Page (Phase 3) ─────────────────── */
.activity-intro-title {
  font-size: var(--title-main);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 16px;
}
.activity-intro-copy-wrap { padding-top: 8px; }
.activity-intro-copy {
  font-size: var(--body-copy);
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 24px;
}
.activity-intro-copy:last-child { margin-bottom: 0; }

.section-plain-title {
  font-size: var(--title-main);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.section-header-tight { margin-bottom: clamp(36px, 4vw, 52px); }
.section-offwhite { background: var(--off-white); }
.section-pt-0 { padding-top: 0; }

.activity-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--section-gap);
  align-items: start;
}

.private-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--section-gap);
  align-items: center;
}

.private-events-section { padding: var(--section-y) 0; }
.private-events-title {
  font-size: var(--title-main);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0 24px;
}
.private-events-title em {
  font-style: italic;
  color: var(--orange);
}
.private-events-copy {
  font-size: var(--body-copy);
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 32px;
}
.private-events-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.private-events-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,#CC5A2A20,#1A1A1A);
  overflow: hidden;
}

/* ─── Community Page (Phase 3) ────────────────── */
.community-stats {
  background: var(--black);
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.community-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
}
.community-stat {
  padding: 0 32px;
}
.community-stat.with-border { border-left: 1px solid rgba(255,255,255,0.08); }
.community-stat-value {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1;
}
.community-stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.community-intro {
  max-width: 620px;
  margin: 0 auto var(--section-gap);
  text-align: center;
}
.community-intro-title {
  font-size: clamp(32px,4vw,48px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.community-intro-copy {
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
}

.community-collective-grid { margin-bottom: var(--section-y); }
.community-collective-card {
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 48px;
  text-align: center;
}
.community-collective-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
}
.community-collective-card p {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
}

.community-gallery-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 28px;
  text-align: center;
}
.community-gallery-grid {
  columns: 3;
  column-gap: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.gallery-img-wrap {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  background: #f0efed;
}
.gallery-img-wrap a { display: block; }
.gallery-img-wrap img {
  width: 100%;
  display: block;
  transition: transform .35s ease;
}
.gallery-img-wrap:hover img { transform: scale(1.04); }
.gallery-img-zoom {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,.45);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.gallery-img-wrap:hover .gallery-img-zoom { opacity: 1; }
@media (max-width: 768px) { .community-gallery-grid { columns: 2; } }
@media (max-width: 480px) { .community-gallery-grid { columns: 1; } }
.community-gallery-placeholder {
  background: rgba(0,0,0,0.03);
  border: 1px dashed rgba(0,0,0,0.1);
  padding: 120px;
  text-align: center;
}
.community-gallery-placeholder p {
  font-size: 14px;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.05em;
}

.archive-item-grad {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.archive-item-cat {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.community-cta {
  padding: var(--section-y) 0;
  background: var(--black);
  text-align: center;
}
.community-cta-title {
  font-size: var(--title-main);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.community-cta-copy {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ─── Reveal Animations ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Loader ────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo svg { height: 48px; width: auto; margin-bottom: 32px; }
.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  animation: loader-fill 1.5s ease-in-out forwards;
}
@keyframes loader-fill {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* ─── Cursor ────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s, height 0.3s, background 0.3s;
  transform: translate(-50%, -50%);
  display: none;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transition: all 0.15s ease;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  display: none;
}
.cursor.is-visible,
.cursor-ring.is-visible {
  display: block;
}
@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
}
.cursor.is-visible,
.cursor-ring.is-visible {
  display: block !important;
}
@media (max-width: 768px) {
  .cursor, .cursor-ring { display: none; }
}

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .container, .container-narrow { padding: 0 32px; }
  #navbar { padding: 0 32px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 32px 64px; }
  .badge-soon { right: 32px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-brand-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .about-vision-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text .about-pillars { flex-wrap: wrap; gap: 32px; }
  .pillar { flex: 1 1 calc(50% - 16px); }

  .space-grid { grid-template-columns: repeat(6, 1fr); }
  .space-card:nth-child(1) { grid-column: 1/7; }
  .space-card:nth-child(2) { grid-column: 1/4; grid-row: 2; }
  .space-card:nth-child(3) { grid-column: 4/7; grid-row: 2; }
  .space-card:nth-child(4) { grid-column: 1/4; grid-row: 3; }
  .space-card:nth-child(5) { grid-column: 4/7; grid-row: 3; }
  .space-strip-grid { grid-template-columns: repeat(3,1fr); }

  .vendors-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-categories { grid-template-columns: repeat(2, 1fr); }
  .activity-cat { border-bottom: 1px solid var(--light-grey); }
  .activity-cat:nth-child(even) { border-right: none; }

  .contact-shell { grid-template-columns: 1fr; gap: 24px; }
  .contact-panel, .contact-form-card { padding: 30px 28px; }
  .vendors-cta-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .community-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .community-stat.with-border { border-left: none; }

  .instagram-feed-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .home-menu-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 24px; }
  #navbar { padding: 0 24px; }
  .hero-content { padding: 0 24px 56px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-dots { left: auto !important; right: 16px !important; bottom: 140px; }
  .badge-soon { display: none; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-header .section-desc { text-align: left; }

  .activity-categories { grid-template-columns: 1fr; }
  .activity-cat { border-right: 1px solid var(--light-grey); }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-panel, .contact-form-card { padding: 26px 22px; border-radius: 12px; }

  .gallery-track { padding: 0 24px 60px; }
  .gallery-item { width: 280px; height: 380px; }

  .vendors-grid { grid-template-columns: 1fr; }
  .vendors-cta-grid { gap: 32px; }
  .about-pillars-grid { grid-template-columns: 1fr; }
  .space-strip-grid { grid-template-columns: repeat(2,1fr); }
  .space-strip-link { padding: 18px 14px; font-size: 11px; }
  .community-stats-grid { grid-template-columns: 1fr; row-gap: 24px; }
  .community-gallery-placeholder { padding: 80px 24px; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .community-item:nth-child(odd) { margin-top: 0; }
  .contact-map-section { padding: 0 0 72px; }

  .instagram-feed-grid { grid-template-columns: 1fr !important; }
  .home-menu-grid { grid-template-columns: 1fr !important; }
}

/* ─── Interior Nav (non-home pages) ────────────── */
.nav-interior { background: rgba(255,255,255,0.98) !important; box-shadow: 0 1px 0 var(--light-grey); }
.nav-interior .nav-links a { color: var(--black); }
.nav-interior .nav-cta { color: var(--black); border-color: var(--black); }
.nav-links a.nav-active { color: var(--orange); }
.nav-links a.nav-active::after { width: 100%; }

/* ─── Page Banner (interior pages) ─────────────── */
.page-banner {
  padding: 160px 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--light-grey);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: attr(data-label);
  position: absolute;
  right: 48px;
  bottom: -20px;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--light-grey);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .pb-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.page-banner h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-banner .pb-desc {
  margin-top: 28px;
  font-size: 17px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 560px;
}

/* ─── Page Banner Dark Variant ──────────────────── */
.page-banner.dark {
  background: var(--black);
}
.page-banner.dark::before { -webkit-text-stroke-color: rgba(255,255,255,0.04); }
.page-banner.dark .pb-eyebrow { color: var(--orange); }
.page-banner.dark h1 { color: var(--white); }
.page-banner.dark .pb-desc { color: rgba(255,255,255,0.5); }

/* ─── Page Section Spacing ──────────────────────── */
.page-section { padding: var(--section-y) 0; }
.page-section + .page-section { border-top: 1px solid var(--light-grey); }

/* ─── Archive / Community Filter ───────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--light-grey);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ─── Archive Grid ──────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.archive-item {
  overflow: hidden;
  position: relative;
  background: var(--off-white);
}
.archive-item-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.archive-item-img > div {
  width: 100%; height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.archive-item:hover .archive-item-img > div { transform: scale(1.05); }
.archive-item-info { padding: 20px 0 4px; }
.archive-item-info .arch-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.archive-item-info h3 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}
.archive-item-info p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

/* ─── Space Detail Page ─────────────────────────── */
.space-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--light-grey);
}
.space-detail-grid:last-child { border-bottom: none; }
.space-detail-grid.reverse .space-detail-visual { order: -1; }
.space-detail-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off-white);
}
.space-detail-info .sd-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.space-detail-info h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.space-detail-info p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 32px;
}
.space-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.space-tag-pill {
  padding: 6px 14px;
  border: 1px solid var(--light-grey);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ─── Vendor Grid Expanded ──────────────────────── */
.vendors-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vendors-grid-four {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* ─── Activity Timeline ─────────────────────────── */
.activity-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.activity-event {
  padding: 40px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.activity-event::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.5s ease;
}
.activity-event:hover { background: var(--black); color: var(--white); }
.activity-event:hover::after { width: 100%; }
.activity-event .ev-cat {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.activity-event .ev-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color var(--transition);
}
.activity-event .ev-meta {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.activity-event:hover .ev-meta { color: rgba(255,255,255,0.5); }

/* ─── Rhythm Grid (Daily/Weekly) ────────────────── */
.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.rhythm-day {
  background: var(--white);
  padding: 28px 20px;
  min-height: 240px;
  transition: background var(--transition);
}
.rhythm-day:hover { background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.rhythm-day-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--light-grey);
}
.rhythm-item { margin-bottom: 20px; }
.rhythm-item:last-child { margin-bottom: 0; }
.rhythm-cat {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.rhythm-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 4px;
}
.rhythm-meta {
  font-size: 11px;
  color: var(--grey);
  line-height: 1.5;
}

/* ─── Upcoming Events Grid ──────────────────────── */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.upcoming-event {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.upcoming-event::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.5s ease;
}
.upcoming-event:hover { background: var(--black); }
.upcoming-event:hover::after { width: 100%; }
.upcoming-event-inner { padding: 48px 40px; }
.upcoming-event .ev-cat {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.upcoming-event .ev-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.upcoming-event:hover .ev-title { color: var(--white); }
.upcoming-event .ev-date {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 6px;
}
.upcoming-event .ev-meta {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.upcoming-event:hover .ev-meta { color: rgba(255,255,255,0.5); }
.upcoming-event .ev-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  transition: color var(--transition);
}
.upcoming-event:hover .ev-desc { color: rgba(255,255,255,0.5); }

/* ─── Lightbox ──────────────────────────────────── */
.tlc-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 40px;
}
.tlc-lb.is-open { display: flex; }
.tlc-lb img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  cursor: default;
  box-shadow: 0 8px 60px rgba(0,0,0,0.4);
}
.tlc-lb-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,0.75);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.2s;
  font-family: sans-serif;
}
.tlc-lb-close:hover { color: #fff; }

/* ─── Monthly Events ───────────────────────────── */
.mev-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}
.mev-poster { position: sticky; top: 100px; }
.mev-poster-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  text-decoration: none;
}
.mev-poster-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.mev-poster-link:hover img { transform: scale(1.03); }
.mev-poster-empty {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg,#eeede9 0%,#e3e2de 100%);
  border-radius: 2px;
}
.mev-zoom {
  position: absolute;
  bottom: 14px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--black);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.mev-poster-link:hover .mev-zoom { opacity: 1; }
.mev-list { }
.mev-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mev-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.mev-date {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1.1;
  padding-top: 3px;
}
.mev-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 5px;
  color: var(--black);
}
.mev-when {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 9px;
}
.mev-desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.75;
}

/* ─── Monthly Workshops ─────────────────────────── */
.mws-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.mws-header-text { flex: 1; }
.mws-time {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 10px;
}
.mws-poster-sm {
  flex-shrink: 0;
  width: 160px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  text-decoration: none;
  margin-top: 8px;
}
.mws-poster-sm img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.mws-poster-sm:hover img { transform: scale(1.04); }
.mws-zoom {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--black);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.mws-poster-sm:hover .mws-zoom { opacity: 1; }
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}
.workshop-card {
  border-top: 2px solid var(--orange);
  padding-top: 20px;
}
.workshop-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.workshop-date-pill {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 20px;
  padding: 3px 9px;
  white-space: nowrap;
}
.workshop-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
  color: var(--black);
}
.workshop-time-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.workshop-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.75;
}

/* ─── Activity Intro Grid ───────────────────────── */

/* ─── Responsive interior ───────────────────────── */
@media (max-width: 1024px) {
  .home-feature-grid { grid-template-columns: 1fr; gap: 36px; }
  .home-feature-visual { aspect-ratio: 16 / 9; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .vendors-grid-full { grid-template-columns: repeat(2, 1fr); }
  .space-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .space-detail-grid.reverse .space-detail-visual { order: 0; }
  .activity-timeline { grid-template-columns: 1fr; }
  .rhythm-grid { grid-template-columns: repeat(4, 1fr); }
  .upcoming-grid { grid-template-columns: 1fr; }
  .activity-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .private-events-grid { grid-template-columns: 1fr; gap: 40px; }
  .mev-layout { grid-template-columns: 260px 1fr; gap: 40px; }
  .mev-poster { position: static; }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .mws-poster-sm { width: 130px; }
  .vendor-card { padding: 40px 34px; }
}
@media (max-width: 768px) {
  .home-feature-grid { gap: 28px; }
  .home-feature-card { padding: 32px 24px; }
  .page-banner { padding: 120px 0 60px; }
  .page-banner::before { display: none; }
  .archive-grid { grid-template-columns: 1fr; }
  .vendors-grid-full { grid-template-columns: 1fr; }
  .rhythm-grid { grid-template-columns: repeat(2, 1fr); }
  .vendors-grid-four { gap: 14px; }
  .vendor-card { border-radius: 10px; }
  .mev-layout { grid-template-columns: 1fr; gap: 32px; }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .mws-header { flex-direction: column-reverse; gap: 24px; }
  .mws-poster-sm { width: 120px; }
}
@media (max-width: 480px) {
  .rhythm-grid { grid-template-columns: 1fr; }
  .mec-date { font-size: 30px; }
  .mec-body { padding: 18px 20px 24px; }
  .workshop-grid { grid-template-columns: 1fr; gap: 20px; }
}
