/* ============================================================
   GivLyfe S.A.S. — Site styles
   Single CSS file, no preprocessor, no build step.
   ============================================================ */

:root {
  --gl-forest: #1F3D2F;
  --gl-forest-light: #2A4F3F;
  --gl-soil: #2A2522;
  --gl-cream: #F2EDE3;
  --gl-bronze: #8B6F47;
  --gl-bronze-dark: #6F5837;
  --gl-stone: #6B645A;

  --container-max: 1200px;
  --content-max: 880px;
  --prose-max: 720px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gl-soil);
  background: var(--gl-cream);
  overflow-x: hidden;
}

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

a {
  color: var(--gl-bronze);
  text-decoration: none;
  transition: color 150ms ease;
}

a:hover {
  color: var(--gl-bronze-dark);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography ============================================== */

.display-hero {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144;
  color: var(--gl-soil);
}

h1, .h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72;
  color: var(--gl-soil);
}

h2, .h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
  color: var(--gl-soil);
}

h3, .h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  font-variation-settings: "opsz" 32;
  color: var(--gl-soil);
}

.body-large {
  font-size: 20px;
  line-height: 1.5;
  color: var(--gl-soil);
}

.body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gl-soil);
}

.small {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gl-stone);
}

.eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl-bronze);
}

.italic-aside {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gl-soil);
}

@media (max-width: 767px) {
  .display-hero {
    font-size: 44px;
    line-height: 1.02;
    letter-spacing: -0.025em;
  }
  h1, .h1 { font-size: 32px; }
  h2, .h2 { font-size: 26px; }
  h3, .h3 { font-size: 20px; }
  .body-large { font-size: 18px; }
  .body { font-size: 16px; }
  .small { font-size: 13px; }
  .eyebrow { font-size: 11px; }
}

/* Layout ============================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 3rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 3rem;
}

.container-prose {
  width: 100%;
  max-width: var(--prose-max);
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 767px) {
  .container,
  .container-narrow,
  .container-prose {
    padding: 0 1.5rem;
  }
}

.section {
  padding: 6rem 0;
}

.section-tight {
  padding: 4rem 0;
}

@media (max-width: 767px) {
  .section { padding: 4rem 0; }
  .section-tight { padding: 3rem 0; }
}

.hr-bronze {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gl-bronze);
  border: none;
  margin: 0 0 1.5rem 0;
}

.hr-bronze-center {
  margin-left: auto;
  margin-right: auto;
}

.hr-full {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(139, 111, 71, 0.25);
  border: none;
  margin: 3rem 0;
}

/* Buttons ============================================== */

.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 50ms ease;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--gl-bronze);
  color: var(--gl-cream);
}

.btn-primary:hover {
  background: var(--gl-bronze-dark);
  color: var(--gl-cream);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--gl-forest);
  border-color: rgba(31, 61, 47, 0.3);
}

.btn-secondary:hover {
  background: rgba(31, 61, 47, 0.04);
  border-color: rgba(31, 61, 47, 0.6);
  color: var(--gl-forest);
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: var(--gl-bronze);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 150ms ease, color 150ms ease;
}

.link-btn .arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.link-btn:hover {
  border-bottom-color: var(--gl-bronze);
  color: var(--gl-bronze);
}

.link-btn:hover .arrow {
  transform: translateX(3px);
}

