﻿/* Google Fonts are loaded non-blocking via <link> tags in each HTML page's <head>.
   @import was removed because it creates a render-blocking waterfall:
   browser must download styles.css → discover @import → fetch fonts CSS → parse.
   The <link media="print" onload> pattern in HTML loads fonts in parallel. */

/* ============================================================
   BORDANDO VIDA — FINAL VERSION
   V2 layout structure × V1 forest/amber/terracotta palette
   ============================================================
   TABLE OF CONTENTS
   1.  CSS Custom Properties
   2.  Reset & Base
   3.  Layout Utilities
   4.  Bilingual Toggle
   5.  Navigation
   6.  Hero (Home)
   7.  Page Hero (Inner Pages)
   8.  Sections
   9.  Typography
   10. Buttons
   11. Half-Split
   12. Photo Bands
   13. Trailer Section
   14. Team
   15. Investment Levels
   16. Stats
   17. Profit Grid
   18. SDG Tags
   19. Forms
   20. Footer
   21. Quotes Section
   22. Updates / Tabs
   23. Fade-In Animation
   24. Responsive (≤ 768px)
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --forest-night: #060C07;
  --sierra-dark:  #0E1610;
  --deep-forest:  #1A2E1E;
  --amber:        #C8903A;
  --earth-warm:   #C4AB85;
  --terracotta:   #B5593A;
  --fog-light:    #E8E4D8;
  --parchment:    #F5F2EA;
  --text-dark:    #0E1610;
  --nav-h:        68px;

  /* derived */
  --amber-15:     rgba(200, 144, 58, 0.15);
  --amber-10:     rgba(200, 144, 58, 0.10);
  --amber-35:     rgba(200, 144, 58, 0.35);
  --fog-07:       rgba(232, 228, 216, 0.07);
  --fog-10:       rgba(232, 228, 216, 0.10);
  --fog-15:       rgba(232, 228, 216, 0.15);
  --fog-50:       rgba(232, 228, 216, 0.50);
  --fog-55:       rgba(232, 228, 216, 0.55);
  --fog-70:       rgba(232, 228, 216, 0.70);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  background: var(--forest-night);
  color: var(--fog-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}


/* ============================================================
   4. BILINGUAL TOGGLE
   ============================================================ */
html.lang-en .es { display: none !important; }
html.lang-es .en { display: none !important; }


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--sierra-dark);
  border-bottom: 1px solid var(--amber-15);
}

.nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1px;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-light);
}

.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-warm);
  opacity: 0.7;
}

/* Links */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Invest + Contact shown only in hamburger on mobile */
.nav-hamburger-only { display: none !important; }

.nav-links li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-light);
  opacity: 0.82;
  padding: 0.5rem 0.9rem;
  display: block;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links li a:hover {
  opacity: 1;
  color: var(--fog-light);
}

.nav-links li a.active {
  opacity: 1;
  color: var(--earth-warm);
}

/* Invest link — terracotta fill (matches V1) */
.nav-links li.nav-invest a {
  opacity: 1;
  background: var(--terracotta);
  color: var(--fog-light) !important;
  padding: 0.4rem 1.1rem;
  margin-left: 0.5rem;
}

.nav-links li.nav-invest a:hover {
  opacity: 0.85;
  color: var(--fog-light) !important;
}

/* Right cluster: lang toggle + invest + updates + hamburger */
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* Right-side nav links */
.nav-right-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-light);
  opacity: 0.82;
  padding: 0.5rem 0.9rem;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.nav-right-link:hover { opacity: 1; }

.nav-right-invest {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 1;
  background: var(--terracotta);
  color: var(--fog-light) !important;
  padding: 0.4rem 1.1rem;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav-right-invest:hover { opacity: 0.85; }

/* Language toggle */
.lang-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--fog-light);
  opacity: 0.72;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  transition: opacity 0.2s ease;
  line-height: 1;
}

.lang-btn:hover {
  opacity: 0.7;
}

.lang-btn.active {
  opacity: 1;
  color: var(--earth-warm);
}

.lang-sep {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: var(--fog-light);
  opacity: 0.2;
  user-select: none;
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fog-light);
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Animated X state */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   6. HERO (HOME)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 12, 7, 0.94) 0%,
    rgba(6, 12, 7, 0.40) 48%,
    rgba(6, 12, 7, 0.22) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth-warm);
  display: block;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(3.05rem, 8.1vw, 5.65rem);
  text-transform: uppercase;
  color: var(--fog-light);
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 0;
}

.hero-t2 {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.6rem, 7vw, 5.15rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fog-light);
  margin-top: 0.1em;
  margin-bottom: 0.15em;
}

.hero-bilingual {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  letter-spacing: 0.12em;
  color: var(--fog-light);
  margin-bottom: 3rem;
}

.hero-tagline {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fog-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   7. PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-h);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

@keyframes hero-zoom {
  from { transform: scale(1);    }
  to   { transform: scale(1.14); }
}

.page-hero-bg--zoom {
  animation: hero-zoom 18s ease-out forwards;
  transform-origin: center center;
  will-change: transform;
}


.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 12, 7, 0.80) 0%,
    rgba(6, 12, 7, 0.30) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth-warm);
  display: block;
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.65rem, 6.5vw, 4.35rem);
  text-transform: uppercase;
  color: var(--fog-light);
  line-height: 1;
}

.page-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--fog-light);
  opacity: 0.7;
  display: block;
  margin-top: 0.75rem;
}


/* ============================================================
   8. SECTIONS
   ============================================================ */
.sect {
  padding: 80px 0;
}

.sect-dark {
  background: var(--sierra-dark);
}

.sect-soft {
  background: var(--deep-forest);
}

.sect-light {
  background: var(--parchment);
  color: var(--text-dark);
}

/* Invert eyebrow line color on light sections */
.sect-light .eyebrow::before {
  background: var(--terracotta) !important;
}

.sect-sm {
  padding: 48px 0;
}

/* Image-backed pre-footer CTA sections */
.prefooter-image-cta {
  --prefooter-image: none;
  --prefooter-position: 68% center;
  --prefooter-bg-size: 150% auto;
  --prefooter-scale-x: 1;
  --prefooter-left-stop: 66%;
  --prefooter-mid-opacity: 0.82;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 72px 0 !important;
  border-top: 1px solid var(--amber-10);
  isolation: isolate;
}

.prefooter-image-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--prefooter-image);
  background-size: var(--prefooter-bg-size);
  background-position: var(--prefooter-position);
  background-repeat: no-repeat;
  transform: scaleX(var(--prefooter-scale-x));
}

.prefooter-image-cta::before,
.prefooter-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 7, 0.24) 0%, rgba(6, 12, 7, 0.12) 36%, rgba(6, 12, 7, var(--prefooter-mid-opacity)) var(--prefooter-left-stop), rgba(6, 12, 7, 0.96) 100%),
    linear-gradient(0deg, rgba(6, 12, 7, 0.34), rgba(6, 12, 7, 0.34));
}

.prefooter-image-cta .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  text-align: left !important;
}

