@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  /* Backgrounds — drawn from the book cover's soft teal sky */
  --cream: #f2f9f8;
  --cream-mid: #e2f2ef;
  --cream-dark: #c4e2de;

  /* Greens — from the book cover's forest greens and title text */
  --green-dark: #003018;
  --green-primary: #004d20;
  --green-medium: #1a7844;
  --green-light: #30a860;
  --green-very-light: #d8f0e8;

  /* Accent — Bhutan flag red from the book cover */
  --amber: #cf6938;
  --amber-light: #fff0e4;

  /* Text */
  --text-dark: #001a0d;
  --text-medium: #1e3d28;
  --text-light: #4e7060;

  /* Borders — teal-tinted from the book cover sky */
  --border-light: #bcdcd8;
  --border-medium: #86b8b2;

  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,48,24,0.09);
  --shadow-md: 0 6px 20px rgba(0,48,24,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
  --lens-color: #004d20;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

h1,h2,h3,h4 { font-family: 'Lora', serif; line-height: 1.3; color: var(--text-dark); }
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.4rem,3vw,2rem); }
h3 { font-size: clamp(1.05rem,2vw,1.3rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--green-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul,ol { padding-left: 1.5rem; }
li { margin-bottom: 0.3rem; }

/* ── NAV ── */
.site-nav {
  background: var(--green-dark);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; height: 62px;
}
.nav-logo {
  color: var(--white); font-family: 'Lora',serif; font-size: 1.3rem;
  font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo:hover { color: var(--green-light); }
.logo-prefix {
  color: var(--amber);
  display: inline-block;
  font-size: 1.28em;
  font-weight: 700;
  position: relative;
  top: -2px;
}
.logo-colon { margin-left: 0.12em; }
.nav-logo .logo-name { color: var(--green-light); }
.logo-suffix { display: inline-block; position: relative; top: 1px; white-space: nowrap; }
.logo-mark { line-height: 1; }
.logo-stack { align-items: flex-start; display: flex; flex-direction: column; line-height: 1.02; }
.logo-main { align-items: flex-start; color: var(--white); column-gap: 0.35rem; display: flex; }
.logo-wordmark { align-items: flex-start; display: flex; flex-direction: column; }
.logo-tagline {
  align-self: flex-start;
  color: var(--green-light);
  display: flex;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 7px;
  font-weight: 700;
  gap: 0.85rem;
  letter-spacing: 0.26em;
  line-height: 1;
  margin-left: 48.5%;
  margin-top: -0.04rem;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}
.tagline-green,
.tagline-life {
  display: inline-block;
}
.tagline-life {
  transform: translateX(0.35rem);
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
@keyframes nav-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(207,105,56,0.55); }
  55%       { box-shadow: 0 0 0 7px rgba(207,105,56,0); }
}
.nav-cta {
  background: var(--amber); color: var(--white);
  padding: 0.4rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; white-space: nowrap;
  text-decoration: none; flex-shrink: 0;
  animation: nav-pulse 2.6s ease-in-out infinite;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta-mobile { display: none; }
.nav-cta:hover {
  background: #c84e0c; color: var(--white);
  animation: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(207,105,56,0.45);
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85); padding: 0.45rem 0.7rem;
  border-radius: var(--radius); font-size: 0.875rem; text-decoration: none;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); right: 0;
  background: #002818; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); min-width: 240px; padding: 0.4rem;
  box-shadow: var(--shadow-md);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.4rem 0.8rem; color: rgba(255,255,255,0.8);
  border-radius: 4px; font-size: 0.85rem;
}
.dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 0.25rem;
}