/* Header ============================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gl-cream);
  transition: border-color 200ms ease;
  border-bottom: 0.5px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(31, 61, 47, 0.12);
}

.site-header.is-dark {
  background: var(--gl-forest);
}

.site-header.is-dark.is-scrolled {
  border-bottom-color: rgba(242, 237, 227, 0.12);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  color: var(--gl-forest);
  text-transform: uppercase;
  font-variation-settings: "opsz" 32;
  line-height: 1;
}

.site-header.is-dark .wordmark {
  color: var(--gl-cream);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-primary a {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gl-soil);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  line-height: 1;
  transition: color 150ms ease, border-color 150ms ease;
}

.nav-primary a:hover {
  border-bottom-color: var(--gl-bronze);
  color: var(--gl-soil);
}

.site-header.is-dark .nav-primary a {
  color: rgba(242, 237, 227, 0.85);
}

.site-header.is-dark .nav-primary a:hover {
  color: var(--gl-cream);
  border-bottom-color: var(--gl-bronze);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gl-stone);
  line-height: 1;
}

.lang-switch .current {
  color: var(--gl-forest);
}

.lang-switch a {
  color: var(--gl-stone);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 150ms ease, border-color 150ms ease;
}

.lang-switch a:hover {
  color: var(--gl-bronze);
  border-bottom-color: var(--gl-bronze);
}

.site-header.is-dark .lang-switch {
  color: rgba(242, 237, 227, 0.6);
}

.site-header.is-dark .lang-switch .current {
  color: var(--gl-cream);
}

.site-header.is-dark .lang-switch a {
  color: rgba(242, 237, 227, 0.6);
}

.site-header.is-dark .lang-switch a:hover {
  color: var(--gl-bronze);
  border-bottom-color: var(--gl-bronze);
}

.menu-toggle {
  display: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl-soil);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  line-height: 1;
}

.site-header.is-dark .menu-toggle {
  color: var(--gl-cream);
}

.mobile-menu {
  display: none;
  background: var(--gl-cream);
  padding: 2rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(31, 61, 47, 0.08);
}

.site-header.is-dark .mobile-menu {
  background: var(--gl-forest);
  border-top-color: rgba(242, 237, 227, 0.08);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu nav a {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--gl-soil);
  line-height: 1.2;
  font-variation-settings: "opsz" 32;
}

.site-header.is-dark .mobile-menu nav a {
  color: var(--gl-cream);
}

.mobile-menu .lang-row {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 61, 47, 0.12);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gl-stone);
}

.mobile-menu .lang-row .current {
  color: var(--gl-forest);
}

.site-header.is-dark .mobile-menu .lang-row {
  border-top-color: rgba(242, 237, 227, 0.18);
  color: rgba(242, 237, 227, 0.6);
}

.site-header.is-dark .mobile-menu .lang-row .current {
  color: var(--gl-cream);
}

@media (max-width: 900px) {
  .nav-primary,
  .header-inner > .lang-switch {
    display: none;
  }
  .menu-toggle {
    display: inline-block;
  }
  .header-inner {
    padding: 1.125rem 1.5rem;
  }
}

/* Hero sections ============================================== */

.hero {
  padding: 7rem 0 6rem;
  background: var(--gl-cream);
}

.hero-dark {
  background: var(--gl-forest);
  color: var(--gl-cream);
  padding: 8rem 0 7rem;
}

.hero-dark .display-hero,
.hero-dark h1,
.hero-dark h2 {
  color: var(--gl-cream);
}

.hero-dark .italic-aside {
  color: rgba(242, 237, 227, 0.6);
  font-size: 1.5rem;
}

.hero-tagline {
  margin-bottom: 1.75rem;
  max-width: 18ch;
}

.hero-sub {
  max-width: 56ch;
  margin-bottom: 2.5rem;
  color: var(--gl-soil);
}

.hero-dark .hero-sub {
  color: rgba(242, 237, 227, 0.9);
}

@media (max-width: 767px) {
  .hero { padding: 4rem 0 4rem; }
  .hero-dark { padding: 5rem 0 4.5rem; }
  .hero-dark .italic-aside { font-size: 1.25rem; }
}

/* Section building blocks ============================================== */

.section-header {
  margin-bottom: 3rem;
}

.section-header .eyebrow {
  margin-bottom: 1rem;
}

