/* =====================================================
   TEIVORA v2 — Warm Earth Luxury + Cinematic Motion
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Warm Earth Palette */
  --cream:     #F5EFE6;
  --warm-white:#FDFAF6;
  --sand:      #E8D5B7;
  --terracotta:#C4623A;
  --terra-light:#D97B52;
  --terra-dark:#A04D2C;
  --amber:     #D4A847;
  --amber-glow:#F0C460;
  --forest:    #2C3E2D;
  --forest-mid:#3D5C3F;
  --charcoal:  #1C1C1E;
  --ink:       #0D0D0F;
  --ink-2:     #151518;
  --ink-3:     #1E1E22;
  --ink-4:     #27272D;
  --text-warm: #F0E8DA;
  --text-muted:#9A8F82;
  --text-dim:  #6A6058;
  --border:    rgba(232,213,183,0.12);
  --border-warm:rgba(212,168,71,0.2);
  --radius:    20px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-warm: 0 30px 80px rgba(196,98,58,0.15);
  --shadow-deep: 0 40px 100px rgba(0,0,0,0.5);
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;
  --transition:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-warm);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(196,98,58,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all 0.15s var(--transition);
}
.cursor-ring.hover { width:56px; height:56px; background:rgba(196,98,58,0.08); border-color:var(--terracotta); }
body * { cursor: none; }

/* ===== GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998;
  opacity: 0.4;
}

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terracotta);
  color: var(--warm-white);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 14px 32px; border-radius: 50px;
  border: none; cursor: none;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--terra-light), var(--terracotta));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(196,98,58,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary.large { font-size: 16px; padding: 18px 44px; }
.btn-primary.small { font-size: 13px; padding: 10px 24px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--sand);
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 14px 32px; border-radius: 50px;
  border: 1px solid rgba(232,213,183,0.25); cursor: none;
  transition: all 0.3s var(--transition);
}
.btn-ghost:hover { background: rgba(232,213,183,0.07); border-color: var(--sand); color: var(--warm-white); transform: translateY(-2px); }
.btn-ghost.large { font-size: 16px; padding: 18px 44px; }

.btn-text {
  color: var(--amber);
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.btn-text:hover { gap: 10px; color: var(--amber-glow); }

/* ===== SECTION LABELS ===== */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--terracotta);
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--transition), transform 0.9s var(--transition); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--transition), transform 0.9s var(--transition); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--transition), transform 0.9s var(--transition); }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.9s var(--transition), transform 0.9s var(--transition); }
.reveal-scale.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 99997;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preload-logo {
  font-family: var(--font-display); font-size: 72px; font-weight: 300;
  color: var(--cream); letter-spacing: 0.15em;
  clip-path: inset(0 100% 0 0);
  animation: revealText 1.4s var(--transition) 0.3s forwards;
}
@keyframes revealText { to { clip-path: inset(0 0% 0 0); } }
.preload-bar {
  width: 180px; height: 1px;
  background: var(--ink-4);
  margin-top: 24px; overflow: hidden;
}
.preload-fill {
  height: 100%; width: 0;
  background: var(--terracotta);
  animation: fillBar 1.6s var(--transition) forwards;
}
@keyframes fillBar { to { width: 100%; } }
.preload-pct {
  font-size: 12px; color: var(--text-muted); margin-top: 12px;
  letter-spacing: 0.1em;
  animation: countUp 1.6s linear forwards;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(13,13,15,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  color: var(--warm-white); letter-spacing: 0.05em;
  flex-shrink: 0;
}
.logo-emblem {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  box-shadow: 0 6px 24px rgba(196,98,58,0.4);
}
.nav-links { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0.03em;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; right: 50%;
  height: 1px; background: var(--terracotta);
  transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--warm-white); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text-warm); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?w=1800&q=80') center/cover;
  transform: scale(1.08);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.0); } }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,15,0.92) 0%,
    rgba(13,13,15,0.75) 40%,
    rgba(44,62,45,0.4) 100%
  );
}
.hero-bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto; padding: 140px 32px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(196,98,58,0.12);
  border: 1px solid rgba(196,98,58,0.3);
  padding: 8px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s var(--transition) 0.2s both;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(58px, 8.5vw, 130px);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 32px; max-width: 900px;
}
.hero-title .word { display: inline-block; overflow: hidden; }
.hero-title .word span { display: inline-block; animation: wordReveal 1s var(--transition) both; }
.hero-title .w1 span { animation-delay: 0.3s; }
.hero-title .w2 span { animation-delay: 0.45s; }
.hero-title .w3 span { animation-delay: 0.6s; }
.hero-title .w4 span { animation-delay: 0.75s; }
.hero-title .w5 span { animation-delay: 0.9s; }
@keyframes wordReveal { from{transform:translateY(110%)} to{transform:translateY(0)} }
.hero-title em { font-style: italic; color: var(--terracotta); }
.hero-title strong { font-weight: 700; }

