/* ============================================
   GRACE COMMUNITY CHURCH — Template Stylesheet
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Navy Scale */
  --gc-navy-dark:    #0f1a2e;
  --gc-navy:         #1a2744;
  --gc-navy-mid:     #2d4a7a;
  --gc-navy-light:   #3d5f9a;

  /* Gold Scale */
  --gc-gold:         #c49a3c;
  --gc-gold-light:   #d4af5a;
  --gc-gold-pale:    #e8d5a0;
  --gc-gold-glow:    rgba(196, 154, 60, 0.15);

  /* Neutrals */
  --gc-white:        #ffffff;
  --gc-off-white:    #f8f6f1;
  --gc-light-gray:   #e8e4dc;
  --gc-text-dark:    #1a1a2e;
  --gc-text-body:    #3d3d56;
  --gc-text-muted:   #6b6b88;
  --gc-text-on-dark: rgba(255,255,255,0.85);
  --gc-text-on-dark-muted: rgba(255,255,255,0.5);

  /* Typography */
  --gc-font-display: 'Cormorant Garamond', Georgia, serif;
  --gc-font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --gc-space-xs:  0.25rem;
  --gc-space-sm:  0.5rem;
  --gc-space-md:  1rem;
  --gc-space-lg:  1.5rem;
  --gc-space-xl:  2.5rem;
  --gc-space-2xl: 4rem;
  --gc-space-3xl: 6rem;
  --gc-space-4xl: 8rem;

  /* Layout */
  --gc-container: 1140px;
  --gc-banner-h:  36px;
  --gc-nav-h:     68px;
  --gc-radius:    8px;
  --gc-radius-lg: 14px;

  /* Transitions */
  --gc-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gc-dur-fast: 200ms;
  --gc-dur-med:  400ms;
  --gc-dur-slow: 700ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--gc-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gc-text-body);
  background: var(--gc-white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--gc-dur-fast) ease; }
ul { list-style: none; }
::selection { background: var(--gc-gold); color: var(--gc-white); }

/* ---------- Utilities ---------- */
.gc-container {
  max-width: var(--gc-container);
  margin: 0 auto;
  padding: 0 var(--gc-space-lg);
}

h1, h2, h3, h4 {
  font-family: var(--gc-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--gc-text-dark);
}

.gc-eyebrow {
  font-family: var(--gc-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: var(--gc-space-md);
}

.gc-section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--gc-space-3xl);
}

.gc-section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: var(--gc-space-md);
}

.gc-section-header h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gc-gold);
}

.gc-section-desc {
  font-size: 1.05rem;
  color: var(--gc-text-muted);
  line-height: 1.8;
}

.gc-header-light h2 { color: var(--gc-white); }
.gc-header-light h2 em { color: var(--gc-gold-light); }
.gc-header-light .gc-section-desc { color: var(--gc-text-on-dark-muted); }

.gc-section-cta {
  text-align: center;
  margin-top: var(--gc-space-2xl);
}

/* ---------- Buttons ---------- */
.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--gc-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--gc-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--gc-dur-fast) var(--gc-ease);
  white-space: nowrap;
}

.gc-btn-gold {
  background: var(--gc-gold);
  color: var(--gc-white);
  border-color: var(--gc-gold);
}
.gc-btn-gold:hover {
  background: var(--gc-gold-light);
  border-color: var(--gc-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,154,60,0.35);
}

