@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-ivory: #F6F3E8;
  --text-charcoal: #151815;
  --green-fresh: #65A96B;
  --green-deep: #173F2A;
  --accent-yellow: #F4D35E;
  --accent-sky: #E3F2FD;
  
  --glass-bg: rgba(255, 255, 255, 0.24);
  --glass-bg-dark: rgba(15, 38, 25, 0.50);
  --glass-border: rgba(255, 255, 255, 0.75);
  --glass-shadow: 0 30px 65px rgba(0, 0, 0, 0.07), inset 0 2px 2px rgba(255, 255, 255, 0.95), inset 0 -1px 2px rgba(255, 255, 255, 0.4);
  
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================= UNIVERSAL SCROLLBAR ELIMINATION (DESKTOP & MOBILE) ================= */
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  background-color: var(--bg-ivory);
  color: var(--text-charcoal);
  font-family: var(--font-sans);
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  touch-action: pan-y;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  background: 
    radial-gradient(circle at 10% 20%, rgba(244, 211, 94, 0.12), transparent 45%),
    radial-gradient(circle at 90% 60%, rgba(101, 169, 107, 0.15), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(227, 242, 253, 0.2), transparent 50%),
    var(--bg-ivory);
  background-attachment: fixed;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* ================= CUSTOM CURSOR ================= */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--green-deep);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, border-color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

#custom-cursor.hovered {
  width: 76px;
  height: 76px;
  background-color: rgba(23, 63, 42, 0.85);
  border-color: var(--accent-yellow);
  color: var(--bg-ivory);
  box-shadow: 0 10px 25px rgba(23, 63, 42, 0.25);
}

#cursor-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#custom-cursor.hovered #cursor-label {
  opacity: 1;
}

/* ================= PRELOADER ================= */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--green-deep);
  color: var(--bg-ivory);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#loader.loaded {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.loader-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.loader-sub {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 24px;
}

.loader-bar-wrap {
  width: 180px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background-color: var(--accent-yellow);
  transition: width 0.1s linear;
}

/* ================= APPLE GLASSMORPHISM NAVIGATION CAPSULE ================= */
.floating-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-nav:hover {
  box-shadow: 0 15px 35px rgba(23, 63, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-right: 8px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-charcoal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--green-fresh);
  transform: translateY(-1px);
}

/* ================= COMMON GLASS LAYOUT COMPONENTS ================= */
.section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 130px 40px;
  position: relative;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(36px) saturate(220%);
  -webkit-backdrop-filter: blur(36px) saturate(220%);
  border: 1.5px solid var(--glass-border);
  border-radius: 40px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.glass-panel:hover {
  transform: translateY(-8px) scale(1.012);
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 40px 80px rgba(23, 63, 42, 0.12), inset 0 2.5px 0 #ffffff, inset 0 -1.5px 3px rgba(255, 255, 255, 0.6);
}

.section-header-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-fresh);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--text-charcoal);
  margin-bottom: 24px;
}

/* Glass Organic Button */
.btn-organic {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--green-deep);
  color: var(--bg-ivory);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(23, 63, 42, 0.15);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-organic:hover {
  background-color: var(--green-fresh);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(101, 169, 107, 0.25);
}

/* ================= SECTION 1: 4K HERO WITH SIDE TYPOGRAPHY ================= */
#hero-scroll-track {
  position: relative;
  width: 100%;
  height: 450vh;
}

.hero-sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--bg-ivory);
  display: flex;
  align-items: center;
  touch-action: pan-y;
}

.hero-canvas-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  filter: contrast(1.02) sharpness(1.1);
  pointer-events: none;
  touch-action: pan-y;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  touch-action: pan-y;
}

/* Side-Positioned Hero Content Overlay (Completely Clear of Face in Center) */
.hero-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  display: grid;
  grid-template-columns: 640px 1fr;
  padding: 110px 50px 50px 50px;
}

.hero-left-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 640px;
  width: 100%;
  z-index: 10;
}

.hero-right-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 10;
}

.hero-role-tags {
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--glass-bg);
  backdrop-filter: blur(36px) saturate(220%);
  -webkit-backdrop-filter: blur(36px) saturate(220%);
  padding: 12px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  pointer-events: auto;
  white-space: nowrap !important;
  word-break: keep-all !important;
  transition: transform 0.3s ease, background 0.3s ease;
  max-width: 100%;
}

.hero-role-tags:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.45);
}

.hero-quote-badge {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  color: var(--green-deep);
  background: var(--glass-bg);
  backdrop-filter: blur(36px) saturate(220%);
  -webkit-backdrop-filter: blur(36px) saturate(220%);
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  pointer-events: auto;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-quote-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.45);
}

