  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --sky: #2e6da4;
    --sky-light: #e8f2fc;
    --sky-mid: #cce5f6;
    --sky-dark: #1a3a5c;
    --sky-deep: #0f2540;
    --sage: #3a7a54;
    --sage-light: #d4edda;
    --gold: #c8a020;
    --gold-light: #fef9c3;
    --teal: #2a8a8a;
    --teal-light: #cef0ee;
    --white: #ffffff;
    --off-white: #f4f8fc;
    --border: #d8e8f4;
    --text: #1a3a5c;
    --muted: #4a6a8a;
    --muted-light: #7aa0c0;
  }
  body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--text); }


  /* ANNOUNCEMENT BANNER */
  .banner { background: var(--sky); padding: 10px 48px; display: flex; align-items: center; justify-content: center; gap: 12px; }
  .banner p { font-size: 13px; color: white; }
  .banner a { color: #a8d0f0; text-decoration: underline; font-weight: 500; }

  /* NAV */
  nav { background: var(--white); border-bottom: 2px solid var(--sky-light); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 72px; position: sticky; top: 0; z-index: 100; }
  .nav-brand { display: flex; flex-direction: column; }
  .nav-name { font-family: 'Lora', serif; font-size: 19px; font-weight: 500; color: var(--sky-dark); line-height: 1.1; }
  .nav-sub { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; margin-top: 2px; }
  .nav-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a { display: inline-block; font-family: inherit; font-size: 13px; font-weight: 400; line-height: 1.4; color: var(--muted); text-decoration: none; transition: color 0.2s; white-space: nowrap; }

  /* MINISTRIES DROPDOWN */
  .nav-dropdown { position: relative; display: inline-flex; align-items: center; }
  .nav-dropdown-trigger { display: inline-block; background: none; border: 0; padding: 0; margin: 0; font-family: inherit; font-size: 13px; font-weight: 400; line-height: 1.4; color: var(--muted); cursor: pointer; transition: color 0.2s; white-space: nowrap; vertical-align: baseline; }
  .nav-dropdown-trigger:hover { color: var(--sky); }
  .nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--sky); }
  .nav-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%, -4px); min-width: 200px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 6px 0; box-shadow: 0 12px 28px rgba(26,58,92,0.14); opacity: 0; visibility: hidden; transition: opacity 0.15s, visibility 0.15s, transform 0.15s; z-index: 200; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .nav-dropdown-menu a { display: block; padding: 9px 18px; font-size: 13px; color: var(--text); text-decoration: none; white-space: nowrap; }
  .nav-dropdown-menu a:hover { background: var(--sky-light); color: var(--sky-dark); }
  .nav-links a:hover { color: var(--sky); }
  .nav-cta { background: var(--sky); color: #ffffff; padding: 10px 22px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
  .nav-cta:hover { background: var(--sky-dark); color: #ffffff; }

  /* HERO: magazine split */
  .hero { display: grid; grid-template-columns: 1.4fr 1fr; min-height: 440px; }
  .hero-text { background: var(--off-white); padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
  .hero-location { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sky); font-weight: 600; margin-bottom: 16px; }
  .hero-title { font-family: 'Lora', serif; font-size: 48px; font-weight: 400; color: var(--sky-dark); line-height: 1.15; margin-bottom: 18px; }
  .hero-title em { font-style: italic; }
  .hero-sub { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary { background: var(--sky); color: white; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
  .btn-primary:hover { background: var(--sky-dark); }
  .btn-outline { background: white; color: var(--sky); border: 1.5px solid var(--sky); padding: 11px 22px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
  .btn-outline:hover { background: var(--sky-light); }
  .hero-photo { position: relative; overflow: hidden; }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

  /* SCHEDULE BAR */
  .schedule-bar { background: var(--white); border-bottom: 2px solid var(--sky-light); display: grid; grid-template-columns: repeat(3,1fr); }
  .sched-col { padding: 22px 24px; border-right: 1px solid var(--border); text-align: center; }
  .sched-col:last-child { border-right: none; }
  .sched-label { font-size: 10px; font-weight: 600; color: var(--sky); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
  .sched-val { font-family: 'Lora', serif; font-size: 17px; color: var(--sky-dark); }
  .sched-note { font-size: 11px; color: var(--muted); margin-top: 3px; }
  .sched-col.featured { background: var(--sky); border-right-color: var(--sky); }
  .sched-col.featured .sched-label { color: rgba(255,255,255,0.85); }
  .sched-col.featured .sched-val { color: var(--white); }
  .sched-col.featured .sched-note { color: rgba(255,255,255,0.85); }

  /* ABOUT */
  .about { display: block; }
  .about-text { padding: 72px 56px; max-width: 820px; margin: 0 auto; }
  .section-eyebrow { font-size: 11px; font-weight: 600; color: var(--sky); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
  .section-title { font-family: 'Lora', serif; font-size: 34px; font-weight: 400; color: var(--sky-dark); line-height: 1.25; margin-bottom: 18px; }
  .section-body { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
  .pillars { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 20px; }
  .pillar { background: var(--sky-light); border-radius: 10px; padding: 16px 20px; border-left: 4px solid var(--sky); }
  .pillar-name { font-size: 14px; font-weight: 400; color: var(--sky-dark); margin-bottom: 4px; text-decoration: underline; text-underline-offset: 3px; }
  .pillar-name strong { font-weight: 700; }
  .pillar-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
  .about-photo { position: relative; min-height: 500px; overflow: hidden; }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

  /* EVENTS */
  .events { background: var(--off-white); padding: 72px 48px; }
  .events-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; }
  .events-header a { font-size: 13px; color: var(--sky); text-decoration: none; font-weight: 500; }
  .events-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
  .event-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
  .event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,92,0.1); }
  .event-card.featured { border: 2px solid var(--sky); }
  .event-color-bar { height: 52px; display: flex; align-items: center; justify-content: center; }
  .event-photo { width: 100%; height: 140px; object-fit: cover; display: block; }
  .event-color-bar span { font-size: 12px; font-weight: 600; }
  .event-body { padding: 14px 16px 18px; }
  .event-name { font-family: 'Lora', serif; font-size: 15px; color: var(--sky-dark); margin-bottom: 4px; line-height: 1.35; }
  .event-detail { font-size: 12px; color: var(--muted); line-height: 1.5; }
  .event-rsvp { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--sky); text-decoration: none; }
  .event-rsvp:hover { color: var(--sky-dark); }
  .event-special-tag { display: inline-block; background: var(--sky); color: white; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 3px; margin-bottom: 6px; letter-spacing: 0.04em; }

  /* VBS FEATURE */
  .vbs { background: var(--sage-light); padding: 64px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; border-top: 2px solid #b8ddc8; border-bottom: 2px solid #b8ddc8; }
  .vbs-icon { font-family: 'Lora', serif; font-size: 100px; color: var(--sage); opacity: 0.3; line-height: 1; }
  .vbs-art { width: 100%; max-width: 360px; height: auto; border-radius: 12px; box-shadow: 0 12px 32px rgba(26,58,92,0.18); display: block; justify-self: center; }
  @media (max-width: 820px) {
    .vbs { grid-template-columns: 1fr; padding: 48px 28px; gap: 32px; }
    .vbs-art { max-width: 320px; margin: 0 auto; }
  }
  .vbs-eyebrow { font-size: 11px; font-weight: 600; color: var(--sage); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
  .vbs-title { font-family: 'Lora', serif; font-size: 30px; color: var(--sky-dark); margin-bottom: 14px; line-height: 1.25; }
  .vbs-body { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
  .vbs-btn { display: inline-block; background: var(--sage); color: white; padding: 11px 24px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; }

  /* CELEBRATION CALLOUT (name change event) */
  .celebration { background: var(--sky-light); padding: 64px 56px; display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center; }
  .celebration-text .section-title { margin-bottom: 16px; }
  .celebration-text .section-body { margin-bottom: 24px; }
  .celebration-poster { display: block; line-height: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 32px rgba(26,58,92,0.18); transition: transform 0.2s, box-shadow 0.2s; }
  .celebration-poster:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(26,58,92,0.22); }
  .celebration-poster img { width: 100%; height: auto; display: block; }
  @media (max-width: 820px) {
    .celebration { grid-template-columns: 1fr; padding: 48px 28px; gap: 32px; }
    .celebration-poster { max-width: 380px; margin: 0 auto; }
  }

  /* NEWS */
  .news { background: var(--white); padding: 72px 56px; }
  .news-card { display: grid; grid-template-columns: 4px 1fr; gap: 24px; max-width: 680px; }
  .news-accent { background: var(--sky); border-radius: 2px; }
  .news-tag { display: inline-block; background: var(--sky-light); color: var(--sky); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; }
  .news-headline { font-family: 'Lora', serif; font-size: 22px; color: var(--sky-dark); margin-bottom: 10px; line-height: 1.35; }
  .news-body { font-size: 14px; color: var(--muted); line-height: 1.85; }

  /* PASTOR */
  .pastor { background: var(--off-white); padding: 72px 56px; display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
  .pastor-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
  .pastor-card img { width: 100%; display: block; }
  .pastor-info { padding: 20px 20px 24px; }
  .pastor-name { font-family: 'Lora', serif; font-size: 20px; color: var(--sky-dark); }
  .pastor-title { font-size: 12px; color: var(--sky); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
  .pastor-contact { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
  .pastor-contact a { font-size: 13px; color: var(--muted); text-decoration: none; }
  .pastor-contact a:hover { color: var(--sky); }
  .pastor-bio { font-size: 15px; color: var(--muted); line-height: 1.85; }
  .pastor-bio p + p { margin-top: 14px; }
  .pastor-bio-head { font-family: 'Lora', serif; font-weight: 500; font-size: 18px; color: var(--sky-dark); margin-top: 22px; margin-bottom: 8px; }

  /* MINISTRIES */
  .ministries { background: var(--white); padding: 72px 56px; }
  .ministry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
  .ministry-card { background: var(--off-white); border-radius: 12px; padding: 28px; border: 1px solid var(--border); display: block; color: inherit; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
  .ministry-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,58,92,0.08); border-color: var(--sky); }
  .ministry-dot { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .ministry-name { font-family: 'Lora', serif; font-size: 18px; color: var(--sky-dark); margin-bottom: 8px; }
  .ministry-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

  /* SERMONS */
  .sermons { background: var(--off-white); padding: 72px 56px; }
  .sermon-list { max-width: 680px; margin-top: 28px; }
  .sermon-row { display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .sermon-date { font-size: 12px; color: var(--sky); font-weight: 600; }
  .sermon-title { font-size: 14px; color: var(--sky-dark); }

  /* FOOTER */
  footer { background: var(--sky-dark); padding: 64px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; padding: 0 56px 40px; max-width: 1180px; margin: 0 auto; }
  .footer-col { min-width: 0; }
  .footer-name { font-family: 'Lora', serif; font-size: 22px; color: white; margin-bottom: 4px; line-height: 1.2; }
  .footer-sub-name { font-size: 12px; color: var(--muted-light); letter-spacing: 0.04em; margin-bottom: 18px; }
  .footer-tagline { font-size: 13px; color: var(--muted-light); line-height: 1.65; margin-bottom: 20px; max-width: 360px; opacity: 0.9; }
  .footer-addr { font-size: 13px; color: var(--muted-light); line-height: 1.65; }
  .footer-addr a { display: inline-flex; align-items: flex-start; gap: 10px; color: var(--muted-light); text-decoration: none; transition: color 0.15s; }
  .footer-addr a:hover { color: white; }
  .footer-contact { display: flex; flex-direction: column; gap: 10px; }
  .footer-contact a { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: #a8d0f0; text-decoration: none; transition: color 0.15s; }
  .footer-contact a:hover { color: white; }
  .footer-icon { flex: 0 0 auto; opacity: 0.85; }
  .footer-addr .footer-icon { margin-top: 4px; }
  .footer-head { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #a8d0f0; margin-bottom: 18px; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
  @media (max-width: 720px) {
    footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 0 24px 32px; }
  }
  .footer-bottom { background: var(--sky-deep); padding: 14px 56px; display: flex; justify-content: space-between; }
  .footer-bottom p { font-size: 11px; color: #4a6a8a; }

  .staff { background: var(--off-white); padding: 72px 56px; }
  .staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 360px)); gap: 24px; margin-top: 36px; justify-content: center; }
  .staff-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; }
  .staff-photo { aspect-ratio: 4 / 5; overflow: hidden; }
  .staff-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
  .staff-placeholder { aspect-ratio: 4 / 5; background: var(--sky-light); display: flex; align-items: center; justify-content: center; }
  .staff-initials { font-family: 'Lora', serif; font-size: 56px; color: var(--sky); opacity: 0.4; }
  .staff-info { padding: 20px 22px 26px; }
  .staff-name { font-family: 'Lora', serif; font-size: 20px; color: var(--sky-dark); margin-bottom: 4px; }
  .staff-role { font-size: 11px; font-weight: 600; color: var(--sky); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
  .staff-bio { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
  .staff-link { display: inline-block; font-size: 13px; font-weight: 500; color: var(--sky); text-decoration: none; }
  .staff-link:hover { color: var(--sky-dark); }
  /* ARTICLE / SUB-PAGES */
  .article { max-width: 760px; margin: 0 auto; padding: 72px 32px 96px; }
  .article-eyebrow { font-size: 12px; font-weight: 600; color: var(--sky); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
  .article-title { font-family: 'Lora', serif; font-size: 38px; font-weight: 400; color: var(--sky-dark); line-height: 1.2; margin-bottom: 32px; }
  .article h2 { font-family: 'Lora', serif; font-weight: 500; font-size: 24px; color: var(--sky-dark); margin-top: 36px; margin-bottom: 14px; line-height: 1.3; }
  .article h3 { font-family: 'Lora', serif; font-weight: 500; font-size: 19px; color: var(--sky-dark); margin-top: 28px; margin-bottom: 10px; line-height: 1.35; }
  .article p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 16px; }
  .article ul, .article ol { margin: 0 0 16px 0; padding-left: 22px; }
  .article li { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 8px; }
  .article blockquote { border-left: 3px solid var(--sky); padding: 4px 0 4px 18px; margin: 18px 0; font-style: italic; color: var(--muted); }
  .article a { color: var(--sky); }
  .article a:hover { color: var(--sky-dark); }
  .article-img { display: block; width: 100%; height: auto; border-radius: 12px; margin: 18px 0 24px; box-shadow: 0 8px 24px rgba(26,58,92,0.12); }
  .article-back { display: inline-block; margin-top: 36px; font-size: 14px; color: var(--sky); text-decoration: none; font-weight: 500; }
  .article-back:hover { color: var(--sky-dark); }
  .ministry-block { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 36px 40px; margin-top: 28px; }
  .ministry-block:first-of-type { margin-top: 36px; }
  .ministry-block-eyebrow { font-size: 11px; font-weight: 600; color: var(--sky); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
  .ministry-block h2 { font-family: 'Lora', serif; font-weight: 500; font-size: 26px; color: var(--sky-dark); margin-top: 0; margin-bottom: 14px; }
  .ministry-block h3 { font-family: 'Lora', serif; font-weight: 500; font-size: 18px; color: var(--sky-dark); margin-top: 22px; margin-bottom: 8px; }
  .ministry-block-link { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 500; color: var(--sky); text-decoration: none; }
  .ministry-block-link:hover { color: var(--sky-dark); }
  @media (max-width: 640px) {
    .ministry-block { padding: 28px 22px; }
  }
  .pillar-callout { background: var(--sky-light); border-left: 4px solid var(--sky); border-radius: 8px; padding: 18px 22px; margin: 18px 0; }
  .pillar-callout h3 { margin-top: 0; }
  /* CONTACT US PAGE */
  .contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0 8px; }
  .contact-method { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
  .contact-method:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,58,92,0.10); border-color: var(--sky); }
  .contact-method svg { color: var(--sky); margin-bottom: 14px; }
  .contact-method-label { font-size: 11px; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 0.12em; }
  .contact-method-value { font-size: 15px; color: var(--text); margin-top: 6px; word-break: break-word; line-height: 1.4; }
  .visit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; margin-top: 18px; align-items: start; }
  .visit-block { padding: 16px 0; border-bottom: 1px solid var(--border); }
  .visit-block:first-child { padding-top: 0; }
  .visit-block:last-child { border-bottom: 0; padding-bottom: 0; }
  .visit-label { font-size: 11px; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
  .visit-value { font-size: 16px; color: var(--text); line-height: 1.55; }
  .visit-value strong { font-size: 22px; font-weight: 500; }
  .visit-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
  .visit-link { display: inline-block; margin-top: 10px; color: var(--sky); font-size: 14px; font-weight: 500; text-decoration: none; }
  .visit-link:hover { color: var(--sky-dark); }
  .visit-map { height: 100%; min-height: 360px; }
  @media (max-width: 720px) {
    .contact-methods { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { min-height: 280px; }
  }

  .contact-block { background: var(--off-white); border-radius: 12px; padding: 24px 28px; margin-top: 24px; }
  .contact-block dt { font-size: 12px; font-weight: 600; color: var(--sky); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 14px; }
  .contact-block dt:first-child { margin-top: 0; }
  .contact-block dd { font-size: 16px; color: var(--text); margin: 4px 0 0 0; line-height: 1.6; }
  .contact-block dd a { color: var(--sky); text-decoration: none; }
  .contact-block dd a:hover { text-decoration: underline; }

  /* PHOTO BANNER (3-photo strip) */
  .past-events { padding: 0; background: var(--off-white); }
  .photo-banner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .photo-banner img { width: 100%; height: 280px; object-fit: cover; display: block; }
  @media (max-width: 720px) { .photo-banner { grid-template-columns: 1fr; gap: 2px; } .photo-banner img { height: 220px; } }

  /* GALLERY (masonry, no cropping) */
  .gallery { column-count: 3; column-gap: 16px; }
  .gallery img { width: 100%; height: auto; display: block; margin: 0 0 16px; border-radius: 8px; break-inside: avoid; box-shadow: 0 4px 14px rgba(26,58,92,0.08); transition: transform 0.2s, box-shadow 0.2s; }
  .gallery img:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(26,58,92,0.14); }
  @media (max-width: 1024px) { .gallery { column-count: 2; } }
  @media (max-width: 560px) { .gallery { column-count: 1; } .past-events { padding: 48px 24px; } }

  /* RECURRING EVENTS GRID */
  .recurring-grid { grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 720px) { .recurring-grid { grid-template-columns: 1fr; } }

  /* SERVICES PAGE */
  .service-card { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 22px 26px; margin-top: 18px; }
  .service-card:first-of-type { margin-top: 24px; }
  .service-card.featured { background: var(--sky); border-color: var(--sky); color: var(--white); box-shadow: 0 12px 28px rgba(26,58,92,0.18); }
  .service-card.featured .service-name,
  .service-card.featured .service-when { color: var(--white); }
  .service-card.featured .service-note { color: rgba(255,255,255,0.85); }
  .service-card.featured .cal-icon-link { background: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.95); }
  .service-name { font-family: 'Lora', serif; font-size: 20px; color: var(--sky-dark); margin-bottom: 4px; }
  .service-when { font-size: 22px; color: var(--text); line-height: 1.2; }
  .service-when strong { font-weight: 500; }
  .service-note { font-size: 13px; color: var(--muted); margin-top: 2px; }
  .service-cal { display: flex; gap: 10px; align-items: center; }
  .cal-icon-link { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; }
  .cal-icon-link:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(26,58,92,0.15); border-color: var(--sky); }
  .map-embed { display: block; width: 100%; height: 360px; border: 0; border-radius: 12px; margin: 18px 0 24px; box-shadow: 0 8px 24px rgba(26,58,92,0.12); }
  @media (max-width: 640px) {
    .service-card { grid-template-columns: 1fr; }
    .service-cal { justify-content: flex-start; }
  }