.prefooter-image-cta .prefooter-copy {
  width: min(520px, 100%);
  margin-right: clamp(0rem, 5vw, 4rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.prefooter-image-cta .eyebrow,
.prefooter-image-cta .page-hero-eyebrow {
  justify-content: flex-start !important;
  color: var(--fog-light);
}

.prefooter-image-cta .label,
.prefooter-image-cta .page-hero-eyebrow {
  color: var(--fog-light);
  opacity: 0.92;
}

.prefooter-image-cta .section-title,
.prefooter-image-cta h3,
.prefooter-image-cta p {
  color: var(--fog-light) !important;
}

.prefooter-image-cta p {
  opacity: 0.86 !important;
}

.prefooter-image-cta .btn-group,
.prefooter-image-cta form {
  justify-content: flex-start !important;
}

.prefooter-image-cta .btn-outline {
  background: rgba(6, 12, 7, 0.36);
  border-color: rgba(232, 228, 216, 0.76) !important;
  color: var(--fog-light) !important;
  backdrop-filter: blur(2px);
}

.prefooter-image-cta .btn-outline.btn-outline-amber {
  border-color: var(--terracotta) !important;
  color: var(--terracotta) !important;
}

.prefooter-image-cta .form-input {
  background: rgba(6, 12, 7, 0.70);
  border-color: rgba(232, 228, 216, 0.32);
}

.prefooter-image-panel {
  --prefooter-image: none;
  --prefooter-position: 68% center;
  --prefooter-left-stop: 66%;
  --prefooter-mid-opacity: 0.82;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--prefooter-image) !important;
  background-size: 150% auto !important;
  background-position: var(--prefooter-position) !important;
  background-repeat: no-repeat !important;
}

.prefooter-image-panel > * {
  position: relative;
  z-index: 1;
}

.prefooter-image-panel.full-image-overlay::before {
  background: rgba(6, 12, 7, 0.68);
}

/* Image-background sections */
.sect-imgbg {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sect-imgbg-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sect-imgbg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 12, 7, 0.88) 0%,
    rgba(6, 12, 7, 0.55) 100%
  );
}

.sect-imgbg-content {
  position: relative;
  z-index: 2;
  width: 100%;
}


/* ============================================================
   9. TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 5rem);
  text-transform: uppercase;
  color: var(--fog-light);
  line-height: 1;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  color: var(--fog-light);
  line-height: 1.05;
}

h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  line-height: 1.1;
}

/* Light section heading override */
.sect-light h1,
.sect-light h2,
.sect-light h3 {
  color: var(--text-dark);
}

/* Eyebrow label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
}

.eyebrow,
.eyebrow .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth-warm);
}

/* Section title — used on h2 elements */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem) !important;
  text-transform: uppercase;
  color: var(--fog-light);
  line-height: 1.05;
}

.sect-light .section-title {
  color: var(--text-dark);
}

/* Gold rule separator */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 2rem;
}

/* Body text block */
.body-text p {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fog-light);
  max-width: 580px;
}

.body-text p + p {
  margin-top: 1rem;
}

.body-text.dim p {
  opacity: 0.72;
}

.sect-light .body-text p {
  color: var(--text-dark);
}

/* Pull quote — ONLY place Cormorant Garamond italic is used */
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--fog-light);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}


/* ============================================================
   10. BUTTONS
   ============================================================ */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  line-height: 1;
}

.btn-primary,
.btn-amber-fill {
  background: var(--terracotta);
  color: var(--fog-light);
  border-color: var(--terracotta);
}

.btn-primary:hover,
.btn-amber-fill:hover {
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  color: var(--fog-light);
  border-color: var(--fog-50);
}

.btn-outline:hover {
  border-color: var(--fog-light);
}

.btn-ghost {
  background: transparent;
  color: var(--fog-light);
  border: 1px solid rgba(232, 228, 216, 0.4);
}

.btn-ghost:hover {
  border-color: var(--fog-light);
}


/* ============================================================
   11. HALF-SPLIT
   ============================================================ */
.half-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.half-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.half-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.half-content {
  background: var(--sierra-dark);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.half-content.half-light {
  background: var(--parchment);
  color: var(--text-dark);
}

.half-content.half-light .eyebrow,
.half-content.half-light .eyebrow .label {
  color: var(--earth-warm);
}

.half-content.half-light .eyebrow::before {
  background: var(--terracotta);
}

.half-content .body-text p {
  max-width: 100%;
}


/* ============================================================
   12. PHOTO BANDS
   ============================================================ */
.photo-band {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.photo-band.pb-lg { min-height: 460px; }
.photo-band.pb-md { min-height: 380px; }
.photo-band.pb-sm { min-height: 240px; }
.photo-band.trailer-separator { min-height: 340px; }
@media (min-width: 769px) {
  .photo-band.trailer-separator { min-height: 520px; }
}
.trailer-sep-overlay {
  background: linear-gradient(
    to bottom,
    rgba(14,22,16,1)    0%,
    rgba(14,22,16,0.98) 2%,
    rgba(14,22,16,0.93) 5%,
    rgba(14,22,16,0.82) 10%,
    rgba(14,22,16,0.62) 18%,
    rgba(14,22,16,0.30) 28%,
    rgba(14,22,16,0)    50%,
    rgba(14,22,16,0.30) 72%,
    rgba(14,22,16,0.62) 82%,
    rgba(14,22,16,0.82) 90%,
    rgba(14,22,16,0.93) 95%,
    rgba(14,22,16,0.98) 98%,
    rgba(14,22,16,1)    100%
  ) !important;
}

.pb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.pb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 12, 7, 0.82) 0%,
    rgba(6, 12, 7, 0.45) 100%
  );
}

.pb-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.pb-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth-warm);
  display: block;
  margin-bottom: 0.75rem;
}

/* "pb-italic" in spec — kept as class name but NOT italic; uses Barlow Condensed uppercase */
.pb-italic {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  color: var(--fog-light);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.pb-small {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--fog-light);
  opacity: 0.55;
}


/* ============================================================
   13. TRAILER SECTION
   ============================================================ */
.trailer-section {
  background: var(--sierra-dark);
  padding: 80px 0;
}

.trailer-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.trailer-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.trailer-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 5rem;
  color: var(--fog-light);
  opacity: 0.08;
  display: block;
  line-height: 1;
}


/* ============================================================
   14. TEAM
   ============================================================ */
.team-member {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--fog-07);
}

.team-portrait img {
  width: 100px;
  height: 150px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(100%);
}

.team-no-photo {
  width: 100px;
  height: 150px;
  background: var(--deep-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--earth-warm);
  border-radius: 2px;
}

.team-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.3rem;
}

.team-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,144,58,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.team-name a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fog-light);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.team-country {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--earth-warm);
  margin-left: 0.5rem;
  opacity: 0.8;
}

.team-bio {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--fog-light);
  opacity: 0.7;
  line-height: 1.75;
  max-width: 540px;
}

/* Memorial block */
.team-memorial {
  border-left: 3px solid var(--amber);
  padding-left: 2rem;
  margin-top: 2rem;
}

.memorial-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--fog-light);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 580px;
}

.memorial-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}


/* ============================================================
   15. INVESTMENT LEVELS
   ============================================================ */
.invest-level {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--fog-07);
}

.invest-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--amber);
  display: block;
  line-height: 1;
}

.invest-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog-light);
  display: block;
  margin-top: 0.4rem;
}

.invest-features {
  list-style: none;
  padding: 0;
}

.invest-features li {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--fog-light);
  opacity: 0.75;
  line-height: 1.7;
}

.invest-features li::before {
  content: '—';
  color: var(--amber);
  margin-right: 0.5rem;
}

.large-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--amber);
  display: block;
  line-height: 1;
}

.large-num-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog-light);
  opacity: 0.55;
  display: block;
  margin-top: 0.5rem;
}


/* ============================================================
   16. STATS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(200, 144, 58, 0.15);
  border-bottom: 1px solid rgba(200, 144, 58, 0.15);
}

.stat-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(200, 144, 58, 0.10);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--amber);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fog-light);
  opacity: 0.6;
  display: block;
  margin-top: 0.5rem;
}


/* ============================================================
   17. PROFIT GRID
   ============================================================ */
.profit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.profit-item {
  border-top: 3px solid var(--amber);
  padding-top: 2rem;
}

.profit-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--amber);
  line-height: 1;
}

.profit-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fog-light);
}

.profit-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--fog-light);
  opacity: 0.65;
  line-height: 1.75;
  margin-top: 0.75rem;
}

.sect-light .profit-label { color: var(--text-dark); }
.sect-light .profit-desc  { color: var(--text-dark); }


/* ============================================================
   18. SDG TAGS
   ============================================================ */
.sdg-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sdg-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber-35);
  padding: 0.4rem 0.9rem;
  display: inline-block;
}


