/* ============================================
   City of Iuka, MS — Modern Redesign
   ============================================ */

:root {
  --navy: #1a2d4f;
  --navy-light: #243d6b;
  --gold: #c9922a;
  --gold-light: #e8b84b;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-100: #f0f2f5;
  --gray-200: #e2e6ea;
  --gray-400: #9aa5b1;
  --gray-600: #566573;
  --gray-800: #2c3e50;
  --text: #1f2937;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  --transition: 0.2s ease;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =================== TOPBAR =================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--gold);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.topbar a:hover { color: var(--gold-light); }
.topbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-social a {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* =================== HEADER =================== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  height: 52px;
  width: auto;
}
.logo-text {
  line-height: 1.2;
}
.logo-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-text span {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 400;
}

/* =================== NAV =================== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  border: none;
  background: none;
}
.nav-link:hover, .nav-link.active {
  background: var(--gray-100);
  color: var(--navy);
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--gray-200);
  z-index: 100;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--gray-800);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover {
  background: var(--navy);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s;
}

/* =================== HERO SLIDER =================== */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,40,0.75) 0%, rgba(10,20,40,0.3) 60%, transparent 100%);
}
.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 80px 60px 80px;
  max-width: 640px;
}
.hero-caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 8px;
}
.hero-caption p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 10;
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.3); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active {
  background: var(--gold-light);
  transform: scale(1.3);
}

/* =================== QUICK LINKS BAR =================== */
.quick-bar {
  background: var(--navy);
  padding: 0;
}
.quick-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  transition: background var(--transition), color var(--transition);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.quick-link:last-child { border-right: none; }
.quick-link:hover {
  background: var(--navy-light);
  color: var(--gold-light);
}
.quick-link svg {
  width: 24px;
  height: 24px;
  opacity: 0.8;
}
.quick-link:hover svg { opacity: 1; }

/* =================== SECTIONS =================== */
.section { padding: 80px 24px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* =================== ABOUT SECTION =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.highlight-bar {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.highlight-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}
.highlight-item span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* =================== CARDS =================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 20px; }
.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.card-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Department cards */
.dept-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.dept-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.dept-icon svg { width: 26px; height: 26px; }
.dept-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.dept-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.dept-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* =================== GALLERY GRID =================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* =================== SERVICES STRIP =================== */
.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-item {
  background: var(--navy-light);
  padding: 36px 28px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.service-item:last-child { border-right: none; }
.service-item:hover { background: var(--navy); }
.service-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gold-light);
}
.service-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.service-links { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.service-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.service-links a:hover { color: var(--gold-light); }
.service-links a::before { content: '→'; font-size: 0.75rem; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* =================== CTA BANNER =================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/DSC00276-scaled.webp') center/cover no-repeat;
  opacity: 0.15;
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =================== CONTACT INFO =================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.contact-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.contact-row a { color: var(--navy); }
.contact-row a:hover { color: var(--gold); }

/* =================== FOOTER =================== */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =================== PAGE HERO =================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.05) 20px, rgba(255,255,255,0.05) 40px);
}
.page-hero .container { position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* =================== CONTENT PAGE =================== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.content-main h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 32px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200);
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }

.content-sidebar .sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-200);
}
.content-sidebar .sidebar-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

/* Staff card */
.staff-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.staff-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.staff-info h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.staff-info .role { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.staff-info .contact-detail { font-size: 0.85rem; color: var(--gray-600); display: flex; align-items: center; gap: 5px; margin-bottom: 3px; }

/* Info table */
.info-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.info-table tr:nth-child(odd) td { background: var(--off-white); }
.info-table td { padding: 10px 14px; font-size: 0.875rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); }
.info-table td:first-child { font-weight: 600; color: var(--gray-800); width: 40%; }

/* Report list */
.report-list { display: flex; flex-direction: column; gap: 10px; }
.report-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.report-item:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.report-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.report-icon svg { width: 20px; height: 20px; color: var(--gold-light); }
.report-info { flex: 1; }
.report-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.report-info span { font-size: 0.8rem; color: var(--gray-400); }
.report-download {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Church list */
.church-section { margin-bottom: 28px; }
.church-section h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.church-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  gap: 12px;
}
.church-item:last-child { border-bottom: none; }
.church-name { font-size: 0.9rem; font-weight: 500; color: var(--gray-800); }
.church-address { font-size: 0.8rem; color: var(--gray-400); margin-top: 2px; }
.church-phone { font-size: 0.85rem; color: var(--navy); white-space: nowrap; }

/* School / Facility card */
.facility-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.facility-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.facility-meta { display: flex; flex-direction: column; gap: 5px; }
.facility-meta span { font-size: 0.875rem; color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
.facility-meta a { color: var(--navy); }
.facility-meta a:hover { color: var(--gold); }

/* =================== MOBILE NAV =================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--navy);
}
.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  margin-top: 8px;
}
.mobile-nav-logo img { height: 48px; }
.mobile-nav-logo strong { color: var(--navy); font-size: 1rem; display: block; }
.mobile-nav-logo span { color: var(--gray-600); font-size: 0.78rem; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav li a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav li a:hover { color: var(--navy); }
.mobile-nav .mobile-sub {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}
.mobile-nav .mobile-sub a {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 8px 0;
}
.mobile-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 0 6px;
}

/* =================== UTILITIES =================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold); color: var(--white); }
.badge-navy { background: var(--navy); color: var(--white); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { height: 420px; }
  .hero-caption { padding: 40px 24px; }
  .hero-caption h2 { font-size: 1.75rem; }
  .quick-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .services-strip { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .highlight-bar { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .page-hero h1 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .quick-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .quick-link:nth-child(5) { display: none; }
  .quick-link:nth-child(6) { display: none; }
}