/* Side-Aligned Single-Line Water-Drop Glass Hero Title Box */
.hero-side-title-box {
  margin: auto 0;
  text-align: left;
  width: 640px;
  max-width: 640px;
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(240%);
  -webkit-backdrop-filter: blur(40px) saturate(240%);
  border: 1.5px solid var(--glass-border);
  border-radius: 44px;
  padding: 36px 40px;
  box-shadow: var(--glass-shadow);
  pointer-events: auto;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.hero-side-title-box:hover {
  transform: translateY(-4px) scale(1.015);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 45px 90px rgba(23, 63, 42, 0.14), inset 0 2.5px 0 #ffffff;
}

.hero-scroll-transform-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 1.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.0;
  white-space: nowrap !important;
  word-break: keep-all !important;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: linear-gradient(135deg, var(--green-deep), #0a2416);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  overflow: visible !important;
}

.hero-personal-sub {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--green-deep);
  opacity: 0.88;
  margin-top: 20px;
  font-weight: 400;
  font-family: var(--font-sans);
  border-top: 1px solid rgba(23, 63, 42, 0.12);
  padding-top: 18px;
}

/* ================= SPOTLIGHT CARDS CSS ================= */
.timeline-visual-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  padding: 24px 30px;
  border-radius: 36px;
  align-items: center;
  margin-bottom: 40px;
}

.books-featured-card,
.waterdrop-reflection-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  padding: 20px;
  border-radius: 36px;
  align-items: center;
  margin-bottom: 40px;
}

.debate-hero-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  padding: 26px 32px;
  border-radius: 36px;
  align-items: center;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(32px) saturate(220%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(220%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25), inset 0 2px 2px rgba(255, 255, 255, 0.5) !important;
}

.teaching-hero-card,
.grounded-banner-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding: 20px;
  border-radius: 36px;
  align-items: center;
  margin-bottom: 40px;
}

.spotlight-card-text {
  padding: 12px 18px;
}

.spotlight-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.15;
}

.spotlight-card-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-charcoal);
  opacity: 0.9;
  margin-bottom: 16px;
}

.spotlight-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.spotlight-card-img-resilience {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 16%;
  border-radius: 26px;
  display: block;
  transition: transform 0.4s ease;
}

.timeline-visual-card:hover .spotlight-card-img-resilience {
  transform: scale(1.025);
}

.spotlight-card-img-dialogue {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 26px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.4s ease;
}

.debate-hero-card:hover .spotlight-card-img-dialogue {
  transform: scale(1.025);
}

.spotlight-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.spotlight-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 24px;
  display: block;
}

.spotlight-card-img-aspect {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.spotlight-pill {
  background: var(--green-deep);
  color: var(--bg-ivory);
  display: inline-block;
}

.travel-card-wide {
  grid-column: span 2;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* ================= SECTION 2: A HUMAN, BEFORE A TITLE ================= */
.bio-section {
  position: relative;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.bio-portrait-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(23, 63, 42, 0.1);
  border: 1px solid var(--glass-border);
}

.bio-portrait-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bio-portrait-box:hover img {
  transform: scale(1.04);
}

.bio-text-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bio-lead {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1.38;
  color: var(--green-deep);
}

.values-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.value-pill {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.value-pill:hover {
  transform: translateY(-2px);
  background-color: var(--accent-yellow);
}

/* ================= SECTION 3: THE LONGER ROAD (GLASS TIMELINE) ================= */
.timeline-section {
  position: relative;
}

.timeline-list {
  position: relative;
  margin-top: 60px;
  padding-left: 36px;
  border-left: 2px solid var(--green-fresh);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 24px;
}

.timeline-dot {
  position: absolute;
  left: -43px;
  top: 36px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--green-deep);
  border: 3px solid var(--bg-ivory);
  box-shadow: 0 0 0 3px var(--green-fresh);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-fresh);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.98rem;
  color: #333333;
  max-width: 700px;
}

.timeline-footer-callout {
  margin-top: 70px;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
}

/* ================= SECTION 4: THE BOOKS THAT SHAPED HIM ================= */
.books-section {
  position: relative;
}

.current-read-card {
  background: linear-gradient(135deg, rgba(23, 63, 42, 0.9), rgba(14, 41, 27, 0.95));
  backdrop-filter: blur(24px);
  color: var(--bg-ivory);
  border-radius: 32px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(23, 63, 42, 0.15);
}

.read-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 6px;
}

.read-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
}

.read-author {
  font-size: 0.92rem;
  opacity: 0.85;
}

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

.book-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-fresh);
}

.book-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.18;
}

.book-author {
  font-size: 0.88rem;
  color: #666;
}

