/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --navy:        #1a2744;
  --navy-dark:   #111827;
  --navy-light:  #243355;
  --gold:        #c9a84c;
  --gold-light:  #e8d5a3;
  --gold-dim:    #a8893e;
  --cream:       #f5f0e8;
  --cream-dark:  #ede5d4;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a4a6a;
  --white:       #ffffff;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(26,39,68,0.12);
  --shadow-lg: 0 8px 48px rgba(26,39,68,0.2);

  --nav-h: 72px;
  --transition: 0.3s ease;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto;
}
.gold-rule--left { margin-left: 0; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dim); border-color: var(--gold-dim); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-outline:hover { background: rgba(245,240,232,0.12); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); }

/* ─── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
#navbar.scrolled { background: var(--navy-dark); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
#navbar.solid { background: var(--navy-dark); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; color: var(--cream); flex-shrink: 0; padding-left: 1rem; }
.nav-logo-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 100%; height: 100%; }
.nav-logo-text { line-height: 1.15; }
.nav-logo-text strong { display: block; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap; }
.nav-logo-text span { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); opacity: 0.9; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; justify-content: center; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 0.25rem; padding: 0.5rem 0.55rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cream); border-radius: var(--radius); transition: color var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link svg { width: 10px; height: 10px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%); background: var(--navy-dark); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); min-width: 200px; padding: 0.5rem 0; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: opacity var(--transition), visibility var(--transition), transform var(--transition); transform: translateX(-50%) translateY(-6px); }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 0.6rem 1.2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream); transition: color var(--transition), background var(--transition); }
.dropdown a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-live { display: flex; justify-content: flex-end; }
.btn-live { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 1.1rem; background: var(--gold); color: var(--navy-dark); border-radius: var(--radius); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; transition: background var(--transition), box-shadow var(--transition); }
.btn-live:hover { background: var(--gold-dim); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
.live-dot { width: 7px; height: 7px; background: #ef4444; border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--navy-dark); border-top: 1px solid rgba(201,168,76,0.2); padding: 1rem 0 1.5rem; z-index: 999; overflow-y: auto; max-height: calc(100vh - var(--nav-h)); }
#mobile-menu.open { display: block; }
.mobile-nav-link { display: block; padding: 0.8rem 2rem; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid rgba(255,255,255,0.05); transition: color var(--transition), background var(--transition); }
.mobile-nav-link:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
.mobile-nav-sub { padding-left: 3rem; font-size: 0.78rem; color: var(--gold-light); }
.mobile-live-btn { margin: 1.2rem 2rem 0; }

/* ─── Homepage Hero ───────────────────────────────────────── */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; background: var(--navy-dark); }
.hero-bg { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 1; max-width: 820px; padding: 0 2rem; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title { color: var(--cream); font-weight: 300; margin-bottom: 1.5rem; font-size: clamp(2.8rem, 7vw, 5rem); }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(245,240,232,0.75); max-width: 580px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(245,240,232,0.5); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; animation: float 2.5s ease-in-out infinite; }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--navy-dark);
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid rgba(201,168,76,0.3);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-cross {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
}
.page-hero-cross svg { width: 200px; height: 200px; color: var(--gold); }
.page-hero .breadcrumb {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.page-hero .breadcrumb a { color: rgba(201,168,76,0.6); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { color: var(--cream); font-weight: 300; margin-bottom: 0.75rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero-sub { font-size: 1.05rem; color: rgba(245,240,232,0.6); font-weight: 300; max-width: 520px; margin: 0 auto; }

/* ─── Quick Info Bar ─────────────────────────────────────── */
#info-bar { background: var(--navy); color: var(--cream); padding: 2rem 0; border-top: 3px solid var(--gold); }
.info-bar-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 0.5rem 2rem; border-right: 1px solid rgba(201,168,76,0.25); }
.info-item:first-child { padding-left: 0; }
.info-item:last-child { border-right: none; }
.info-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; color: var(--gold); }
.info-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.info-value { font-family: var(--font-head); font-size: 1.05rem; color: var(--cream); line-height: 1.4; }
.info-value small { display: block; font-family: var(--font-body); font-size: 0.75rem; color: rgba(245,240,232,0.6); margin-top: 0.2rem; }

/* ─── Sections ───────────────────────────────────────────── */
section { padding: 6rem 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ─── About (homepage) ───────────────────────────────────── */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .section-label { display: block; }
.about-text h2 { color: var(--navy); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-mid); font-size: 1.05rem; }
.about-text .btn { margin-top: 1.5rem; }
.about-visual { position: relative; height: 420px; }
.about-img { position: absolute; border-radius: var(--radius); overflow: hidden; }
.about-img-main { top: 0; left: 0; right: 2.5rem; bottom: 2.5rem; background: var(--navy-light); }
.about-img-accent { bottom: 0; right: 0; width: 55%; height: 55%; background: var(--navy); border: 4px solid var(--cream); box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; bottom: 2.5rem; left: 0; background: var(--navy); color: var(--cream); padding: 1rem 1.4rem; border-left: 3px solid var(--gold); box-shadow: var(--shadow); z-index: 1; }
.about-badge-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-badge-text { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); opacity: 0.8; margin-top: 0.2rem; }

