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

    body {
      font-family: var(--font-noto);
      background: #fff;
      color: #1a2340;
      line-height: 1.5;
    }

    .text-gold {
      color: #c9a84c;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    /* ========== NAVIGATION STYLES (reusable across all pages) ========== */

/* Base nav container */
.site-nav {
  background: #1a2d4a;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.nav-logo img:hover {
  opacity: 0.85;
}

/* Desktop navigation links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-noto);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
  position: relative;
}

/* Hover state — gold */
.nav-links a:hover {
  color: #c9a84c;
}

/* Active state — gold with subtle underline */
.nav-links a.active {
  color: #c9a84c;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c9a84c;
  border-radius: 2px;
}

/* Work with me button */
.nav-work-btn {
  background: none;
  border: 1.5px solid #c9a84c;
  color: #c9a84c;
  font-size: 13px;
  padding: 8px 24px;
  border-radius: 40px;
  font-family: var(--font-noto);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  min-width: 135px;
  text-align: center;
}

.nav-work-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #e2bc5e;
  border-color: #e2bc5e;
  transform: translateY(-1px);
}

/* Mobile menu toggle (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: 0.2s;
  border-radius: 2px;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Responsive styles */
@media (max-width: 900px) {
  .nav-container {
    padding: 0 24px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .nav-work-btn {
    margin-top: 4px;
    text-align: center;
    width: auto;
    display: inline-block;
  }
}

.logo-image {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.logo-item {
  background: #f5f2ec;
  border-radius: 10px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border: 1px solid #e2d8cc;
}

.logo-item:hover {
  background: #ede8df;
  transform: translateY(-1px);
}

/* For very small screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 20px;
  }
}

    /* ----- HERO SECTION ----- */
    .story-hero {
      background: #fefaf5;
      border-bottom: 1px solid #f0e7dc;
    }

    .story-hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 80px 48px 64px;
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 56px;
      align-items: center;
    }

    .hero-text .story-label {
      display: inline-flex;
      align-items: center;
      background: #1a2d4a;
      color: #ffffff;
      font-size: 10px;
      letter-spacing: 0.18em;
      font-family: var(--font-noto);
      margin-bottom: 18px;
      padding: 7px 12px;
      border-radius: 999px;
      text-transform: uppercase;
    }

    .hero-text h1 {
      font-size: 48px;
      font-weight: 700;
      color: #1a2d4a;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .hero-text p {
      font-size: 17px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.7;
    }

    .hero-photo-placeholder {
      background: #e6ddcf;
      border-radius: 20px;
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-noto);
      color: #7a6e5a;
      font-size: 14px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid #ddd2c0;
    }

    .story-narrative {
      position: relative;
      overflow: hidden;
      background: #f8fafc;
      padding: 92px 0;
      border-bottom: 1px solid #eef2f7;
    }

    .story-container {
      position: relative;
      max-width: 1120px;
      display: grid;
      grid-template-columns: 320px minmax(0, 1fr);
      gap: 68px;
      align-items: start;
    }

    .story-intro {
      position: sticky;
      top: 110px;
    }

    .story-intro h2 {
      color: #1a2d4a;
      font-size: 44px;
      font-weight: 800;
      line-height: 1.08;
      margin: 0 0 22px;
    }

    .story-intro h2::after {
      content: "";
      display: block;
      width: 64px;
      height: 3px;
      margin-top: 22px;
      background: #c9a84c;
    }

    .story-intro p {
      color: #5a6f8a;
      font-family: var(--font-noto);
      font-size: 16px;
      line-height: 1.75;
      margin: 0;
    }

    .story-chapters {
      display: grid;
      gap: 22px;
    }

    .story-card {
      position: relative;
      background: #ffffff;
      border: 1px solid #e8edf5;
      border-left: 4px solid #c9a84c;
      border-radius: 8px;
      padding: 28px 32px;
      box-shadow: 0 16px 40px rgba(26, 45, 74, 0.06);
    }

    .story-era {
      color: #c9a84c;
      font-family: var(--font-noto);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.16em;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .story-card h3 {
      color: #1a2d4a;
      font-family: var(--font-noto);
      font-size: 23px;
      font-weight: 800;
      line-height: 1.25;
      margin: 0 0 14px;
    }

    .story-card p {
      color: #4a6080;
      font-family: var(--font-noto);
      font-size: 15.5px;
      line-height: 1.75;
      margin: 0 0 14px;
    }

    .story-card p:last-child {
      margin-bottom: 0;
    }

    .story-card-featured {
      background: #1a2d4a;
      border-color: #284264;
      border-left-color: #c9a84c;
      box-shadow: 0 22px 48px rgba(26, 45, 74, 0.18);
    }

    .story-card-featured h3,
    .story-card-featured p {
      color: #ffffff;
    }

    .story-card-featured p {
      color: #d7e2ef;
    }

    /* ----- MY EDGE SECTION ----- */
    .edge-section {
      padding: 70px 0;
      background: #fff;
      border-bottom: 1px solid #eef2f7;
    }

    .edge-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .edge-tag {
      font-size: 12px;
      letter-spacing: 0.2em;
      font-family: var(--font-noto);
      color: #c9a84c;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .edge-header h2 {
      font-size: 32px;
      font-weight: 700;
      color: #1a2d4a;
    }

    .edge-description {
      max-width: 700px;
      margin: 20px auto 0;
      text-align: center;
      font-size: 17px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.7;
    }

    /* Venn Diagram Container */
    .venn-container {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: 60px 0 30px;
      overflow: visible;
    }

    .venn-svg {
      display: block;
      width: min(100%, 760px);
      height: auto;
      margin: 0 auto;
    }

    /* ----- BELIEFS SECTION ----- */
    .beliefs {
      background: #fff;
      padding: 70px 0;
      border-bottom: 1px solid #eef2f7;
    }

    .section-caption {
      font-size: 12px;
      letter-spacing: 0.2em;
      font-family: var(--font-noto);
      color: #c9a84c;
      margin-bottom: 12px;
      text-transform: uppercase;
      text-align: center;
    }

    .beliefs-header h2 {
      font-size: 32px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 24px;
      text-align: center;
    }

    .beliefs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 48px;
      margin: 32px 0 16px;
    }

    .belief-card {
      border-left: 3px solid #c9a84c;
      padding-left: 24px;
      background: #fefbf7;
      border-radius: 0 12px 12px 0;
      transition: transform 0.2s ease;
    }

    .belief-card:hover {
      transform: translateX(4px);
    }

    .belief-title {
      font-size: 20px;
      font-weight: 700;
      color: #1a2d4a;
      font-family: var(--font-noto);
      margin-bottom: 8px;
    }

    .belief-desc {
      font-size: 15px;
      color: #5a6f8a;
      font-family: var(--font-noto);
      line-height: 1.65;
    }

    /* ----- JOURNEY SECTION (richer card colors - warm off-white with subtle depth) ----- */
    .journey {
      background: #faf8f4;
      padding: 70px 0;
    }

    .journey-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .journey-tag {
      font-size: 12px;
      letter-spacing: 0.2em;
      font-family: var(--font-noto);
      color: #c9a84c;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .journey-header h2 {
      font-size: 32px;
      font-weight: 700;
      color: #1a2d4a;
    }

    .timeline {
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin: 48px 0 32px;
    }

    /* Richer card style - warm off-white with subtle shadow */
    .timeline-era {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      background: #fffdf9;
      border-radius: 24px;
      padding: 32px 36px;
      transition: all 0.2s;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
      border: 1px solid #e8e0d4;
    }

    .timeline-era:hover {
      transform: translateY(-4px);
      background: #ffffff;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
      border-color: #d4c8b6;
    }

    .era-year {
      min-width: 140px;
      font-weight: 700;
      font-size: 20px;
      color: #c9a84c;
      font-family: var(--font-noto);
      letter-spacing: 0.02em;
    }

    .era-content {
      flex: 1;
    }

    .era-title {
      font-size: 26px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 12px;
    }

    .era-desc {
      font-size: 15px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .logo-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-top: 16px;
      margin-bottom: 20px;
    }

    .logo-item {
      background: #f5f2ec;
      border-radius: 10px;
      padding: 10px 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      border: 1px solid #e2d8cc;
    }

    .logo-item:hover {
      background: #ede8df;
      transform: translateY(-1px);
    }

    .logo-text {
      color: #1a2d4a;
      font-family: var(--font-noto);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.02em;
    }

    /* CTA Button for each era */
    .era-cta {
      display: inline-block;
      background: none;
      border: 1px solid #c9a84c;
      color: #1a2d4a;
      font-size: 13px;
      font-family: var(--font-noto);
      font-weight: 600;
      padding: 8px 24px;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-top: 8px;
    }

    .era-cta:hover {
      background: #c9a84c;
      color: #1a2d4a;
    }

    /* ----- DRIVING FORCE SECTION ----- */
    .driving-force {
      background: #1a2d4a;
      color: white;
      padding: 80px 0;
    }

    .force-grid {
      display: flex;
      gap: 60px;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .force-text {
      flex: 1;
    }

    .force-label {
      font-size: 11px;
      letter-spacing: 0.18em;
      font-family: var(--font-noto);
      color: #c9a84c;
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .force-text h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .force-text p {
      font-size: 17px;
      font-family: var(--font-noto);
      color: #c8d8e8;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .force-stats {
      display: flex;
      gap: 32px;
      margin-top: 32px;
    }

    .stat {
      text-align: left;
    }

    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: #c9a84c;
      font-family: var(--font-noto);
    }

    .stat-label {
      font-size: 13px;
      color: #8ab0d0;
      font-family: var(--font-noto);
    }

    .force-quote {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      padding: 40px;
      border-left: 4px solid #c9a84c;
    }

    .force-quote p {
      font-size: 22px;
      line-height: 1.4;
      font-style: italic;
      font-family: var(--font-noto);
      margin-bottom: 20px;
    }

    .force-quote cite {
      font-size: 14px;
      font-family: var(--font-noto);
      color: #c9a84c;
      font-style: normal;
    }

    /* ----- PERSONAL SECTION ----- */
    .personal-section {
      background: #fff9f3;
      padding: 70px 0;
    }

    .personal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .personal-text h3 {
      font-size: 32px;
      font-weight: 700;
      color: #1a2d4a;
      margin-bottom: 24px;
    }

    .personal-text p {
      font-size: 16px;
      font-family: var(--font-noto);
      color: #4a6080;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .personal-image-updated {
      background: #e2d9ce;
      border-radius: 24px;
      min-height: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-noto);
      font-size: 15px;
      color: #7f6e56;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
      width: 100%;
      flex-direction: column;
      gap: 12px;
    }

   /* FOOTER */
