 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:   #0f1f3d;
      --navy2:  #162847;
      --gold:   #c8973a;
      --gold-lt:#e8bf70;
      --cream:  #f7f2ea;
      --cream2: #ede6d6;
      --white:  #ffffff;
      --text:   #2a2a2a;
      --muted:  #6b6b6b;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(15, 31, 61, 0.96);
      backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6vw;
      height: 68px;
      border-bottom: 1px solid rgba(200, 151, 58, 0.25);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 12px; text-decoration: none;
    }
    .nav-logo-mark {
      width: 38px; height: 38px;
    }
    .nav-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.78rem; font-weight: 400; letter-spacing: 0.22em;
      color: var(--cream); text-transform: uppercase; line-height: 1.3;
    }
    .nav-logo-text strong {
      display: block; font-size: 0.65rem; letter-spacing: 0.35em;
      color: var(--gold); font-weight: 400;
    }

    nav ul {
      list-style: none; display: flex; gap: 36px;
    }
    nav ul li a {
      font-family: 'Lato', sans-serif; font-size: 0.72rem;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(247, 242, 234, 0.75); text-decoration: none;
      transition: color 0.25s;
    }
    nav ul li a:hover { color: var(--gold-lt); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 55%, #1e3a60 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      padding: 100px 6vw 80px;
      position: relative; overflow: hidden;
    }

    /* decorative cross watermark */
    .hero::before {
      content: '';
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 600px;
      background: radial-gradient(ellipse at center, rgba(200,151,58,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200,151,58,0.04) 60px, rgba(200,151,58,0.04) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(200,151,58,0.04) 60px, rgba(200,151,58,0.04) 61px);
      pointer-events: none;
    }

    .hero-logo {
      width: 130px; height: 130px;
      margin-bottom: 32px;
      animation: fadeUp 1s ease both;
    }
    .hero-eyebrow {
      font-family: 'Lato', sans-serif; font-size: 0.7rem;
      letter-spacing: 0.38em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
      animation: fadeUp 1s 0.15s ease both;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 300; line-height: 1.12;
      color: var(--white); margin-bottom: 24px;
      animation: fadeUp 1s 0.25s ease both;
    }
    .hero h1 em { font-style: italic; color: var(--gold-lt); }

    .hero-sub {
      font-size: 1.05rem; font-weight: 300; line-height: 1.8;
      color: rgba(247, 242, 234, 0.72); max-width: 560px;
      margin: 0 auto 44px;
      animation: fadeUp 1s 0.35s ease both;
    }
    .hero-cta {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
      animation: fadeUp 1s 0.45s ease both;
    }
    .btn-gold {
      background: var(--gold); color: var(--navy);
      font-family: 'Lato', sans-serif; font-size: 0.75rem;
      font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
      padding: 14px 34px; border: none; cursor: pointer; text-decoration: none;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: var(--cream);
      font-family: 'Lato', sans-serif; font-size: 0.75rem;
      font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
      padding: 13px 34px; border: 1px solid rgba(247,242,234,0.35); cursor: pointer; text-decoration: none;
      transition: border-color 0.25s, transform 0.2s;
    }
    .btn-outline:hover { border-color: var(--gold-lt); transform: translateY(-2px); }

    /* ── DIVIDER ── */
    .gold-rule {
      display: flex; align-items: center; gap: 18px;
      max-width: 220px; margin: 0 auto 52px;
    }
    .gold-rule span { flex: 1; height: 1px; background: var(--gold); opacity: 0.4; }
    .gold-rule svg { opacity: 0.7; }

    /* ── SECTIONS ── */
    section { padding: 96px 6vw; }

    .section-label {
      font-size: 0.68rem; letter-spacing: 0.38em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px; text-align: center;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400; line-height: 1.18; text-align: center;
      color: var(--navy); margin-bottom: 18px;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-intro {
      font-size: 1rem; font-weight: 300; line-height: 1.9;
      color: var(--muted); max-width: 620px; margin: 0 auto 56px; text-align: center;
    }

    /* ── MISSION ── */
    #mission { background: var(--cream); }

    .mission-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; max-width: 900px; margin: 0 auto;
    }
    .mission-card {
      background: var(--white);
      padding: 44px 36px;
      border-left: 3px solid var(--gold);
      box-shadow: 0 2px 24px rgba(15,31,61,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .mission-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(15,31,61,0.1); }
    .mission-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem; font-weight: 600; color: var(--navy); margin-bottom: 14px;
    }
    .mission-card p { font-size: 0.92rem; line-height: 1.8; color: var(--muted); }

    /* ── PROGRAMS ── */
    #programs { background: var(--navy); }
    #programs .section-title { color: var(--white); }
    #programs .section-intro { color: rgba(247,242,234,0.6); }

    .programs-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 28px; max-width: 1000px; margin: 0 auto;
    }
    .prog-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(200,151,58,0.2);
      padding: 40px 30px;
      text-align: center;
      transition: background 0.3s, transform 0.3s;
    }
    .prog-card:hover { background: rgba(200,151,58,0.1); transform: translateY(-4px); }
    .prog-icon {
      width: 52px; height: 52px; margin: 0 auto 20px;
    }
    .prog-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 600; color: var(--gold-lt); margin-bottom: 12px;
    }
    .prog-card p { font-size: 0.88rem; line-height: 1.8; color: rgba(247,242,234,0.6); }

    /* ── SCRIPTURE BANNER ── */
    .scripture {
      background: var(--gold);
      padding: 72px 6vw;
      text-align: center;
    }
    .scripture blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 2.5vw, 2rem);
      font-weight: 400; font-style: italic;
      color: var(--navy); line-height: 1.6;
      max-width: 800px; margin: 0 auto 16px;
    }
    .scripture cite {
      display: block; font-style: normal; font-size: 0.78rem;
      letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy2);
      opacity: 0.7;
    }

    /* ── CONNECT ── */
    #connect { background: var(--cream2); text-align: center; }

    .connect-form {
      max-width: 520px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 16px;
    }
    .form-row { display: flex; gap: 16px; }
    .form-row input { flex: 1; }
    .connect-form input,
    .connect-form textarea {
      width: 100%; padding: 14px 18px;
      border: 1px solid rgba(15,31,61,0.18);
      background: var(--white);
      font-family: 'Lato', sans-serif; font-size: 0.88rem; color: var(--text);
      outline: none; transition: border-color 0.25s;
    }
    .connect-form input:focus,
    .connect-form textarea:focus { border-color: var(--gold); }
    .connect-form textarea { resize: vertical; height: 120px; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy); padding: 52px 6vw 36px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 24px;
    }
    .footer-logo { display: flex; align-items: center; gap: 12px; }
    .footer-logo svg { width: 42px; height: 42px; }
    .footer-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; color: var(--cream); letter-spacing: 0.08em;
    }
    .footer-name small { display: block; font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
    footer p { font-size: 0.75rem; color: rgba(247,242,234,0.4); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .mission-grid, .programs-grid { grid-template-columns: 1fr; }
      .form-row { flex-direction: column; }
      nav ul { display: none; }
    }