.gc-btn-outline {
  background: transparent;
  color: var(--gc-white);
  border-color: rgba(255,255,255,0.3);
}
.gc-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.gc-btn-outline-light {
  background: transparent;
  color: var(--gc-text-on-dark);
  border-color: rgba(255,255,255,0.2);
}
.gc-btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.gc-btn-navy {
  background: var(--gc-navy);
  color: var(--gc-white);
  border-color: var(--gc-navy);
}
.gc-btn-navy:hover {
  background: var(--gc-navy-mid);
  border-color: var(--gc-navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,39,68,0.3);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.gc-announcement-bar {
  width: 100%;
  padding: 0.6rem var(--gc-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gc-space-md);
  font-family: var(--gc-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
  z-index: 1200;
  position: relative;
}

.gc-announcement-bar--gold  { background: var(--gc-gold); color: var(--gc-white); }
.gc-announcement-bar--navy  { background: var(--gc-navy); color: var(--gc-white); border-bottom: 1px solid rgba(196,154,60,0.3); }
.gc-announcement-bar--red   { background: #c53030; color: var(--gc-white); }
.gc-announcement-bar--green { background: #276749; color: var(--gc-white); }

.gc-announcement-cta {
  font-weight: 700;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
  transition: opacity 150ms ease;
  color: inherit;
}
.gc-announcement-cta:hover { opacity: 1; }

/* ============================================
   DEMO BANNER
   ============================================ */
.gc-demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--gc-banner-h);
  background: var(--gc-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  border-bottom: 1px solid rgba(196,154,60,0.15);
}

.gc-demo-banner a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gc-gold);
  letter-spacing: 0.05em;
  transition: color var(--gc-dur-fast) ease;
}

.gc-demo-banner a:hover { color: var(--gc-gold-light); }

.gc-demo-banner svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.gc-nav {
  position: fixed;
  top: var(--gc-banner-h);
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--gc-dur-med) var(--gc-ease);
}

.gc-nav.scrolled {
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.gc-nav-inner {
  max-width: var(--gc-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--gc-nav-h);
  padding: 0 var(--gc-space-lg);
}

.gc-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gc-white);
  font-family: var(--gc-font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.gc-logo em {
  font-weight: 400;
  font-style: italic;
  opacity: 0.7;
}

.gc-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gc-gold);
}

/* Nav Actions (Give btn + Hamburger) */
.gc-nav-actions {
  display: flex;
  align-items: center;
  gap: var(--gc-space-md);
}

.gc-nav-give-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--gc-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gc-white);
  background: var(--gc-gold);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  transition: all var(--gc-dur-fast) var(--gc-ease);
  white-space: nowrap;
}

.gc-nav-give-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.gc-nav-give-btn:hover {
  background: var(--gc-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,154,60,0.4);
  color: var(--gc-white);
}

/* Hamburger Toggle */
.gc-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1101;
}

.gc-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gc-white);
  border-radius: 2px;
  transition: all var(--gc-dur-fast) ease;
  transform-origin: center;
}

.gc-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gc-menu-toggle.active span:nth-child(2) { opacity: 0; }
.gc-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen Menu Overlay */
.gc-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 46, 0.97);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--gc-dur-med) var(--gc-ease);
}

.gc-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.gc-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.gc-menu-content a {
  font-family: var(--gc-font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  padding: 0.6rem 1.5rem;
  border-radius: var(--gc-radius);
  transition: all var(--gc-dur-fast) ease;
  transform: translateY(20px);
  opacity: 0;
}

.gc-menu-overlay.open .gc-menu-content a {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger link animations */
.gc-menu-content a:nth-child(1) { transition-delay: 0.05s; }
.gc-menu-content a:nth-child(2) { transition-delay: 0.1s; }
.gc-menu-content a:nth-child(3) { transition-delay: 0.15s; }
.gc-menu-content a:nth-child(4) { transition-delay: 0.2s; }
.gc-menu-content a:nth-child(5) { transition-delay: 0.25s; }
.gc-menu-content a:nth-child(6) { transition-delay: 0.3s; }
.gc-menu-content a:nth-child(7) { transition-delay: 0.35s; }

.gc-menu-content a:hover {
  color: var(--gc-white);
  background: rgba(255,255,255,0.05);
}

/* Give link styled distinctly in menu */
.gc-menu-content a.gc-menu-give {
  color: var(--gc-gold);
  margin-top: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196,154,60,0.15);
}
.gc-menu-content a.gc-menu-give:hover {
  color: var(--gc-gold-light);
  background: rgba(196,154,60,0.08);
}

.gc-menu-content a .gc-menu-label {
  display: block;
  font-family: var(--gc-font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-top: 0.1rem;
}

/* ============================================
   HERO
   ============================================ */
.gc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--gc-banner-h) + var(--gc-nav-h) + var(--gc-space-2xl)) var(--gc-space-lg) var(--gc-space-3xl);
}

.gc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.gc-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,26,46,0.35) 0%, rgba(15,26,46,0.6) 50%, rgba(15,26,46,0.92) 100%),
    linear-gradient(to right, rgba(15,26,46,0.3) 0%, transparent 60%);
}