/* ============================================================
   19. FORMS
   ============================================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fog-light);
  opacity: 0.55;
  display: block;
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  background: var(--sierra-dark);
  border: 1px solid var(--fog-15);
  color: var(--fog-light);
  padding: 0.7rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--amber);
}

.form-input::placeholder {
  color: var(--fog-light);
  opacity: 0.3;
}

.form-textarea {
  width: 100%;
  background: var(--sierra-dark);
  border: 1px solid var(--fog-15);
  color: var(--fog-light);
  padding: 0.7rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  outline: none;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-textarea:focus {
  border-color: var(--amber);
}

.form-textarea::placeholder {
  color: var(--fog-light);
  opacity: 0.3;
}

/* Inline validation errors */
.form-error {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--terracotta);
  margin-top: 0.4rem;
}

.form-input.field-invalid,
.form-textarea.field-invalid {
  border-color: var(--terracotta);
}

/* Inline email row */
.email-row {
  display: flex;
  gap: 0;
}

.email-row input {
  flex: 1;
  border-right: none;
}

.email-row button {
  border-left: none;
  flex-shrink: 0;
}


/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
  background: var(--forest-night);
  border-top: 1px solid rgba(200, 144, 58, 0.10);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem 5rem;
  align-items: start;
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog-light);
}

.footer-brand-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--fog-light);
  opacity: 0.82;
  display: block;
  margin-top: 0.3rem;
}

.footer-nav-list {
  display: grid;
  grid-template-columns: repeat(8, auto);
  gap: 0.5rem 2.25rem;
  justify-content: start;
}

/* Visually separate the Updates sub-section (items 9+) */
.footer-nav-list a:nth-child(n+9) {
  margin-top: 0.65rem;
  opacity: 0.38;
}
.footer-nav-list a:nth-child(n+9):hover {
  opacity: 1;
}

.footer-nav-list a {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--fog-light);
  opacity: 0.5;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.footer-nav-list a svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-nav-list a:hover {
  opacity: 1;
}

.footer-contact-block {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--fog-light);
  opacity: 0.55;
  line-height: 1.9;
}

.footer-contact-block strong,
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth-warm);
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  font-style: normal;
  opacity: 1;
}

.footer-contact-block strong:first-child,
.footer-col-title:first-child {
  margin-top: 0;
}

/* ---- Footer partner logos ---- */
.footer-partners {
  border-top: 1px solid var(--fog-07);
  padding-top: 2rem;
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}

.footer-partners-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog-light);
  opacity: 0.35;
  margin: 0 0 1.4rem;
}

.footer-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
}

.footer-partner-logo {
  max-height: 32px;
  width: auto;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s;
  display: block;
}

.footer-partner-logo:hover {
  opacity: 0.8;
}

/* ---- Mid-page partner logos (investors sections) ---- */
.partner-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  margin: 2.5rem 0;
}

/* Force single row until viewport is narrow (< ~560px) */
.logos-row-inline {
  flex-wrap: nowrap;
}

@media (max-width: 560px) {
  .logos-row-inline {
    flex-wrap: wrap;
  }
}

.partner-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.partner-logo-mid {
  max-height: 50px;
  width: auto;
  opacity: 0.72;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s;
  display: block;
}

.partner-logo-mid:hover {
  opacity: 1;
}

/* ---- Investor page partner card ---- */
.partner-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem 3.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--fog-07);
  align-items: center;
}

/* Direct logo (no wrapper) */
.partner-card > .partner-card-logo,
.partner-card > .quote-portrait {
  justify-self: center;
}

.partner-card:last-child {
  border-bottom: none;
}

.partner-card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid var(--fog-07);
  border-radius: 2px;
}

.partner-card-logo {
  max-height: 80px;
  width: auto;
  max-width: 200px;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  display: block;
}

.partner-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fog-light);
  margin: 0 0 0.4rem;
}

.partner-card-role {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 1rem;
}

.partner-card-bio {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--fog-light);
  opacity: 0.8;
  margin: 0 0 1.25rem;
}

.partner-card-link {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog-light);
  text-decoration: none;
  background: #253D2C;
  padding: 0.4rem 1rem;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  transition: background 0.2s, color 0.2s;
}
.partner-card-link:hover {
  background: #2E4D36;
  color: var(--amber);
}

@media (max-width: 640px) {
  .partner-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .partner-card > .partner-card-logo,
  .partner-card > .quote-portrait {
    justify-self: flex-start;
  }
}

.footer-bottom {
  border-top: 1px solid var(--fog-07);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--fog-light);
  opacity: 0.3;
}

.footer-lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  order: 10;
}

.footer-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1px solid rgba(240,235,224,0.12);
  border-radius: 3px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fog-light);
  opacity: 0.82;
  transition: opacity 0.2s, border-color 0.2s;
  line-height: 1;
}

.footer-lang-btn:hover {
  opacity: 0.75;
  border-color: rgba(240,235,224,0.3);
}

.footer-lang-btn.active {
  opacity: 1;
  border-color: var(--amber);
  color: var(--amber);
}

.footer-lang-btn .fi {
  width: 1.1em;
  height: 0.8em;
  border-radius: 1px;
  margin-right: 1px;
  vertical-align: middle;
}


/* ============================================================
   21. QUOTES SECTION (HOME — SCROLLING INVESTOR QUOTES)
   ============================================================ */
.quotes-section {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quotes-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.quotes-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 7, 0);
}

.quotes-inner {
  position: relative;
  z-index: 2;
  padding: 80px 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

/* ── Quote cards — cinematic editorial ── */
.quote-card {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 3.2rem 0;
  margin-bottom: 0;
  position: relative;
}
.quote-card:first-child {
  padding-top: 0;
}
.quote-card + .quote-card {
  border-top: 1px solid rgba(200, 144, 58, 0.22);
}

.quote-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quote-portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--deep-forest);
  border: 1px solid var(--amber-35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  flex-shrink: 0;
}

/* Homepage quote circles — clean portrait ring */
.quote-card .quote-portrait {
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: var(--deep-forest);
  border: 1.5px solid rgba(200, 144, 58, 0.45);
  border-radius: 50%;
  flex-shrink: 0;
  position: static;
}
.quote-card .quote-portrait img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 50%;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.quote-card-id {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quote-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fog-light);
  line-height: 1.25;
}

.quote-role {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--amber);
  opacity: 1;
}

.quote-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.22rem, 2.2vw, 1.52rem);
  color: var(--fog-light);
  line-height: 1.75;
  padding-left: 0;
  border-left: none;
  margin: 0;
}

.quote-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.quote-item.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--fog-light);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-attribution {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.quote-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 228, 216, 0.25);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.quote-dot:hover {
  background: rgba(232, 228, 216, 0.5);
}

.quote-dot.active {
  background: var(--amber);
}


/* ============================================================
   22. UPDATES / TABS
   ============================================================ */
.updates-tabs {
  display: flex;
  border-bottom: 1px solid var(--fog-10);
  margin-bottom: 3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.updates-tabs::-webkit-scrollbar {
  display: none;
}

.tab-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog-light);
  opacity: 0.82;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  margin-bottom: -1px;
}

.tab-link:hover {
  opacity: 0.7;
}

.tab-link.active {
  opacity: 1;
  border-bottom-color: var(--amber);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}


