/* ====================================================
   NEURAL BLOOM — ORGANIC RADIANCE
   Design System for Neerja Birla
   ====================================================*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  --midnight: #0B0E1A;
  --midnight-soft: #131728;
  --bloom-coral: #E8836B;
  --bloom-coral-light: #F2A896;
  --petal-rose: #F2B5A0;
  --neural-teal: #3CBBB1;
  --neural-teal-dark: #2A8F87;
  --luminous-gold: #D4A853;
  --luminous-gold-light: #E8C97E;
  --cloud-white: #F5F0EB;
  --mist-lavender: #C8B8DB;
  --mist-lavender-light: #DDD0EC;
  --warm-cream: #FFF8F2;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(11, 14, 26, 0.04);
  --glass-border-light: rgba(11, 14, 26, 0.08);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-soft: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-glow-coral: 0 0 40px rgba(232,131,107,0.25);
  --shadow-glow-teal: 0 0 40px rgba(60,187,177,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-blob: 42% 58% 62% 38% / 45% 52% 48% 55%;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --breathing-duration: 4s;
  --bloom-duration: 0.8s;
  --ease-bloom: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--cloud-white);
  background: var(--midnight);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

body.light-mode {
  background: var(--warm-cream);
  color: var(--midnight);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neural-teal);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--bloom-coral);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  max-width: 72ch;
}

.text-accent {
  color: var(--bloom-coral);
}

.text-teal {
  color: var(--neural-teal);
}

.text-gold {
  color: var(--luminous-gold);
}

.text-lavender {
  color: var(--mist-lavender);
}

/* --- Neural Canvas Background --- */
#neural-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* --- Cursor Light Trail --- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60,187,177,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* --- Navigation --- */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
}

.nav-wrapper.scrolled {
  background: rgba(11, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cloud-white);
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--bloom-coral);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--cloud-white);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--glass-bg);
  transform: scale(0);
  transition: transform 0.4s var(--ease-bloom);
  border: 1px solid transparent;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  transform: scale(1);
  border-color: var(--glass-border);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bloom-coral);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--cloud-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 14, 26, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--cloud-white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--bloom-coral);
}

/* --- Layout Containers --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-sm {
  padding: 80px 0;
}

/* --- Hero Sections --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-content {
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neural-teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--neural-teal);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper img {
  border-radius: var(--radius-blob);
  object-fit: cover;
  width: 100%;
  max-height: 600px;
  box-shadow: var(--shadow-deep);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-blob);
  background: linear-gradient(135deg, var(--bloom-coral), var(--neural-teal));
  opacity: 0.2;
  z-index: -1;
  animation: blobMorph 8s ease-in-out infinite alternate;
}

@keyframes blobMorph {
  0% { border-radius: 42% 58% 62% 38% / 45% 52% 48% 55%; }
  25% { border-radius: 55% 45% 38% 62% / 52% 45% 55% 48%; }
  50% { border-radius: 38% 62% 55% 45% / 48% 55% 45% 52%; }
  75% { border-radius: 62% 38% 45% 55% / 55% 48% 52% 45%; }
  100% { border-radius: 45% 55% 48% 52% / 38% 62% 55% 45%; }
}

/* Page-level hero (non-home pages) */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(transparent, var(--midnight));
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

/* --- Glassmorphic Cards --- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(232,131,107,0.06) 0%, transparent 50%);
  transition: all 0.6s;
  opacity: 0;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.glass-card-coral:hover {
  box-shadow: var(--shadow-glow-coral);
}

.glass-card-teal:hover {
  box-shadow: var(--shadow-glow-teal);
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Asymmetric Split */
.split-60-40 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-40-60 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-bloom);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--bloom-coral), var(--bloom-coral-light));
  color: white;
  box-shadow: 0 4px 20px rgba(232,131,107,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(232,131,107,0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--cloud-white);
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  background: var(--glass-bg);
  border-color: var(--bloom-coral);
  color: var(--bloom-coral);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--neural-teal);
  padding: 10px 0;
}

.btn-ghost:hover {
  color: var(--bloom-coral);
}

.btn-ghost::after {
  content: '→';
  transition: transform 0.3s;
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* --- Tags / Pills --- */
.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  background: rgba(200, 184, 219, 0.15);
  color: var(--mist-lavender);
  border: 1px solid rgba(200, 184, 219, 0.2);
}

.tag-coral {
  background: rgba(232, 131, 107, 0.12);
  color: var(--bloom-coral);
  border-color: rgba(232, 131, 107, 0.2);
}

.tag-teal {
  background: rgba(60, 187, 177, 0.12);
  color: var(--neural-teal);
  border-color: rgba(60, 187, 177, 0.2);
}

/* --- Stats / Counters --- */
.stat-block {
  text-align: center;
  padding: 32px 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bloom-coral);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.6);
  font-weight: 500;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--neural-teal), var(--bloom-coral), transparent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  padding: 20px 60px 20px 0;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  margin-left: 50%;
  padding: 20px 0 20px 60px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--midnight);
  border: 3px solid var(--neural-teal);
  z-index: 2;
}

.timeline-item::after {
  right: -8px;
}

.timeline-item:nth-child(even)::after {
  left: -8px;
  right: auto;
}

.timeline-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(12px);
  max-width: 500px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bloom-coral);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 0.95rem;
  color: rgba(245, 240, 235, 0.75);
}