.section-header.center {
  text-align: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.section-header.center .hr-bronze {
  margin-left: auto;
  margin-right: auto;
}

.prose p + p {
  margin-top: 1.25rem;
}

.prose p {
  max-width: 65ch;
}

.prose.wide p {
  max-width: 72ch;
}

/* Pillars (Home) ============================================== */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar {
  padding-top: 2rem;
  border-top: 1px solid var(--gl-bronze);
}

.pillar .eyebrow {
  margin-bottom: 1.25rem;
}

.pillar h3 {
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.pillar p {
  color: var(--gl-soil);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .pillars {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Featured venture split ============================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  background: rgba(31, 61, 47, 0.06);
}

.split-content .eyebrow {
  margin-bottom: 1.25rem;
}

.split-content h1,
.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  margin-bottom: 1.25rem;
  color: var(--gl-soil);
}

.split-content .link-btn,
.split-content .btn {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Centered Platform block ============================================== */

.center-block {
  text-align: center;
  max-width: var(--prose-max);
  margin: 0 auto;
}

.center-block h2 {
  margin-bottom: 1.5rem;
}

.center-block p {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: 65ch;
}

.center-block p + p {
  margin-top: 1.25rem;
}

.center-block .link-btn {
  margin-top: 2rem;
}

/* Markets summary block (Home) ============================================== */

.markets-summary h2 {
  margin-bottom: 1.5rem;
}

.markets-summary .headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--gl-soil);
  max-width: 32ch;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 32;
}

.markets-summary p {
  max-width: 60ch;
  margin-bottom: 2rem;
}

/* Forest closing band ============================================== */

.cta-band {
  background: var(--gl-forest);
  color: var(--gl-cream);
  padding: 6rem 0;
}

.cta-band .container {
  text-align: center;
}

.cta-band .eyebrow {
  color: var(--gl-bronze);
  margin-bottom: 1.25rem;
}

.cta-band h2 {
  color: var(--gl-cream);
  margin-bottom: 1.25rem;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  color: rgba(242, 237, 227, 0.85);
  max-width: 60ch;
  margin: 0 auto 2.5rem;
}

@media (max-width: 767px) {
  .cta-band { padding: 4rem 0; }
}

/* Footer ============================================== */

.site-footer {
  background: var(--gl-cream);
  border-top: 1px solid rgba(31, 61, 47, 0.12);
  padding: 4rem 3rem 3rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl-bronze);
  margin-bottom: 1.5rem;
}

.footer-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.625rem;
  letter-spacing: 0.08em;
  color: var(--gl-forest);
  text-transform: uppercase;
  font-variation-settings: "opsz" 32;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gl-stone);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.footer-legal {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--gl-stone);
  line-height: 1.7;
}

.footer-col nav,
.footer-col .contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col nav a,
.footer-col .contact-list a,
.footer-col .contact-list span {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--gl-soil);
  line-height: 1.4;
  transition: color 150ms ease;
}

.footer-col nav a:hover,
.footer-col .contact-list a:hover {
  color: var(--gl-bronze);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 61, 47, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  color: var(--gl-stone);
}

.footer-bottom .lang-switch {
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  color: var(--gl-stone);
}

.footer-legal-links a {
  color: var(--gl-stone);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 150ms ease, border-color 150ms ease;
}

.footer-legal-links a:hover {
  color: var(--gl-bronze);
  border-bottom-color: var(--gl-bronze);
}

@media (max-width: 767px) {
  .site-footer {
    padding: 3rem 1.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* WhatsApp button variants ============================================== */

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gl-bronze);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 150ms ease;
}

.wa-link svg {
  width: 18px;
  height: 18px;
  fill: var(--gl-bronze);
  flex-shrink: 0;
}

.wa-link:hover {
  border-bottom-color: var(--gl-bronze);
  color: var(--gl-bronze);
}

.wa-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gl-bronze);
  transition: background 150ms ease;
}

.wa-circle svg {
  width: 22px;
  height: 22px;
  fill: var(--gl-cream);
}

.wa-circle:hover {
  background: var(--gl-bronze-dark);
}

/* Platform: numbered editorial blocks ============================================== */

.thesis-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.thesis-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.thesis-item .num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--gl-bronze);
  line-height: 1;
  font-variation-settings: "opsz" 48;
}

.thesis-item h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--gl-soil);
  font-variation-settings: "opsz" 32;
}

.thesis-item p {
  color: var(--gl-soil);
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .thesis-list { gap: 2.5rem; }
  .thesis-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .thesis-item .num { font-size: 2rem; }
  .thesis-item h3 { font-size: 1.25rem; }
}