/* Subtle light rays effect */
.gc-hero-rays {
  position: absolute;
  top: -10%;
  right: 10%;
  width: 500px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 20%, rgba(196,154,60,0.06) 0%, transparent 60%);
  transform: rotate(-15deg);
}

.gc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.gc-hero-label {
  font-family: var(--gc-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: var(--gc-space-lg);
  opacity: 0;
  animation: gcFadeUp 0.8s var(--gc-ease) 0.2s forwards;
}

.gc-hero-headline {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: var(--gc-white);
  line-height: 1.08;
  margin-bottom: var(--gc-space-lg);
  opacity: 0;
  animation: gcFadeUp 0.8s var(--gc-ease) 0.35s forwards;
}

.gc-hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gc-gold-light);
}

.gc-hero-desc {
  font-size: 1.1rem;
  color: var(--gc-text-on-dark-muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: var(--gc-space-xl);
  opacity: 0;
  animation: gcFadeUp 0.8s var(--gc-ease) 0.5s forwards;
}

.gc-hero-actions {
  display: flex;
  gap: var(--gc-space-md);
  flex-wrap: wrap;
  opacity: 0;
  animation: gcFadeUp 0.8s var(--gc-ease) 0.78s forwards;
}

.gc-hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gc-space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: gcFadeIn 1s var(--gc-ease) 1s forwards;
}

.gc-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gc-gold), transparent);
  animation: gcScrollPulse 2s ease-in-out infinite;
}

@keyframes gcFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gcFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes gcScrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.3); }
}

/* ============================================
   ABOUT
   ============================================ */
.gc-about {
  padding: var(--gc-space-4xl) 0;
  background: var(--gc-white);
}

.gc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gc-space-3xl);
  align-items: center;
}

.gc-about-image {
  aspect-ratio: 4 / 3;
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
}

.gc-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--gc-radius-lg);
}

.gc-about-text .gc-eyebrow { text-align: left; }

.gc-about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: var(--gc-space-lg);
}

.gc-about-text h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gc-gold);
}

.gc-about-text p {
  margin-bottom: var(--gc-space-md);
  color: var(--gc-text-body);
  line-height: 1.8;
}

.gc-about-text .gc-btn {
  margin-top: var(--gc-space-md);
}

/* ============================================
   PLAN YOUR VISIT
   ============================================ */
.gc-visit {
  padding: var(--gc-space-4xl) 0;
  background: var(--gc-off-white);
}

.gc-visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gc-space-lg);
}

.gc-visit-card {
  background: var(--gc-white);
  border: 1px solid var(--gc-light-gray);
  border-radius: var(--gc-radius-lg);
  padding: var(--gc-space-xl) var(--gc-space-lg);
  text-align: center;
  transition: all var(--gc-dur-med) var(--gc-ease);
}

.gc-visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,39,68,0.08);
  border-color: var(--gc-gold-pale);
}

.gc-visit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--gc-space-lg);
  color: var(--gc-gold);
}

.gc-visit-icon svg { width: 100%; height: 100%; }

.gc-visit-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--gc-space-sm);
}

.gc-visit-card p {
  font-size: 0.92rem;
  color: var(--gc-text-muted);
  line-height: 1.6;
}

.gc-visit-cta {
  text-align: center;
  margin-top: var(--gc-space-2xl);
}

/* ============================================
   STAFF & LEADERS
   ============================================ */
.gc-staff {
  padding: var(--gc-space-4xl) 0;
  background: var(--gc-navy);
  position: relative;
  overflow: hidden;
}

.gc-staff::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,154,60,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.gc-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gc-space-xl);
  position: relative;
  z-index: 1;
}

.gc-staff-card {
  text-align: center;
  transition: transform var(--gc-dur-med) var(--gc-ease);
}

.gc-staff-card:hover { transform: translateY(-4px); }

.gc-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto var(--gc-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--gc-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gc-white);
  border: 2px solid rgba(196,154,60,0.3);
  transition: border-color var(--gc-dur-fast) ease;
}

.gc-staff-card:hover .gc-avatar {
  border-color: var(--gc-gold);
}