.hero-sub {
  font-size: 18px; color: rgba(240,232,218,0.65);
  max-width: 520px; line-height: 1.8; margin-bottom: 48px;
  animation: fadeSlideUp 1s var(--transition) 1.1s both;
}
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 80px;
  animation: fadeSlideUp 1s var(--transition) 1.3s both;
}

.hero-stats {
  display: flex; gap: 0;
  animation: fadeSlideUp 1s var(--transition) 1.5s both;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  overflow: hidden; width: fit-content;
}
.h-stat { padding: 24px 40px; text-align: center; border-right: 1px solid var(--border); }
.h-stat:last-child { border-right: none; }
.h-stat-num {
  font-family: var(--font-display); font-size: 40px; font-weight: 600;
  color: var(--amber); line-height: 1; display: block;
}
.h-stat-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* Floating image collage */
.hero-images {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%; pointer-events: none;
  overflow: hidden;
}
.hero-img-1, .hero-img-2, .hero-img-3 {
  position: absolute; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-deep);
}
.hero-img-1 {
  width: 58%; right: 8%; top: 15%;
  animation: floatA 8s ease-in-out infinite;
}
.hero-img-2 {
  width: 42%; right: 0%; bottom: 20%;
  animation: floatB 10s ease-in-out infinite;
}
.hero-img-3 {
  width: 36%; right: 55%; top: 55%;
  animation: floatC 12s ease-in-out infinite;
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(14px)} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-images img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-1 img { aspect-ratio: 4/5; }
.hero-img-2 img { aspect-ratio: 3/4; }
.hero-img-3 img { aspect-ratio: 1; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeSlideUp 1s var(--transition) 2s both;
}
.hero-scroll-text { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.hero-scroll-line { width: 1px; height: 50px; overflow: hidden; position: relative; }
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%; background: var(--terracotta);
  animation: scrollDown 2s ease-in-out 2s infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:200%} }

/* ===== MARQUEE ===== */
.marquee {
  padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 32px;
  padding: 0 20px; white-space: nowrap;
}
.marquee-item span { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.marquee-sep { font-size: 8px; color: var(--terracotta); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== SECTION: ABOUT/STORY ===== */
.section-story { padding: 120px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.story-images { position: relative; }
.story-img-main {
  width: 85%; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-deep);
}
.story-img-main img { aspect-ratio: 4/5; }
.story-img-float {
  position: absolute; right: -10px; bottom: -40px;
  width: 50%; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-warm);
  border: 4px solid var(--ink);
  animation: floatA 9s ease-in-out infinite;
}
.story-img-float img { aspect-ratio: 1; }
.story-badge {
  position: absolute; top: 32px; right: 40px;
  background: var(--terracotta);
  color: var(--warm-white);
  padding: 14px 20px; border-radius: var(--radius-sm);
  text-align: center; font-family: var(--font-display);
}
.story-badge-num { font-size: 36px; font-weight: 700; line-height: 1; display: block; }
.story-badge-txt { font-size: 11px; font-weight: 400; letter-spacing: 0.06em; opacity: 0.85; }
.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 24px;
}
.story-text h2 em { font-style: italic; color: var(--terracotta); }
.story-text p { font-size: 16px; color: rgba(240,232,218,0.65); line-height: 1.85; margin-bottom: 20px; }
.story-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 36px 0; }
.value-item {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px;
  transition: all 0.3s var(--transition);
}
.value-item:hover { background: rgba(196,98,58,0.06); border-color: rgba(196,98,58,0.25); transform: translateY(-3px); }
.value-icon { font-size: 22px; margin-bottom: 8px; }
.value-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ===== SECTION: PILLARS / FEATURES ===== */
.section-pillars { padding: 120px 0; background: var(--ink-2); position: relative; overflow: hidden; }
.section-pillars::before {
  content: 'PURPOSE';
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display); font-size: 180px; font-weight: 700;
  color: rgba(255,255,255,0.02); letter-spacing: 0.1em;
  pointer-events: none; white-space: nowrap;
}
.pillars-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 72px; }
.pillars-header h2 { font-family: var(--font-display); font-size: clamp(40px,4vw,60px); font-weight: 300; line-height: 1.1; }
.pillars-header h2 em { font-style: italic; color: var(--terracotta); }
.pillars-header p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.pillar {
  background: var(--ink-3);
  padding: 48px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--transition);
  border: 1px solid transparent;
}
.pillar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,98,58,0.08), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.pillar:hover { background: var(--ink-4); border-color: rgba(196,98,58,0.2); transform: translateY(-6px); z-index: 1; }
.pillar:hover::before { opacity: 1; }
.pillar-number {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 700;
  color: rgba(212,168,71,0.07); line-height: 1;
  position: absolute; top: 16px; right: 20px;
}
.pillar-img { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 24px; }
.pillar-img img { width: 100%; height: 100%; transition: transform 0.6s var(--transition); }
.pillar:hover .pillar-img img { transform: scale(1.06); }
.pillar h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.pillar-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--terracotta); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 20px; transition: gap 0.2s;
}
.pillar:hover .pillar-arrow { gap: 12px; }

