@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
/* ===== ROOT VARIABLES ===== */
:root {
  --background-dark: #0a0a0a;
  --background-card: #1a1a1a;
  --header-color: #ffd166;
  --text-color: #e8e8e8;
  --text-muted: #c9c4b8;
  --accent-primary: #c1121f;   
  --accent-secondary: #ff6b35; 
  --accent-glow: rgba(193, 18, 31, 0.4); 
  --border-color: #333333;
  --font-heading: 'DM Sans', sans-serif;         
  --font-heading-alt: 'Space Grotesk', sans-serif; 
  --font-body: 'Inter', sans-serif;
  --font-body-alt: 'DM Sans', sans-serif;         
  --space-xs: 0.75rem;
  --space-sm: 1.5rem;
  --space-md: 3rem;
  --space-lg: 5rem;
  --space-xl: 8rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--accent-glow);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading-alt: 'Syncopate', sans-serif;
}

/* ===== BASE & RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--background-dark);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-sm); }
section { padding: var(--space-lg) 0; position: relative; }
img, video { max-width: 100%; height: auto; display: block; }

/* ===/* ===== NAVIGATION ===== */
.header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 1.5rem 0; transition: background var(--transition), padding var(--transition); background: transparent; }
.header.scrolled { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: var(--shadow-sm); }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 700; color: var(--header-color); padding-bottom: 4px; position: relative; text-decoration: none; }
.logo::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent-primary); }
.nav-menu ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-link { font-weight: 500; position: relative; padding: 0.5rem 0; color: var(--header-color); text-decoration: none; transition: color var(--transition); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-primary); transition: width var(--transition); }
.nav-link:hover::after, .nav-link:focus::after { width: 100%; }
.nav-link:hover, .nav-link:focus { color: var(--text-color); text-decoration: none; }
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; cursor: pointer; gap: 5px; background: transparent; border: none; z-index: 1001; padding: 0; width: 26px; height: 20px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--text-color); transition: transform var(--transition), opacity var(--transition); display: block; }

/* =====  MOBILE MENU ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 70%; height: 100vh; background: rgba(13, 13, 13, 0.98); backdrop-filter: blur(15px); border-left: 1px solid rgba(255, 255, 255, 0.05); padding: 7rem 2.5rem 2.5rem; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1000; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
  .nav-menu.active { right: 0; }
  .nav-menu ul { flex-direction: column; gap: 2.5rem; align-items: flex-start; width: 100%; }
  .nav-link { font-size: 1.2rem; width: 100%; display: block; border-bottom: 1px solid rgba(255, 255, 255, 0.03); padding-bottom: 0.75rem; }
  .nav-link::after { display: none; } /* Disabled on mobile rows to prevent layout jittering */
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); background: var(--accent-primary); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); background: var(--accent-primary); }
}

/* ===== HERO SECTION - MERGED SPLIT PROPOSAL B ===== */
.hero-b {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 6rem 0;
  background-color: var(--background-dark);
  overflow: hidden;
}

/* Full Bleed Background Video Container */
.hero-b__video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-b__video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) contrast(1.1) saturate(-0.2);
}

/* Atmospheric Layered Mask Overlays */
.hero-b__video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(10, 10, 10, 0.85) 90%),
              linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 2;
}

/* Content Container Over Video Mask */
.hero-b__content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

/* Initial styling states are set up to allow clean GSAP timeline transitions */
.hero-b__opening {
  display: inline-block;
  font-family: var(--font-body-alt);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-secondary);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-b__title {
  font-family: var(--font-heading-alt);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-align: center;
}

/* Splitting inline spans creates clean text reveal properties */
.hero-b__title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  margin: 0 0.15em;
  
  /* Color & Sacred Fire Glow */
  color: var(--accent-secondary);
  text-shadow: 0 0 25px rgba(255, 107, 53, 0.45); 

  /* Font Control */
  font-family: var(--font-heading-alt);
  font-weight: 700; /* Use 900 for Cinzel/Cormorant if you want it thicker */
}