/* ============================================================
   23. FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   24. RESPONSIVE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Nav: hide links, show toggle */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--sierra-dark);
    border-bottom: 1px solid var(--amber-15);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0;
    z-index: 199;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    padding: 0.85rem 2rem;
    opacity: 0.7;
    font-size: 0.98rem;
    display: block;
    width: 100%;
  }

  .nav-links li a:hover,
  .nav-links li a.active {
    opacity: 1;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hide invest/updates from top bar on mobile — they live in the hamburger */
  .nav-right-invest { display: none; }
  .nav-right-link { display: none; }
  .nav-hamburger-only { display: list-item !important; }

  /* Disable fixed backgrounds on mobile (iOS fix) */
  .hero-bg,
  .pb-bg,
  .quotes-bg,
  .sect-imgbg-bg {
    background-attachment: scroll;
  }

  /* Hero */
  .hero {
    padding-top: var(--nav-h);
  }

  .hero-title {
    font-size: clamp(2.2rem, 10.2vw, 3.85rem);
    white-space: normal;
  }

  .hero-t2 {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  /* Page hero */
  .page-hero {
    height: 280px;
  }

  /* Half-split: stack, content on top */
  .half-split {
    grid-template-columns: 1fr;
  }

  .half-split .half-content {
    order: 1;
    padding: 3rem 1.5rem;
  }

  .half-split .half-img {
    order: 2;
    min-height: 260px;
  }

  /* Stats: 2 columns */
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(200, 144, 58, 0.10);
  }

  /* Invest levels: 1 column */
  .invest-level {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Profit grid: 1 column */
  .profit-grid {
    grid-template-columns: 1fr;
  }

  /* Team: 1 column */
  .team-member {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Footer: 1 column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Sections */
  .sect {
    padding: 56px 0;
  }

  .prefooter-image-cta {
    min-height: 360px;
    background-size: cover !important;
    background-position: center !important;
  }

  .prefooter-image-cta::before,
  .prefooter-image-panel::before {
    background:
      linear-gradient(0deg, rgba(6, 12, 7, 0.78), rgba(6, 12, 7, 0.54)),
      linear-gradient(90deg, rgba(6, 12, 7, 0.42), rgba(6, 12, 7, 0.82));
  }

  .prefooter-image-cta .container {
    justify-content: flex-start;
  }

  .prefooter-image-cta .prefooter-copy {
    margin-right: 0;
  }

  .sect-sm {
    padding: 36px 0;
  }

  /* Half content padding */
  .half-content {
    padding: 3rem 1.5rem;
  }

  /* Container */
  .container,
  .container-wide {
    padding: 0 1.25rem;
  }

  /* Quotes */
  .quotes-section {
    min-height: 480px;
  }

  .quotes-inner {
    padding: 60px 1.5rem;
  }

  /* Trailer */
  .trailer-section {
    padding: 56px 0;
  }

  /* Photo band */
  .pb-content {
    padding: 3rem 1.5rem;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================================
   25. RECAPTCHA BADGE
   ============================================================ */
/* Hide the floating reCAPTCHA badge. Per Google's ToS, pages that hide
   the badge must display the text disclosure added to the footer.        */
.grecaptcha-badge {
  visibility: hidden !important;
}

#contact-section {
  scroll-margin-top: calc(var(--nav-h) + 28px);
}


/* ============================================================
   26. MOBILE FIXES — overrides for inline styles & layout gaps
   ============================================================ */
@media (max-width: 768px) {

  /* ── NAV ──
     Give logo flex:1 so the hamburger button sits right next to
     the lang toggle instead of floating at the far-right edge.  */
  .nav-logo {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }

  .nav-right {
    flex: 0 0 auto;
  }

  /* ── PAGE HERO CONTENT ──
     All inner pages use margin: 0 0 0 80px + padding: 0 2rem 3.5rem 4.5rem
     as inline styles — this pushes text way off screen on mobile.  */
  .page-hero-content {
    margin: 0 !important;
    padding: 0 1.25rem 2rem !important;
    max-width: 100% !important;
  }

  /* Trailers hero uses white-space:nowrap spans — unwrap on mobile */
  .page-hero-title * {
    white-space: normal !important;
  }

  /* Contact hero uses background-size:95% inline — fix tiling */
  .page-hero-bg {
    background-size: cover !important;
  }

  /* ── PHOTO BANDS ──
     "A Scholar Returns" has padding-left:9rem inline + background-size:150%
     which causes text to be half-screen and image to tile/zoom.  */
  .pb-content {
    padding: 2.5rem 1.25rem !important;
    max-width: 100% !important;
  }

  .pb-bg {
    background-size: cover !important;
    background-attachment: scroll !important;
  }

  /* ── HALF-SPLIT (Story / About page) ──
     Inline grid-template-columns overrides the responsive rule,
     leaving a narrow image strip on the right. Also put image first. */
  .half-split {
    grid-template-columns: 1fr !important;
  }

  .half-split .half-img {
    order: 1 !important;
    min-height: 240px;
  }

  .half-split .half-content {
    order: 2 !important;
    padding: 2.5rem 1.25rem !important;
  }

  /* ── TEAM PORTRAITS ──
     Keep a 2-column layout (portrait + text side-by-side) and lock
     all portrait containers to the same dimensions.  */
  .team-member {
    grid-template-columns: 80px 1fr;
    align-items: start;
  }

  .team-portrait {
    width: 80px;
    height: 110px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .team-portrait img {
    width: 80px !important;
    height: 110px !important;
    object-fit: cover;
  }

  /* ── FOOTER NAV ──
     7-column grid overflows on mobile — switch to flex-wrap. */
  .footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.75rem;
  }

  /* ── UPDATES / TABS ──
     Horizontal overflow-x scroll hides tabs off-screen;
     stack them vertically with a left-border active indicator. */
  .updates-tabs {
    flex-direction: column;
    overflow-x: visible;
  }

  .updates-tab-bar .updates-tabs {
    padding: 0 !important;
  }

  .tab-link {
    border-bottom: 1px solid var(--fog-10);
    border-left: 3px solid transparent;
    padding: 0.9rem 1.5rem !important;
    font-size: 1rem;
    text-align: left;
    white-space: normal;
    margin-bottom: 0;
  }

  .tab-link:last-child {
    border-bottom: none;
  }

  .tab-link.active {
    border-bottom-color: var(--fog-10);
    border-left-color: var(--amber);
  }

  /* ── INVEST "12" STAT BOX ──
     On mobile the stat box wraps below the text; show it first. */
  .invest-stat-box {
    order: -1;
    align-self: center;
    width: 150px !important;
    height: 150px !important;
  }

}


/* Final notes pass: shared polish and requested layouts */
.hero-video,
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-video.video-playing,
.page-hero-video.video-playing {
  opacity: 1;
}

.page-hero-lg {
  height: min(72vh, 680px);
  min-height: 520px;
}

.quote-card-text {
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.55;
}

.quote-card-id {
  font-size: 1.08rem;
}

.bv-button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1rem;
  width: min(560px, 100%);
  margin-inline: auto;
}

.bv-button-grid .btn,
.bv-button-row .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.bv-button-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 1rem;
  width: min(760px, 100%);
  margin-inline: auto;
}

.impact-stats-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.impact-stats-grid > div {
  padding: 2.5rem 2rem !important;
  border-right: 1px solid rgba(200,144,58,0.12);
}

.impact-stats-grid > div:last-child {
  border-right: 0;
}

.impact-stats-grid p,
.impact-stats-grid span {
  opacity: 0.82 !important;
}

.sdg-btn[data-sdg="1"] { border-color:#e5243b; color:#ffb3bd; }
.sdg-btn[data-sdg="4"] { border-color:#c5192d; color:#ffb5bf; }
.sdg-btn[data-sdg="5"] { border-color:#ff3a21; color:#ffc0b8; }
.sdg-btn[data-sdg="8"] { border-color:#a21942; color:#f0a8bc; }
.sdg-btn[data-sdg="10"] { border-color:#dd1367; color:#ffafd2; }

.contact-wide .container {
  max-width: 760px;
}

/* Extend parallax tiling fix to small tablets (769px–1024px) */
@media (max-width: 1024px) {
  .pb-bg {
    background-size: cover !important;
    background-attachment: scroll !important;
  }
}

/* Quotes section video background */
.quotes-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .quotes-bg-video {
    object-position: center center;
  }
}

@media (max-width: 760px) {
  .page-hero-lg {
    min-height: 430px;
    height: 62vh;
  }

  .bv-button-grid,
  .bv-button-row,
  .impact-stats-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-wide .container {
    width: 100%;
    padding-inline: 1rem;
  }

  .contact-wide form {
    width: 100%;
  }
}


/* Final nav position adjustment */
@media (min-width: 1025px) {
  .nav-links {
    transform: translateX(-3rem);
  }
}


/* Final todo-copy update */
.final-button-grid,
.prefooter-image-cta .btn-group,
.half-content .btn-group {
  gap: 0.85rem;
}

.prefooter-image-cta .btn-group,
.half-content .btn-group {
  justify-content: center !important;
}

.prefooter-image-cta .btn,
.half-content .btn {
  min-width: 190px;
  justify-content: center;
}

.sdg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  gap: 1.5rem;
  align-items: center;
}

.sdg-side-emblem {
  border: 1px solid rgba(200, 144, 58, 0.36);
  min-height: 210px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--fog-light);
  background: rgba(6, 12, 7, 0.34);
}

.sdg-side-emblem span {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.16em;
  color: var(--amber);
}

.sdg-side-emblem strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  letter-spacing: 0.06em;
}

.sdg-side-emblem small {
  opacity: 0.62;
  font-family: 'Barlow', sans-serif;
}

.updates-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
}

.updates-timeline::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: rgba(200, 144, 58, 0.38);
}