.book-why {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.55;
  margin-top: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

/* ================= SECTION 5: THINGS I THINK ABOUT & MIND CARD ================= */
.ideas-section {
  position: relative;
}

.mind-quote-box {
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.9), rgba(244, 211, 94, 0.75));
  backdrop-filter: blur(20px);
  color: var(--text-charcoal);
  border-radius: 32px;
  padding: 44px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(244, 211, 94, 0.2);
}

.mind-quote-text {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 16px;
}

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

.thought-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thought-card h4 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--green-deep);
}

/* ================= SECTION 6: TEACHING ================= */
.teaching-section {
  position: relative;
}

.teaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.teaching-box {
  padding: 40px;
}

.teaching-box h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}

/* ================= SECTION 7: DEBATE & SPEAKING ================= */
.debate-section {
  background-color: var(--green-deep);
  color: var(--bg-ivory);
}

.debate-section .section-title-serif {
  color: var(--bg-ivory);
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.video-card {
  position: relative;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  background-color: #0e291b;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.video-card:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.video-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  background: linear-gradient(to top, rgba(14, 41, 27, 0.95), transparent);
}

.video-card-badge {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 4px;
}

.video-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
}

/* ================= SECTION 8: WORDS CAN MOVE PEOPLE ================= */
.words-section {
  text-align: center;
  padding: 160px 40px;
}

.words-giant-text {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--green-deep);
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-fresh));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= SECTION 9: TRAVEL ================= */
.travel-section {
  position: relative;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.travel-card {
  border-radius: 28px;
  overflow: hidden;
}

.travel-img {
  height: 250px;
  overflow: hidden;
}

.travel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.travel-card:hover .travel-img img {
  transform: scale(1.06);
}

.travel-info {
  padding: 26px;
}

.travel-location {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--green-fresh);
  text-transform: uppercase;
}

.travel-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin: 6px 0 8px 0;
}

/* ================= SECTION 10: BOTANICAL PAUSE ================= */
.botanical-section {
  background-color: var(--green-deep);
  color: var(--bg-ivory);
  text-align: center;
  padding: 160px 40px;
}

.botanical-quote {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-style: italic;
  line-height: 1.18;
  max-width: 950px;
  margin: 0 auto 30px auto;
}

.botanical-sub {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-yellow);
}

/* ================= SECTION 11: THINGS THAT KEEP ME GROUNDED ================= */
.grounded-section {
  position: relative;
}

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

.grounded-card {
  padding: 40px 24px;
  text-align: center;
}

.grounded-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.grounded-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.grounded-desc {
  font-size: 0.9rem;
  color: #555;
}

/* ================= SECTION 12: PEOPLE WHO MATTER ================= */
.testimonials-section {
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 40px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 18px;
  line-height: 1.42;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-fresh);
  text-transform: uppercase;
}

/* ================= SECTION 13: EASTER EGGS ================= */
.easter-section {
  position: relative;
}

.easter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.easter-card {
  padding: 32px;
  cursor: pointer;
}

.easter-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 6px;
}

/* ================= SECTION 14: FINALE & FOOTER ================= */
.finale-section {
  background-color: var(--green-deep);
  color: var(--bg-ivory);
  text-align: center;
  padding: 170px 40px;
}

.finale-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.finale-lines {
  font-size: 1.25rem;
  opacity: 0.88;
  max-width: 620px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

/* ================= REFINED WATER-DROP GLASS CONTACT ICONS ================= */
.contact-icons-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 32px !important;
  max-width: 480px;
  margin: 45px auto 0 auto;
}

.contact-orb-btn {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(28px) saturate(220%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(220%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15), inset 0 2px 2px rgba(255, 255, 255, 0.8), inset 0 -2px 4px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease !important;
  cursor: pointer;
}

.contact-orb-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  filter: blur(14px);
  z-index: 1;
}

.whatsapp-glow { background: rgba(37, 211, 102, 0.65); }
.facebook-glow { background: rgba(24, 119, 242, 0.65); }
.gmail-glow { background: rgba(234, 67, 53, 0.65); }