/* --- Marquee / Ticker --- */
.marquee-wrapper {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(245, 240, 235, 0.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
}

.marquee-item::after {
  content: '◆';
  font-size: 0.6rem;
  color: var(--bloom-coral);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Quote / Testimonial --- */
.quote-block {
  position: relative;
  padding: 48px;
  text-align: center;
}

.quote-block::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--bloom-coral);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
  color: var(--cloud-white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.quote-author {
  font-size: 0.9rem;
  color: var(--neural-teal);
  font-weight: 600;
}

/* --- Scroll Bloom Animation --- */
.bloom-in {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all var(--bloom-duration) var(--ease-bloom);
}

.bloom-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bloom-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all var(--bloom-duration) var(--ease-smooth);
}

.bloom-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.bloom-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all var(--bloom-duration) var(--ease-smooth);
}

.bloom-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Animation Delays */
.bloom-delay-1 { transition-delay: 0.1s; }
.bloom-delay-2 { transition-delay: 0.2s; }
.bloom-delay-3 { transition-delay: 0.3s; }
.bloom-delay-4 { transition-delay: 0.4s; }

/* --- Breathing Animation --- */
.breathe {
  animation: breathe var(--breathing-duration) ease-in-out infinite alternate;
}

@keyframes breathe {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.03); opacity: 1; }
}

/* --- Halo / Glow Effect --- */
.halo {
  position: relative;
}

.halo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,131,107,0.12) 0%, transparent 70%);
  z-index: -1;
  animation: pulseHalo 4s ease-in-out infinite alternate;
}

@keyframes pulseHalo {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* --- Organic Divider --- */
.organic-divider {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.organic-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* --- Masonry Gallery --- */
.masonry-grid {
  columns: 3;
  column-gap: 24px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(11,14,26,0.8));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-caption {
  color: var(--cloud-white);
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 26, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--cloud-white);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--bloom-coral);
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(245, 240, 235, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--cloud-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--neural-teal);
  box-shadow: 0 0 0 3px rgba(60, 187, 177, 0.15);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

/* --- Footer --- */
.site-footer {
  background: rgba(11, 14, 26, 0.6);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--bloom-coral);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.5);
  max-width: 320px;
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cloud-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--bloom-coral);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--cloud-white);
  font-size: 1rem;
  transition: all 0.3s var(--ease-bloom);
}

.footer-social a:hover {
  background: var(--bloom-coral);
  border-color: var(--bloom-coral);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-credit {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.4);
}

.footer-credit a {
  color: var(--bloom-coral);
}

.footer-contact-info {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.4);
}

.footer-contact-info a {
  color: rgba(245, 240, 235, 0.5);
}

.footer-contact-info a:hover {
  color: var(--bloom-coral);
}

/* --- Password Gate --- */
.gate-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gate-container {
  text-align: center;
  z-index: 2;
  max-width: 460px;
  padding: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.gate-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.gate-logo span {
  color: var(--bloom-coral);
}

.gate-subtitle {
  font-size: 0.95rem;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 40px;
}

.gate-input-group {
  position: relative;
  margin-bottom: 16px;
}

.gate-input {
  width: 100%;
  padding: 18px 24px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  color: var(--cloud-white);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.15em;
  outline: none;
  transition: all 0.3s var(--ease-smooth);
}

.gate-input:focus {
  border-color: var(--neural-teal);
  box-shadow: 0 0 0 4px rgba(60, 187, 177, 0.12);
}

.gate-input.error {
  border-color: var(--bloom-coral);
  animation: gateShake 0.5s ease;
}

@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-10px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-6px); }
  80% { transform: translateX(6px); }
}

.gate-btn {
  width: 100%;
  padding: 18px;
  margin-top: 12px;
}

.gate-error-msg {
  font-size: 0.85rem;
  color: var(--bloom-coral);
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gate-error-msg.show {
  opacity: 1;
}

.gate-bloom {
  position: fixed;
  inset: 0;
  background: var(--bloom-coral);
  z-index: 100;
  transform: scale(0);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.8s var(--ease-bloom);
}

.gate-bloom.active {
  transform: scale(3);
  opacity: 1;
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neural-teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--neural-teal);
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: rgba(245, 240, 235, 0.6);
  max-width: 640px;
}

/* Image with organic border */
.organic-image {
  border-radius: var(--radius-blob);
  overflow: hidden;
  position: relative;
}

.organic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Icon */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(232,131,107,0.15), rgba(60,187,177,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

/* Impact counter */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

/* Hover neural line */
.neural-underline {
  position: relative;
  display: inline-block;
}

.neural-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bloom-coral), var(--neural-teal));
  transition: width 0.4s var(--ease-bloom);
}

.neural-underline:hover::after {
  width: 100%;
}

/* Contact info block */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,131,107,0.15), rgba(60,187,177,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245,240,235,0.5);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-info-text p {
  font-size: 1rem;
  color: var(--cloud-white);
}

.contact-info-text a {
  color: var(--cloud-white);
}

.contact-info-text a:hover {
  color: var(--bloom-coral);
}

/* Organic blob shapes (decorative) */
.blob-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.blob-coral {
  background: var(--bloom-coral);
}

.blob-teal {
  background: var(--neural-teal);
}

.blob-lavender {
  background: var(--mist-lavender);
}

/* Awards / Recognition list */
.award-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--glass-border);
}

.award-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bloom-coral);
  min-width: 60px;
}

.award-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cloud-white);
  margin-bottom: 4px;
}

.award-org {
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.5);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-60-40,
  .split-40-60 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-grid {
    columns: 2;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding: 16px 0 16px 60px;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding: 16px 0 16px 60px;
  }

  .timeline-item::after {
    left: 12px;
    right: auto;
  }

  .timeline-item:nth-child(even)::after {
    left: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

  .nav-inner {
    padding: 16px 24px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .glass-card {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .masonry-grid {
    columns: 1;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .gate-container {
    margin: 20px;
    padding: 40px 28px;
  }

  .quote-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
