  :root {
    --royal-purple: #4B0082;
    --mid-purple: #6A0DAD;
    --light-purple: #9B59B6;
    /* Lighter tints for readability on dark purple backgrounds */
    --lavender: #C9B8EC;
    --silver: #D6D2E4;
    --silver-light: #EBE8F4;
    --silver-bright: #F7F5FC;
    --text-on-dark: rgba(235, 232, 248, 0.96);
    --text-on-dark-muted: rgba(220, 216, 235, 0.92);
    --gold-accent: #D4AF37;
    --white: #FFFFFF;
    /* Deep purples (lighter than before — less “almost black”) */
    --dark: #261838;
    --dark-deep: #1a1028;
    --dark-mid: #1e1532;
    --nav-bg: #2a1f3d;
    --footer-bg: #140f1c;
    --text-dark: #2C1654;
  }

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

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
  }

  /* ── PARTICLES BACKGROUND ── */
  #particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179,157,219,0.4), transparent);
    animation: float linear infinite;
  }
  @keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 36px; left: 0; right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    border-bottom: 2px solid rgba(192,192,192,0.35);
    padding: 0 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.7);
  }
  .nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    flex-shrink: 0;
  }
  .nav-logo-icon {
    width: 70px;
    height: 47px;
  }
  .nav-logo img.nav-logo-icon {
    width: auto;
    max-width: 120px;
    max-height: 47px;
    object-fit: contain;
    border-radius: 0;
  }
  .nav-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #ffffff;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #f0e9ff;
    padding: 0.5rem 0.65rem;
    border-radius: 4px;
    transition: all 0.25s;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .nav-links a:hover {
    color: #ffffff;
    background: rgba(192,192,192,0.18);
  }
  .nav-cta {
    background: linear-gradient(135deg, #7B2FBE, #9B59B6) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    border-radius: 4px !important;
    padding: 0.55rem 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
  }
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(155,89,182,0.7) !important;
    background: linear-gradient(135deg, #9B59B6, #B39DDB) !important;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--silver);
    transition: all 0.3s;
  }

  /* ── HERO ── */
  #home {
    position: relative;
    min-height: 100vh;
    padding-top: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
    z-index: 1;
  }

  .ghm-front {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 80% at 15% 50%, rgba(107,13,173,0.45) 0%, transparent 65%),
      radial-gradient(ellipse 60% 60% at 85% 30%, rgba(75,0,130,0.35) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 50% 90%, rgba(155,89,182,0.2) 0%, transparent 60%),
      linear-gradient(135deg, var(--dark) 0%, var(--dark-deep) 60%, var(--dark-mid) 100%);
  }
  .hero-shimmer {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(192,192,192,0.018) 80px,
      rgba(192,192,192,0.018) 81px
    );
  }

  /* Full-width hero layout */
  .hero-outer {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    gap: 0;
    align-items: center;
    min-height: calc(100vh - 116px);
  }

  /* LEFT COLUMN — logo + decorative */
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem 3rem 0;
    border-right: 1px solid rgba(192,192,192,0.2);
    height: 100%;
    min-height: 500px;
    min-width: 0;
    animation: fadeLeft 1s ease forwards;
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .hero-logo-svg {
    width: min(432px, 100%);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(155,89,182,0.6));
    animation: logoGlow 3s ease-in-out infinite alternate;
    margin-bottom: 1.5rem;
    object-fit: contain;
  }
  @keyframes logoGlow {
    from { filter: drop-shadow(0 0 20px rgba(155,89,182,0.4)); }
    to { filter: drop-shadow(0 0 50px rgba(155,89,182,0.9)); }
  }
  .hero-location-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--silver-light);
    text-transform: uppercase;
    text-align: center;
    opacity: 0.95;
  }
  .hero-silver-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
    margin: 1rem auto;
  }
  .hero-established {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: #dfd8f0;
    text-align: center;
    opacity: 0.95;
  }

  /* RIGHT COLUMN — main content */
  .hero-right {
    padding: 3rem 0 3rem 4rem;
    min-width: 0;
    max-width: 100%;
    animation: fadeRight 1s ease 0.2s both;
  }
  @keyframes fadeRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    color: var(--lavender);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--lavender), transparent);
  }

  .hero-title {
    font-family: 'Cinzel Decorative', serif;
    /* Min must fit two lines on ~320px: "Genuine Hope" / "Ministries, Inc." */
    font-size: clamp(1.15rem, 4.2vw, 5.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    text-shadow: 0 0 80px rgba(155,89,182,0.5), 0 4px 30px rgba(0,0,0,0.5);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    max-width: 100%;
  }
  .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, var(--silver), transparent);
  }
  .hero-divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--lavender);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .hero-motto {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
    font-weight: 500;
    color: #e8e4f8;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  .hero-verse {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: rgba(228, 224, 248, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-style: italic;
    max-width: 620px;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  /* Stats row across bottom of hero-right */
  .hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(192,192,192,0.15);
    flex-wrap: wrap;
  }
  .hero-stat h4 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6rem;
    color: var(--lavender);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .hero-stat p {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--silver-light);
    text-transform: uppercase;
    opacity: 0.95;
  }

  /* Tablet / mobile hero — single column before fixed 480px column causes overflow */
  @media (max-width: 1100px) {
    .hero-outer {
      grid-template-columns: 1fr;
      padding: 2rem clamp(1rem, 4vw, 1.5rem);
      text-align: center;
    }
    .hero-left {
      border-right: none;
      border-bottom: 1px solid rgba(192,192,192,0.2);
      padding: 2rem 1rem;
      min-height: auto;
    }
    .hero-right {
      padding: 2rem 0;
    }
    .hero-eyebrow {
      justify-content: center;
      letter-spacing: 0.2em;
    }
    .hero-eyebrow::after { display: none; }
    .hero-divider { justify-content: center; }
    .hero-stats { justify-content: center; gap: 1.25rem; }
    .hero-buttons { justify-content: center; }
    .hero-logo-svg {
      width: min(220px, 72vw);
      max-width: 100%;
      height: auto;
    }
  }
  .btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
    color: var(--white);
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(107,13,173,0.4);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107,13,173,0.6);
    background: linear-gradient(135deg, var(--mid-purple), var(--light-purple));
  }
  .btn-secondary {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--silver);
    border: 1px solid rgba(192,192,192,0.4);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-secondary:hover {
    background: rgba(192,192,192,0.1);
    color: var(--white);
    border-color: var(--silver);
  }

  /* ── SERVICE TIMES STRIP ── */
  .service-strip {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(75,0,130,0.9), rgba(107,13,173,0.9));
    border-top: 1px solid rgba(192,192,192,0.2);
    border-bottom: 1px solid rgba(192,192,192,0.2);
    padding: 2rem;
    backdrop-filter: blur(10px);
  }
  .service-strip-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 1.5rem;
    text-align: center;
    min-width: 0;
  }
  .service-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--silver);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }
  .service-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    overflow-wrap: anywhere;
  }
  .service-divider {
    width: 1px;
    background: rgba(192,192,192,0.3);
    display: none;
  }

  section { scroll-margin-top: 116px; }

  /* ── SECTIONS ── */
  section {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
  }
  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--lavender);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .section-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-purple), var(--silver));
    margin-bottom: 2rem;
  }
  .section-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-on-dark);
    max-width: 700px;
  }

  /* ── ABOUT ── */
  #about {
    background: linear-gradient(180deg, #32304c 0%, #262438 100%);
  }
  #about .section-label { color: #c8aaee; }
  #about .section-title { color: #f5f0ff; }
  #about .section-text { color: rgba(225,220,240,0.9); }
  #about .about-card { background: rgba(255,255,255,0.07); border-color: rgba(192,192,192,0.22); }
  #about .about-card p { color: rgba(230,225,245,0.92); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }
  .about-card {
    background: rgba(107,13,173,0.15);
    border: 1px solid rgba(192,192,192,0.15);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.4s;
  }
  .about-card:hover {
    background: rgba(107,13,173,0.25);
    border-color: rgba(192,192,192,0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107,13,173,0.3);
  }
  .about-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lavender);
    margin-bottom: 0.75rem;
  }
  .about-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(220,220,220,0.9);
  }
  .about-card.highlight {
    background: linear-gradient(135deg, rgba(75,0,130,0.5), rgba(107,13,173,0.3));
    border-color: rgba(192,192,192,0.3);
  }
  .about-card.highlight p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--silver-light);
  }

  /* ── PASTORS ── */
  #pastors { background: linear-gradient(160deg, #e8e4f2 0%, #d5cfe8 100%); color: #1a0030; }
  .pastors-grid {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }
  .pastor-card {
    background: linear-gradient(135deg, rgba(75,0,130,0.4), rgba(107,13,173,0.2));
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    transition: all 0.4s;
  }
  .pastor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(107,13,173,0.4);
    border-color: rgba(192,192,192,0.4);
  }
  .pastor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(192,192,192,0.3);
    font-size: 3rem;
    box-shadow: 0 0 30px rgba(107,13,173,0.5);
  }
  .pastor-card h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .pastor-card .pastor-title {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--lavender);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .pastor-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(210, 208, 220, 0.95);
  }

  /* ── SERVICES / SCHEDULE ── */
  #services { background: linear-gradient(180deg, var(--dark) 0%, var(--dark-deep) 100%); }
  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .schedule-card {
    background: rgba(107,13,173,0.12);
    border: 1px solid rgba(192,192,192,0.15);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
  }
  .schedule-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--mid-purple), var(--lavender));
  }
  .schedule-card:hover {
    background: rgba(107,13,173,0.25);
    border-color: rgba(192,192,192,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107,13,173,0.3);
  }
  .schedule-time {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--lavender);
    margin-bottom: 0.25rem;
  }
  .schedule-day {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--silver);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }
  .schedule-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .schedule-desc {
    font-size: 0.95rem;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
  }

  /* ── MINISTRIES ── */
  #ministries { background: linear-gradient(160deg, #38304e 0%, #2a263c 100%); }
  .ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .ministry-card {
    background: rgba(107,13,173,0.12);
    border: 1px solid rgba(192,192,192,0.12);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }
  a.ministry-card:focus-visible {
    outline: 2px solid var(--lavender);
    outline-offset: 3px;
  }
  .ministry-card:hover {
    background: rgba(107,13,173,0.3);
    border-color: rgba(192,192,192,0.35);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107,13,173,0.35);
  }
  .ministry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: saturate(0) brightness(1.5);
  }
  .ministry-card:hover .ministry-icon { filter: none; }
  .ministry-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--silver-light);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
  }
  .ministry-card p {
    font-size: 0.95rem;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
  }

  /* Ministry detail (child pages) */
  .ministry-single .section-inner {
    max-width: 760px;
  }
  .ministry-back-wrap {
    margin-bottom: 1.25rem;
    text-align: left;
  }
  .ministry-back {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lavender);
    text-decoration: none;
    transition: color 0.2s;
  }
  .ministry-back:hover {
    color: var(--silver-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .ministry-single-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.75rem;
    display: block;
    filter: saturate(0) brightness(1.5);
  }
  .ministry-single-body .ministry-lead {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--lavender);
  }
  .ministry-single-body p {
    margin-bottom: 1rem;
  }

  /* ── PRAYER REQUEST ── */
  #prayer { background: linear-gradient(160deg, #e2ddef 0%, #ccc5e0 100%); color: #1a0030; }
  .prayer-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }
  .prayer-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(200,200,200,0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .prayer-scripture {
    background: rgba(107,13,173,0.2);
    border-left: 3px solid var(--mid-purple);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
  }
  .prayer-scripture p {
    font-style: italic;
    color: var(--lavender);
    margin: 0;
  }
  .prayer-scripture cite {
    font-style: normal;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: var(--silver);
    letter-spacing: 0.1em;
    display: block;
    margin-top: 0.5rem;
  }

  /* ── FORMS ── */
  .form-card {
    background: rgba(107,13,173,0.12);
    border: 1px solid rgba(192,192,192,0.15);
    border-radius: 12px;
    padding: 2.5rem;
  }
  .form-group {
    margin-bottom: 1.25rem;
  }
  .form-group label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--lavender);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: rgba(38, 24, 56, 0.85);
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--mid-purple);
    background: rgba(107,13,173,0.15);
    box-shadow: 0 0 0 3px rgba(107,13,173,0.2);
  }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-group select option { background: var(--dark); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .btn-form {
    width: 100%;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem;
    background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
    color: var(--white);
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }
  .btn-form:hover {
    background: linear-gradient(135deg, var(--mid-purple), var(--light-purple));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107,13,173,0.5);
  }
  .success-msg {
    display: none;
    background: rgba(107,13,173,0.3);
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
    color: var(--lavender);
    font-style: italic;
    font-size: 1.1rem;
  }

  /* ── GIVING ── */
  #giving { background: linear-gradient(160deg, var(--dark) 0%, var(--dark-deep) 100%); }
  .giving-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }
  .giving-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .tab-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--silver);
    border: 1px solid rgba(192,192,192,0.25);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .tab-btn.active,
  .tab-btn:hover {
    background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(107,13,173,0.4);
  }
  .tab-panel { display: none; }
  .tab-panel.active { display: block; }
  .giving-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .giving-amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .amount-btn {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem;
    background: rgba(107,13,173,0.15);
    border: 1px solid rgba(192,192,192,0.2);
    border-radius: 6px;
    color: var(--silver);
    cursor: pointer;
    transition: all 0.3s;
  }
  .amount-btn:hover,
  .amount-btn.selected {
    background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107,13,173,0.4);
  }
  .giving-sidebar h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--lavender);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
  }
  .giving-sidebar h3:first-child { margin-top: 0; }
  .giving-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(107,13,173,0.1);
    border: 1px solid rgba(192,192,192,0.12);
    border-radius: 8px;
    margin-bottom: 0.75rem;
  }
  .giving-method-icon { font-size: 1.5rem; }
  .giving-method-info strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--silver-light);
    margin-bottom: 0.2rem;
  }
  .giving-method-info span {
    font-size: 0.9rem;
    color: var(--text-on-dark-muted);
  }
  .scripture-giving {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(107,13,173,0.15);
    border-left: 3px solid var(--mid-purple);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--lavender);
    line-height: 1.7;
  }
  .scripture-giving cite {
    font-style: normal;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    color: var(--silver);
    display: block;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
  }

  /* ── EVENTS ── */
  #events { background: linear-gradient(160deg, #2d2a42 0%, #242238 100%); }
  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .event-card {
    background: rgba(107,13,173,0.12);
    border: 1px solid rgba(192,192,192,0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s;
  }
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107,13,173,0.35);
    border-color: rgba(192,192,192,0.3);
  }
  .event-header {
    background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .event-date-block { text-align: center; }
  .event-date-block .day {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
  }
  .event-date-block .month {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--lavender);
    text-transform: uppercase;
  }
  .event-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.75rem;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    color: var(--silver-light);
    text-transform: uppercase;
  }
  .event-body { padding: 1.5rem; }
  .event-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .event-body p {
    font-size: 0.95rem;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }
  .event-meta {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--lavender);
    text-transform: uppercase;
  }

  /* ── NEW MEMBERS ── */
  #new-members { background: linear-gradient(160deg, #ddd8ee 0%, #ccc4e2 100%); color: #1a0030; }
  .new-member-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }
  .steps-list { list-style: none; margin-top: 2rem; }
  .step-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
  }
  .step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-purple), var(--mid-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    border: 1px solid rgba(192,192,192,0.3);
  }
  .step-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--silver-light);
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
  }
  .step-content p {
    font-size: 0.95rem;
    color: rgba(192,192,192,0.8);
    line-height: 1.6;
  }

  /* ── CONTACT ── */
  #contact { background: linear-gradient(160deg, var(--dark) 0%, var(--dark-deep) 100%); }
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
  }
  .contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  .contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(107,13,173,0.3);
    border: 1px solid rgba(192,192,192,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  .contact-info-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--lavender);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
  }
  .contact-info-item p,
  .contact-info-item a {
    font-size: 1rem;
    color: var(--text-on-dark);
    text-decoration: none;
    line-height: 1.6;
  }
  .contact-info-item a:hover { color: var(--silver-bright); }

  /* ── FOOTER ── */
  footer {
    background: var(--footer-bg);
    border-top: 1px solid rgba(192,192,192,0.1);
    padding: 3rem 2rem 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.2rem;
    color: var(--silver-light);
    margin-bottom: 0.5rem;
  }
  .footer-sub {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: #d8d0f0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .footer-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(230, 226, 245, 0.92);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--silver-bright); }
  .footer-copy {
    font-size: 0.85rem;
    color: rgba(210, 206, 228, 0.88);
    border-top: 1px solid rgba(192,192,192,0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .footer-motto {
    font-style: italic;
    font-weight: 500;
    color: rgba(228, 220, 248, 0.95);
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  /* Footer contact links: theme silver instead of browser default blue */
  footer .footer-copy a {
    color: #e0d8f8;
    text-decoration: underline;
    text-decoration-color: rgba(200, 190, 235, 0.45);
    text-underline-offset: 3px;
  }
  footer .footer-copy a:hover {
    color: var(--silver-bright);
    text-decoration-color: rgba(255, 255, 255, 0.55);
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .about-grid,
    .prayer-layout,
    .giving-grid,
    .new-member-layout,
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 70px; left: 0; right: 0;
      background: rgba(38, 24, 56, 0.98);
      padding: 1rem;
      border-bottom: 1px solid rgba(192,192,192,0.15);
    }
    .hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .giving-amount-grid { grid-template-columns: repeat(2, 1fr); }
    .ministries-grid { grid-template-columns: 1fr 1fr; }
    .schedule-grid { grid-template-columns: 1fr; }
  }

  /* ── LIGHT SECTION TEXT OVERRIDES ── */
  #pastors .section-label,
  #prayer .section-label,
  #new-members .section-label { color: #6A0DAD; }

  #pastors .section-title,
  #prayer .section-title,
  #new-members .section-title { color: #1a0030; }

  #pastors .section-line,
  #prayer .section-line,
  #new-members .section-line { background: linear-gradient(90deg, #4B0082, #9B59B6); }

  #pastors .section-text,
  #prayer .section-text,
  #new-members .section-text { color: #4a3d68; }

  /* Pastors card on light bg */
  #pastors .pastor-card {
    background: linear-gradient(135deg, rgba(75,0,130,0.1), rgba(107,13,173,0.06));
    border-color: rgba(75,0,130,0.25);
    box-shadow: 0 4px 24px rgba(75,0,130,0.1);
  }
  #pastors .pastor-card h3 { color: #1a0030; }
  #pastors .pastor-card .pastor-title { color: #6A0DAD; }
  #pastors .pastor-card p { color: #4a3d68; }

  /* Prayer on light bg */
  #prayer .prayer-text p { color: #4a3d68; }
  #prayer .prayer-scripture { background: rgba(107,13,173,0.12); border-color: #6A0DAD; }
  #prayer .prayer-scripture p { color: #4B0082; }
  #prayer .prayer-scripture cite { color: #6A0DAD; }
  #prayer .form-card {
    background: rgba(255,255,255,0.55);
    border-color: rgba(75,0,130,0.2);
  }
  #prayer .form-group label { color: #6A0DAD; }
  #prayer .form-group input,
  #prayer .form-group textarea,
  #prayer .form-group select {
    background: rgba(255,255,255,0.8);
    border-color: rgba(75,0,130,0.25);
    color: #1a0030;
  }
  #prayer .form-group input:focus,
  #prayer .form-group textarea:focus,
  #prayer .form-group select:focus {
    background: #fff;
    border-color: #6A0DAD;
    box-shadow: 0 0 0 3px rgba(106,13,173,0.15);
  }
  #prayer .form-group select option { background: #fff; color: #1a0030; }

  /* New Members on light bg */
  #new-members .step-content h4 { color: #1a0030; }
  #new-members .step-content p { color: #4a3d68; }
  #new-members .form-card {
    background: rgba(255,255,255,0.55);
    border-color: rgba(75,0,130,0.2);
  }
  #new-members .form-group label { color: #6A0DAD; }
  #new-members .form-group input,
  #new-members .form-group textarea,
  #new-members .form-group select {
    background: rgba(255,255,255,0.8);
    border-color: rgba(75,0,130,0.25);
    color: #1a0030;
  }
  #new-members .form-group input:focus,
  #new-members .form-group textarea:focus,
  #new-members .form-group select:focus {
    background: #fff;
    border-color: #6A0DAD;
    box-shadow: 0 0 0 3px rgba(106,13,173,0.15);
  }
  #new-members .form-group select option { background: #fff; color: #1a0030; }

  /* Announcement bar improvement */
  .announcement-bar {
    background: linear-gradient(135deg, #3d006a, #6A0DAD);
    color: #f0e8ff;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── ANNOUNCEMENT BANNER ── */
  .announcement-bar {
    text-align: center;
    padding: 0.65rem 1rem;
    font-family: 'Cinzel', serif;
    font-size: clamp(0.62rem, 2.8vw, 0.72rem);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1002;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  /* ── WORDPRESS LAYOUT ── */
  body.admin-bar .announcement-bar { top: 32px; }
  @media screen and (max-width: 782px) {
    body.admin-bar .announcement-bar { top: 46px; }
  }
  body.admin-bar nav { top: 68px; }
  @media screen and (max-width: 782px) {
    body.admin-bar nav { top: 82px; }
  }
  body.admin-bar #home { padding-top: 148px; }
  .ghm-inner-main {
    padding-top: 116px;
    position: relative;
    z-index: 1;
  }
  .ghm-page-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-deep) 100%);
    padding: 5rem 2rem;
  }
  body.admin-bar .ghm-inner-main { padding-top: 148px; }

  /*
   * Small screens: the announcement wraps to 2–3 lines (~80px+) but nav stayed at top:36px
   * with a higher z-index on the bar, so the menu/logo were covered. Hide the bar on phone
   * and pin nav to the top (below WP admin bar when logged in).
   */
  @media screen and (max-width: 782px) {
    .announcement-bar {
      display: none !important;
    }
    nav {
      top: 0 !important;
      padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
      padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
    }
    body.admin-bar nav {
      top: 46px !important;
    }
    #home {
      padding-top: 80px;
    }
    .hero-outer {
      min-height: calc(100vh - 80px);
    }
    body.admin-bar #home {
      padding-top: 126px;
    }
    body.admin-bar #home .hero-outer {
      min-height: calc(100vh - 126px);
    }
    .ghm-inner-main {
      padding-top: 80px !important;
    }
    body.admin-bar .ghm-inner-main {
      padding-top: 126px !important;
    }
    section {
      scroll-margin-top: 80px;
    }
    body.admin-bar section {
      scroll-margin-top: 126px;
    }
    .hamburger {
      flex-shrink: 0;
    }
  }

  .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
  }
  .ghm-woocommerce-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
  }