.footer-cta{background:#1a2d4a;}
.footer-inner{max-width:1100px;margin:0 auto;padding:80px;text-align:center;}
.footer-h2{color:#fff;font-size:34px;font-weight:700;margin-bottom:12px;}
.footer-sub{color:#8a9bb5;font-size:15px;font-family:Arial,sans-serif;margin-bottom:32px;max-width:560px;margin-left:auto;margin-right:auto;line-height:1.8;}

.btn-gold {
  background: #c9a84c;
  color: #1a2d4a;
  font-size: 13px;
  padding: 16px 36px;
  border: none;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.btn-gold:hover {
  background: #b89432;
  transform: translateY(-2px);
}

.footer-bottom{border-top:1px solid #253e60;margin-top:48px;padding-top:28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:24px;}

.footer-left {
  text-align: left;
}

.footer-copy{color:#4a6080;font-size:12px;font-family:Arial,sans-serif;margin-bottom:12px;}
.footer-links{display:flex;gap:24px;flex-wrap:wrap;}
.footer-links a{color:#4a6080;font-size:12px;font-family:Arial,sans-serif;text-decoration:none;transition:color 0.2s ease;}
.footer-links a:hover{color:#c8d8e8;}

.footer-social {
  text-align: right;
}

.social-label {
  color:#4a6080;
  font-size:11px;
  font-family:Arial,sans-serif;
  letter-spacing:0.1em;
  margin-bottom:12px;
  display:block;
  text-transform:uppercase;
}

.social-icons {
  display:flex;
  gap:16px;
  justify-content:flex-end;
}

.footer-social-link {
  width:36px;
  height:36px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.2s ease;
}

.footer-social-link svg {
  width:18px;
  height:18px;
  stroke:#8a9bb5;
  stroke-width:1.5;
  fill:none;
}

.footer-social-link:hover {
  background:#c9a84c;
  transform:translateY(-2px);
}

.footer-social-link:hover svg {
  stroke:#1a2d4a;
}

    @media (max-width: 900px) {
      .container {
        padding: 0 24px;
      }
      .story-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 24px;
      }
      .hero-text h1 {
        font-size: 36px;
      }
      .beliefs-grid {
        grid-template-columns: 1fr;
      }
      .timeline-era {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
      }
      .era-year {
        min-width: auto;
      }
      .force-grid {
        flex-direction: column;
      }
      .personal-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .footer-inner {
        padding: 48px 24px;
      }
      .force-stats {
        flex-wrap: wrap;
      }
      .nav-inner {
        padding: 0 24px;
        justify-content: center;
      }
      .logo-strip {
        gap: 12px;
      }
      .venn-svg {
        width: 100%;
        height: auto;
      }
    }

    /* MY STORY RESPONSIVE DESIGN */
    @media (max-width: 1100px) {
      .nav-container,
      .story-hero-inner,
      .container,
      .footer-inner {
        padding-left: 48px;
        padding-right: 48px;
      }

      .nav-links {
        gap: 20px;
      }

      .story-hero-inner {
        gap: 40px;
      }
    }

    @media (max-width: 900px) {
      body {
        overflow-x: hidden;
      }

      .nav-container {
        justify-content: space-between;
        padding: 14px 28px;
        gap: 0;
      }

      .nav-logo {
        justify-content: flex-start;
        width: auto;
      }

      .nav-logo img {
        height: 50px;
      }

      .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 6px;
        flex-shrink: 0;
      }

      .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
        margin: 3px 0;
        border-radius: 2px;
        transform-origin: center;
      }

      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 16px 0 4px;
        margin-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
      }

      .nav-toggle:checked ~ .nav-links {
        display: flex;
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
      }

      .nav-toggle:checked + .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        width: 100%;
        padding: 11px 0;
        font-size: 13px;
      }

      .nav-work-btn {
        min-width: 0;
        margin-top: 8px;
        padding: 10px 18px;
        width: fit-content;
      }

      .story-hero-inner {
        grid-template-columns: 1fr;
        padding: 64px 48px 56px;
        gap: 36px;
        text-align: center;
      }

      .hero-text h1 {
        font-size: 38px;
      }

      .hero-text p {
        max-width: 650px;
        margin: 0 auto;
      }

      .hero-photo-placeholder {
        width: min(380px, 100%);
        height: 360px;
        margin: 0 auto;
      }

      .edge-section,
      .beliefs,
      .journey,
      .story-narrative,
      .personal-section {
        padding: 56px 0;
      }

      .story-container {
        display: block;
      }

      .story-intro {
        position: static;
        margin-bottom: 32px;
      }

      .driving-force {
        padding: 64px 0;
      }

      .story-container h2 {
        position: static;
      }

      .story-copy {
        padding: 0 0 0 26px;
      }

      .story-chapters {
        gap: 18px;
      }

      .story-card {
        padding: 24px;
      }

      .edge-header,
      .journey-header {
        margin-bottom: 36px;
      }

      .edge-header h2,
      .beliefs-header h2,
      .journey-header h2,
      .story-container h2,
      .story-intro h2,
      .personal-text h3 {
        font-size: 30px;
        line-height: 1.25;
      }

      .venn-container {
        margin: 36px 0 10px;
        overflow: visible;
      }

      .venn-svg {
        width: min(100%, 620px);
      }

      .beliefs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .timeline {
        gap: 22px;
        margin: 36px 0 20px;
      }

      .timeline-era {
        flex-direction: column;
        gap: 18px;
        padding: 28px;
        border-radius: 18px;
      }

      .era-year {
        min-width: 0;
      }

      .logo-strip {
        gap: 12px;
      }

      .force-grid {
        flex-direction: column;
        gap: 36px;
        align-items: stretch;
      }

      .force-stats {
        flex-wrap: wrap;
        gap: 24px;
      }

      .force-quote {
        padding: 32px;
      }

      .personal-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .personal-image-updated {
        min-height: 360px;
      }

      .footer-inner {
        padding: 64px 48px 36px;
      }

      .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
      }

      .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 20px;
      }
    }

    @media (max-width: 640px) {
      .nav-container,
      .story-hero-inner,
      .container,
      .footer-inner {
        padding-left: 24px;
        padding-right: 24px;
      }

      .nav-container {
        padding-top: 12px;
        padding-bottom: 12px;
      }

      .nav-links a {
        font-size: 12px;
      }

      .nav-work-btn {
        padding: 9px 14px;
      }

      .story-hero-inner {
        padding-top: 52px;
        padding-bottom: 48px;
      }

      .hero-text .story-label,
      .edge-tag,
      .section-caption,
      .journey-tag,
      .force-label {
        line-height: 1.5;
      }

      .hero-text h1 {
        font-size: 32px;
      }

      .hero-text p,
      .edge-description,
      .force-text p,
      .personal-text p,
      .footer-sub {
        font-size: 15px;
      }

      .hero-photo-placeholder {
        height: 300px;
      }

      .edge-section,
      .beliefs,
      .journey,
      .story-narrative,
      .personal-section {
        padding: 48px 0;
      }

      .edge-header h2,
      .beliefs-header h2,
      .journey-header h2,
      .story-container h2,
      .story-intro h2,
      .personal-text h3,
      .footer-h2 {
        font-size: 26px;
      }

      .story-card p {
        font-size: 15px;
        line-height: 1.75;
      }

      .story-card {
        padding: 22px;
      }

      .story-card h3 {
        font-size: 20px;
      }

      .story-copy p,
      .story-build-list p {
        font-size: 15px;
        line-height: 1.75;
      }

      .story-build-list {
        padding: 20px;
      }

      .story-copy {
        padding-left: 22px;
      }

      .story-copy > p::before {
        left: -28px;
        width: 8px;
        height: 8px;
        border-width: 2px;
        box-shadow: 0 0 0 5px #ffffff;
      }

      .venn-container {
        overflow: visible;
        justify-content: center;
        padding-bottom: 12px;
      }

      .venn-svg {
        width: 100%;
        min-width: 0;
        max-width: 390px;
        height: auto;
      }

      .belief-card {
        padding: 20px 20px 20px 22px;
      }

      .belief-title {
        font-size: 18px;
      }

      .timeline-era {
        padding: 24px 20px;
        border-radius: 16px;
      }

      .era-year {
        font-size: 18px;
      }

      .era-title {
        font-size: 22px;
      }

      .logo-item {
        width: 100%;
        justify-content: flex-start;
      }

      .era-cta,
      .btn-gold {
        width: 100%;
      }

      .force-text h2 {
        font-size: 28px;
      }

      .force-stats {
        display: grid;
        grid-template-columns: 1fr;
      }

      .force-quote {
        padding: 28px 24px;
        border-radius: 18px;
      }

      .force-quote p {
        font-size: 19px;
      }

      .personal-image-updated {
        min-height: 300px;
      }

      .footer-links {
        flex-direction: column;
        gap: 10px;
      }
    }

    @media (max-width: 420px) {
      .nav-container,
      .story-hero-inner,
      .container,
      .footer-inner {
        padding-left: 18px;
        padding-right: 18px;
      }

      .hero-text h1 {
        font-size: 30px;
      }

      .hero-photo-placeholder {
        height: 260px;
      }

      .venn-svg {
        max-width: 340px;
      }

      .timeline-era {
        padding: 22px 18px;
      }
    }

/* Shared mobile nav polish */
.nav-icon {
  display: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-links {
    border-top: 0 !important;
    padding: 16px 0 8px !important;
  }

  .nav-links a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    width: 100%;
  }

  .nav-links a.active::after {
    display: none !important;
  }

  .nav-icon {
    display: inline-block;
  }

  .nav-work-btn {
    justify-content: center !important;
    min-width: 0;
    margin: 18px auto 0 !important;
    padding: 12px 22px !important;
    width: min(100%, 360px) !important;
    text-align: center;
  }
}