/* ===== COMMUNITY IMAGES GRID ===== */
.section-community { padding: 120px 0; }
.community-header { text-align: center; margin-bottom: 72px; }
.community-header h2 { font-family: var(--font-display); font-size: clamp(40px,4vw,64px); font-weight: 300; }
.community-header h2 em { font-style: italic; color: var(--terracotta); }
.community-header p { color: var(--text-muted); font-size: 17px; margin-top: 16px; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 12px;
}
.mosaic-item {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  cursor: none;
}
.mosaic-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.7s var(--transition), filter 0.4s; filter: saturate(0.85); }
.mosaic-item:hover img { transform: scale(1.07); filter: saturate(1.1); }
.mosaic-item .mosaic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,15,0.75) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay span { font-size: 13px; font-weight: 600; color: var(--cream); }
.m1 { grid-column: 1/5; grid-row: 1/3; }
.m2 { grid-column: 5/8; grid-row: 1/2; }
.m3 { grid-column: 8/10; grid-row: 1/2; }
.m4 { grid-column: 10/13; grid-row: 1/3; }
.m5 { grid-column: 5/7; grid-row: 2/3; }
.m6 { grid-column: 7/10; grid-row: 2/3; }
.m7 { grid-column: 1/4; grid-row: 3/4; }
.m8 { grid-column: 4/7; grid-row: 3/4; }
.m9 { grid-column: 7/10; grid-row: 3/4; }
.m10 { grid-column: 10/13; grid-row: 3/4; }

/* ===== EVENTS ===== */
.section-events { padding: 120px 0; background: var(--ink-2); }
.events-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.events-header-row h2 { font-family: var(--font-display); font-size: clamp(38px,4vw,58px); font-weight: 300; }
.events-header-row h2 em { font-style: italic; color: var(--terracotta); }
.events-row { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 20px; }
.event-card {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s var(--transition);
  position: relative;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-warm); border-color: rgba(196,98,58,0.3); }
.event-cover { position: relative; overflow: hidden; }
.event-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.6s var(--transition); }
.event-card:hover .event-cover img { transform: scale(1.05); }
.event-date {
  position: absolute; top: 16px; left: 16px;
  background: var(--terracotta); color: var(--warm-white);
  padding: 8px 14px; border-radius: var(--radius-sm);
  text-align: center; font-family: var(--font-display);
}
.event-date-num { font-size: 24px; font-weight: 700; line-height: 1; }
.event-date-mon { font-size: 11px; letter-spacing: 0.05em; }
.event-body { padding: 28px; }
.event-tag {
  display: inline-block;
  background: rgba(196,98,58,0.1); color: var(--terra-light);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 12px;
}
.event-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.event-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--text-dim); margin-bottom: 20px; }

