@media (max-width: 768px) {
  :root {
    --sage: #6B9E78;
    --sage-dark: #1A3028;
    --sage-light: #EFF6EE;
    --sage-pale: #C5DCCA;
    --navy: #3A4F6A;
    --cream: #FDFBF7;
    --white: #FFFFFF;
    --text: #1E2A1E;
    --text-secondary: #4A5A4A;
    --text-light: #7A8A7A;
    --border: rgba(107,158,107,0.12);
    --radius: 16px;
    --radius-sm: 10px;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    max-width: 430px;
    margin: 0 auto;
    overflow-x: hidden;
  }
  
  /* ===== CRISIS BAR ===== */
  .crisis-bar {
    background: var(--sage-dark);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .crisis-bar a {
    color: #C5DCCA;
    font-weight: 600;
    text-decoration: none;
  }
  .crisis-bar .close-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
  }
  
  /* ===== NAV ===== */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 16px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .nav-logo-img {
    height: 36px;
    width: auto;
  }
  .nav-logo span { 
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-light);
    text-transform: uppercase;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-cta {
    background: var(--sage-dark);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
  }
  .menu-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
  }
  .menu-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--text);
  }
  
  /* ===== HERO ===== */
  .hero {
    position: relative;
    height: 85vh;
    min-height: 520px;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 20px 40px;
    overflow: hidden;
  }
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%; /* KEY FIX: Less zoom, shows more of the scene */
    z-index: 0;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,48,40,0.1) 0%,
      rgba(26,48,40,0.3) 40%,
      rgba(26,48,40,0.85) 100%
    );
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  .hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .hero h1 em {
    font-style: italic;
    color: #C5DCCA;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    max-width: 320px;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #3A4F6A;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
  }
  .hero-secondary {
    display: block;
    margin-top: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-decoration: none;
  }
  .hero-secondary:hover {
    color: white;
  }
  
  /* ===== SCROLL HINT ===== */
  .scroll-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    animation: bounce 2s infinite;
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }
  
  /* ===== STATEMENT ===== */
  .statement {
    padding: 48px 20px;
    background: var(--cream);
  }
  .statement blockquote {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--sage-dark);
    line-height: 1.4;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid var(--sage);
  }
  .statement p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
  }
  .statement p + p {
    margin-top: 16px;
  }
  .statement strong {
    color: var(--text);
    font-weight: 600;
  }
  .statement .kicker {
    display: block;
    margin-top: 24px;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    color: var(--sage-dark);
    font-size: 1.2em;
    font-weight: 400;
  }
  
  /* ===== QUICK ASSESSMENT CTA ===== */
  .assessment-cta {
    margin: 0 20px;
    padding: 24px 20px;
    background: var(--sage-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transform: translateY(-24px);
  }
  .assessment-cta h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    color: var(--sage-dark);
    margin-bottom: 8px;
  }
  .assessment-cta p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
  }
  .assessment-cta .badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: var(--text-light);
  }
  .assessment-cta .badges span {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .assessment-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sage-dark);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
  }
  
  /* ===== STATS ===== */
  .stats {
    padding: 40px 20px;
    background: var(--sage-dark);
    color: white;
  }
  .stats-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
  }
  .stats h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.3;
  }
  .stat-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .stat-card {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .stat-card .number {
    font-family: 'Instrument Serif', serif;
    font-size: 1.8rem;
    color: #C5DCCA;
    flex-shrink: 0;
  }
  .stat-card .desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
  }
  
  /* ===== APPROACH ===== */
  .approach {
    padding: 48px 20px;
  }
  .section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage);
    margin-bottom: 8px;
  }
  .approach h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--sage-dark);
    margin-bottom: 24px;
    line-height: 1.3;
  }
  .approach-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    background: var(--sage-light);
    border-radius: var(--radius-sm);
    padding: 4px;
  }
  .approach-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
  }
  .approach-tab.active {
    background: white;
    color: var(--sage-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .approach-list {
    list-style: none;
  }
  .approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
  }
  .approach-list li:last-child {
    border-bottom: none;
  }
  .approach-list .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 2px;
  }
  .approach-list.do .icon {
    background: #D5E8D0;
    color: #2D7A4A;
  }
  .approach-list.dont .icon {
    background: #F5E0DE;
    color: #9A3B32;
  }
  
  /* ===== PROCESS ===== */
  .process {
    padding: 48px 20px;
    background: var(--cream);
  }
  .process h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--sage-dark);
    margin-bottom: 8px;
  }
  .process > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }
  .process-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .process-scroll::-webkit-scrollbar { display: none; }
  .process-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
  }
  .process-card .step-num {
    width: 28px;
    height: 28px;
    background: var(--sage-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .process-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 8px;
  }
  .process-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  .scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
  }
  .scroll-indicators span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
  }
  .scroll-indicators span.active {
    background: var(--sage);
    width: 18px;
    border-radius: 3px;
  }
  
  /* ===== RESOURCES ===== */
  .resources {
    padding: 48px 20px;
  }
  .resources h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--sage-dark);
    margin-bottom: 24px;
  }
  
  /* Resource Row */
  .resource-row {
    margin-bottom: 28px;
  }
  .resource-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .resource-row-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sage-dark);
  }
  .see-all {
    font-size: 0.8rem;
    color: var(--sage);
    font-weight: 500;
    text-decoration: none;
  }
  
  /* Resource Scroll */
  .resource-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .resource-scroll::-webkit-scrollbar { display: none; }
  
  /* Video Cards */
  .video-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    text-decoration: none;
  }
  .video-thumb {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 8px;
  }
  .video-thumb img {
    width: 100%;
    height: 112px;
    object-fit: cover;
  }
  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
  }
  .video-info {
    padding: 0 4px;
  }
  .video-source {
    font-size: 0.7rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
  }
  .video-card h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sage-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* Article Cards */
  .article-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-decoration: none;
  }
  .article-source {
    font-size: 0.7rem;
    color: var(--sage);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
  }
  .article-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sage-dark);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .article-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* ===== CTA SECTION ===== */
  .cta-section {
    padding: 48px 20px;
    background: var(--sage-dark);
    text-align: center;
    color: white;
  }
  .cta-section h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .cta-section p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
  }
  .cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--sage-dark);
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
  }
  .cta-section .note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
  }
  
  /* ===== PARTNERS ===== */
  .partners {
    padding: 32px 20px;
    text-align: center;
  }
  .partners-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 16px;
  }
  .partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .partner-tag {
    padding: 8px 12px;
    background: var(--sage-light);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-secondary);
  }
  
  /* ===== FOOTER ===== */
  footer {
    padding: 32px 20px;
    background: var(--sage-dark);
    color: rgba(255,255,255,0.6);
  }
  .footer-brand {
    margin-bottom: 24px;
  }
  .footer-logo-link {
    display: block;
    margin-bottom: 12px;
  }
  .footer-logo-img {
    height: 32px;
    width: auto;
  }
  .footer-desc {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .footer-links {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
  }
  .footer-crisis {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    text-align: center;
  }
  .footer-crisis a {
    color: #C5DCCA;
    text-decoration: none;
    font-weight: 600;
  }
  .footer-bottom {
    font-size: 0.7rem;
    text-align: center;
    color: rgba(255,255,255,0.35);
  }
  
  /* ===== QUIZ MODAL ===== */
  .quiz-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .quiz-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .quiz-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 32px 24px 40px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }
  .quiz-modal.active {
    transform: translateY(0);
  }
  .quiz-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
  }
  .quiz-modal h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--sage-dark);
    margin-bottom: 12px;
  }
  .quiz-intro {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .quiz-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.75rem;
    color: var(--text-light);
  }
  .quiz-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sage-dark);
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
  }

  /* ===== CLASS NAME ALIASES ===== */
  .hero {
    justify-content: flex-end;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    color: white;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #3A4F6A;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
  }
  .btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
  }
}
