/* ==========================================================================
   Karabo Jhamba — Digital Garden
   Cream canvas, forest green, warm brown, burnt orange, charcoal ink.
   Lora (display serif) + Work Sans (body). Timeless, warm, lots of air.
   ========================================================================== */

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

:root {
  --cream:      #F9FAFA;
  --cream-200:  #F1F3F4;
  --paper:      #FFFFFF;
  --navy:       #16233A;
  --forest:     #1D5FA8;
  --forest-600: #164A85;
  --forest-100: #DCE8F5;
  --brown:      #6B4A34;
  --brown-100:  #EDE0D3;
  --orange:     #E2603C;
  --orange-600: #C24A2A;
  --orange-100: #FBE0D3;
  --fuchsia:    #D6266F;
  --fuchsia-600:#B01259;
  --fuchsia-100:#FBDCE9;
  --charcoal:   var(--navy);
  --body:       #3C4658;
  --muted:      #7C8497;
  --line:       #E7E1D1;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max: 880px;
  --wide: 1120px;
  --gutter: clamp(20px, 6vw, 64px);
  --section-y: clamp(56px, 9vw, 128px);
  --r-md: 12px; --r-lg: 20px; --r-pill: 999px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { background: var(--cream); color: var(--body); font-family: var(--font-body); font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--fuchsia); text-decoration: none; }
a:hover { color: var(--fuchsia-600); text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
::selection { background: var(--fuchsia-100); color: var(--charcoal); }

.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.container-wide { max-width: var(--wide); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

h1, h2, h3 { font-family: var(--font-display); color: var(--navy); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; text-wrap: balance; }
.h1 { font-size: clamp(48px, 6.4vw, 80px); line-height: 1.04; }
.h2 { font-size: clamp(32px, 4.2vw, 44px); margin-bottom: 18px; }
.h3 { font-size: 26px; font-weight: 600; }
.lead { font-size: 20px; line-height: 1.62; color: var(--body); max-width: 46ch; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); margin-bottom: 16px; }
.pop { color: var(--fuchsia); }
.section-label { display: flex; align-items: baseline; gap: 16px; margin-bottom: 30px; }
.section-label .tag { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.01em; color: #fff; background: var(--forest); padding: 6px 14px; border-radius: 6px; flex: none; }
.section-label .rule { flex: 1; height: 1px; background: var(--line); }
.section-dark .section-label .rule { background: rgba(255,255,255,0.18); }
.section-dark .section-label .tag { background: var(--fuchsia); }

/* Header */
.site-header { padding-block: 30px; border-bottom: 1px solid var(--line); }
.site-header__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.wordmark { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.wordmark:hover { color: var(--navy); text-decoration: none; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--body); text-decoration: none; }
.nav a:hover, .nav a.active { color: var(--fuchsia); }
.nav a.active { border-bottom: 1.5px solid var(--fuchsia); padding-bottom: 4px; }
.menu-btn { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--navy); }

/* Buttons */
.btn { appearance: none; -webkit-appearance: none; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 8px; border: 1.5px solid transparent; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); text-decoration: none !important; }
.btn-forest { background: var(--fuchsia); color: #fff; }
.btn-forest:hover { background: var(--fuchsia-600); }
.btn-line { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-line:hover { background: var(--navy); color: var(--cream); }
.btn-orange { background: var(--forest); color: #fff; }
.btn-orange:hover { background: var(--forest-600); }

/* Speaking band + closing contact */
.speak-band { background: var(--forest-100); padding-block: var(--section-y); }
.closing-contact { padding-block: var(--section-y); text-align: center; }
.closing-contact__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.closing-contact .h3 { margin-inline: auto; text-align: center; }

/* Hero */
.hero__figure { width: 100%; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 40px; max-width: 480px; }
.hero .h1 { margin-bottom: 20px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Cards / build ventures */
.venture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.venture { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; display: flex; flex-direction: column; gap: 12px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.venture:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -24px rgba(42,39,36,0.22); }
.venture .glyph { font-size: 28px; }
.venture h3 { font-size: 21px; }
.venture p { font-size: 14.5px; color: var(--body); line-height: 1.55; flex: 1; }
.venture a.more { font-size: 13.5px; font-weight: 700; color: var(--fuchsia); }

/* Cultivating widget */
.cultivating { background: var(--forest-100); border-radius: var(--r-lg); padding: 30px 32px; }
.cultivating h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--forest-600); margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.cultivating ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cultivating li { font-size: 15.5px; color: var(--charcoal); }

/* Principles / about list */
.principles { display: grid; gap: 22px; }
.principle { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: flex-start; padding-block: 22px; border-top: 1px solid var(--line); }
.principle:first-child { border-top: 0; padding-top: 0; }
.principle .num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--fuchsia); }
.principle h3 { font-size: 19px; margin-bottom: 6px; }
.principle p { font-size: 15px; color: var(--body); }

/* Speaking topics */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.topic { background: var(--forest-100); border-radius: var(--r-md); padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--charcoal); border-left: 3px solid var(--fuchsia); }
.avail-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.avail-list li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 18px; font-size: 14.5px; font-weight: 600; }

