/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #9a7230;
  --gold-light: #b8893a;
  --gold-pale:  #fdf4e3;
  --dark:       #1c1209;
  --dark-mid:   #2e1f0e;
  --charcoal:   #3d3020;
  --white:      #ffffff;
  --off-white:  #fefcf8;
  --cream:      #faf6ef;
  --text:       #3d3020;
  --text-light: #8c7a60;
  --border:     #e8dcc8;
  --shadow:     0 2px 18px rgba(100,75,30,0.08);
  --shadow-lg:  0 6px 36px rgba(100,75,30,0.14);
  --radius:     10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.75;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255,252,247,0.97);
  box-shadow: 0 2px 16px rgba(120,90,40,0.10);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  padding: 3px;
  transition: background var(--transition);
}

.navbar.scrolled .logo-img {
  background: var(--gold-pale);
}

.logo-cross {
  font-size: 2rem;
  color: var(--gold-pale);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}

.navbar.scrolled .logo-title { color: var(--dark); }
.navbar.scrolled .logo-cross { color: var(--gold); }
.navbar.scrolled .logo-sub   { color: var(--gold); }

.logo-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--dark); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url('assets/church1.jpg')
    center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 20, 40, 0.60) 0%,
    rgba(10, 20, 40, 0.40) 55%,
    rgba(10, 20, 40, 0.58) 100%
  );
  mix-blend-mode: multiply;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 15, 35, 0.38) 0%,
    rgba(5, 15, 35, 0.20) 55%,
    rgba(5, 15, 35, 0.35) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f0d483;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-location {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-location i { color: #f0d483; margin-right: 8px; }

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  font-style: italic;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,134,11,0.4);
}

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.9);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-sm:hover { background: var(--gold-light); transform: translateY(-1px); }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

.hero-scroll a {
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  transition: color var(--transition);
}
.hero-scroll a:hover { color: #e8c97a; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   HIGHLIGHT BAR
=========================== */
.highlight-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--gold-pale);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 40px;
  color: var(--text);
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.highlight-item div {
  display: flex;
  flex-direction: column;
}

.highlight-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.highlight-item span {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}

.highlight-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===========================
   SECTIONS
=========================== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--dark);
}

.section-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.subsection-title {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* ===========================
   ABOUT
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.1rem;
  color: var(--text);
  font-size: 0.97rem;
}

.lead {
  font-size: 1.1rem !important;
  color: var(--charcoal) !important;
  font-weight: 500;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}

.about-card-icon {
  position: absolute;
  top: -20px; left: 32px;
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.about-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  margin-top: 0.8rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.about-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.2rem 0;
}

/* ===========================
   SERVICES
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card.featured {
  border-color: var(--gold);
  position: relative;
  overflow: hidden;
}

.service-card.featured::before {
  content: 'Main Service';
  position: absolute;
  top: 16px; right: -24px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 32px;
  transform: rotate(45deg);
}

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-time, .service-freq {
  font-size: 0.84rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.service-time i, .service-freq i {
  margin-right: 6px;
  width: 14px;
}

.service-card p:last-child {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 12px;
}

.venue-box {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.venue-box > i {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.venue-box div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.venue-box strong {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.venue-box span {
  font-size: 0.95rem;
  color: var(--dark);
}

/* ===========================
   EVENTS
=========================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.event-date {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  flex-shrink: 0;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.event-month {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 4px;
}

.event-year {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 2px;
}

.event-info h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.event-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.event-info p i { color: var(--gold); margin-right: 6px; }

/* ===========================
   LEADERSHIP
=========================== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.leader-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold-pale);
  outline: 1px solid var(--border);
}

.leader-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.committee-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.committee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.committee-photo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold-pale);
  outline: 1px solid var(--border);
  margin: 0 auto 14px;
  display: block;
}

.committee-photo-icon {
  object-fit: contain;
  background: var(--gold-pale);
  padding: 10px;
}

.committee-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.committee-card p {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* ===========================
   CONTACT
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-item a { color: var(--gold); }
.contact-item a:hover { text-decoration: underline; }

.contact-name {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===========================
   FOOTER
=========================== */
/* ===========================
   MANAGEMENT
=========================== */
.section-intro {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: 0.95rem;
  text-align: center;
}

.mgmt-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.mgmt-card.vicar {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  padding: 36px;
  text-align: left;
}

.mgmt-card.vicar .mgmt-photo-wrap { flex-shrink: 0; }
.mgmt-card.vicar .mgmt-photo { width: 130px; height: 130px; }
.mgmt-card.vicar h3 { font-size: 1.5rem; }
.mgmt-card.vicar p { font-size: 0.95rem; }
.mgmt-card.vicar .mgmt-info { text-align: left; }


.mgmt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mgmt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mgmt-photo-wrap { margin-bottom: 16px; }

.mgmt-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold-pale);
  outline: 1px solid var(--border);
  display: block;
}

.mgmt-photo-icon {
  object-fit: contain;
  background: var(--gold-pale);
  padding: 12px;
}

.mgmt-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
}

.mgmt-info { text-align: center; }

.mgmt-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.mgmt-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.mgmt-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.mgmt-info a { color: var(--gold); text-decoration: underline; }

/* ===========================
   MANAGEMENT TABLE
=========================== */
.mgmt-table-wrap {
  margin-top: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.mgmt-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}

.mgmt-table thead tr {
  background: var(--dark);
}