.timeline-entry {
  position: relative;
  padding-left: 2.25rem;
}

.timeline-entry summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.35rem 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(232, 228, 216, 0.10);
  background: rgba(6, 12, 7, 0.22);
}

.timeline-entry summary::-webkit-details-marker {
  display: none;
}

.timeline-dot {
  position: absolute;
  left: 0.42rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(200, 144, 58, 0.12);
}

.timeline-date {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  grid-column: 1 / span 2;
}

.timeline-teaser,
.timeline-full {
  font-family: 'Barlow', sans-serif;
  color: var(--fog-light);
  opacity: 0.74;
  line-height: 1.7;
}

.timeline-teaser {
  grid-column: 1 / span 2;
  font-size: 0.92rem;
}

.timeline-arrow {
  grid-row: 1 / span 2;
  grid-column: 3;
  color: var(--amber);
  font-size: 1.5rem;
}

.timeline-entry[open] .timeline-arrow {
  transform: rotate(180deg);
}

.timeline-full {
  margin: 0;
  padding: 0.35rem 0 0.5rem;
  border: none;
  background: none;
}

/* Sub-event rows within an open entry */
.timeline-event {
  position: relative;
  padding: 0.55rem 0;
}
.timeline-event + .timeline-event {
  margin-top: 0.1rem;
}
/* Horizontal branch line from the main vertical timeline to each event */
.timeline-event::before {
  content: '';
  position: absolute;
  left: -1.54rem;
  top: calc(0.55rem + 0.85em);
  width: 1.1rem;
  height: 1px;
  background: rgba(200, 144, 58, 0.22);
}
/* Dot at the right (text) end of the connector line */
.timeline-event::after {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: calc(0.55rem + 0.85em - 2px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(200, 144, 58, 0.38);
}

.recaptcha-legal-note a {
  color: var(--amber);
}

@media (max-width: 768px) {
  .sdg-layout {
    grid-template-columns: 1fr;
  }
  .prefooter-image-cta .btn,
  .half-content .btn {
    width: 100%;
  }
}


/* Requested final visual corrections - 2026-05-10 */
.hero-bg-layered {
  background-color: #061007;
  overflow: hidden;
}

.hero-bg-layered .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-layered .hero-video-blur {
  object-fit: cover;
  filter: blur(18px) saturate(0.9);
  transform: scale(1.08);
  opacity: 0.78;
}

.hero-bg-layered .hero-video-main {
  object-fit: contain;
  z-index: 1;
}

.hero-overlay-green {
  background:
    linear-gradient(to bottom, rgba(3, 12, 5, 0.82), rgba(3, 20, 9, 0.60) 40%, rgba(3, 12, 5, 0.84)),
    rgba(3, 18, 8, 0.56) !important;
}

.quote-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 1rem;
}

.quote-card-id {
  min-height: 0;
  justify-content: center;
}

.sect-imgbg-bg,
.prefooter-image-cta::before {
  transform: scaleX(var(--prefooter-scale-x, 1));
}

.timeline-entry[open] .timeline-teaser {
  display: none;
}

.timeline-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.timeline-entry[open] .timeline-arrow {
  transform: rotate(180deg);
}


/* Requested correction pass - menu/video/SDG/timeline - 2026-05-11 */
@media (min-width: 1025px) {
  .nav-links {
    transform: translateX(-1.35rem);
  }
}

.sdg-btn[data-sdg="5"] {
  background: #c84b31 !important;
  border-color: #c84b31 !important;
  color: var(--fog-light) !important;
}

.sdg-btn[data-sdg="10"] {
  background: #b93463 !important;
  border-color: #b93463 !important;
  color: var(--fog-light) !important;
}

.sdg-btn[data-sdg="8"] {
  background: #9b2d4f !important;
  border-color: #9b2d4f !important;
  color: var(--fog-light) !important;
}

.sdg-btn[data-sdg="1"] {
  background: #b73a40 !important;
  border-color: #b73a40 !important;
  color: var(--fog-light) !important;
}

.sdg-btn[data-sdg="4"] {
  background: #a8323a !important;
  border-color: #a8323a !important;
  color: var(--fog-light) !important;
}

.sdg-btn:hover,
.sdg-btn.active {
  filter: brightness(1.12);
  color: var(--fog-light) !important;
}

.timeline-entry summary {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.timeline-toggle {
  grid-row: 1 / span 2;
  grid-column: 3;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.25rem;
  min-height: 2.1rem;
  border: 1px solid rgba(200, 144, 58, 0.55);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(200, 144, 58, 0.10);
}

.timeline-toggle-close {
  display: none;
}

.timeline-entry[open] .timeline-toggle-open {
  display: none;
}

.timeline-entry[open] .timeline-toggle-close {
  display: inline;
}

.timeline-arrow {
  display: none;
}


/* Requested footer and updates correction - 2026-05-11 */
.footer-nav-list a[href="legal.html"] {
  white-space: nowrap;
  min-width: max-content;
}

.timeline-entry[open] .timeline-full {
  margin-top: 0.35rem;
  padding-top: 0.15rem;
}


/* Requested corrections - 2026-05-11 late pass */
.footer-grid {
  grid-template-columns: minmax(200px, max-content) 1fr;
  gap: 3rem 2.5rem;
}

.footer-brand-sub.es {
  white-space: nowrap;
  display: block;
}

.footer-nav-list {
  grid-template-columns: repeat(6, max-content);
  gap: 0.65rem 1.75rem;
  align-items: center;
  align-content: start;
}

.footer-nav-list a:nth-child(n+9) {
  margin-top: 0 !important;
  opacity: 0.74;
}

.footer-nav-list a[href="invest.html"],
.footer-nav-list a[href="contact.html"] {
  margin-left: 0 !important;
}

.timeline-date {
  grid-column: 1 / span 2;
  font-size: 1.08rem;
}

.timeline-teaser {
  grid-column: 1 / span 2;
}

.timeline-entry[open] .timeline-teaser {
  display: none !important;
}

.timeline-full {
  grid-column: 1 / span 3;
}


/* Spanish Trailers title line lock - 2026-05-11 */
.trailers-title-line {
  white-space: nowrap !important;
}


/* Mobile footer link labels - 2026-05-11 */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }

  .footer-grid nav,
  .footer-nav-list {
    width: 100%;
  }

  .footer-nav-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.78rem 1rem !important;
    justify-content: stretch !important;
    align-items: start !important;
  }

  .footer-nav-list a,
  .footer-nav-list a:nth-child(n+8),
  .footer-nav-list a[href="legal.html"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.48rem !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    white-space: normal !important;
    text-align: left !important;
    opacity: 0.78;
  }

  .footer-nav-list a svg {
    width: 13px !important;
    height: 13px !important;
    flex: 0 0 13px !important;
  }

  .footer-nav-list a span {
    overflow: visible !important;
    text-overflow: clip !important;
  }
}

@media (max-width: 430px) {
  .footer-nav-list {
    grid-template-columns: 1fr !important;
  }
}