.contact-orb-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-icon { color: #25D366; fill: #25D366; }
.facebook-icon { color: #1877F2; fill: #1877F2; }
.gmail-icon { color: #EA4335; stroke: #EA4335; }

.contact-orb-btn:hover {
  transform: translateY(-8px) scale(1.12) !important;
  background: rgba(255, 255, 255, 0.32) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), inset 0 3px 0 #ffffff !important;
}

.contact-orb-btn:hover .contact-orb-glow {
  opacity: 0.85;
  transform: translate(-50%, -50%) scale(1.25);
}

.contact-orb-btn:hover .contact-orb-icon {
  transform: scale(1.15) rotate(-3deg);
}

.site-footer {
  background-color: #081a11;
  color: rgba(246, 243, 232, 0.7);
  padding: 70px 40px 40px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--bg-ivory);
  margin-bottom: 12px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 18px 0 22px 0;
}

.footer-social-btn {
  color: var(--bg-ivory);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-btn:hover {
  background: var(--accent-yellow);
  color: var(--text-charcoal);
  transform: translateY(-2px);
}

/* ================= RESPONSIVE PHONE & TABLET QUERIES ================= */
@media (max-width: 1200px) {
  .hero-content-overlay {
    grid-template-columns: 460px 1fr;
    padding: 100px 30px 40px 30px;
  }
  .hero-side-title-box {
    width: 440px;
    max-width: 440px;
    padding: 36px 40px;
  }
  .hero-scroll-transform-title {
    font-size: clamp(1.5rem, 2.7vw, 2.5rem);
    white-space: nowrap !important;
    word-break: keep-all !important;
  }
}

@media (max-width: 768px) {
  html {
    overflow-x: clip !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  body {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100% !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .floating-nav {
    top: 10px;
    width: 95%;
    padding: 6px 14px;
    gap: 10px;
    justify-content: space-between;
  }
  .nav-brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-right: 0;
  }
  .nav-links {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-width: 75%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links a {
    font-size: 0.62rem;
    white-space: nowrap;
  }

  /* Optimal Hero Scroll on Mobile for Smooth Frame-by-Frame Scrubbing */
  #hero-scroll-track {
    height: 300vh !important;
    touch-action: pan-y !important;
  }

  .hero-sticky-viewport {
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    touch-action: pan-y !important;
  }

  .hero-canvas-wrap,
  #hero-canvas {
    pointer-events: none !important;
    touch-action: pan-y !important;
  }

  /* Reimagine Mobile Hero: Dock Card at Bottom, Face 100% Clear and Unobstructed */
  .hero-content-overlay {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    padding: 0 14px 26px 14px !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    pointer-events: none !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    z-index: 10 !important;
    touch-action: pan-y !important;
  }

  .hero-left-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 440px !important;
    pointer-events: none !important;
  }

  .hero-role-tags {
    font-size: clamp(0.46rem, 2.2vw, 0.65rem) !important;
    letter-spacing: 0.03em !important;
    padding: 6px 14px !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    border-radius: 30px !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.38) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08), inset 0 1px 1px #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 2px !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-side-title-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 16px !important;
    border-radius: 22px !important;
    pointer-events: auto !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.28) !important;
    backdrop-filter: blur(30px) saturate(220%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(220%) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.65) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14), inset 0 2px 2px rgba(255, 255, 255, 0.95) !important;
  }

  .hero-scroll-transform-title {
    font-size: clamp(0.92rem, 4.2vw, 1.35rem) !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    letter-spacing: -0.01em !important;
    display: block !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .hero-personal-sub {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-top: 5px !important;
    padding-top: 5px !important;
    text-align: center !important;
    opacity: 0.88 !important;
  }

  .hero-right-column {
    display: none !important;
  }

  /* Collapse Multi-Column Grids for Clean Mobile Flow */
  .bio-grid, 
  .timeline-visual-card, 
  .books-featured-card, 
  .waterdrop-reflection-card, 
  .teaching-hero-card, 
  .debate-hero-card, 
  .travel-hero-card, 
  .grounded-banner-card,
  .teaching-grid,
  .books-grid, 
  .thoughts-grid, 
  .video-cards-grid, 
  .travel-grid, 
  .grounded-grid, 
  .testimonials-grid, 
  .easter-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .spotlight-card-img-resilience {
    height: 380px !important;
    object-position: center 15% !important;
  }

  .spotlight-card-img-dialogue {
    height: 340px !important;
    object-position: center 20% !important;
  }

  .travel-card-wide,
  .travel-card[style*="grid-column"] {
    grid-column: span 1 !important;
  }

  .section-container {
    padding: 48px 12px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    touch-action: pan-y !important;
  }
  .section-title-serif {
    font-size: clamp(1.5rem, 5.5vw, 2.4rem) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .hero-role-tags {
    font-size: clamp(0.42rem, 2.1vw, 0.58rem) !important;
    letter-spacing: 0.01em !important;
    padding: 5px 10px !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
  }
  .hero-scroll-transform-title {
    font-size: clamp(0.88rem, 4.0vw, 1.25rem) !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
  }
  .hero-side-title-box {
    padding: 12px 12px !important;
    border-radius: 20px !important;
  }

  .contact-orb-btn {
    width: 68px !important;
    height: 68px !important;
  }
  .contact-icons-row {
    gap: 22px !important;
  }
}