.hero-b__title-word:nth-child(3) {
 color: var(--header-color);
  
}

.hero-b__title-word:nth-child(4) {
  color: var(--accent-primary);
text-shadow: 0 0 40px rgba(193, 18, 31, 0.3);
}

.hero-b__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--header-color);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(25px);
}

.hero-b__story {
  font-family: var(--font-body-alt);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
  opacity: 0;
  transform: translateY(30px);
}

.hero-b__story-highlight {
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.hero-b__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  font-family: var(--font-heading-alt);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0a0a0a;
  background-color: #ffffff;
  border-radius: 0; /* Minimalist clean edge theme */
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.hero-b__cta:hover {
  background-color: var(--accent-secondary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 35, 0.4);
}

.hero-b__cta span {
  transition: transform 0.3s ease;
}

.hero-b__cta:hover span {
  transform: translateX(6px);
}

/* Clean Animated Scroll Pointer Pin */
.hero-b__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  z-index: 3;
}

.hero-b__scroll-text {
  font-family: var(--font-body-alt);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.hero-b__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}

.hero-b__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 20px;
  background: var(--accent-secondary);
  animation: scrollPass 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollPass {
  0% { transform: translateY(-20px); }
  100% { transform: translateY(50px); }
}


/* ===== CORE LAYOUT SECTIONS ===== */
.content-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.text-card { position: relative; padding: 2rem 0; }
.quote-mark { font-family: var(--font-heading); font-size: 6rem; color: rgba(255, 107, 53, 0.15); line-height: 1; position: absolute; top: -1.5rem; left: -1rem; pointer-events: none; }
.lead-text { font-size: 1.4rem; line-height: 1.9; margin-bottom: 1.5rem; padding-left: 1.5rem; border-left: 3px solid var(--accent-primary); }
.body-text { opacity: 0.95; line-height: 1.9; }

#exhibit .image-card { width: 100%; height: auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 15px 40px var(--accent-glow); background: var(--background-card); }
#exhibit .card-image { width: 100%; height: auto; transition: transform var(--transition-slow); filter: brightness(0.92) contrast(1.08); }
#exhibit .image-card:hover .card-image { transform: scale(1.03); }

/* ===== TIME CAPSULE SECTION ===== */

.vessel-section {
  padding: var(--space-xl) 0;
  background: radial-gradient(circle at 20% 30%, rgba(193, 18, 31, 0.05) 0%, transparent 50%),
              #080808;
  position: relative;
  overflow: hidden;
}

/* Structural Master Asymmetrical Grid Layout */
.vessel-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}

/* Left Panel: Narrative Text Styling */
.vessel-intro {
  text-align: left;
}

.vessel-tagline {
  font-family: var(--font-body-alt);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.vessel-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.1;
}

/* Asymmetric Accent Divider Braid */
.vessel-braid {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  margin: 1.5rem 0 2rem;
}

.vessel-lead {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--header-color);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Wholesome Text Block Backdrop Frame */
.vessel-manifest {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--accent-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 2rem;
}

