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

    :root {
      --green:        #0b7a3e;
      --green-light:  #12a355;
      --green-pale:   #e8f7ee;
      --orange:       #f26522;
      --orange-pale:  #fff3ed;
      --cream:        #fdf8f0;
      --cream2:       #f5ede0;
      --dark:         #0f1a11;
      --dark2:        #1c2b1f;
      --text:         #1a2e1d;
      --muted:        #5a7060;
      --border:       #dde9de;
      --white:        #ffffff;
      --gold:         #c9922a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Epilogue', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      padding: 18px 6%;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(253,248,240,0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      position: sticky; top: 0; z-index: 100;
    }

    .nav-logo {
      font-family: 'Fraunces', serif;
      font-weight: 900; font-size: 22px;
      color: var(--green); text-decoration: none;
      display: flex; align-items: center; gap: 7px;
      letter-spacing: -0.02em;
    }

    .nav-logo span {
      background: var(--orange); color: white;
      padding: 2px 8px; border-radius: 5px;
      font-size: 20px;
    }

    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      text-decoration: none; color: var(--muted);
      font-size: 14px; font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--green); }

    .nav-cta {
      background: var(--green) !important;
      color: white !important;
      padding: 9px 20px;
      border-radius: 99px;
    }

    /* ── HERO ── */
    .hero {
      min-height: 88vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      background: var(--dark);
      padding: 80px 6% 80px 6%;
      display: flex; flex-direction: column;
      justify-content: center;
      position: relative; overflow: hidden;
    }

    .hero-left::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse at 0% 30%, rgba(11,122,62,0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 80%, rgba(242,101,34,0.15) 0%, transparent 50%);
    }

    .hero-pattern {
      position: absolute; inset: 0; opacity: 0.03;
      background-image:
        linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .hero-left-inner { position: relative; }

    .hero-eyebrow {
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 20px;
    }

    .hero-h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 900;
      line-height: 1.0;
      color: white;
      margin-bottom: 28px;
      letter-spacing: -0.02em;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--orange);
    }

    .hero-lead {
      font-size: 16px; line-height: 1.8;
      color: rgba(255,255,255,0.55);
      max-width: 400px;
      margin-bottom: 40px;
      font-weight: 300;
    }

    .hero-sig {
      display: flex; align-items: center; gap: 14px;
    }

    .sig-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: linear-gradient(135deg, var(--green), var(--orange));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 22px; font-weight: 900; color: white;
      flex-shrink: 0;
      border: 2px solid rgba(255,255,255,0.15);
    }

    .sig-name {
      font-family: 'Fraunces', serif;
      font-size: 17px; font-weight: 700; color: white;
      margin-bottom: 2px;
    }

    .sig-title { font-size: 12px; color: rgba(255,255,255,0.45); }

    /* ── HERO RIGHT ── */
    .hero-right {
      background: var(--cream2);
      padding: 80px 6%;
      display: flex; flex-direction: column;
      justify-content: center; gap: 24px;
      position: relative;
    }

    .hero-right::before {
      content: '"';
      font-family: 'Fraunces', serif;
      font-size: 320px;
      color: var(--border);
      position: absolute;
      top: -60px; left: 20px;
      line-height: 1;
      pointer-events: none;
      z-index: 0;
    }

    .mission-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      position: relative; z-index: 1;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .mission-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(11,122,62,0.1);
    }

    .mission-icon {
      font-size: 28px; margin-bottom: 12px;
    }

    .mission-card h3 {
      font-family: 'Fraunces', serif;
      font-size: 18px; font-weight: 700;
      color: var(--dark); margin-bottom: 8px;
    }

    .mission-card p {
      font-size: 14px; color: var(--muted);
      line-height: 1.7; font-weight: 300;
    }

    /* ── STORY SECTION ── */
    .story {
      padding: 100px 6%;
      max-width: 1100px; margin: 0 auto;
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px; align-items: start;
    }

    .story-left { position: sticky; top: 100px; }

    .story-tag {
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 14px;
    }

    .story-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(32px, 4vw, 50px);
      font-weight: 900; color: var(--dark);
      line-height: 1.08; margin-bottom: 20px;
      letter-spacing: -0.02em;
    }

    .story-title em {
      font-style: italic; color: var(--green);
    }

    .story-intro {
      font-size: 16px; color: var(--muted);
      line-height: 1.8; font-weight: 300;
    }

    .story-right { display: flex; flex-direction: column; gap: 32px; }

    .story-block { }

    .story-block h4 {
      font-family: 'Fraunces', serif;
      font-size: 20px; font-weight: 700;
      color: var(--dark); margin-bottom: 10px;
    }

    .story-block p {
      font-size: 15px; color: var(--muted);
      line-height: 1.85; font-weight: 300;
    }

    .story-divider {
      height: 1px; background: var(--border);
      width: 60px;
    }

    /* pull quote */
    .pull-quote {
      border-left: 4px solid var(--orange);
      padding: 18px 20px;
      background: var(--orange-pale);
      border-radius: 0 12px 12px 0;
    }

    .pull-quote p {
      font-family: 'Fraunces', serif;
      font-size: 18px; font-style: italic;
      font-weight: 600; color: var(--dark);
      line-height: 1.55;
    }

    /* ── VALUES ── */
    .values {
      background: var(--dark);
      padding: 100px 6%;
      position: relative; overflow: hidden;
    }

    .values::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 80% 20%, rgba(11,122,62,0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(242,101,34,0.12) 0%, transparent 50%);
    }

    .values-inner {
      max-width: 1100px; margin: 0 auto;
      position: relative;
    }

    .values-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
      margin-bottom: 64px;
    }

    .values-tag {
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 14px;
    }

    .values-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 900; color: white;
      line-height: 1.1; letter-spacing: -0.02em;
    }

    .values-title em { font-style: italic; color: var(--orange); }

    .values-sub {
      font-size: 15px; color: rgba(255,255,255,0.45);
      line-height: 1.8; font-weight: 300;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      border-radius: 20px; overflow: hidden;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .value-item {
      background: rgba(255,255,255,0.03);
      padding: 36px 28px;
      transition: background 0.3s;
      position: relative; overflow: hidden;
    }

    .value-item:hover { background: rgba(255,255,255,0.07); }

    .value-num {
      font-family: 'Fraunces', serif;
      font-size: 56px; font-weight: 900;
      color: rgba(255,255,255,0.04);
      position: absolute; top: 10px; right: 16px;
      line-height: 1;
    }

    .value-emoji { font-size: 28px; margin-bottom: 16px; }

    .value-item h3 {
      font-family: 'Fraunces', serif;
      font-size: 17px; font-weight: 700;
      color: white; margin-bottom: 8px;
    }

    .value-item p {
      font-size: 13px; color: rgba(255,255,255,0.4);
      line-height: 1.7; font-weight: 300;
    }

    /* ── STATS STRIP ── */
    .stats {
      background: var(--green);
      padding: 56px 6%;
      position: relative; overflow: hidden;
    }

    .stats::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
    }

    .stats-inner {
      max-width: 900px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; position: relative;
    }

    .stat-item {
      text-align: center;
      padding: 0 24px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }

    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 44px; font-weight: 900;
      color: white; line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -0.02em;
    }

    .stat-label {
      font-size: 13px; color: rgba(255,255,255,0.65);
      font-weight: 300; line-height: 1.4;
    }

    /* ── CTA ── */
    .cta {
      background: var(--cream2);
      padding: 80px 6%;
      text-align: center;
      border-top: 1px solid var(--border);
    }

    .cta-inner { max-width: 600px; margin: 0 auto; }

    .cta h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 900; color: var(--dark);
      line-height: 1.1; margin-bottom: 14px;
      letter-spacing: -0.02em;
    }

    .cta h2 em { font-style: italic; color: var(--orange); }

    .cta p {
      font-size: 16px; color: var(--muted);
      line-height: 1.7; font-weight: 300;
      margin-bottom: 36px;
    }

    .cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    .btn-green {
      padding: 14px 30px; border-radius: 99px;
      background: var(--green); color: white;
      font-family: 'Fraunces', serif;
      font-size: 15px; font-weight: 700;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 4px 16px rgba(11,122,62,0.25);
      display: inline-flex; align-items: center; gap: 8px;
    }

    .btn-green:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(11,122,62,0.35);
    }

    .btn-ghost {
      padding: 14px 30px; border-radius: 99px;
      border: 1.5px solid var(--border); color: var(--text);
      font-size: 15px; font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }

    .btn-ghost:hover { border-color: var(--green); color: var(--green); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark2);
      padding: 40px 6% 28px;
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 20px;
    }

    .footer-logo {
      font-family: 'Fraunces', serif;
      font-weight: 900; font-size: 20px; color: white;
      letter-spacing: -0.02em;
      display: flex; align-items: center; gap: 6px;
    }

    .footer-logo span {
      background: var(--orange); color: white;
      padding: 2px 7px; border-radius: 5px;
    }

    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

    .footer-links { display: flex; gap: 20px; }
    .footer-links a {
      font-size: 13px; color: rgba(255,255,255,0.4);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: white; }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { padding: 48px 6%; }
      .story-grid, .founder-grid, .values-top { grid-template-columns: 1fr; gap: 40px; }
      .story-left { position: static; }
      .values-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
      .stat-item:nth-child(even), .stat-item:last-child { border-bottom: none; }
      .nav-links { display: none; }
      footer { flex-direction: column; text-align: center; }
    }

body, body * { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; }