/* ===== MAP ===== */
.section-map { padding: 120px 0; }
.map-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.map-info h2 { font-family: var(--font-display); font-size: clamp(36px,3.5vw,54px); font-weight: 300; line-height: 1.1; margin-bottom: 20px; }
.map-info h2 em { font-style: italic; color: var(--terracotta); }
.map-info p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.map-stats { display: flex; flex-direction: column; gap: 20px; }
.map-stat-item { display: flex; align-items: center; gap: 16px; }
.map-stat-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: rgba(196,98,58,0.1); border: 1px solid rgba(196,98,58,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  flex-shrink: 0;
}
.map-stat-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--amber); line-height: 1; }
.map-stat-label { font-size: 12px; color: var(--text-muted); }
#home-map, #full-map { height: 480px; border-radius: var(--radius); border: 1px solid var(--border); }

/* ===== TESTIMONIALS ===== */
.section-testi { padding: 120px 0; background: var(--ink-2); overflow: hidden; }
.testi-header { text-align: center; margin-bottom: 72px; }
.testi-header h2 { font-family: var(--font-display); font-size: clamp(38px,4vw,60px); font-weight: 300; }
.testi-header h2 em { font-style: italic; color: var(--terracotta); }
.testi-slider { position: relative; }
.testi-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  min-width: 400px; background: var(--ink-3);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; scroll-snap-align: start;
  transition: all 0.3s var(--transition); flex-shrink: 0;
}
.testi-card:hover { border-color: rgba(196,98,58,0.3); transform: translateY(-4px); }
.testi-quote {
  font-family: var(--font-display); font-size: 58px;
  color: var(--terracotta); line-height: 0.5;
  margin-bottom: 16px; font-weight: 300;
}
.testi-card p { font-size: 16px; color: rgba(240,232,218,0.75); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author strong { font-size: 14px; font-weight: 600; display: block; }
.testi-author span { font-size: 12px; color: var(--text-muted); }
.testi-stars { color: var(--amber); font-size: 14px; margin-bottom: 8px; }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-4); border: 1px solid var(--border); cursor: none; transition: all 0.2s; }
.testi-dot.active { background: var(--terracotta); width: 24px; border-radius: 4px; border-color: var(--terracotta); }

/* ===== CTA SECTION ===== */
.section-cta { padding: 0; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?w=1600&q=80') center/cover;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,15,0.95), rgba(44,62,45,0.8));
}
.cta-inner {
  position: relative; z-index: 1;
  padding: 140px 32px; max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center;
}
.cta-text h2 { font-family: var(--font-display); font-size: clamp(42px,5vw,72px); font-weight: 300; line-height: 1.05; margin-bottom: 24px; }
.cta-text h2 em { font-style: italic; color: var(--terracotta); }
.cta-text p { font-size: 17px; color: rgba(240,232,218,0.65); line-height: 1.8; }
.cta-actions { display: flex; flex-direction: column; gap: 24px; }
.cta-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; backdrop-filter: blur(10px);
  transition: all 0.3s var(--transition);
}
.cta-card:hover { background: rgba(196,98,58,0.08); border-color: rgba(196,98,58,0.3); }
.cta-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.cta-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 170px 0 90px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--ink-2);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196,98,58,0.08), transparent);
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(48px,6vw,90px);
  font-weight: 300; line-height: 1; position: relative; z-index: 1;
}
.page-hero h1 em { font-style: italic; color: var(--terracotta); }
.page-hero p { color: var(--text-muted); font-size: 17px; max-width: 560px; margin: 20px auto 0; position: relative; z-index: 1; }

