:root {
    --cream: #FFFFFF;
    --parchment: #F0FAF5;
    --gold: #3A8A6E;
    --gold-light: #5AAE8A;
    --gold-dark: #1A5E45;
    --deep: #1E6B50;
    --ink: #1E2D4A;
    --stone: #2A5A4A;
    --mist: #5A9A80;
    --sage: #3A8A6E;
    --olive: #2A7A5A;
    --rust: #C47A2A;
    --sand: #C8E8DA;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans SC', serif;
    background: #FFFFFF;
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: #EEF3FA; }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.4rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42,122,94, 0.15);
    transition: all 0.4s ease;
  }

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

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #2A5A4A;
    letter-spacing: 0.08em;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav-links a:hover { color: var(--gold-dark); }
  .nav-links a:hover::after { transform: scaleX(1); }

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

  .hero-visual {
    background: linear-gradient(135deg, #1E6B50 0%, #3A8A6E 50%, #5AAE8A 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 80%, rgba(74, 126, 200, 0.18) 0%, transparent 50%);
  }

  /* Decorative olive branch SVG */
  .olive-art {
    width: 320px;
    height: 320px;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
  }

  .hero-corner-ornament {
    position: absolute;
    top: 6rem;
    left: 4rem;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 5rem 5rem;
    background: #F5FFF9;
    position: relative;
  }

  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1E6B50;
    margin-bottom: 0.5rem;
  }

  .hero-sub {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.25em;
    color: var(--gold-dark);
    margin-bottom: 2.5rem;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: #2A5A4A;
    max-width: 440px;
    margin-bottom: 3rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg,#1E6B50,#3A8A6E);
    color: var(--gold-light);
    border: none;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold-dark);
    color: var(--cream);
    transform: translateY(-2px);
  }

  .btn-outline {
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: #2A5A4A;
    border: 1px solid #C8E8DA;
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    color: var(--gold-dark);
    transform: translateY(-2px);
  }

  /* ─── DIVIDER ─── */
  .divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 8rem;
    justify-content: center;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sand), transparent);
  }

  .divider-ornament {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.5em;
  }

  /* ─── SECTIONS ─── */
  section {
    padding: 6rem 0;
    scroll-margin-top: 160px;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4rem;
  }
  /* Ensure first element of each section clears the fixed nav */
  section > .section-inner:first-child {
    padding-top: 1rem;
  }

  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
  }

  h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1E6B50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  /* ─── ABOUT ─── */
  #about { background: #FFFFFF; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .about-mission p {
    font-size: 1rem;
    line-height: 1.9;
    color: #2A5A4A;
    margin-bottom: 1.5rem;
  }

  .mission-pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
    border-left: 3px solid var(--gold);
  }

  .pillar {
    padding: 1rem 1.5rem;
    font-size: 0.92rem;
    color: #2A5A4A;
    line-height: 1.7;
    border-bottom: 1px solid rgba(42,122,94, 0.1);
    transition: background 0.3s;
  }

  .pillar:hover { background: rgba(196, 163, 90, 0.06); }
  .pillar:last-child { border-bottom: none; }

  .about-vision {
    background: linear-gradient(135deg, #1E6B50, #3A8A6E);
    color: var(--cream);
    padding: 3rem;
    position: relative;
    overflow: hidden;
  }

  .about-vision::before {
    content: '✦';
    position: absolute;
    top: 2rem; right: 2.5rem;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
  }

  .about-vision .section-label { color: var(--gold-light); }
  .about-vision .section-label::before { background: var(--gold-light); }
  .about-vision h2 { color: var(--cream); font-size: 1.6rem; }

  .vision-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(237, 228, 211, 0.8);
    margin-top: 1.5rem;
    font-style: italic;
    font-family: 'Noto Serif SC', serif;
  }

  /* ─── BELIEFS ─── */
  #beliefs { background: #F0FAF5; }

  .beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #C8E8DA;
    margin-top: 3rem;
    border: 1px solid #C8E8DA;
  }

  .belief-card {
    background: #FFFFFF;
    padding: 2.5rem;
    transition: background 0.3s;
    position: relative;
  }

  .belief-card:hover { background: #EAFAF2; }

  .belief-num {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: rgba(42,122,94, 0.25);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1;
  }

  .belief-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #2A5A4A;
  }

  /* ─── EVENTS ─── */
  #events { background: #FFFFFF; }

  .events-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }

  .event-card {
    border: 1px solid #C8E8DA;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s;
    background: #FAFFFE;
  }

  .event-card:hover {
    border-color: rgba(255,255,255,0.7);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(42,122,94,0.1);
  }

  .event-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: var(--gold);
    color: var(--gold-light);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
  }

  .event-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    color: #1E6B50;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }

  .event-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
  }

  .event-meta span {
    font-size: 0.82rem;
    color: #5A9A80;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .event-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #2A5A4A;
    margin-bottom: 1.5rem;
  }

  .event-card .btn-primary {
    font-size: 0.78rem;
    padding: 0.7rem 1.6rem;
  }

  .event-sidebar {
    background: #F0FAF5;
    padding: 2.5rem;
    height: fit-content;
    border: 1px solid #C8E8DA;
  }

  .event-sidebar h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1rem;
    color: #1E6B50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand);
  }

  .info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(42,122,94, 0.1);
    font-size: 0.85rem;
  }

  .info-row .label { color: #5A9A80; font-size: 0.8rem; }
  .info-row .val { color: var(--ink); font-weight: 500; }

  /* ─── SPIRITUAL FORMATION ─── */
  #formation { background: linear-gradient(160deg, #1E6B50 0%, #3A8A6E 100%); color: var(--cream); }

  #formation .section-label { color: var(--gold-light); }
  #formation .section-label::before { background: var(--gold-light); }
  #formation h2 { color: var(--cream); }

  .formation-intro {
    font-size: 1rem;
    color: rgba(237, 228, 211, 0.7);
    line-height: 1.85;
    max-width: 650px;
    margin-bottom: 4rem;
  }

  .resources-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(42,122,94,0.15);
  }

  .tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: rgba(237, 228, 211, 0.5);
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s;
    letter-spacing: 0.05em;
  }

  .tab-btn.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
  }

  .tab-btn:hover { color: var(--gold-light); }

  .tab-content { display: none; }
  .tab-content.active { display: block; }

  .steps-list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    border-bottom: 1px solid rgba(196, 163, 90, 0.1);
    padding: 2rem 0;
    transition: background 0.3s;
  }

  .step-item:hover { background: rgba(196, 163, 90, 0.03); }

  .step-num {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: rgba(196, 163, 90, 0.25);
    font-weight: 600;
    padding-top: 0.2rem;
  }

  .step-body h4 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
  }

  .step-body p, .step-body ul {
    font-size: 0.88rem;
    line-height: 1.85;
    color: rgba(237, 228, 211, 0.65);
  }

  .step-body ul { padding-left: 1.2rem; }
  .step-body li { margin-bottom: 0.4rem; }

  /* ─── SPIRITUAL DIRECTION ─── */
  #direction { background: #FFFFFF; }

  .direction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
  }

  .direction-info h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    color: #1E6B50;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
  }

  .direction-info h3:first-child { margin-top: 0; }

  .direction-info p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #2A5A4A;
    margin-bottom: 1rem;
  }

  .steps-direction {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .direction-step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem;
    border: 1px solid #C8E8DA;
    transition: border-color 0.3s;
  }

  .direction-step:hover { border-color: rgba(255,255,255,0.7); }

  .direction-step-num {
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .direction-step p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #2A5A4A;
    margin: 0;
  }

  .price-note {
    background: #F0FAF5;
    border-left: 3px solid var(--gold);
    padding: 1.2rem 1.5rem;
    font-size: 0.88rem;
    color: #2A5A4A;
    line-height: 1.7;
    margin-top: 2rem;
  }

  .mentor-card {
    border: 1px solid #C8E8DA;
    padding: 2.5rem;
    background: #F5FFF9;
    height: fit-content;
  }

  .mentor-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.1rem;
    color: #1E6B50;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand);
  }

  .mentor-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: #5A9A80;
  }

  .mentor-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #D8F0E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: var(--sand);
    border: 2px dashed var(--sand);
  }

  .mentor-placeholder p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #5A9A80;
  }

  /* ─── MISSION ─── */
  #mission { background: #F0FAF5; }

  .mission-banner {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, #1E6B50, #3A8A6E);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
  }

  .mission-banner::before, .mission-banner::after {
    content: '✦';
    position: absolute;
    font-size: 5rem;
    color: rgba(42,122,94,0.08);
  }

  .mission-banner::before { top: -1rem; left: 2rem; }
  .mission-banner::after { bottom: -1rem; right: 2rem; }

  .mission-banner h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 1rem;
  }

  .mission-banner p {
    font-size: 0.95rem;
    color: rgba(237, 228, 211, 0.65);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ─── SUPPORT ─── */
  #support { background: #FFFFFF; }

  .support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .support-card {
    border: 1px solid #C8E8DA;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    background: #FAFFFE;
  }

  .support-card:hover {
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42,122,94,0.12);
  }

  .support-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
  }

  .support-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.1rem;
    color: #1E6B50;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }

  .support-card p {
    font-size: 0.88rem;
    color: #2A5A4A;
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  /* ─── CONTACT ─── */
  #contact {
    background: linear-gradient(135deg, #1E6B50, #3A8A6E);
    padding: 5rem 0;
    text-align: center;
  }

  #contact .section-label { justify-content: center; }
  #contact .section-label::before { display: none; }
  #contact h2 { color: var(--cream); text-align: center; }

  .contact-email {
    display: inline-block;
    margin: 2rem auto;
    padding: 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--gold-light);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    transition: all 0.3s;
  }

  .contact-email:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255,255,255,0.7);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #0E3D2A;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 0.95rem;
    color: rgba(237, 228, 211, 0.5);
  }

  .footer-logo span {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: rgba(196, 163, 90, 0.4);
    margin-top: 3px;
  }

  .footer-copy {
    font-size: 0.75rem;
    color: rgba(237, 228, 211, 0.3);
    letter-spacing: 0.05em;
  }

  /* ─── ANIMATIONS ─── */
  .fade-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.animate {
    opacity: 0;
    transform: translateY(20px);
  }

  .fade-in.animate.visible {
    opacity: 1;
    transform: none;
  }

  /* ─── MOBILE NAV ─── */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: all 0.3s;
  }

  /* ═══════════════════════════════════════════════════════
   RESPONSIVE — iPad (≤1024px) · Mobile (≤600px)
   ═══════════════════════════════════════════════════════ */

  /* ── Tablet: iPad / 768–1024px ── */
  @media (max-width: 1024px) {
    nav { padding: 1.1rem 2.5rem; }

    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: 280px; }
    .hero-content { padding: 5rem 3rem 4rem; }
    h1 { font-size: 3rem; }

    .section-inner { padding: 0 2.5rem; }
    section { padding: 5rem 0; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .direction-grid { grid-template-columns: 1fr; gap: 3rem; }
    .beliefs-grid { grid-template-columns: 1fr 1fr; }
    .beliefs-grid .belief-card[style*="span 2"] { grid-column: span 2; }
    .events-layout { grid-template-columns: 1fr; gap: 2rem; }
    .support-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }

    /* inline grids inside sections */
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
    [style*="grid-template-columns:repeat(3,1fr)"],
    [style*="grid-template-columns: repeat(3,1fr)"] {
      grid-template-columns: 1fr 1fr !important;
    }
    [style*="grid-template-columns:1fr auto"],
    [style*="grid-template-columns: 1fr auto"] {
      grid-template-columns: 1fr !important;
    }

    .divider { padding: 3rem 2.5rem; }
    footer { flex-direction: column; gap: 1.2rem; text-align: center; }
  }

  /* ── Mobile: ≤600px ── */
  @media (max-width: 600px) {
    nav { padding: 1rem 1.2rem; }
    .menu-toggle { display: flex; }
    .nav-links {
      display: none;
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: #FFFFFF;
      flex-direction: column;
      padding: 1.5rem 1.2rem;
      gap: 1.2rem;
      border-bottom: 1px solid var(--sand);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; }

    /* Logo size on mobile */
    .nav-logo img { height: 44px !important; }

    /* Hero */
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: 220px; }
    .olive-art { width: 200px; height: 200px; }
    .hero-corner-ornament { display: none; }
    .hero-content { padding: 4rem 1.5rem 3rem; }
    h1 { font-size: 2.2rem; line-height: 1.2; }
    .hero-sub { font-size: 0.85rem; letter-spacing: 0.15em; }
    .hero-desc { font-size: 0.92rem; }
    .hero-actions { flex-direction: column; gap: 0.8rem; }
    .hero-actions a { text-align: center; }
    .hero-eyebrow { font-size: 0.6rem; }

    /* Section spacing */
    section { padding: 3.5rem 0; }
    .section-inner { padding: 0 1.2rem; }
    h2 { font-size: 1.75rem; }
    .divider { padding: 2rem 1.2rem; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-vision { padding: 2rem; }
    .mission-pillars .pillar { padding: 0.9rem 1.2rem; font-size: 0.88rem; }

    /* Beliefs */
    .beliefs-grid { grid-template-columns: 1fr; }
    .beliefs-grid .belief-card[style*="span 2"] { grid-column: span 1 !important; }
    .belief-card { padding: 1.8rem; }
    .belief-num { font-size: 1.6rem; }

    /* Events */
    .events-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .event-card { padding: 1.8rem; }
    .event-meta { flex-direction: column; gap: 0.4rem; }
    .event-sidebar { padding: 1.8rem; }

    /* Formation tabs */
    .resources-tabs {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      flex-wrap: nowrap;
      white-space: nowrap;
      padding-bottom: 2px;
    }
    .tab-btn { padding: 0.8rem 1.2rem; font-size: 0.8rem; white-space: nowrap; }
    .step-item { grid-template-columns: 48px 1fr; gap: 0.8rem; padding: 1.5rem 0; }
    .step-num { font-size: 1.4rem; }

    /* Direction */
    .direction-grid { grid-template-columns: 1fr; gap: 2rem; }
    .direction-step { padding: 1rem; }
    .mentor-card { padding: 1.8rem; }

    /* Mission & Support — inline grids all go single column on mobile */
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:repeat(3,1fr)"],
    [style*="grid-template-columns: repeat(3,1fr)"],
    [style*="grid-template-columns:1fr auto"],
    [style*="grid-template-columns: 1fr auto"],
    [style*="grid-template-columns:repeat(3, 1fr)"] {
      grid-template-columns: 1fr !important;
    }
    .support-grid { grid-template-columns: 1fr; gap: 1rem; }
    .support-card { padding: 2rem; }

    /* Contact */
    #contact { padding: 3.5rem 0; }
    .contact-email { font-size: 0.85rem; padding: 0.9rem 1.5rem; letter-spacing: 0.05em; }

    /* Footer */
    footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
    .footer-logo { font-size: 0.85rem; }
    .footer-copy { font-size: 0.7rem; }

    /* Buttons */
    .btn-primary, .btn-outline { font-size: 0.82rem; padding: 0.85rem 1.8rem; }
  }

  /* ── Between 600px and 900px (large phone / small tablet) ── */
  @media (min-width: 601px) and (max-width: 900px) {
    .menu-toggle { display: flex; }
    .nav-links {
      display: none;
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: #FFFFFF;
      flex-direction: column;
      padding: 2rem;
      gap: 1.5rem;
      border-bottom: 1px solid var(--sand);
      z-index: 99;
    }
    .nav-links.open { display: flex; }

    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: 260px; }
    .hero-content { padding: 5rem 2.5rem 3.5rem; }
    h1 { font-size: 2.6rem; }
    .section-inner { padding: 0 2rem; }

    .about-grid, .direction-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .beliefs-grid { grid-template-columns: 1fr 1fr; }
    .events-layout { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
    [style*="grid-template-columns:repeat(3,1fr)"],
    [style*="grid-template-columns: repeat(3,1fr)"] {
      grid-template-columns: 1fr 1fr !important;
    }
    [style*="grid-template-columns:1fr auto"],
    [style*="grid-template-columns: 1fr auto"] {
      grid-template-columns: 1fr !important;
    }

    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }
  /* Fixed nav clearance — nav is ~160px tall with large logo */
  #about .section-inner,
  #events .section-inner,
  #formation .section-inner,
  #direction .section-inner,
  #mission .section-inner,
  #support .section-inner,
  #contact .section-inner {
    padding-top: 2rem;
  }
  section:not(#hero) {
    padding-top: 8rem;
  }