/* ─── Highlights ─────────────────────────────────────────── */
#highlights { background: var(--navy); }
.highlights-head { text-align: center; margin-bottom: 3.5rem; }
.highlights-head h2 { color: var(--cream); margin-bottom: 0.5rem; }
.highlights-head p { color: rgba(245,240,232,0.65); max-width: 540px; margin: 0 auto; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.highlight-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius); padding: 2.5rem 2rem; transition: var(--transition); }
.highlight-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.highlight-icon { width: 54px; height: 54px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.highlight-icon svg { width: 24px; height: 24px; color: var(--gold); }
.highlight-card h3 { color: var(--cream); margin-bottom: 0.75rem; }
.highlight-card p { color: rgba(245,240,232,0.6); font-size: 0.95rem; margin-bottom: 1.25rem; }
.highlight-link { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--transition); }
.highlight-link:hover { gap: 0.7rem; }

/* ─── Live Stream ─────────────────────────────────────────── */
#live-stream { background: var(--navy-dark); text-align: center; padding: 5rem 0; }
.live-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.live-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); border-radius: 100px; padding: 0.35rem 1rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fca5a5; margin-bottom: 1.5rem; }
#live-stream h2 { color: var(--cream); margin-bottom: 1rem; }
#live-stream p { color: rgba(245,240,232,0.65); margin-bottom: 2rem; }
.live-embed { aspect-ratio: 16/9; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; color: rgba(245,240,232,0.4); font-size: 0.9rem; margin-bottom: 1.5rem; }
.live-embed svg { width: 48px; height: 48px; color: var(--gold); opacity: 0.5; }

/* ─── News Cards ─────────────────────────────────────────── */
#news { background: var(--cream-dark); }
.news-head { text-align: center; margin-bottom: 3rem; }
.news-head h2 { color: var(--navy); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img { height: 180px; background: var(--navy-light); position: relative; overflow: hidden; background-size: cover; background-position: center; }
.news-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,39,68,0.6), transparent); }
.news-card-body { padding: 1.5rem; }
.news-date { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.5rem; }
.news-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.6rem; }
.news-card p { color: var(--text-mid); font-size: 0.9rem; }
.news-card-link { margin-top: 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 0.4rem; transition: color var(--transition), gap var(--transition); }
.news-card-link:hover { color: var(--gold-dim); gap: 0.7rem; }
.news-cta { text-align: center; }

/* ─── Hall Hire (homepage) ───────────────────────────────── */
#hall-hire { background: var(--cream); }
.hall-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hall-img { height: 400px; background: var(--navy-light); background-size: cover; background-position: center; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hall-text .section-label { display: block; }
.hall-text h2 { color: var(--navy); margin-bottom: 1rem; }
.hall-text p { color: var(--text-mid); font-size: 1.05rem; }
.hall-contact { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.5rem 0; padding: 1.25rem 1.5rem; background: var(--navy); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.hall-contact a { display: flex; align-items: center; gap: 0.75rem; color: var(--cream); font-size: 0.95rem; transition: color var(--transition); }
.hall-contact a:hover { color: var(--gold); }
.hall-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ─── Outreach Strip ─────────────────────────────────────── */
#outreach { background: var(--navy); padding: 5rem 0; }
.outreach-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.outreach-text h2 { color: var(--cream); margin-bottom: 1rem; }
.outreach-text p { color: rgba(245,240,232,0.65); font-size: 1.05rem; }
.outreach-text .btn { margin-top: 1.5rem; }
.outreach-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.outreach-feat { padding: 1.25rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius); }
.outreach-feat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.outreach-feat h4 { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 0.3rem; }
.outreach-feat p { color: rgba(245,240,232,0.55); font-size: 0.82rem; margin: 0; }

/* ─── Inner Page: Prose Content ──────────────────────────── */
.page-content { background: var(--cream); padding: 5rem 0; }
.page-content.alt { background: var(--cream-dark); }
.page-content.dark { background: var(--navy); }

.prose h2 { color: var(--navy); margin-bottom: 1rem; }
.prose h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.75rem; margin-top: 2rem; }
.prose p { color: var(--text-mid); font-size: 1.05rem; }
.prose .section-label { display: block; }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.content-grid.center { align-items: center; }