/* ── HOME HERO ── */
.home-hero {
  background: linear-gradient(140deg, var(--green-dark) 0%, var(--green-primary) 60%, var(--green-medium) 100%);
  color: var(--white); padding: 7rem 1.5rem 6rem; text-align: center; position: relative; overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' fill-opacity='0.025' d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/svg%3E");
}
.home-hero-content { position: relative; max-width: 820px; margin: 0 auto; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem;
  color: var(--green-light); margin-bottom: 1rem;
}
.home-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.home-hero .subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.82);
  font-family: 'Lora',serif; font-style: italic; margin-bottom: 2.5rem;
}
.hero-brand-question {
  font-family: 'Lora', serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.core-question {
  background: rgba(255,255,255,0.1); border-left: 3px solid var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.75rem; margin: 0 auto 2rem; max-width: 620px;
  text-align: left; font-size: 1.05rem; color: rgba(255,255,255,0.95);
}
.core-question em { font-family: 'Lora',serif; font-size: 1.1rem; }
.hero-cta {
  display: inline-block; background: var(--amber); color: var(--white);
  padding: 0.875rem 2.25rem; border-radius: 50px; font-weight: 600;
  font-size: 1rem; transition: all var(--transition); box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.hero-cta:hover { background: #c84e0c; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.28); }

/* ── INTRO SECTION ── */
.intro-section { padding: 5rem 1.5rem; background: var(--white); }
.intro-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.intro-inner h2 { color: var(--green-primary); margin-bottom: 1.25rem; }
.intro-inner p { font-size: 1.05rem; color: var(--text-medium); }
.launch-note {
  display: flex; align-items: flex-start; gap: 0.9rem;
  background: var(--amber-light); border: 1px solid #f5c8a0;
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem; margin-top: 2rem; text-align: left;
}
.launch-note-icon { font-size: 1.2rem; line-height: 1.7; flex-shrink: 0; }
.launch-note p { margin: 0; font-size: 0.95rem; color: var(--text-medium); font-style: italic; }
.launch-note strong { font-style: normal; color: var(--text-dark); }
.launch-note-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.goal-box {
  background: var(--green-very-light); border: 1px solid #b8ddd8;
  border-radius: var(--radius-lg); padding: 1.75rem 2rem; margin: 2rem 0;
  font-family: 'Lora',serif; font-size: 1.05rem; color: var(--green-dark); font-style: italic;
}

/* ── CO-FOUNDERS SECTION ── */
.cofounders-section { padding: 5rem 1.5rem; background: var(--white); }
.intro-section + .cofounders-section,
.cofounders-section + .intro-section { padding-top: 0; }
.intro-section + .lenses-section { padding-top: 0; }
.cofounders-inner { max-width: 1050px; margin: 0 auto; }
.cofounders-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 0;
}
.cofounder-card {
  background: var(--cream); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.cofounder-photo {
  width: 100%; height: 260px; object-fit: cover; object-position: center 30%;
  display: block;
}
.cofounder-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.cofounder-body h3 { font-size: 1.3rem; margin: 0; color: var(--text-dark); }
.cofounder-title {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--lens-color, var(--green-primary)); font-weight: 700;
  margin: 0;
}
.cofounder-bio { font-size: 0.95rem; color: var(--text-medium); line-height: 1.75; margin: 0; flex: 1; }
.cofounder-book {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border-radius: var(--radius);
  padding: 0.85rem 1rem; margin-top: 0.5rem;
  border: 1px solid var(--border-light);
}
.book-cover-thumb {
  width: 52px; height: auto; border-radius: 3px;
  box-shadow: 2px 3px 8px rgba(0,0,0,0.18); flex-shrink: 0;
}
.book-cover-wide { width: 80px; border-radius: 4px; }
.cofounder-book-info { display: flex; flex-direction: column; gap: 0.15rem; }
.book-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin: 0;
}
.book-title-text { font-size: 0.9rem; color: var(--text-dark); margin: 0; font-weight: 600; }
.book-author-text { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.book-cta { font-size: 0.78rem; font-weight: 700; color: var(--green-primary); margin: 0.25rem 0 0; letter-spacing: 0.03em; }
a.cofounder-book { text-decoration: none; transition: all var(--transition); }
a.cofounder-book:hover { background: var(--cream-dark); border-color: var(--green-primary); }
a.cofounder-book:hover .book-cta { color: var(--green-dark); }

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

/* ── ORIGIN SECTION ── */
.origin-section { padding: 5rem 1.5rem; background: var(--cream); }
.origin-inner {
  max-width: 1050px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: center;
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg); padding: 2.5rem 3rem;
  box-shadow: var(--shadow-sm);
}
.origin-image-wrap { text-align: center; }
.origin-photo {
  width: 100%; max-width: 420px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); display: block; margin: 0 auto;
  object-fit: cover;
}
.origin-caption {
  margin-top: 0.75rem; font-size: 0.82rem; color: var(--text-light);
  font-style: italic;
}
.origin-text h2 { margin-bottom: 1.25rem; color: var(--text-dark); }
.origin-text p { font-size: 1.03rem; color: var(--text-medium); margin-bottom: 1rem; }
.origin-text p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .origin-inner { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem 1.5rem; }
  .origin-photo { max-width: 340px; }
}