.gc-avatar-1 { background: linear-gradient(135deg, #2d4a7a, #1a2744); }
.gc-avatar-2 { background: linear-gradient(135deg, #3d5f9a, #2d4a7a); }
.gc-avatar-3 { background: linear-gradient(135deg, #1a2744, #0f1a2e); }
.gc-avatar-4 { background: linear-gradient(135deg, #2d4a7a, #3d5f9a); }

.gc-staff-card h3 {
  font-size: 1.2rem;
  color: var(--gc-white);
  margin-bottom: 0.2rem;
}

.gc-staff-role {
  font-size: 0.82rem;
  color: var(--gc-gold);
  font-weight: 500;
}

/* ============================================
   EVENTS
   ============================================ */
.gc-events {
  padding: var(--gc-space-4xl) 0;
  background: var(--gc-white);
}

.gc-events-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gc-space-lg);
  max-width: 840px;
  margin: 0 auto;
}

.gc-event-card {
  display: flex;
  gap: var(--gc-space-lg);
  align-items: flex-start;
  background: var(--gc-off-white);
  border: 1px solid var(--gc-light-gray);
  border-radius: var(--gc-radius-lg);
  padding: var(--gc-space-lg);
  transition: all var(--gc-dur-med) var(--gc-ease);
}

.gc-event-card:hover {
  transform: translateX(4px);
  border-color: var(--gc-gold-pale);
  box-shadow: 0 8px 30px rgba(26,39,68,0.06);
}

.gc-event-date {
  flex-shrink: 0;
  width: 68px;
  height: 72px;
  background: var(--gc-navy);
  border-radius: var(--gc-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gc-white);
}

.gc-event-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gc-gold);
}

.gc-event-day {
  font-family: var(--gc-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.gc-event-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.gc-event-info > p:first-of-type {
  font-size: 0.82rem;
  color: var(--gc-gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.gc-event-desc {
  font-size: 0.9rem;
  color: var(--gc-text-muted);
  line-height: 1.6;
}

/* ============================================
   GET CONNECTED / NEXT STEPS
   ============================================ */
.gc-connect {
  padding: var(--gc-space-4xl) 0;
  background: var(--gc-off-white);
}

.gc-connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gc-space-lg);
}

.gc-connect-item {
  display: block;
  background: var(--gc-white);
  border: 1px solid var(--gc-light-gray);
  border-radius: var(--gc-radius-lg);
  padding: var(--gc-space-xl) var(--gc-space-lg);
  text-align: center;
  transition: all var(--gc-dur-med) var(--gc-ease);
  position: relative;
  overflow: hidden;
}

.gc-connect-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gc-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--gc-dur-med) var(--gc-ease);
}

.gc-connect-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,39,68,0.1);
  border-color: var(--gc-gold-pale);
}

.gc-connect-item:hover::before { transform: scaleX(1); }

.gc-connect-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--gc-space-lg);
  color: var(--gc-gold);
}

.gc-connect-icon svg { width: 100%; height: 100%; }

.gc-connect-item h3 {
  font-size: 1.2rem;
  margin-bottom: var(--gc-space-sm);
}

.gc-connect-item p {
  font-size: 0.88rem;
  color: var(--gc-text-muted);
  line-height: 1.6;
}

/* ============================================
   ONLINE GIVING
   ============================================ */
.gc-giving {
  padding: var(--gc-space-4xl) 0;
  background: var(--gc-navy);
  position: relative;
  overflow: hidden;
}

.gc-giving::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196,154,60,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196,154,60,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.gc-giving-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gc-space-3xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.gc-giving-message .gc-eyebrow {
  text-align: left;
}

.gc-giving-message h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--gc-white);
  margin-bottom: var(--gc-space-lg);
}

.gc-giving-message h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gc-gold-light);
}

.gc-giving-desc {
  font-size: 1.05rem;
  color: var(--gc-text-on-dark);
  line-height: 1.8;
  margin-bottom: var(--gc-space-xl);
}

.gc-giving-verse {
  font-family: var(--gc-font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gc-gold-pale);
  line-height: 1.7;
  padding-left: var(--gc-space-lg);
  border-left: 3px solid var(--gc-gold);
  margin-bottom: var(--gc-space-xl);
}

.gc-giving-verse cite {
  display: block;
  font-family: var(--gc-font-body);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  color: var(--gc-text-on-dark-muted);
  margin-top: var(--gc-space-sm);
}