.mgmt-table thead th {
  padding: 14px 24px;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.mgmt-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.mgmt-table tbody tr:last-child {
  border-bottom: none;
}

.mgmt-table tbody tr:hover {
  background: var(--gold-pale);
}

.mgmt-table tbody td {
  padding: 14px 24px;
  color: var(--text);
  font-weight: 500;
}

.mgmt-table tbody td:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--dark);
  white-space: nowrap;
}

.mgmt-table-header td {
  background: var(--gold-pale);
  color: var(--dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-bottom: 1px solid var(--border);
}

.mgmt-table-header td i {
  color: var(--gold);
  margin-right: 8px;
}

.mgmt-table-divider td {
  border-top: 2px solid var(--border) !important;
}

.mgmt-role-alt {
  background: transparent !important;
  color: var(--text) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  border-radius: 0;
}

/* Featured event card */
.featured-event {
  border-color: var(--gold) !important;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-pale) 100%);
}

.featured-event .event-date {
  background: var(--gold) !important;
}

.featured-event .event-date .event-day {
  color: var(--white) !important;
  font-size: 1.5rem;
}

.featured-event .event-date .event-month,
.featured-event .event-date .event-year {
  color: rgba(255,255,255,0.85) !important;
}

.mgmt-group {
  margin-bottom: 56px;
}

.mgmt-group-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mgmt-group-title i {
  color: var(--gold);
  font-size: 1rem;
}

/* Committee members + Ministry roles — identical style */
.mgmt-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.mgmt-role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mgmt-role-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.mgmt-role-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.mgmt-role-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin: 4px 0 2px;
}

.mgmt-role-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

.mgmt-role-card a {
  color: var(--gold);
  text-decoration: underline;
}

/* ===========================
   GALLERY
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ===========================
   ALBUM GRID
=========================== */
.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.album-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.album-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.album-cover {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.album-card:hover .album-cover img {
  transform: scale(1.07);
}

.album-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,18,9,0.65) 0%, transparent 60%);
}

.album-count {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.9);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
}

.album-info {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.album-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--dark);
}

.album-info i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Album view (back button + title) */
.album-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.album-back:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}

.album-view-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.gallery-item {
  cursor: pointer;
}

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 5, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 12px;
  font-style: italic;
}

.lightbox-close {
  position: fixed;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 10000;
}
.lightbox-close:hover { color: var(--white); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 10000;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ===========================
   FOOTER LOGO IMG
=========================== */
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--gold-pale);
  padding: 3px;
}

/* ===========================
   GIVE / DONATE
=========================== */
.give-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.give-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.give-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.give-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.give-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.give-feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.give-feature strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.give-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Payment card */
.give-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.give-card-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 32px 28px 28px;
  text-align: center;
  color: var(--white);
}

.give-card-cross {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #e8c97a;
  margin: 0 auto 14px;
}

.give-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}

.give-card-header p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.give-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.give-amount-note {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.give-amount-note i {
  color: var(--gold);
  flex-shrink: 0;
}

.give-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(154,114,48,0.35);
}

.give-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(154,114,48,0.45);
}

.give-btn i { font-size: 0.95rem; }

.give-new-tab-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.7;
}

.give-new-tab-note i {
  color: var(--gold);
  margin-right: 4px;
}

.give-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.give-secure-badge i {
  color: #2e7d32;
  font-size: 0.85rem;
}

.give-secure-badge strong { color: var(--dark); }

/* Give nav link — highlighted */
.nav-give {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
}
.nav-give:hover {
  background: var(--gold-light) !important;
  color: var(--white) !important;
}
.navbar.scrolled .nav-give {
  color: var(--white) !important;
}

@media (max-width: 900px) {
  .give-grid { grid-template-columns: 1fr; gap: 36px; }
  .give-card { position: static; }
}

.footer {
  background: var(--cream);
  border-top: 2px solid var(--border);
  color: var(--text-light);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.footer-brand .footer-logo .logo-cross {
  color: var(--gold);
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

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

.footer-charity {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
}

.footer-charity i {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-charity strong {
  color: var(--dark);
}

.charity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.charity-badge i {
  color: var(--gold);
  font-size: 0.85rem;
}

.charity-badge strong {
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .services-grid { grid-template-columns: 1fr; }

  .leadership-grid { grid-template-columns: repeat(2, 1fr); }

  .committee-grid { grid-template-columns: repeat(2, 1fr); }

  .mgmt-featured-grid { grid-template-columns: repeat(3, 1fr); }
  .mgmt-card.vicar { grid-column: 1 / -1; }
  .mgmt-roles-grid { grid-template-columns: repeat(2, 1fr); }
  .album-grid { grid-template-columns: repeat(2, 1fr); }

  .events-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }

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

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(255,252,247,0.98);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 1.2rem;
  }

  .nav-links a { color: var(--text); }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; }

  .highlight-bar { flex-direction: column; gap: 16px; }
  .highlight-divider { width: 48px; height: 1px; }
  .highlight-item { padding: 8px 0; }

  .committee-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .gallery-item.tall,
  .gallery-item.wide { grid-row: span 1; grid-column: span 1; }

  .leadership-grid { grid-template-columns: 1fr; }

  .mgmt-featured-grid { grid-template-columns: 1fr; }
  .mgmt-card.vicar { flex-direction: column; text-align: center; }
  .mgmt-card.vicar .mgmt-info { text-align: center; }
  .mgmt-roles-grid { grid-template-columns: 1fr; }
  .album-grid { grid-template-columns: 1fr; }

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

  .venue-box { flex-direction: column; align-items: flex-start; }
}