/* ── LENSES GRID ── */
.lenses-section { padding: 5rem 1.5rem; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--green-primary); margin-bottom: 0.5rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.lenses-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto 3.5rem;
}
/* ── MANDALA ── */
.mandala-wrap {
  text-align: center; margin: 0 auto; max-width: 560px;
  transition: max-width 0.4s ease;
}
.mandala-intro {
  max-width: 680px; margin: 0 auto 2rem;
  text-align: center;
}
.mandala-intro p { font-size: 1rem; color: var(--text-medium); line-height: 1.75; margin-bottom: 0.75rem; }
.mandala-intro p:last-child { margin-bottom: 0; }
.mandala-img {
  width: 100%; max-width: 520px; height: auto;
  display: block; margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(45,106,79,0.15));
  transition: max-width 0.4s ease;
  cursor: zoom-in;
}
.mandala-wrap.zoom-1 { max-width: 800px; }
.mandala-wrap.zoom-1 .mandala-img { max-width: 780px; }
.mandala-wrap.zoom-2 { max-width: 1100px; }
.mandala-wrap.zoom-2 .mandala-img { max-width: 1080px; cursor: zoom-out; }
.mandala-zoom-hint {
  font-size: 0.8rem; color: var(--text-light); margin-top: 0.5rem;
  font-style: italic; transition: opacity 0.3s ease;
}
.mandala-wrap.zoom-2 .mandala-zoom-hint { opacity: 0; }
.mandala-caption {
  margin-top: 1rem; font-size: 0.88rem; color: var(--text-light);
  font-style: italic; line-height: 1.5;
}

.lens-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: all 0.28s ease; text-decoration: none; display: block;
  border-top: 4px solid var(--lens-color); position: relative; overflow: hidden;
}
.lens-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.lens-card-number {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--lens-color); margin-bottom: 0.4rem;
}
.lens-card h3 { font-size: 1.35rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.lens-card-theme {
  font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.lens-card-motto {
  font-family: 'Lora',serif; font-style: italic; color: var(--text-medium);
  font-size: 0.9rem; padding-top: 1rem; border-top: 1px solid var(--border-light);
}
.lens-card-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  color: var(--lens-color); font-size: 1.1rem; opacity: 0; transition: all var(--transition);
}
.lens-card:hover .lens-card-arrow { opacity: 1; transform: translateX(4px); }

/* ── LENS PROGRESS ── */
.lens-progress { background: var(--green-dark); padding: 0.6rem 1.5rem; }
.lens-progress-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  align-items: center; gap: 1rem;
}
.lens-progress-label { color: rgba(255,255,255,0.65); font-size: 0.78rem; white-space: nowrap; }
.lens-dots { display: flex; gap: 6px; }
.lens-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: background var(--transition); }
.lens-dot.active { background: var(--white); }
.lens-dot.done { background: var(--green-light); }

/* ── LENS HERO ── */
.lens-hero {
  background: linear-gradient(140deg, var(--lens-color) 0%, color-mix(in srgb, var(--lens-color) 70%, #30a860) 100%);
  color: var(--white); padding: 5rem 1.5rem 4rem; text-align: center;
}
.lens-hero-inner { max-width: 700px; margin: 0 auto; }
.lens-badge {
  display: inline-block; background: rgba(255,255,255,0.18); color: var(--white);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  padding: 0.3rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.lens-hero h1 { color: var(--white); margin-bottom: 0.4rem; }
.lens-hero-theme {
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}
.lens-motto-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50px;
  padding: 0.7rem 2rem; font-family: 'Lora',serif; font-size: 1.1rem;
  font-weight: 600; color: var(--white); letter-spacing: 0.04em;
}

/* ── CONTENT SECTIONS ── */
.content-section { padding: 4rem 1.5rem; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-green-light { background: var(--green-very-light); }
.content-inner { max-width: 900px; margin: 0 auto; }
.section-label {
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.72rem;
  font-weight: 700; color: var(--lens-color); margin-bottom: 0.6rem;
}
.content-section h2 { margin-bottom: 1.25rem; }
.meaning-text { font-size: 1.05rem; color: var(--text-medium); }
.meaning-highlight {
  background: var(--amber-light); border-left: 3px solid var(--amber);
  padding: 1rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; font-family: 'Lora',serif; font-style: italic;
  color: var(--text-dark); font-size: 1rem;
}

/* ── REFLECTION QUESTIONS ── */
.questions-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
  gap: 1.25rem; margin-top: 1.5rem;
}
.question-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--lens-color);
}
.q-number {
  width: 34px; height: 34px; background: var(--lens-color); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; margin-bottom: 0.9rem;
}
.question-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.question-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ── PRACTICES ── */
.practices-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr));
  gap: 1.25rem; margin-top: 1.5rem;
}
.practice-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--border-light);
}
.practice-card h3 {
  font-size: 0.8rem; color: var(--lens-color); margin-bottom: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.07em; font-family: 'Source Sans 3',sans-serif;
}
.practice-card p { font-size: 0.93rem; color: var(--text-medium); }
.practice-quote {
  background: var(--amber-light); border-left: 3px solid var(--amber);
  padding: 0.6rem 0.9rem; margin: 0.75rem 0; font-style: italic;
  font-size: 0.88rem; color: var(--text-dark); border-radius: 0 4px 4px 0;
}
.practice-card ul { font-size: 0.9rem; color: var(--text-medium); }