.gc-giving-trust {
  display: flex;
  gap: var(--gc-space-lg);
  flex-wrap: wrap;
}

.gc-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gc-text-on-dark-muted);
}

.gc-trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gc-gold);
  flex-shrink: 0;
}

/* Giving Cards */
.gc-giving-options {
  display: flex;
  flex-direction: column;
  gap: var(--gc-space-lg);
}

.gc-giving-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--gc-radius-lg);
  padding: var(--gc-space-xl) var(--gc-space-lg);
  display: grid;
  grid-template-columns: 52px 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 var(--gc-space-lg);
  align-items: center;
  position: relative;
  transition: all var(--gc-dur-med) var(--gc-ease);
}

.gc-giving-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196,154,60,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gc-giving-card-featured {
  border-color: rgba(196,154,60,0.3);
  background: rgba(196,154,60,0.06);
}

.gc-giving-card-badge {
  position: absolute;
  top: -1px;
  right: var(--gc-space-lg);
  background: var(--gc-gold);
  color: var(--gc-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 0 0 6px 6px;
}

.gc-giving-card-icon {
  width: 52px;
  height: 52px;
  color: var(--gc-gold);
  grid-row: 1 / 3;
}

.gc-giving-card-icon svg {
  width: 100%;
  height: 100%;
}

.gc-giving-card h3 {
  font-size: 1.2rem;
  color: var(--gc-white);
  margin-bottom: 0.15rem;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.gc-giving-card p {
  font-size: 0.88rem;
  color: var(--gc-text-on-dark-muted);
  line-height: 1.6;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.gc-giving-card .gc-btn-sm {
  font-size: 0.8rem;
  padding: 0.6rem 1.3rem;
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

/* Giving Footer */
.gc-giving-footer {
  text-align: center;
  margin-top: var(--gc-space-2xl);
  padding-top: var(--gc-space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.gc-giving-footer p {
  font-size: 0.88rem;
  color: var(--gc-text-on-dark-muted);
}

.gc-giving-footer a {
  color: var(--gc-gold);
  font-weight: 500;
  transition: color var(--gc-dur-fast) ease;
}

.gc-giving-footer a:hover {
  color: var(--gc-gold-light);
}

/* ============================================
   SERMONS
   ============================================ */
.gc-sermons {
  padding: var(--gc-space-4xl) 0;
  background: var(--gc-navy);
  position: relative;
  overflow: hidden;
}

.gc-sermons::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,154,60,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.gc-sermon-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--gc-space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: var(--gc-space-2xl);
}

.gc-sermon-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gc-sermon-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--gc-radius-lg);
}

.gc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(196,154,60,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--gc-dur-fast) var(--gc-ease);
}

.gc-play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--gc-white);
  margin-left: 3px;
}

.gc-sermon-thumb:hover .gc-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gc-gold);
  box-shadow: 0 0 0 12px rgba(196,154,60,0.15);
}

.gc-sermon-series {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: var(--gc-space-sm);
}

.gc-sermon-info h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gc-white);
  margin-bottom: var(--gc-space-sm);
}

.gc-sermon-meta {
  font-size: 0.85rem;
  color: var(--gc-text-on-dark-muted);
  margin-bottom: var(--gc-space-md);
}

.gc-sermon-info > p:last-of-type {
  color: var(--gc-text-on-dark);
  line-height: 1.7;
  margin-bottom: var(--gc-space-lg);
  font-size: 0.95rem;
}

/* Recent Sermons */
.gc-sermon-recent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gc-space-lg);
  position: relative;
  z-index: 1;
}

.gc-sermon-card {
  display: flex;
  gap: var(--gc-space-md);
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--gc-radius);
  padding: var(--gc-space-md);
  transition: all var(--gc-dur-med) var(--gc-ease);
  cursor: pointer;
}

.gc-sermon-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196,154,60,0.2);
  transform: translateY(-2px);
}