/* Desktop footer wrapping correction - 2026-05-11 */
@media (min-width: 769px) {
  .footer-nav-list {
    display: grid !important;
    grid-template-columns: repeat(6, max-content) !important;
    gap: 0.65rem 1.75rem !important;
    justify-content: start !important;
    align-items: center !important;
  }

  .footer-nav-list a,
  .footer-nav-list a:nth-child(n+8),
  .footer-nav-list a[href="legal.html"] {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    margin-top: 0 !important;
    white-space: nowrap !important;
  }
}


/* Fluid footer link wrapping - 2026-05-11 */
.footer-nav-list {
  display: flex !important;
  flex-wrap: wrap !important;
  grid-template-columns: none !important;
  gap: 0.92rem 2.25rem !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

.footer-nav-list a,
.footer-nav-list a:nth-child(n+8),
.footer-nav-list a[href="legal.html"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  white-space: nowrap !important;
  opacity: 0.74;
}

.footer-nav-list a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }

  .footer-nav-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.9rem 1.7rem !important;
  }

  .footer-nav-list a,
  .footer-nav-list a:nth-child(n+8),
  .footer-nav-list a[href="legal.html"] {
    white-space: nowrap !important;
  }
}

@media (max-width: 430px) {
  .footer-nav-list {
    gap: 0.86rem 1.35rem !important;
  }
}


/* Subscribe, Invest hero, and updates tabs layout fixes - 2026-05-11 */
#email-form .email-row {
  display: grid !important;
  grid-template-columns: minmax(14rem, 1fr) max-content;
  gap: 0.75rem !important;
  max-width: 560px !important;
  align-items: stretch;
}

#email-form .email-row input {
  min-width: 0;
  border-right: 1px solid var(--fog-15) !important;
}

#email-form .email-row button {
  border-left: 1px solid var(--fog-light) !important;
  min-width: max-content;
}

@media (max-width: 680px) {
  #email-form .email-row {
    grid-template-columns: 1fr;
  }

  #email-form .email-row button {
    width: 100%;
    justify-content: center;
  }
}

.updates-tab-bar .updates-tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  overflow-x: visible !important;
  gap: 0.55rem 0.75rem !important;
  border-bottom: 1px solid var(--fog-10);
}

.updates-tab-bar .tab-link {
  flex: 0 1 auto;
  white-space: normal !important;
  line-height: 1.15;
  text-align: center;
  max-width: min(14rem, 100%);
}

.updates-tab-bar .tab-link span {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .updates-tab-bar .updates-tabs {
    flex-direction: row !important;
    align-items: stretch;
    padding: 0.75rem 1rem !important;
    margin-bottom: 0 !important;
  }

  .updates-tab-bar .tab-link {
    flex: 1 1 clamp(8.5rem, 42vw, 12rem);
    border: 1px solid var(--fog-10) !important;
    border-radius: 2px;
    padding: 0.7rem 0.65rem !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.12em !important;
    min-height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .updates-tab-bar .tab-link.active {
    border-color: var(--amber) !important;
  }
}

@media (max-width: 390px) {
  .updates-tab-bar .tab-link {
    flex-basis: calc(50% - 0.4rem);
    font-size: 0.76rem !important;
    letter-spacing: 0.08em !important;
  }
}


/* Updates submenu language and icons - 2026-05-11 */
.updates-tab-bar .tab-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.updates-tab-bar .tab-icon {
  flex: 0 0 13px;
  opacity: 0.82;
}

.updates-tab-bar .tab-link span {
  min-width: 0;
}

html.lang-en .updates-tab-bar .tab-link .es {
  display: none !important;
}

html.lang-es .updates-tab-bar .tab-link .en {
  display: none !important;
}

html.lang-en .updates-tab-bar .tab-link .en,
html.lang-es .updates-tab-bar .tab-link .es {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* Hero logo placement - 2026-05-11 */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-logo-wrap,
.page-hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(92vw, 980px);
  margin: 0 auto 1.2rem;
}

.hero-logo,
.page-hero-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 34vh;
  object-fit: contain;
  filter: drop-shadow(0 0.8rem 1.7rem rgba(0, 0, 0, 0.46));
}

.page-hero-logo-wrap {
  width: min(82vw, 760px);
  margin-left: 0;
  margin-right: auto;
}

.page-hero-logo {
  max-height: 28vh;
}

@media (max-width: 768px) {
  .hero-logo-wrap,
  .page-hero-logo-wrap {
    width: min(92vw, 680px);
    margin-inline: auto;
  }

  .hero-logo,
  .page-hero-logo {
    max-height: 24vh;
  }
}


/* Nav logo correction - 2026-05-11 */
.nav-logo {
  min-width: 0;
}

.nav-logo-img {
  display: block;
  width: clamp(9.5rem, 17vw, 14rem);
  max-height: calc(var(--nav-h) - 1rem);
  object-fit: contain;
  filter: drop-shadow(0 0.35rem 0.65rem rgba(0, 0, 0, 0.28));
}

.hero-content .hero-logo-wrap {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-logo-img {
    width: clamp(8.5rem, 42vw, 12rem);
    max-height: calc(var(--nav-h) - 0.85rem);
  }
}