/* ─── Quote Block ─────────────────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}
.quote-block p { font-family: var(--font-head); font-size: 1.3rem; font-style: italic; color: var(--navy); margin: 0; line-height: 1.6; }
.quote-block cite { display: block; margin-top: 0.75rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dim); }

/* ─── Team Grid ───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { height: 220px; background: var(--navy-light); background-size: cover; background-position: center top; }
.team-info { padding: 1.25rem; }
.team-info h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.25rem; }
.team-info p { color: var(--gold-dim); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; }
.team-info .bio { color: var(--text-mid); font-size: 0.88rem; margin-top: 0.75rem; text-align: left; }

/* ─── Groups List ─────────────────────────────────────────── */
.groups-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.group-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border-top: 3px solid var(--gold); transition: var(--transition); }
.group-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.group-card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.5rem; }
.group-card p { color: var(--text-mid); font-size: 0.92rem; margin: 0; }

/* ─── Services List ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.service-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); padding: 1.75rem; transition: var(--transition); }
.service-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(201,168,76,0.4); }
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { color: rgba(245,240,232,0.6); font-size: 0.9rem; margin: 0; }

/* ─── Confession Times ────────────────────────────────────── */
.confession-list { display: grid; gap: 1rem; margin-top: 2rem; }
.confession-item { background: var(--white); border-radius: var(--radius); padding: 1.5rem 2rem; box-shadow: var(--shadow); border-left: 4px solid var(--gold); display: flex; gap: 1.5rem; align-items: flex-start; }
.confession-item h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.3rem; }
.confession-item p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }

/* ─── Newsletter Archive ─────────────────────────────────── */
.newsletter-list { display: grid; gap: 0.75rem; margin-top: 2rem; }
.newsletter-item { background: var(--white); border-radius: var(--radius); padding: 1rem 1.5rem; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: var(--transition); }
.newsletter-item:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.newsletter-item-info { display: flex; align-items: center; gap: 1rem; }
.newsletter-item-icon { width: 40px; height: 40px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.newsletter-item-icon svg { width: 18px; height: 18px; color: var(--gold); }
.newsletter-item h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.15rem; }
.newsletter-item p { color: var(--text-mid); font-size: 0.82rem; margin: 0; }
.newsletter-item .btn { flex-shrink: 0; font-size: 0.75rem; padding: 0.5rem 1rem; }

/* ─── Hall Hire Page ─────────────────────────────────────── */
.facilities-list { list-style: none; margin: 1.5rem 0; display: grid; gap: 0.6rem; }
.facilities-list li { display: flex; align-items: center; gap: 0.75rem; color: var(--text-mid); font-size: 1rem; }
.facilities-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ─── Bank Details ───────────────────────────────────────── */
.bank-box { background: var(--navy); color: var(--cream); border-radius: var(--radius); padding: 2rem; border-left: 4px solid var(--gold); margin-top: 1.5rem; }
.bank-box h3 { color: var(--gold-light); font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; }
.bank-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.bank-row:last-child { border-bottom: none; }
.bank-row-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,240,232,0.5); }
.bank-row-value { font-family: var(--font-head); font-size: 1.1rem; color: var(--cream); }

/* ─── Donation Methods ───────────────────────────────────── */
.donation-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 280px)); gap: 1.5rem; margin-top: 2rem; justify-content: center; }
.donation-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); text-align: center; }
.donation-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.donation-card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.2rem; }
.donation-card p { color: var(--text-mid); font-size: 0.92rem; margin: 0; }