.gc-sermon-card-thumb {
  width: 80px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.gc-sermon-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.gc-sermon-card-info h4 {
  font-size: 1rem;
  color: var(--gc-white);
  margin-bottom: 0.15rem;
}

.gc-sermon-card-info p {
  font-size: 0.78rem;
  color: var(--gc-text-on-dark-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.gc-footer {
  background: var(--gc-navy-dark);
  padding: var(--gc-space-3xl) 0 var(--gc-space-xl);
}

.gc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gc-space-2xl);
  padding-bottom: var(--gc-space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gc-footer-brand .gc-logo {
  margin-bottom: var(--gc-space-lg);
  font-size: 1.1rem;
}

.gc-footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

.gc-footer-links h4 {
  font-family: var(--gc-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--gc-space-lg);
}

.gc-footer-links li {
  margin-bottom: 0.4rem;
}

.gc-footer-links a,
.gc-footer-links li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--gc-dur-fast) ease;
}

.gc-footer-links a:hover { color: var(--gc-gold); }

.gc-social-icons {
  display: flex;
  gap: var(--gc-space-sm);
  margin-top: var(--gc-space-sm);
}

.gc-social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--gc-dur-fast) ease;
}

.gc-social-icons a:hover {
  color: var(--gc-gold);
  border-color: var(--gc-gold);
  background: rgba(196,154,60,0.08);
}

.gc-social-icons svg { width: 16px; height: 16px; }

.gc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--gc-space-xl);
}

.gc-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.gc-back-link {
  font-size: 0.78rem;
  color: var(--gc-gold);
  opacity: 0.6;
  transition: opacity var(--gc-dur-fast) ease;
}

.gc-back-link:hover { opacity: 1; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.gc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--gc-ease), transform 0.7s var(--gc-ease);
}

.gc-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.gc-visit-cards .gc-reveal:nth-child(2) { transition-delay: 0.1s; }
.gc-visit-cards .gc-reveal:nth-child(3) { transition-delay: 0.2s; }
.gc-staff-grid .gc-reveal:nth-child(2) { transition-delay: 0.1s; }
.gc-staff-grid .gc-reveal:nth-child(3) { transition-delay: 0.2s; }
.gc-staff-grid .gc-reveal:nth-child(4) { transition-delay: 0.3s; }
.gc-events-grid .gc-reveal:nth-child(2) { transition-delay: 0.1s; }
.gc-events-grid .gc-reveal:nth-child(3) { transition-delay: 0.2s; }
.gc-connect-grid .gc-reveal:nth-child(2) { transition-delay: 0.1s; }
.gc-connect-grid .gc-reveal:nth-child(3) { transition-delay: 0.2s; }
.gc-connect-grid .gc-reveal:nth-child(4) { transition-delay: 0.3s; }
.gc-giving-options .gc-reveal:nth-child(2) { transition-delay: 0.1s; }
.gc-giving-options .gc-reveal:nth-child(3) { transition-delay: 0.2s; }
.gc-sermon-recent .gc-reveal:nth-child(2) { transition-delay: 0.1s; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .gc-about-grid {
    grid-template-columns: 1fr;
    gap: var(--gc-space-2xl);
  }

  .gc-about-image { max-width: 560px; margin: 0 auto; }

  .gc-about-text .gc-eyebrow,
  .gc-about-text h2,
  .gc-about-text p { text-align: center; }
  .gc-about-text .gc-btn { display: block; max-width: 260px; margin: var(--gc-space-md) auto 0; text-align: center; }

  .gc-visit-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .gc-staff-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-connect-grid { grid-template-columns: repeat(2, 1fr); }

  .gc-giving-layout {
    grid-template-columns: 1fr;
    gap: var(--gc-space-2xl);
  }

  .gc-giving-message .gc-eyebrow,
  .gc-giving-message h2 { text-align: center; }
  .gc-giving-desc { text-align: center; }
  .gc-giving-verse { text-align: left; max-width: 520px; margin-left: auto; margin-right: auto; }
  .gc-giving-trust { justify-content: center; }

  .gc-sermon-featured {
    grid-template-columns: 1fr;
    gap: var(--gc-space-xl);
  }

  .gc-sermon-info { text-align: center; }
  .gc-sermon-info .gc-btn { margin: 0 auto; }

  .gc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gc-space-xl);
  }
  .gc-footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --gc-space-3xl: 4rem;
    --gc-space-4xl: 5rem;
  }

  .gc-hero {
    align-items: center;
    text-align: center;
    padding-bottom: var(--gc-space-2xl);
  }

  .gc-hero-content { max-width: 100%; }
  .gc-hero-desc { max-width: 100%; }

  .gc-hero-actions {
    justify-content: center;
  }

  .gc-hero-scroll { display: none; }

  .gc-staff-grid { grid-template-columns: repeat(2, 1fr); gap: var(--gc-space-lg); }

  .gc-connect-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .gc-sermon-recent { grid-template-columns: 1fr; }

  .gc-giving-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
    gap: var(--gc-space-sm);
  }

  .gc-giving-card-icon {
    grid-column: 1;
    grid-row: auto;
    margin: 0 auto;
  }

  .gc-giving-card h3 {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }

  .gc-giving-card p {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }

  .gc-giving-card .gc-btn-sm {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    align-self: auto;
    margin-top: var(--gc-space-sm);
  }

  .gc-event-card { flex-direction: column; align-items: center; text-align: center; }

  .gc-footer-grid { grid-template-columns: 1fr 1fr; }

  .gc-footer-bottom {
    flex-direction: column;
    gap: var(--gc-space-md);
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gc-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .gc-hero-actions .gc-btn { width: 100%; max-width: 300px; }

  .gc-staff-grid { grid-template-columns: 1fr; max-width: 260px; margin: 0 auto; }

  .gc-footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HYBRID NAVIGATION LINKS
   ============================================ */
.gc-nav-links {
  display: flex;
  align-items: center;
  gap: var(--gc-space-lg);
}

.gc-nav-link {
  font-family: var(--gc-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  transition: color var(--gc-dur-fast) ease;
  position: relative;
}

.gc-nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gc-gold);
  transition: width var(--gc-dur-fast) var(--gc-ease);
}