.vessel-manifest p {
  font-family: var(--font-body-alt);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.vessel-benediction {
  font-family: var(--font-body-alt);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: rgba(232, 232, 232, 0.6);
}

/* Right Panel: The Sacred Vault Container Card */
.vessel-vault {
  position: relative;
}

.vault-container {
  background: linear-gradient(160deg, #141414 0%, #0e0e0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Soft core red accent glow behind list rows */
.vault-ambient-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(193, 18, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Top System Layout Info Row */
.vault-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.vault-status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-secondary);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--accent-secondary);
}

.vault-meta {
  font-family: var(--font-body-alt);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Vault List Group Array Container Rows */
.vault-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.vault-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  position: relative;
  transition: all var(--transition);
}

/* Hidden line accent indicator that slides out on row focus */
.vault-row-indicator {
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 2px;
  background-color: var(--accent-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.vault-row:hover {
  background: rgba(193, 18, 31, 0.03);
  border-color: rgba(193, 18, 31, 0.15);
  transform: translateX(4px);
}

.vault-row:hover .vault-row-indicator {
  opacity: 1;
}

.vault-icon {
  color: var(--header-color);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  transition: transform var(--transition);
}

.vault-row:hover .vault-icon {
  transform: rotate(90deg) scale(1.1);
}

.vault-row-body h4 {
  font-family: var(--font-heading-alt);
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.vault-row-body p {
  font-family: var(--font-body-alt);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== VESSEL SECTION RESPONSIVE SYSTEM CONTROLS ===== */
@media (max-width: 992px) {
  .vessel-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .vessel-intro {
    text-align: center;
  }
  .vessel-braid {
    margin: 1.5rem auto 2rem;
  }
  .vessel-manifest {
    text-align: left;
  }
  .vault-container {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .vault-container {
    padding: 1.5rem 1rem;
  }
  .vault-row {
    padding: 0.75rem;
  }
}

/* ===== VISIT SECTION ===== */

.sanctuary-visit {
  padding: var(--space-xl) 0;
  background: radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.04) 0%, transparent 60%),
              linear-gradient(180deg, var(--background-dark) 0%, #0d0d0d 100%);
  position: relative;
}

/* Section Header Typography Layout */
.sanctuary-header {
  margin-bottom: var(--space-md);
  text-align: left;
}

.sanctuary-tagline {
  font-family: var(--font-body-alt);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.sanctuary-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--header-color);
  line-height: 1.1;
}

/* Master Asymmetric Structure Grid */
.sanctuary-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

/* Left Information Panel Components */
.sanctuary-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sanctuary-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* Individual Data Nodes */
.sanctuary-node {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.node-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.feather-glow {
  filter: drop-shadow(0 0 4px rgba(255, 209, 102, 0.3));
}

.node-content h3 {
  font-family: var(--font-heading-alt);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.node-highlight {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.node-meta {
  font-family: var(--font-body-alt);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Wholesome Presence Block Upgrade */
.sanctuary-offering-card {
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.7), rgba(15, 15, 15, 0.9));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Soft accent red outline glow inside the card container frame */
.offering-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), transparent);
}

.offering-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: var(--header-color);
  margin-bottom: 1.5rem;
}

.offering-manifesto {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offering-manifesto li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.manifesto-bullet {
  color: var(--accent-secondary);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  text-shadow: 0 0 8px var(--accent-glow);
}

.offering-manifesto p {
  font-family: var(--font-body-alt);
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Right Tapestry Image Grid System Frame */
.tapestry-frame {
  display: grid;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.tapestry-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--background-card);
  transition: transform var(--transition-slow);
}

.tapestry-item:hover {
  transform: translateY(-4px);
}

.tapestry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tapestry-item:hover .tapestry-img {
  transform: scale(1.02);
}

/* Main host graphic branding item card container */
.item--main {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.item--main .tapestry-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
}

/* Shroud adds a premium structural gallery drop shadows inside darkness elements */
.tapestry-shroud {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 1;
}

/* Balanced 50/50 Sub-grid for Supporting Exhibit Artwork Photos */
.tapestry-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.item--detail-1, .item--detail-2 {
  aspect-ratio: 4 / 3;
}

.item--detail-1 .tapestry-img, .item--detail-2 .tapestry-img {
  filter: brightness(0.85) contrast(1.05);
}

/* ===== SANCTUARY RESPONSIVE CONTROLS ===== */
@media (max-width: 992px) {
  .sanctuary-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .sanctuary-gallery-panel {
    order: -1; /* Display imagery elegantly above text frames on mobile interfaces */
  }
  .sanctuary-header {
    text-align: center;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 576px) {
  .sanctuary-details-row {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .sanctuary-offering-card {
    padding: 1.75rem;
  }
  .tapestry-subgrid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT/NEWSLETTER ===== */
.contact-email-wrapper { margin: 2rem 0 2.5rem; text-align: center; padding: 1.5rem; background: rgba(255, 107, 53, 0.08); border-radius: var(--radius-md); border: 1px solid rgba(255, 107, 53, 0.3); }
.contact-label { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.contact-email { display: inline-block; font-family: var(--font-heading); font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; color: var(--header-color); text-decoration: none; transition: transform var(--transition), color var(--transition); position: relative; padding: 0.5rem 1rem; }
.section-newsletter { background: linear-gradient(160deg, #0a0a0a, #151515); }
.contact-email:hover {color: var(--accent-primary); transform: translateY(-2px);}
.contact-email::after { content: ""; position: absolute; left: 1rem; right: 1rem; bottom: 0.3rem; height: 2px; background: var(--accent-primary); transform: scaleX(0); transform-origin: center; transition: transform 0.4s ease;}
.contact-email:hover::after { transform: scaleX(1);}
.newsletter-card { max-width: 650px; margin: 0 auto; text-align: center; padding: 2rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.newsletter-input { flex: 1; padding: 1rem 1.5rem; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border-color); border-radius: 50px; color: var(--text-color); min-width: 250px; }
.newsletter-btn { display: inline-block; padding: 1rem 3rem; background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)); color: white; font-weight: 600; border-radius: 50px; border: none; cursor: pointer; }

}
/* ===== FOOTER ===== */
.footer { background: #050505; padding: 4rem 0 2rem; border-top: 1px solid var(--border-color); }
.footer-content { text-align: center; max-width: 700px; margin: 0 auto; }
.footer-logo { font-size: 2.2rem; color: var(--header-color); }
.funding-section { margin: 3rem 0 2rem; padding: 2rem 1.5rem; background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.08); }
.funding-logo-wrapper { max-width: 400px; margin: 0 auto 1.5rem; }
.funding-logo { width: 100%; max-width: 350px; filter: brightness(0) invert(1); opacity: 0.85; }

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] { opacity: 0; transition: opacity 1s ease, transform 1s ease; will-change: transform, opacity; }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-left"] { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate].in-view { opacity: 1; transform: translate(0); }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .hero-b--split { grid-template-columns: 1fr; } /* Collapse to stacked on tablets */
  .hero-split__video-side { min-height: 45vh; height: 45vh; }
  .hero-split__text-side { padding: 4rem 2rem; }
  .content-wrapper, .visit-wrapper { grid-template-columns: 1fr; gap: var(--space-md); }
  .visit-gallery, .image-card { order: -1; }
  .hero-b__scroll { display: none; } /* Hide landscape pointer scroll indicator on block frames */
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { position: fixed; top: 70px; right: -100%; flex-direction: column; background: rgba(10, 10, 10, 0.98); width: 85%; height: calc(100vh - 70px); padding: 2rem; gap: 2rem; transition: right var(--transition); border-left: 2px solid var(--accent-primary); }
  .nav-menu.active { right: 0; }
  section { padding: var(--space-md) 0; }
  .gallery-secondary { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-animate], [data-animate].in-view, .hero-b__opening, .hero-b__title-word, .hero-b__subtitle, .hero-b__story, .hero-b__cta, .hero-b__scroll { transform: none !important; opacity: 1 !important; }
}

/* Forces EVERY word to be flat orange with zero glow/shine */
.hero-b__title-word,
.hero-b__title-word:nth-child(n) {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  
  color: #ffd166 !important; /* Your vibrant orange */
  text-shadow: none !important;              /* Removes the shine entirely */
}

.round-gallery-img {
    width: 220px !important;
    height: 174px !important;
    border-radius: 54% !important;
    object-fit: contain !important;
    background-color: var(--background-card);
  
  /* 2. THE FIX: Shows 100% of the image, zero cropping */
  object-fit: contain !important; 
  
  /* 3. Aesthetic backup */
  background-color: var(--background-card); /* Fills any empty circle space with your dark card color */
  padding: 8px;                             /* Gives the artwork a clean "mat/frame" border inside the circle */
  
  /* 4. Prevents layout systems (like Flexbox) from squishing the circle into an oval */
  flex-shrink: 0 !important; 
}