/* Contact links list */
.talk-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.talk-item { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; transition: border-color .2s, transform .2s var(--ease); }
.talk-item:hover { border-color: var(--fuchsia); transform: translateY(-3px); text-decoration: none; }
.talk-item .glyph { font-size: 24px; margin-bottom: 10px; display: block; }
.talk-item h3 { font-size: 18px; margin-bottom: 6px; }
.talk-item p { font-size: 14px; color: var(--body); }

/* Form */
.form { display: grid; gap: 16px; max-width: 560px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--charcoal); background: var(--paper); border: 1.5px solid var(--line); border-radius: 8px; padding: 12px 14px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--fuchsia); }
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--muted); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding-block: 40px; }
.site-footer__in { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.site-footer a { color: var(--muted); }

/* Dark manifesto section */
.section-dark { background: var(--charcoal); color: #fff; }
.section-dark .eyebrow { color: var(--fuchsia); }
.section-dark .h2 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.74); }
.principle-dark { display: grid; gap: 8px; }
.principle-dark .row { display: grid; grid-template-columns: 76px 1fr; gap: 22px; align-items: flex-start; padding-block: 26px; border-top: 1px solid rgba(255,255,255,0.14); }
.principle-dark .row:first-child { border-top: 0; padding-top: 0; }
.principle-dark .num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--fuchsia); line-height: 1; }
.principle-dark h3 { color: #fff; font-size: 21px; margin-bottom: 8px; }
.principle-dark p { font-size: 15.5px; max-width: 56ch; }

/* Pull quote */
.pull-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(23px, 3vw, 32px); line-height: 1.3; color: var(--charcoal); border-left: 4px solid var(--forest); padding-left: 24px; margin-block: 8px 44px; max-width: 52ch; }

/* Section rule + label pairing for story blocks */
.story-block { display: grid; grid-template-columns: 200px 1fr; gap: 32px; margin-bottom: 52px; }
.story-block .label { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.01em; color: var(--fuchsia-600); text-transform: uppercase; padding-top: 4px; }
.story-block .body p { margin-bottom: 16px; max-width: 60ch; }
.story-block .body p:last-child { margin-bottom: 0; }
@media (max-width: 700px) { .story-block { grid-template-columns: 1fr; gap: 10px; } }

@media (max-width: 760px) {
  .story-block { grid-template-columns: 1fr; }
  .principle-dark .row { grid-template-columns: 48px 1fr; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; position: absolute; left: 0; right: 0; top: 88px; background: var(--cream); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 20px; z-index: 20; }
  .nav.open a { padding: 10px 0; font-size: 17px; width: 100%; }
  .menu-btn { display: block; }
  .venture-grid, .topic-grid, .talk-grid { grid-template-columns: 1fr; }
  .principle { grid-template-columns: 40px 1fr; }
}