/* ─── Contact Page ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-detail-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.25rem; }
.contact-detail-value { font-size: 1.05rem; color: var(--navy); font-family: var(--font-head); }
.contact-detail-value small { display: block; font-family: var(--font-body); font-size: 0.85rem; color: var(--text-mid); margin-top: 0.1rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--navy-light); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── Documents / Forms Page ─────────────────────────────── */
.docs-list { display: grid; gap: 0.75rem; margin-top: 2rem; }
.doc-item { background: var(--white); border-radius: var(--radius); padding: 1rem 1.5rem; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: var(--transition); }
.doc-item:hover { box-shadow: var(--shadow-lg); }
.doc-item-info { display: flex; align-items: center; gap: 1rem; }
.doc-item-icon { width: 38px; height: 38px; background: rgba(201,168,76,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-item-icon svg { width: 18px; height: 18px; color: var(--gold); }
.doc-item h3 { color: var(--navy); font-size: 0.95rem; margin: 0; font-family: var(--font-body); font-weight: 700; }
.doc-item .btn { flex-shrink: 0; font-size: 0.72rem; padding: 0.45rem 1rem; }

/* ─── History Timeline ────────────────────────────────────── */
.history-timeline { margin-top: 3rem; display: grid; gap: 2rem; }
.history-entry { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; align-items: start; }
.history-year { font-family: var(--font-head); font-size: 2rem; color: var(--gold); font-weight: 700; text-align: right; padding-top: 0.2rem; }
.history-body { padding-left: 2rem; border-left: 2px solid rgba(201,168,76,0.3); }
.history-body h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.history-body p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }

/* ─── Past Priests Table ─────────────────────────────────── */
.priests-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.priests-table th { text-align: left; padding: 0.75rem 1rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border-bottom: 2px solid rgba(201,168,76,0.3); }
.priests-table td { padding: 0.75rem 1rem; color: var(--text-mid); border-bottom: 1px solid rgba(26,39,68,0.08); font-size: 0.95rem; }
.priests-table tr:last-child td { border-bottom: none; }
.priests-table tr:hover td { background: rgba(201,168,76,0.04); }

/* ─── Section Intro ───────────────────────────────────────── */
.section-intro { max-width: 700px; }
.section-intro h2 { color: var(--navy); margin-bottom: 1rem; }
.section-intro p { color: var(--text-mid); font-size: 1.05rem; }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { color: var(--navy); margin-bottom: 0.5rem; }
.section-head h2.light { color: var(--cream); }
.section-head p { color: var(--text-mid); max-width: 560px; margin: 0 auto; }
.section-head p.light { color: rgba(245,240,232,0.65); }

/* ─── Sacraments Overview ─────────────────────────────────── */
.sacraments-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.sacrament-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.sacrament-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sacrament-card-header { background: var(--navy); padding: 2rem; display: flex; align-items: center; gap: 1.25rem; }
.sacrament-card-icon { width: 50px; height: 50px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sacrament-card-icon svg { width: 24px; height: 24px; color: var(--gold); }
.sacrament-card-header h3 { color: var(--cream); margin: 0; }
.sacrament-card-body { padding: 1.5rem 2rem; flex: 1; display: flex; flex-direction: column; }
.sacrament-card-body p { color: var(--text-mid); font-size: 0.95rem; flex: 1; }
.sacrament-card-body .btn { margin-top: 1.25rem; align-self: flex-start; }

/* ─── Footer ─────────────────────────────────────────────── */
footer { background: var(--navy-dark); color: var(--cream); padding: 5rem 0 0; border-top: 3px solid rgba(201,168,76,0.3); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--cream); margin-bottom: 0.25rem; }
.footer-brand .tagline { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(245,240,232,0.55); line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(245,240,232,0.6); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--cream); }
.footer-col p { font-size: 0.88rem; color: rgba(245,240,232,0.6); line-height: 1.7; }
.footer-col a.footer-link { font-size: 0.88rem; color: rgba(245,240,232,0.6); display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.6rem; transition: color var(--transition); }
.footer-col a.footer-link:hover { color: var(--cream); }
.footer-col a.footer-link svg { width: 14px; height: 14px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(245,240,232,0.35); margin: 0; }
.footer-bottom a { color: rgba(245,240,232,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Scroll Animations ──────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ─── GDPR Cookie Banner ──────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-dark);
  border-top: 2px solid rgba(201,168,76,0.3);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
#cookie-banner p { color: rgba(245,240,232,0.8); font-size: 0.88rem; margin: 0; flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--gold); text-decoration: underline; }
#cookie-banner p a:hover { color: var(--gold-light); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
#cookie-accept { background: var(--gold); color: var(--navy-dark); border: none; border-radius: var(--radius); padding: 0.6rem 1.4rem; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background var(--transition); }
#cookie-accept:hover { background: var(--gold-dim); }
#cookie-dismiss { background: transparent; color: rgba(245,240,232,0.5); border: 1px solid rgba(245,240,232,0.2); border-radius: var(--radius); padding: 0.6rem 1rem; font-family: var(--font-body); font-size: 0.82rem; cursor: pointer; transition: var(--transition); }
#cookie-dismiss:hover { color: var(--cream); border-color: rgba(245,240,232,0.5); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-live { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 4rem 0; }
  .page-hero { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }
  .info-bar-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .info-item { padding: 0; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); padding-bottom: 1.5rem; }
  .info-item:last-child { border-bottom: none; padding-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 320px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .hall-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .outreach-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sacraments-grid { grid-template-columns: 1fr; }
  .history-entry { grid-template-columns: 80px 1fr; gap: 1rem; }
  .history-year { font-size: 1.4rem; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .donation-grid { grid-template-columns: 1fr; }
  .groups-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