/* ===== MAP PAGE ===== */
.map-section { padding: 60px 0; }
.map-controls { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.map-search { flex: 1; min-width: 240px; background: var(--ink-4); border: 1px solid var(--border); color: var(--text-warm); font-family: var(--font-body); font-size: 14px; padding: 12px 20px; border-radius: 50px; outline: none; }
.map-search:focus { border-color: var(--terracotta); }
.chapter-count { font-size: 13px; color: var(--text-muted); background: var(--ink-4); border: 1px solid var(--border); padding: 8px 16px; border-radius: 50px; white-space: nowrap; }
.chapter-count span { color: var(--amber); font-weight: 700; }
.map-legend { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.map-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn { background: var(--ink-4); border: 1px solid var(--border); color: var(--text-muted); font-size: 12px; font-weight: 500; padding: 8px 18px; border-radius: 50px; cursor: none; transition: all 0.2s; font-family: var(--font-body); }
.filter-btn:hover, .filter-btn.active { background: var(--terracotta); color: var(--warm-white); border-color: var(--terracotta); }
.selected-info { background: var(--ink-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; display: none; }
.selected-info.visible { display: block; }
.selected-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--amber); }
.info-row { display: flex; gap: 24px; flex-wrap: wrap; }
.info-badge { font-size: 12px; color: var(--text-muted); display: flex; gap: 6px; align-items: center; }
.info-badge strong { color: var(--text-warm); }
.map-sidebar { background: var(--ink-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-top: 28px; }
.chapter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.chapter-item { background: var(--ink-4); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; cursor: none; transition: all 0.2s; }
.chapter-item:hover { border-color: var(--terracotta); transform: translateY(-2px); }
.chapter-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.chapter-item p { font-size: 12px; color: var(--text-muted); }
.chapter-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 8px; border-radius: 50px; margin-bottom: 8px; }

/* ===== CONTACT/JOIN/EVENTS FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--ink-4); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-warm); font-family: var(--font-body); font-size: 14px; padding: 14px 18px; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--terracotta); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group select option { background: var(--ink-3); }

/* ===== TIER CARDS ===== */
.tier-card { background: var(--ink-3); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; cursor: none; transition: all 0.3s; }
.tier-card.selected, .tier-card:hover { border-color: var(--terracotta); }
.tier-card.featured { border-color: var(--terracotta); background: rgba(196,98,58,0.05); }
.tier-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.tier-name { font-size: 16px; font-weight: 700; }
.tier-price { font-size: 22px; font-weight: 700; color: var(--amber); font-family: var(--font-display); }
.tier-price small { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.tier-card p { font-size: 13px; color: var(--text-muted); }
.membership-tiers { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; padding: 60px 0; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: none; }
.gallery-item:nth-child(4n+1) { grid-column: span 2; }
.gallery-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s var(--transition); }
.gallery-item:nth-child(4n+1) .gallery-thumb { aspect-ratio: 21/9; }
.gallery-item:hover .gallery-thumb { transform: scale(1.05); }
.gallery-caption { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption p { font-size: 14px; font-weight: 600; color: var(--cream); }

/* ===== ABOUT PAGE ===== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content p { color: var(--text-muted); font-size: 16px; margin-bottom: 18px; }
.leadership-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 80px 0; }
.leader-card { background: var(--ink-3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s var(--transition); }
.leader-card:hover { border-color: rgba(196,98,58,0.3); transform: translateY(-5px); box-shadow: var(--shadow-warm); }
.leader-img { aspect-ratio: 1; overflow: hidden; }
.leader-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--transition); }
.leader-card:hover .leader-img img { transform: scale(1.05); }
.leader-body { padding: 24px; }
.leader-body h4 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.leader-body .role { font-size: 12px; color: var(--terracotta); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.leader-body p { font-size: 13px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer { background: var(--ink-2); border-top: 1px solid var(--border); padding: 90px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 70px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 18px 0 28px; max-width: 280px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; background: var(--ink-3); border: 1px solid var(--border); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.2s; }
.social-links a:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-white); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--terra-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text-dim); transition: color 0.2s; }
.footer-legal a:hover { color: var(--terra-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-images { display: none; }
  .hero-content { max-width: 100%; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .events-row { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-images { max-width: 540px; }
  .map-layout { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .btn-primary.nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 0 0 0 25%; background: var(--ink-2); border-left: 1px solid var(--border); padding: 90px 32px; gap: 28px; z-index: 999; }
  .nav-links.open a { font-size: 20px; color: var(--text-warm); }
  .hero-stats { flex-wrap: wrap; }
  .h-stat { padding: 16px 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .events-row { grid-template-columns: 1fr; }
  .testi-card { min-width: 300px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; }
  .m1,.m2,.m3,.m4,.m5,.m6,.m7,.m8,.m9,.m10 { grid-column: span 1; grid-row: span 1; }
  .pillars-header { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  body * { cursor: auto; }
}