/* Platform: how we build ============================================== */

.how-build {
  display: flex;
  flex-direction: column;
}

.how-build .block {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(139, 111, 71, 0.25);
}

.how-build .block:last-child {
  border-bottom: 1px solid rgba(139, 111, 71, 0.25);
}

.how-build h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gl-soil);
  font-variation-settings: "opsz" 32;
}

.how-build p {
  color: var(--gl-soil);
  max-width: 72ch;
}

/* Founders ============================================== */

.founders {
  display: flex;
  flex-direction: column;
}

.founder {
  padding: 3rem 0;
  border-top: 1px solid rgba(139, 111, 71, 0.25);
}

.founder:last-child {
  border-bottom: 1px solid rgba(139, 111, 71, 0.25);
}

.founder-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gl-soil);
  font-variation-settings: "opsz" 32;
  display: inline;
}

.founder-role {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--gl-stone);
  margin-left: 0.75rem;
}

.founder-body {
  margin-top: 1.5rem;
  max-width: 72ch;
}

.founder-body p {
  color: var(--gl-soil);
}

.founder-body p + p {
  margin-top: 1rem;
}

.founder-contact {
  margin-top: 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: var(--gl-stone);
}

.founder-contact a {
  color: var(--gl-bronze);
}

.founder-note {
  margin-top: 1rem;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--gl-stone);
}

/* Italic aside w/ bronze rule ============================================== */

.italic-pull {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--gl-soil);
  padding-left: 1.75rem;
  border-left: 2px solid var(--gl-bronze);
  margin-top: 3rem;
  max-width: 60ch;
  font-variation-settings: "opsz" 32;
}

@media (max-width: 767px) {
  .italic-pull {
    font-size: 1.25rem;
    padding-left: 1.25rem;
  }
}

/* Venture page ============================================== */

.venture-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
  background: rgba(31, 61, 47, 0.06);
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .venture-hero-img {
    aspect-ratio: 4 / 3;
  }
}

.venture-display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gl-soil);
  font-variation-settings: "opsz" 144;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .venture-display { font-size: 2.75rem; }
}

.venture-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--gl-stone);
  margin-bottom: 3rem;
  max-width: 48ch;
}

.venture-blocks {
  display: flex;
  flex-direction: column;
}

.venture-block {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(139, 111, 71, 0.25);
}

.venture-block:last-of-type {
  border-bottom: 1px solid rgba(139, 111, 71, 0.25);
}

.venture-block .eyebrow {
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--gl-bronze);
}

.venture-block p {
  color: var(--gl-soil);
  max-width: 72ch;
}

.venture-block p + p {
  margin-top: 1rem;
}

.venture-cta {
  margin-top: 3rem;
}

/* Tier 2 card (PuffPow) ============================================== */

.venture-card {
  padding: 2.5rem 2.5rem;
  background: rgba(31, 61, 47, 0.03);
  border-left: 3px solid var(--gl-bronze);
  border-radius: 2px;
  max-width: 720px;
}

.venture-card .eyebrow {
  margin-bottom: 0.75rem;
}

.venture-card h2 {
  margin-bottom: 0.75rem;
}

.venture-card .tagline {
  font-size: 1.0625rem;
  color: var(--gl-soil);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.venture-card p {
  color: var(--gl-soil);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
}

.venture-card .status {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gl-stone);
  margin: 0;
}

@media (max-width: 767px) {
  .venture-card {
    padding: 2rem 1.5rem;
  }
}

/* Capability cards ============================================== */

.cap-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cap-card {
  padding: 2.5rem 2.5rem;
  background: var(--gl-cream);
  border-left: 3px solid var(--gl-bronze);
  border: 1px solid rgba(139, 111, 71, 0.25);
  border-left-width: 3px;
  border-radius: 2px;
}

.cap-card .eyebrow {
  margin-bottom: 1rem;
}

.cap-card h2 {
  margin-bottom: 0.75rem;
}

.cap-card .sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1875rem;
  color: var(--gl-stone);
  margin-bottom: 1.5rem;
}