/* ── INDICATORS TABLE ── */
.indicators-table {
  width: 100%; border-collapse: collapse; margin-top: 1.5rem;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.indicators-table th {
  background: var(--lens-color); color: var(--white); padding: 0.8rem 1.25rem;
  text-align: left; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; font-family: 'Source Sans 3',sans-serif;
}
.indicators-table th:not(:first-child) { text-align: center; min-width: 90px; }
.indicators-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--border-light); font-size: 0.93rem; color: var(--text-medium); }
.indicators-table td:not(:first-child) { text-align: center; color: var(--border-medium); font-size: 0.8rem; }
.indicators-table tr:last-child td { border-bottom: none; }
.indicators-table tr:nth-child(even) { background: var(--cream); }

/* ── WARNING SIGNS ── */
.warning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.warning-box { border-radius: var(--radius-lg); padding: 1.75rem; }
.warning-box.healthy { background: var(--green-very-light); border: 1px solid #b8ddd8; }
.warning-box.unhealthy { background: #f8eeee; border: 1px solid #f5c8a0; }
.warning-box h3 { font-size: 0.95rem; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.warning-box.healthy h3 { color: var(--green-primary); }
.warning-box.unhealthy h3 { color: #7a1010; }
.warning-box.healthy h3::before { content: '✓ '; }
.warning-box.unhealthy h3::before { content: '✗ '; }
.warning-box ul { list-style: none; padding: 0; }
.warning-box li { padding: 0.35rem 0 0.35rem 1.2rem; font-size: 0.92rem; border-bottom: 1px solid rgba(0,0,0,0.05); position: relative; }
.warning-box li::before { position: absolute; left: 0; }
.warning-box.healthy li::before { content: '●'; color: var(--green-medium); font-size: 0.5rem; top: 0.65rem; }
.warning-box.unhealthy li::before { content: '●'; color: #b01818; font-size: 0.5rem; top: 0.65rem; }
.warning-box li:last-child { border-bottom: none; }

/* ── EXAMPLES ── */
.examples-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem; }
.example-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.example-header { background: var(--lens-color); color: var(--white); padding: 0.9rem 1.5rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.example-body { padding: 1.5rem; }
.example-scenario { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.1rem; font-style: italic; }
.example-use { margin-bottom: 1rem; }
.example-use h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--amber); margin-bottom: 0.4rem; font-family: 'Source Sans 3',sans-serif; }
.example-use.stronger h4 { color: var(--lens-color); }
.example-use p { font-size: 0.9rem; color: var(--text-medium); }
.example-goal { border-top: 1px solid var(--border-light); padding-top: 0.9rem; margin-top: 0.9rem; font-family: 'Lora',serif; font-style: italic; font-size: 0.88rem; color: var(--text-dark); }

/* ── BHUTANESE PERSPECTIVE ── */
.bhutanese-section {
  background: linear-gradient(140deg, var(--green-dark) 0%, #001d10 100%);
  color: var(--white); padding: 5rem 1.5rem;
}
.bhutanese-inner { max-width: 800px; margin: 0 auto; }
.bhutanese-inner .section-label { color: var(--green-light); }
.bhutanese-inner h2 { color: var(--white); margin-bottom: 1.5rem; }
.bhutanese-inner p { color: rgba(255,255,255,0.85); font-size: 1.03rem; line-height: 1.85; margin-bottom: 1rem; }
.perspective-pull {
  border-left: 3px solid var(--green-light); padding-left: 1.5rem;
  margin: 1.5rem 0; font-family: 'Lora',serif; font-style: italic;
  font-size: 1.08rem; color: rgba(255,255,255,0.95);
}

/* ── CLOSING QUESTION ── */
.closing-section { background: var(--amber-light); padding: 4.5rem 1.5rem; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-label { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.75rem; font-weight: 700; color: var(--amber); margin-bottom: 1rem; }
.closing-q { font-family: 'Lora',serif; font-size: clamp(1.15rem,3vw,1.65rem); font-weight: 600; color: var(--text-dark); line-height: 1.45; }

/* ── LENS PAGINATION ── */
.lens-pagination { background: var(--green-dark); padding: 1.25rem 1.5rem; }
.lens-pagination-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.lens-prev, .lens-next { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); text-decoration: none; padding: 0.65rem 1.15rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.18); transition: all var(--transition); font-size: 0.875rem; }
.lens-prev:hover, .lens-next:hover { color: var(--white); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.35); }
.lens-home { color: var(--green-light); font-size: 0.85rem; text-decoration: none; }
.lens-home:hover { color: var(--white); }

/* ── GAME CTA ── */
.game-cta-section {
  background: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}
.game-cta-inner {
  max-width: 580px;
  margin: 0 auto;
}
.game-cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-medium);
  margin-bottom: 0.6rem;
}
.game-cta-title {
  font-family: 'Lora', serif;
  font-size: 2.1rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.game-cta-sub {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.game-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(207,105,56,0.3);
}
.game-cta-btn:hover {
  background: #c84e0c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207,105,56,0.45);
}

/* ── GET INVOLVED ── */
.get-involved-section {
  background: linear-gradient(140deg, var(--green-dark) 0%, #001d10 100%);
  padding: 5rem 1.5rem;
}
.get-involved-inner { max-width: 1000px; margin: 0 auto; }
.get-involved-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.get-involved-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background var(--transition);
}
.get-involved-card:hover { background: rgba(255,255,255,0.11); }
.gi-icon { font-size: 2rem; line-height: 1; }
.get-involved-card h3 { font-size: 1.3rem; color: var(--white); margin: 0; }
.get-involved-card p { font-size: 0.97rem; color: rgba(255,255,255,0.78); line-height: 1.75; flex: 1; margin: 0; }
.gi-btn {
  display: inline-block; padding: 0.8rem 1.75rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; text-align: center;
  transition: all var(--transition); text-decoration: none; margin-top: 0.5rem;
  align-self: flex-start;
}
.gi-btn-primary { background: var(--amber); color: var(--white); }
.gi-btn-primary:hover { background: #c84e0c; color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.gi-btn-secondary { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.gi-btn-secondary:hover { background: rgba(255,255,255,0.2); color: var(--white); transform: translateY(-2px); }

@media (max-width: 640px) {
  .get-involved-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.55); padding: 3rem 1.5rem; text-align: center; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-quote { font-family: 'Lora',serif; font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 1rem; }
.footer-credit { font-size: 0.82rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 62px; left: 0; right: 0; background: var(--green-dark); flex-direction: column; padding: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 1rem; width: 100%; }
  .nav-dropdown > a::after { display: none; }
  .dropdown-menu { display: none !important; }
  .nav-toggle { display: none; }
  .nav-cta { font-size: 0.7rem; padding: 0.28rem 0.65rem; }
  .warning-grid, .examples-grid { grid-template-columns: 1fr; }
  .questions-grid, .practices-grid { grid-template-columns: 1fr; }
  .lens-pagination-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .nav-cta { font-size: 0.65rem; padding: 0.22rem 0.5rem; }
  .nav-cta-full { display: none; }
  .nav-cta-mobile { display: inline; }
  .nav-logo { font-size: 1rem; gap: 0.35rem; }
  .logo-main { column-gap: 0.25rem; }
  .logo-prefix { font-size: 1.18em; }
  .logo-tagline { font-size: 6px; }
  .home-hero { padding: 4.5rem 1rem 3.5rem; }
  .lenses-grid { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .nav-logo { font-size: clamp(0.7rem, 3.5vw, 0.8rem); }
  .logo-tagline { font-size: 5px; }
}

/* Dzongkha tooltip */
.dzongkha-tooltip {
  border-bottom: 2px dotted var(--green-medium);
  cursor: help;
  position: relative;
  display: inline-block;
}
.dzongkha-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  padding: 0.55rem 0.9rem;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
}
.dzongkha-tooltip::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--green-dark);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
}
.dzongkha-tooltip:hover::after,
.dzongkha-tooltip:hover::before { opacity: 1; }
@media (max-width: 600px) {
  .dzongkha-tooltip::after { white-space: normal; width: 220px; left: 0; transform: none; }
  .dzongkha-tooltip::before { left: 1rem; transform: none; }
}