.gc-nav-link:hover { color: var(--gc-white); }
.gc-nav-link:hover::after { width: 100%; }

/* ============================================
   HERO — SERVICE TIMES BADGE
   ============================================ */
.gc-hero-service-times {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin-bottom: var(--gc-space-xl);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  animation: gcFadeUp 0.8s var(--gc-ease) 0.62s forwards;
}

.gc-service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gc-gold);
  flex-shrink: 0;
  animation: gcDotPulse 2s ease-in-out infinite;
}

@keyframes gcDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ============================================
   ABOUT — 3-COLUMN LAYOUT (image | text | image)
   ============================================ */
.gc-about-3col {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: stretch;
  min-height: 520px;
}

.gc-about-img-side {
  overflow: hidden;
}

.gc-about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--gc-dur-slow) var(--gc-ease);
}

.gc-about-img-side:hover img { transform: scale(1.04); }

.gc-about-3col .gc-about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gc-space-3xl) var(--gc-space-2xl);
  background: var(--gc-white);
}

.gc-about-3col .gc-about-text .gc-eyebrow { text-align: left; }

.gc-about-3col .gc-about-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: var(--gc-space-lg);
}

.gc-about-3col .gc-about-text h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gc-gold);
}

.gc-about-3col .gc-about-text p {
  margin-bottom: var(--gc-space-md);
  color: var(--gc-text-body);
  line-height: 1.8;
  font-size: 0.95rem;
}

.gc-about-3col .gc-btn {
  margin-top: var(--gc-space-sm);
  align-self: flex-start;
}

/* ============================================
   CONNECT — ARROW-LINK LAYOUT
   ============================================ */
.gc-connect-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--gc-space-3xl);
  align-items: center;
}

.gc-connect-intro { padding-right: var(--gc-space-xl); }
.gc-connect-intro .gc-eyebrow { text-align: left; }

.gc-connect-intro h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: var(--gc-space-lg);
}

.gc-connect-intro h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gc-gold);
}

.gc-connect-intro .gc-section-desc { text-align: left; }

.gc-connect-links {
  display: flex;
  flex-direction: column;
}

.gc-connect-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gc-space-lg);
  padding: var(--gc-space-lg) var(--gc-space-md);
  border-bottom: 1px solid var(--gc-light-gray);
  color: var(--gc-text-dark);
  transition: all var(--gc-dur-fast) var(--gc-ease);
}

.gc-connect-link:first-child { border-top: 1px solid var(--gc-light-gray); }

.gc-connect-link:hover {
  background: var(--gc-gold-glow);
  padding-left: var(--gc-space-lg);
}

.gc-connect-link-left {
  display: flex;
  align-items: center;
  gap: var(--gc-space-md);
}