/* Logo swap and hero centering correction - 2026-05-11 */
.hero-content {
  width: min(100%, 980px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.hero-content .hero-logo-wrap {
  width: min(100%, 860px);
  align-self: center;
  transform: translateX(0);
}

.hero-content .hero-logo {
  margin-left: auto;
  margin-right: auto;
}


/* Menu logo spacing adjustment - 2026-05-11 */
.nav-logo {
  padding: 0.35rem 0.5rem;
}

.nav-logo-img {
  margin-inline: 0.35rem;
}

body.about-page .nav-logo-img {
  width: clamp(8.9rem, 15.8vw, 13.2rem);
}

@media (max-width: 768px) {
  body.about-page .nav-logo-img {
    width: clamp(8rem, 39vw, 11.35rem);
  }
}


/* Home menu logo reveal after hero logo - 2026-05-11 */
body.home-page:not(.home-nav-logo-visible) .nav-logo {
  opacity: 0;
  pointer-events: none;
}

body.home-page .nav-logo {
  transition: opacity 120ms ease;
}


/* Menu logo extra breathing room - 2026-05-11 */
.nav-logo {
  padding: 0.45rem 0.9rem;
}

.nav-logo-img {
  margin-inline: 0.65rem;
}

@media (max-width: 768px) {
  .nav-logo {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .nav-logo-img {
    margin-inline: 0.45rem;
  }
}


/* Page-specific menu logo sizing - 2026-05-11 */
body.home-page .nav-logo-img {
  width: clamp(10rem, 18vw, 14.6rem);
}

body.about-page .nav-logo-img {
  width: clamp(8.35rem, 14.8vw, 12.5rem);
}

@media (max-width: 768px) {
  body.home-page .nav-logo-img {
    width: clamp(8.9rem, 44vw, 12.5rem);
  }

  body.about-page .nav-logo-img {
    width: clamp(7.6rem, 36vw, 10.75rem);
  }
}


/* Unified menu logo sizing and spacing - 2026-05-11 */
.nav-logo {
  padding: 0.5rem 1.05rem;
}

.nav-logo-img,
body.home-page .nav-logo-img,
body.about-page .nav-logo-img {
  width: clamp(10.15rem, 18.4vw, 14.8rem);
  margin-inline: 0.75rem;
}

@media (max-width: 768px) {
  .nav-logo {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nav-logo-img,
  body.home-page .nav-logo-img,
  body.about-page .nav-logo-img {
    width: clamp(8.95rem, 43vw, 12.4rem);
    margin-inline: 0.55rem;
  }
}


/* Larger menu and logo spacing - 2026-05-11 */
:root {
  --nav-h: 76px;
}

.nav-logo {
  padding: 0.6rem 1.35rem;
}

.nav-logo-img,
body.home-page .nav-logo-img,
body.about-page .nav-logo-img {
  width: clamp(10.8rem, 19.4vw, 15.7rem);
  margin-inline: 0.95rem;
  max-height: calc(var(--nav-h) - 0.75rem);
}

@media (max-width: 768px) {
  :root {
    --nav-h: 72px;
  }

  .nav-logo {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .nav-logo-img,
  body.home-page .nav-logo-img,
  body.about-page .nav-logo-img {
    width: clamp(9.45rem, 45vw, 13rem);
    margin-inline: 0.7rem;
  }
}


/* Bigger menu and earlier logo reveal tuning - 2026-05-11 */
:root {
  --nav-h: 82px;
}

.nav-logo {
  padding: 0.65rem 1.55rem;
}

.nav-logo-img,
body.home-page .nav-logo-img,
body.about-page .nav-logo-img {
  width: clamp(11.25rem, 20.2vw, 16.25rem);
  margin-inline: 1.15rem;
  max-height: calc(var(--nav-h) - 0.7rem);
}

@media (max-width: 768px) {
  :root {
    --nav-h: 76px;
  }

  .nav-logo {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }

  .nav-logo-img,
  body.home-page .nav-logo-img,
  body.about-page .nav-logo-img {
    width: clamp(9.75rem, 46vw, 13.45rem);
    margin-inline: 0.82rem;
  }
}


/* Home nav load-scroll seam guard - 2026-05-11 */
body.home-page .nav {
  background: #0E1610;
  border-bottom-color: rgba(200, 144, 58, 0.22);
  box-shadow: 0 2px 0 #0E1610, 0 8px 16px rgba(6, 12, 7, 0.18);
  isolation: isolate;
}

body.home-page .nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 4px;
  background: #0E1610;
  pointer-events: none;
}

body.home-page .hero {
  background: #060C07;
}

body.home-page .hero-bg {
  background-color: #060C07;
}


/* Home subscribe button border cleanup - 2026-05-11 */
#email-form .email-row button {
  border-left-color: var(--terracotta) !important;
}


/* Requested content and hero updates - 2026-05-14 */
.hero-title-lockup {
  display: block;
  margin: 0 auto 0.25rem;
}

.hero-title-lockup .hero-title {
  margin-bottom: 0.15rem;
  font-size: clamp(4rem, 10vw, 7.4rem);
}

.hero-title-lockup .hero-t2 {
  font-size: clamp(2.75rem, 6.7vw, 5rem);
}

.home-hero-actions .hero-invest-btn {
  font-weight: 700;
}

.invest-hero-subheading {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}

.diogo-signature {
  display: block;
  width: min(220px, 52vw);
  height: auto;
  margin: 0 auto;
  mix-blend-mode: screen;
  opacity: 0.88;
}

.invest-beauty-cta {
  min-height: 520px;
}

.invest-beauty-cta .prefooter-copy {
  text-align: left;
}

.timeline-full p {
  margin: 0 0 0.9rem;
}

.timeline-full p:last-child {
  margin-bottom: 0;
}


/* Inner hero shared height alignment - 2026-05-14 */
body:not(.home-page) .page-hero {
  height: 540px !important;
  min-height: 540px;
}

@media (max-width: 760px) {
  body:not(.home-page) .page-hero {
    height: 62vh !important;
    min-height: 430px;
  }
}


/* Home hidden logo spacing correction - 2026-05-14 */
body.home-page:not(.home-nav-logo-visible) .nav-logo {
  flex: 0 0 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

body.home-page.home-nav-logo-visible .nav-logo {
  flex: 1 1 auto;
}


/* Desktop nav overflow correction - 2026-05-14 */
.nav-links,
.nav-right {
  min-width: 0;
}

.nav-links {
  overflow: hidden;
}

@media (max-width: 1320px) {
  .nav-right-link {
    display: none;
  }
}


/* Crowded desktop nav trim - 2026-05-14 */
@media (max-width: 1320px) {
  .nav-right-invest {
    display: none;
  }
}

.nav-inner {
  overflow: hidden;
}


/* Hard hide home logo until reveal - 2026-05-14 */
body.home-page:not(.home-nav-logo-visible) .nav-logo {
  display: none !important;
}

body.home-page.home-nav-logo-visible .nav-logo {
  display: flex !important;
}


/* Desktop nav flex basis correction - 2026-05-14 */
@media (min-width: 769px) {
  .nav-links {
    flex: 0 1 auto !important;
  }

  .nav-right {
    flex: 1 1 auto !important;
    margin-left: auto;
  }
}


/* CTA alignment and image correction pass - 2026-05-14 */
.prefooter-image-cta .container {
  justify-content: center !important;
}

.prefooter-image-cta .prefooter-copy {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.prefooter-image-cta .eyebrow,
.prefooter-image-cta .page-hero-eyebrow,
.prefooter-image-cta .btn-group,
.prefooter-image-cta form {
  justify-content: center !important;
}

.prefooter-image-cta .section-title,
.prefooter-image-cta h3,
.prefooter-image-cta p {
  text-align: center !important;
}

.prefooter-image-cta .gold-rule {
  margin-left: auto !important;
  margin-right: auto !important;
}

.diogo-signature {
  width: min(260px, 58vw);
  mix-blend-mode: normal;
  opacity: 1;
}


/* Requested refinements - 2026-05-15 */
@media (min-width: 769px) {
  .prefooter-image-cta .container {
    justify-content: flex-end !important;
  }

  .prefooter-image-cta .prefooter-copy {
    margin-left: auto !important;
    margin-right: clamp(2rem, 9vw, 9rem) !important;
    text-align: left !important;
  }

  .prefooter-image-cta .eyebrow,
  .prefooter-image-cta .page-hero-eyebrow,
  .prefooter-image-cta .btn-group,
  .prefooter-image-cta form {
    justify-content: flex-start !important;
  }

  .prefooter-image-cta .section-title,
  .prefooter-image-cta h3,
  .prefooter-image-cta p {
    text-align: left !important;
  }

  .prefooter-image-cta .gold-rule {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

@media (max-width: 768px) {
  .prefooter-image-cta .container {
    justify-content: center !important;
  }

  .prefooter-image-cta .prefooter-copy {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .prefooter-image-cta .eyebrow,
  .prefooter-image-cta .page-hero-eyebrow,
  .prefooter-image-cta .btn-group,
  .prefooter-image-cta form {
    justify-content: center !important;
  }

  .prefooter-image-cta .section-title,
  .prefooter-image-cta h3,
  .prefooter-image-cta p {
    text-align: center !important;
  }
}

.invest-beauty-cta .section-title {
  margin-bottom: 2rem !important;
}

.creative-team-section {
  padding-top: 52px !important;
}

.nav-logo-img {
  filter: sepia(0.24) saturate(1.18) brightness(1.02) drop-shadow(0 0 10px rgba(200, 144, 58, 0.18));
}


/* CTA desktop right rail tuning - 2026-05-15 */
@media (min-width: 769px) {
  .prefooter-image-cta .container {
    max-width: none !important;
    padding-left: clamp(2rem, 5vw, 5rem) !important;
    padding-right: clamp(2rem, 5vw, 5rem) !important;
  }

  .prefooter-image-cta .prefooter-copy {
    margin-left: auto !important;
    margin-right: clamp(3rem, 7vw, 7rem) !important;
  }

  .invest-beauty-cta .prefooter-copy {
    width: min(760px, 100%) !important;
  }
}


/* Responsive nav and latest CTA fixes - 2026-05-15 */
@media (max-width: 1320px) and (min-width: 901px) {
  .nav-right-invest,
  .nav-right-link {
    display: inline-flex !important;
  }
}

@media (max-width: 1180px) {
  .nav-inner {
    overflow: visible !important;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--sierra-dark);
    border-bottom: 1px solid var(--amber-15);
    transform: none !important;
    overflow: visible;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li a {
    padding: 0.85rem 2rem;
  }

  .nav-toggle {
    display: flex !important;
  }

  .nav-logo {
    flex: 0 1 auto !important;
    margin-inline: auto;
  }

  .nav-logo-img,
  body.home-page .nav-logo-img,
  body.about-page .nav-logo-img {
    width: clamp(8.75rem, 22vw, 12.4rem) !important;
    margin-inline: 0.4rem !important;
  }

  .nav-hamburger-only {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .nav-right-invest,
  .nav-right-link {
    display: none !important;
  }

  .nav-hamburger-only {
    display: list-item !important;
  }

  .nav-logo {
    flex: 1 1 auto !important;
    margin-inline: 0;
  }
}

@media (min-width: 769px) {
  body.home-page .prefooter-image-cta[aria-labelledby="email-capture-heading"] .prefooter-copy {
    text-align: left !important;
  }

  body.home-page .prefooter-image-cta[aria-labelledby="email-capture-heading"] h3,
  body.home-page .prefooter-image-cta[aria-labelledby="email-capture-heading"] p {
    text-align: left !important;
  }
}

/* Latest homepage/invest CTA refinements - 2026-05-15 */
.home-invest-cta-copy {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem) !important;
}

.half-content[style*="_DHM0773"] .btn-group {
  justify-content: center !important;
}

.half-content[style*="_DHM0773"] .invest-now-centered {
  /* order removed — INVEST NOW sits in its natural DOM position (middle of three) */
}

/* A Scholar Returns — body text matches Invest CTA copy size */
[aria-labelledby="scholar-heading"] .body-text p {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
}

@media (min-width: 769px) {
  .prefooter-image-cta .prefooter-copy {
    width: min(620px, 100%) !important;
    margin-left: auto !important;
    margin-right: clamp(5rem, 11vw, 12rem) !important;
    text-align: left !important;
  }

  .invest-beauty-cta .prefooter-copy {
    width: min(820px, 100%) !important;
  }

  .prefooter-image-cta .eyebrow,
  .prefooter-image-cta .page-hero-eyebrow,
  .prefooter-image-cta .btn-group,
  .prefooter-image-cta form {
    justify-content: flex-start !important;
  }

  .prefooter-image-cta .section-title,
  .prefooter-image-cta h3,
  .prefooter-image-cta p {
    text-align: left !important;
  }

  body.home-page .prefooter-image-cta[aria-labelledby="email-capture-heading"] p {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 768px) {
  body.home-page .prefooter-image-cta[aria-labelledby="email-capture-heading"] p {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* Final responsive polish and speed-safe media behavior - 2026-05-15 */
.hero-video,
.page-hero-video {
  background-color: var(--forest-night);
}

.trailer-wrap iframe {
  content-visibility: auto;
  contain-intrinsic-size: 720px 405px;
}

.updates-tab-bar,
.nav-links.open {
  background-color: var(--sierra-dark) !important;
  isolation: isolate;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .story-bg {
    background-position: 48% 30% !important;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .story-bg {
    background-position: 43% 30% !important;
  }
}

@media (max-width: 768px) {
  body.home-page .home-hero-actions {
    width: min(100%, 22rem);
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
    gap: 0.75rem;
  }

  body.home-page .home-hero-actions .btn {
    width: 100% !important;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .scholar-bg {
    background-position: -420px top !important;
    background-repeat: no-repeat !important;
  }

  html.lang-es .scholar-bg {
    background-position: -520px top !important;
  }

  .team-hero-bg {
    background-position: calc(50% - 60px) 34% !important;
  }

  .trailers-title-line {
    display: inline !important;
    white-space: normal !important;
  }

  .trailers-title-line + .trailers-title-line::before {
    content: " ";
  }

  .page-hero-title {
    overflow-wrap: normal;
    word-break: normal;
  }

  .impact-mobile-run br {
    display: none;
  }

  .impact-mobile-run {
    white-space: normal !important;
  }

  .invest-beauty-cta .btn-group,
  .half-content .btn-group {
    justify-content: center !important;
  }

  .invest-now-centered {
    margin-left: auto;
    margin-right: auto;
  }

  .updates-timeline::before {
    z-index: 0;
  }

  .timeline-entry {
    z-index: 1;
  }

  .timeline-entry summary,
  .timeline-full {
    background-color: rgba(6, 12, 7, 0.92) !important;
    backdrop-filter: none;
  }
}

@media (max-width: 480px) {
  .page-hero-title {
    font-size: clamp(2.45rem, 12vw, 3.6rem) !important;
    line-height: 1.02;
  }

  body.impact-page .page-hero-title {
    font-size: clamp(2.1rem, 10.4vw, 3rem) !important;
  }
}

@media (max-width: 900px) {
  .nav-logo,
  body.home-page.home-nav-logo-visible .nav-logo {
    flex: 0 0 auto !important;
    width: fit-content !important;
    max-width: max-content !important;
    margin-inline: 0 !important;
  }

  .nav-right {
    flex: 0 0 auto !important;
    margin-left: auto !important;
  }
}


/* Lightweight video embeds and lazy hero media */
.vimeo-lite {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  color: var(--fog-light);
  background:
    linear-gradient(rgba(6, 12, 7, 0.10), rgba(6, 12, 7, 0.58)),
    var(--vimeo-thumb, url('media/vimeo-thumb-trailer-1.jpg')) center/cover no-repeat,
    var(--forest-night);
  transition: opacity 1.2s ease;
  z-index: 3;
}

.vimeo-lite.is-loading {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}

/* Mobile spinner — small and thin */
.trailer-wrap.is-loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(241, 117, 50, 0.94);
  animation: vimeo-spin 0.75s linear infinite, vimeo-spin-color 1.2s ease forwards;
  z-index: 2;
}

/* Desktop spinner — larger and slightly thicker */
@media (min-width: 768px) {
  .trailer-wrap.is-loading::after {
    width: 116px;
    height: 116px;
    margin: -58px 0 0 -58px;
    border-width: 5px;
  }
}

@keyframes vimeo-spin {
  to { transform: rotate(360deg); }
}

@keyframes vimeo-spin-color {
  0%   { border-top-color: rgba(241, 117, 50, 0.94); }
  100% { border-top-color: rgba(255, 255, 255, 0.94); }
}

.vimeo-lite-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(241, 117, 50, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.vimeo-lite-play::after {
  content: '';
  position: absolute;
  left: 31px;
  top: 23px;
  border-left: 24px solid var(--fog-light);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.vimeo-lite-label {
  display: none;
}

.page-hero-video[data-loaded='true'],
.hero-video[data-loaded='true'] {
  background-color: transparent;
}




/* "A Woman Returns Home" — darker right-side gradient on mobile for text legibility */
@media (max-width: 768px) {
  [aria-labelledby="scholar-heading"]::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 70%;
    background: linear-gradient(to left, rgba(14,22,16,0.62) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
}

/* Team hero video: show more right side on mobile */
@media (max-width: 768px) {
  .page-hero-video { object-position: 70% 34% !important; }
  /* Impact hero: override to show more of the left side */
  .impact-hero-video { object-position: 22% 42% !important; }
}

/* Partners CTA section — stronger overlay so text is always readable */
.prefooter-image-cta[aria-labelledby="investors-cta-heading"]::before {
  background:
    linear-gradient(90deg, rgba(6,12,7,0.55) 0%, rgba(6,12,7,0.5) 36%, rgba(6,12,7,0.9) 66%, rgba(6,12,7,0.97) 100%),
    linear-gradient(0deg, rgba(6,12,7,0.52), rgba(6,12,7,0.52));
}
@media (max-width: 768px) {
  .prefooter-image-cta[aria-labelledby="investors-cta-heading"]::before {
    background:
      linear-gradient(0deg, rgba(6,12,7,0.65), rgba(6,12,7,0.55)),
      linear-gradient(90deg, rgba(6,12,7,0.5), rgba(6,12,7,0.65));
  }
}

/* Partner person circles — bigger with top-left initials + ghost person icon */
.partner-portrait {
  width: 110px !important;
  height: 110px !important;
  position: relative;
  overflow: hidden;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.partner-portrait-initials {
  position: absolute;
  top: 22px;
  left: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.8rem;
  letter-spacing: -0.02em;
  color: var(--amber);
  line-height: 1;
  z-index: 2;
}

.partner-portrait-icon {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 108px;
  height: 108px;
  color: var(--fog-light);
  opacity: 0.11;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 28%, rgba(0,0,0,0.78) 62%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 28%, rgba(0,0,0,0.78) 62%);
  z-index: 1;
}