.cap-card p {
  color: var(--gl-soil);
  max-width: 72ch;
}

.cap-card p + p {
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .cap-card {
    padding: 2rem 1.5rem;
  }
}

/* Markets page sections ============================================== */

.market-block {
  padding: 3rem 0;
  border-top: 1px solid rgba(139, 111, 71, 0.25);
}

.market-block:last-of-type {
  border-bottom: 1px solid rgba(139, 111, 71, 0.25);
}

.market-block .eyebrow {
  margin-bottom: 1rem;
}

.market-block h2 {
  margin-bottom: 0.75rem;
}

.market-block .sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--gl-stone);
  margin-bottom: 1.5rem;
}

.market-block p {
  color: var(--gl-soil);
  max-width: 72ch;
}

.market-block p + p {
  margin-top: 1rem;
}

.market-emphasis {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--gl-soil);
  padding-left: 1.5rem;
  border-left: 2px solid var(--gl-bronze);
  margin-top: 1.5rem !important;
  max-width: 56ch;
  font-variation-settings: "opsz" 32;
}

/* Markets map ============================================== */

.map-wrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

#map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-loading {
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gl-stone);
  padding: 4rem 0;
}

.map-caption {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gl-stone);
  text-align: center;
  margin-top: 1.5rem;
}

/* Contact card (Team) ============================================== */

.contact-card {
  max-width: 640px;
  margin: 2.5rem auto 0;
  background: #FFFFFF;
  border: 1px solid rgba(139, 111, 71, 0.2);
  border-left: 3px solid var(--gl-bronze);
  border-radius: 2px;
  padding: 2.25rem 2.5rem;
}

.contact-card dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem 1.5rem;
  margin: 0;
}

.contact-card dt {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gl-soil);
}

.contact-card dd {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--gl-soil);
  margin: 0;
}

.contact-card dd a {
  color: var(--gl-bronze);
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease;
}

.contact-card dd a:hover {
  border-bottom-color: var(--gl-bronze);
}

@media (max-width: 600px) {
  .contact-card {
    padding: 1.75rem 1.5rem;
  }
  .contact-card dl {
    grid-template-columns: 1fr;
    gap: 0.25rem 0;
  }
  .contact-card dt {
    margin-top: 0.75rem;
  }
  .contact-card dt:first-child {
    margin-top: 0;
  }
}

/* Legal pages (Privacy, Legal Notice) ============================================== */

.effective-date {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--gl-stone);
  margin-top: 1.25rem;
}

.legal-stack {
  display: flex;
  flex-direction: column;
}

.legal-block {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(139, 111, 71, 0.25);
}

.legal-block:last-of-type {
  border-bottom: 1px solid rgba(139, 111, 71, 0.25);
}

.legal-block .eyebrow {
  margin-bottom: 0.75rem;
}

.legal-block h2 {
  margin-bottom: 1.25rem;
}

.legal-block p {
  color: var(--gl-soil);
  max-width: 72ch;
}

.legal-block p + p {
  margin-top: 1rem;
}

.legal-block ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 0;
  list-style: none;
  max-width: 72ch;
}

.legal-block li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gl-soil);
  line-height: 1.6;
  font-size: 17px;
}

.legal-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 1px;
  background: var(--gl-bronze);
}

.legal-contact {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(31, 61, 47, 0.03);
  border-left: 2px solid var(--gl-bronze);
  border-radius: 2px;
  max-width: 480px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gl-soil);
}

.legal-contact p {
  margin: 0;
  max-width: none;
}

.legal-contact p + p {
  margin-top: 0;
}

.legal-contact a {
  color: var(--gl-bronze);
  border-bottom: 1px solid transparent;
  transition: border-color 150ms ease;
}

.legal-contact a:hover {
  border-bottom-color: var(--gl-bronze);
}

@media (max-width: 767px) {
  .legal-block li {
    font-size: 16px;
  }
  .legal-contact {
    padding: 1rem 1.25rem;
  }
}

/* Utility ============================================== */

.center-text { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus states for accessibility ============================================== */

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gl-bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduced motion ============================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