.gc-connect-link-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--gc-gold);
}

.gc-connect-link-icon svg { width: 100%; height: 100%; }

.gc-connect-link-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gc-connect-link-title {
  font-family: var(--gc-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gc-text-dark);
  line-height: 1.2;
}

.gc-connect-link-desc {
  font-size: 0.82rem;
  color: var(--gc-text-muted);
}

.gc-connect-arrow {
  width: 20px;
  height: 20px;
  color: var(--gc-gold);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--gc-dur-fast) var(--gc-ease);
}

.gc-connect-link:hover .gc-connect-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   SERMONS — LIVESTREAM BANNER
   ============================================ */
.gc-livestream-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gc-space-lg);
  margin-top: var(--gc-space-2xl);
  padding: var(--gc-space-lg) var(--gc-space-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,154,60,0.2);
  border-radius: var(--gc-radius-lg);
  position: relative;
  z-index: 1;
}

.gc-livestream-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gc-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e53e3e;
  flex-shrink: 0;
  animation: gcLivePulse 1.8s ease-in-out infinite;
}

@keyframes gcLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,62,62,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(229,62,62,0); }
}

.gc-live-label {
  font-size: 0.9rem;
  color: var(--gc-text-on-dark);
  font-weight: 500;
}

.gc-livestream-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gc-gold);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all var(--gc-dur-fast) ease;
}

.gc-livestream-link:hover {
  color: var(--gc-gold-light);
  gap: 0.75rem;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.gc-resources {
  padding: var(--gc-space-4xl) 0;
  background: var(--gc-off-white);
}

.gc-resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gc-space-xl);
}

.gc-resource-card {
  position: relative;
  border-radius: var(--gc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gc-resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--gc-dur-slow) var(--gc-ease);
}

.gc-resource-card:hover img { transform: scale(1.05); }

.gc-resource-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,26,46,0.95) 0%,
    rgba(15,26,46,0.5)  50%,
    rgba(15,26,46,0.15) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gc-space-xl);
  transition: background var(--gc-dur-med) ease;
}

.gc-resource-card:hover .gc-resource-overlay {
  background: linear-gradient(
    to top,
    rgba(15,26,46,0.98) 0%,
    rgba(15,26,46,0.65) 55%,
    rgba(15,26,46,0.2)  100%
  );
}

.gc-resource-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-gold);
  background: rgba(196,154,60,0.15);
  border: 1px solid rgba(196,154,60,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: var(--gc-space-sm);
  width: fit-content;
}

.gc-resource-overlay h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--gc-white);
  margin-bottom: var(--gc-space-sm);
  line-height: 1.2;
}

.gc-resource-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: var(--gc-space-lg);
}

/* Small button variant */
.gc-btn-sm {
  font-size: 0.82rem;
  padding: 0.6rem 1.4rem;
}

/* ============================================
   RESPONSIVE — NEW SECTIONS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  /* Hide visible nav links on tablet — hamburger covers all */
  .gc-nav-links { display: none; }

  /* About 3-col → single column, hide right image */
  .gc-about-3col {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .gc-about-img-side {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }
  .gc-about-img-right { display: none; }
  .gc-about-3col .gc-about-text {
    padding: var(--gc-space-2xl) var(--gc-space-xl);
    align-items: center;
    text-align: center;
  }
  .gc-about-3col .gc-about-text .gc-eyebrow { text-align: center; }
  .gc-about-3col .gc-btn { align-self: center; }

  /* Connect layout → single column */
  .gc-connect-layout {
    grid-template-columns: 1fr;
    gap: var(--gc-space-2xl);
  }
  .gc-connect-intro {
    padding-right: 0;
    text-align: center;
  }
  .gc-connect-intro .gc-eyebrow,
  .gc-connect-intro h2,
  .gc-connect-intro .gc-section-desc { text-align: center; }

  /* Resources → single column */
  .gc-resources-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gc-hero-service-times {
    font-size: 0.75rem;
    text-align: center;
  }

  .gc-livestream-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gc-space-md);
    padding: var(--gc-space-lg);
  }

  .gc-resource-card { aspect-ratio: 3 / 2; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .gc-hero-service-times {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: var(--gc-radius);
    text-align: center;
  }

  .gc-resource-overlay { padding: var(--gc-space-lg); }
}
