
  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --deep: #0D0B10;
    --surface: #13111A;
    --surface2: #1C1925;
    --purple: #6B3FA0;
    --purple-light: #8B5CC8;
    --text: #F0EDE8;
    --text-muted: #A89E90;
    --border: rgba(255,255,255,0.08);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--deep);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--deep); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

  /* ── NAVBAR ── */
  .navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
  }
  .navbar.scrolled {
    background: rgba(13,11,16,0.92);
    backdrop-filter: blur(20px);
    border-color: var(--border);
  }
  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-brand span { color: var(--gold); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a.active { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--deep) !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: var(--transition) !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
  }

  @media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
      position: fixed;
      inset: 0;
      background: var(--deep);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      z-index: 999;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1.2rem; }
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(107,63,160,0.35) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,168,76,0.15) 0%, transparent 60%),
                linear-gradient(160deg, #0D0B10 0%, #130E1E 50%, #0D0B10 100%);
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='0.8' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  }

  .hero-content { position: relative; z-index: 2; max-width: 820px; }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    padding: 8px 20px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 40px;
    background: rgba(201,168,76,0.06);
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
  }

  .hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
  .btn-gold {
    background: var(--gold);
    color: var(--deep);
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.3); }
  .btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 14px 36px;
    border-radius: 40px;
    border: 1px solid var(--border);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

  .play-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
  }

  /* Schedule Card */
  .schedule-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    backdrop-filter: blur(10px);
  }
  .schedule-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.75rem;
  }
  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .schedule-item {
    background: var(--surface);
    padding: 1.25rem 1rem;
    text-align: left;
  }
  .schedule-item:first-child { border-radius: 12px 0 0 12px; }
  .schedule-item:last-child { border-radius: 0 12px 12px 0; }
  .schedule-day {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.4rem;
  }
  .schedule-name {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 0.2rem;
  }
  .schedule-time {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* ── SECTION UTILITY ── */
  section { padding: 100px 5%; }
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
  }
  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }
  .section-heading em { font-style: italic; color: var(--gold); }
  .section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    font-weight: 300;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ── ABOUT ── */
  .about-section { background: var(--surface); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .about-image-wrap {
    position: relative;
  }
  .about-image-wrap img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  .about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    z-index: -1;
  }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 2.5rem;
  }
  .about-stat {
    background: var(--surface2);
    padding: 1.25rem 1.5rem;
  }
  .about-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .about-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .about-text p {
    color: var(--text-muted);
    font-size: 0.975rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }
  .btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 40px;
    color: var(--gold);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
  }
  .btn-outline:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
  }

  /* ── PRAY SECTION ── */
  .pray-section { background: var(--deep); }
  .pray-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pray-section p {
    color: var(--text-muted);
    font-size: 0.975rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  .pray-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .pray-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.925rem;
    color: var(--text-muted);
    font-weight: 300;
  }
  .pray-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
  }
  .pray-quote {
    border-left: 2px solid var(--gold);
    padding: 1.25rem 1.5rem;
    background: rgba(201,168,76,0.04);
    border-radius: 0 12px 12px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
  }
  .pray-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-style: normal;
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.05em;
  }
  .pray-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 24px;
  }

  /* ── BELIEFS ── */
  .beliefs-section { background: var(--surface); }
  .beliefs-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .beliefs-header .section-sub { margin: 0 auto; }
  .beliefs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
  }
  .belief-card {
    background: var(--surface2);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
  }
  .belief-card:hover { background: rgba(107,63,160,0.12); }
  .belief-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .belief-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
  }
  .belief-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── MINISTRIES ── */
  .ministries-section { background: var(--deep); }
  .ministries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .ministry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .ministry-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
  }
  .ministry-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.2); }
  .ministry-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .ministry-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
  }
  .ministry-card:hover .ministry-card-img img { transform: scale(1.05); }
  .ministry-card-body { padding: 1.5rem; }
  .ministry-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.6rem;
  }
  .ministry-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .ministry-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
    margin-top: 0.9rem;
    margin-bottom: 1rem;
  }
  .ministry-meta span { color: var(--gold); font-weight: 500; }
  .learn-link {
    font-size: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: gap 0.25s;
  }
  .learn-link:hover { gap: 10px; }

  .section-footer { text-align: center; margin-top: 3rem; }

  /* ── SERMONS ── */
  .sermons-section { background: var(--surface); }
  .sermons-header { text-align: center; margin-bottom: 3.5rem; }
  .sermon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .video-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface2);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
  }
  .video-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,0.2); }
  .video-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: brightness(0.75);
  }
  .video-card:hover .video-thumb img { transform: scale(1.06); }
  .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,11,16,0.4);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .video-card:hover .video-overlay { opacity: 1; }
  .play-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep);
    font-size: 1.1rem;
    transform: scale(0.85);
    transition: transform 0.3s;
  }
  .video-card:hover .play-btn { transform: scale(1); }
  .video-body { padding: 1.1rem 1.25rem; }
  .video-tag {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.4rem;
    display: block;
  }
  .video-body h3 {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.3rem;
  }
  .video-body time {
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  /* ── CTA ── */
  .cta-section {
    background: linear-gradient(135deg, var(--purple) 0%, #3D1A6E 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    position: relative;
  }
  .cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    position: relative;
  }
  .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

  /* ── FOOTER ── */
  .footer { background: var(--deep); border-top: 1px solid var(--border); padding: 80px 5% 40px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 3rem;
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
  }
  .footer-brand-name span { color: var(--gold); }
  .footer-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
  .footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.25s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-bottom span { color: var(--gold); }
   .footer-divider { border: none; border-top: 1px solid var(--border); max-width: 1200px; margin: 0 auto 2rem; }
  /* ── VIDEO MODAL ── */
  .v-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .v-modal.open { opacity: 1; pointer-events: all; }
  .v-modal-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.3s;
  }
  .v-modal.open .v-modal-inner { transform: scale(1); }
  .v-modal iframe { display: block; width: 100%; height: 500px; }
  .v-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
  }
  .v-close:hover { color: #fff; }

  /* ── FADE IN ANIMATION ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   YESU RAFIKI — RESPONSIVE CSS
   Link this after your main stylesheet:
   <link rel="stylesheet" href="responsive.css">
   ============================================================ */


/* ── 1400px — Wide screens: constrain padding ── */
@media (max-width: 1400px) {
  .hero { padding-left: 6%; padding-right: 6%; }
  .footer-grid { gap: 40px; }
}


/* ── 1200px — Large desktops: tighten grid gaps ── */
@media (max-width: 1200px) {
  .about-grid { gap: 50px; }
  .pray-grid { gap: 50px; }

  .ministry-grid { gap: 16px; }
  .sermon-grid { gap: 16px; }

  .footer-grid { gap: 32px; }
}


/* ── 1100px — Small desktops: reflow multi-column grids ── */
@media (max-width: 1100px) {
  /* Sermons: 4 → 2 columns */
  .sermon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Beliefs: 4 → 2 columns */
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer: 4 → 2 columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Hero heading slightly smaller */
  .hero h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }

  /* Section headings scale down */
  .section-heading { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
}


/* ── 960px — Tablets landscape: nav hides, single-col layouts begin ── */
@media (max-width: 960px) {
  /* NAVBAR: hide links, show hamburger */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--deep, #0D0B10);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    list-style: none;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }

  .nav-links .nav-cta {
    padding: 12px 36px;
    font-size: 1rem;
  }

  /* ABOUT: stack image above text */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Limit image height on tablet */
  .about-image-wrap img {
    aspect-ratio: 16/9;
  }

  /* About accent decoration: reposition */
  .about-image-accent {
    top: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
  }

  /* About stats: keep 2×2 */
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* PRAY: stack image below text */
  .pray-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Pray image: cap height */
  .pray-image {
    aspect-ratio: 16/9;
    max-height: 340px;
    width: 100%;
    object-fit: cover;
  }

  /* SCHEDULE CARD: single column rows */
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .schedule-item:first-child  { border-radius: 12px 12px 0 0; }
  .schedule-item:nth-child(2) { border-radius: 0; }
  .schedule-item:last-child   { border-radius: 0 0 12px 12px; }

  /* MINISTRIES: 2 columns */
  .ministry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* MINISTRIES header: wrap */
  .ministries-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  /* CTA buttons: allow wrap */
  .cta-btns { flex-wrap: wrap; gap: 12px; }
}


/* ── 768px — Tablets portrait ── */
@media (max-width: 768px) {
  /* Sections: reduce vertical padding */
  section { padding-top: 72px; padding-bottom: 72px; }

  /* HERO */
  .hero { min-height: 100svh; padding: 110px 5% 60px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.6rem); }
  .hero p   { font-size: 0.975rem; }

  .hero-eyebrow { font-size: 0.68rem; padding: 7px 16px; }

  .hero-btns {
    gap: 12px;
    margin-bottom: 3rem;
  }

  .btn-gold,
  .btn-ghost {
    padding: 13px 28px;
    font-size: 0.875rem;
  }

  /* Schedule card: tighten padding */
  .schedule-card { padding: 1.5rem 1.25rem; }

  /* ABOUT text */
  .about-text .section-heading { font-size: 2rem; }

  /* About stats: smaller numbers */
  .about-stat .num { font-size: 1.8rem; }

  /* BELIEFS: 2 columns still fine, reduce padding */
  .belief-card { padding: 2rem 1.5rem; }
  .belief-num  { font-size: 2.8rem; }

  /* MINISTRY cards: tighten */
  .ministry-card-body { padding: 1.25rem; }

  /* SERMONS: 2 columns */
  .sermon-grid { grid-template-columns: repeat(2, 1fr); }

  /* VIDEO MODAL: shorter iframe */
  .v-modal iframe { height: 300px; }

  /* CTA section */
  .cta-section { padding: 72px 5%; }
  .cta-section h2 { font-size: clamp(2rem, 6vw, 3rem); }

  /* FOOTER: tighten */
  .footer { padding: 60px 5% 32px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}


/* ── 640px — Large phones ── */
@media (max-width: 640px) {
  /* Sections: compact */
  section { padding-top: 60px; padding-bottom: 60px; }

  /* HERO */
  .hero { padding: 100px 5% 50px; text-align: left; }
  .hero-content { text-align: left; }
  .hero-eyebrow { margin-left: 0; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero p   { font-size: 0.9rem; max-width: 100%; }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2.5rem;
  }

  .btn-gold,
  .btn-ghost { width: 100%; justify-content: center; }

  /* BELIEFS: 1 column */
  .beliefs-grid { grid-template-columns: 1fr; }

  /* MINISTRIES: 1 column */
  .ministry-grid { grid-template-columns: 1fr; }

  /* SERMONS: 1 column */
  .sermon-grid { grid-template-columns: 1fr; }

  /* FOOTER: 1 column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer brand name smaller */
  .footer-brand-name { font-size: 1.5rem; }

  /* About stats: 2 columns stays, reduce padding */
  .about-stat { padding: 1rem 1.25rem; }

  /* Section labels/headings: full left */
  .beliefs-header  { text-align: left; }
  .sermons-header  { text-align: left; }
  .sermons-header .section-sub { margin: 0; }

  /* Video modal */
  .v-modal iframe { height: 220px; }
  .v-close { top: -36px; font-size: 1.5rem; }

  /* CTA */
  .cta-section { text-align: left; }
  .cta-btns { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
  .cta-btns .btn-gold,
  .cta-btns .btn-ghost { width: auto; }
}


/* ── 480px — Small phones ── */
@media (max-width: 480px) {
  /* Navbar height: slightly shorter */
  .navbar { height: 64px; }
  body { padding-top: 64px; }

  /* Hero: tightest settings */
  .hero h1 { font-size: clamp(1.85rem, 10vw, 2.6rem); }

  /* Schedule: make items feel more compact */
  .schedule-item { padding: 1rem 0.9rem; }
  .schedule-name { font-size: 0.85rem; }

  /* Belief cards: reduce number size */
  .belief-num  { font-size: 2.2rem; }
  .belief-card { padding: 1.5rem 1.25rem; }

  /* About stats: reduce font */
  .about-stat .num   { font-size: 1.6rem; }
  .about-stat .label { font-size: 0.72rem; }

  /* Pray quote: tighter */
  .pray-quote { padding: 1rem 1.1rem; font-size: 0.95rem; }

  /* Ministry meta: stack vertically */
  .ministry-meta { flex-direction: column; gap: 0.4rem; }

  /* Video body: tighter */
  .video-body { padding: 0.9rem 1rem; }
  .video-body h3 { font-size: 0.85rem; }

  /* Section heading smallest */
  .section-heading { font-size: 1.75rem; }

  /* CTA section */
  .cta-section h2 { font-size: 1.9rem; }
  .cta-section p  { font-size: 0.9rem; }

  /* Footer social icons: tighter */
  .footer-social { gap: 8px; }
  .social-btn { width: 32px; height: 32px; font-size: 0.8rem; }

  /* Footer bottom text */
  .footer-bottom { font-size: 0.75rem; }
}


/* ── 380px — Very small phones (e.g. iPhone SE) ── */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.75rem; line-height: 1.15; }

  .btn-gold,
  .btn-ghost { padding: 12px 22px; font-size: 0.85rem; }

  .schedule-card { padding: 1.1rem 1rem; border-radius: 16px; }
  .schedule-day  { font-size: 0.62rem; }

  .about-stats   { grid-template-columns: 1fr 1fr; }

  .section-label { font-size: 0.65rem; }

  .cta-section   { padding: 50px 5%; }
}


/* ── UTILITY: reduce motion for accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}