/* ===================================================================
   ZION UNITED CHURCH — Global Stylesheet
   Design System · Layout · Components · Responsive
   =================================================================== */

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

/* --- Root Variables --- */
:root {
  --color-primary: #7B2D42;
  --color-primary-dark: #5E1F32;
  --color-gold: #C9A84C;
  --color-gold-light: #D4BA6A;
  --color-dark: #1A1A2E;
  --color-light: #F9F6F0;
  --color-white: #FFFFFF;
  --color-muted: #6B7280;
  --color-border: #E5E7EB;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 80px;
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.16);
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.3;
}

h1 { font-size: 2.75rem; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 2.125rem; font-weight: 600; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; font-family: var(--font-body); color: var(--color-dark); }

p {
  margin-bottom: 1rem;
  color: var(--color-dark);
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Section Spacing --- */
.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--color-light);
}

.section-white {
  background-color: var(--color-white);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-gold);
}

.section-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-primary h2,
.section-primary h3 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.section-header p {
  color: var(--color-muted);
  font-size: 1.1rem;
}

/* --- Gold Divider with Cross --- */
.divider-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 300px;
}

.divider-cross::before,
.divider-cross::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-gold);
}

.divider-cross svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid var(--color-border);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
}

/* Logo & Brand */
.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.header-brand svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.header-brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  white-space: nowrap;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  overflow: hidden;
}

.nav-list {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-gold);
}

.nav-link.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-gold);
  font-weight: 600;
}

/* Header Right Items */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--color-primary);
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.btn-header {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  color: var(--color-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   HERO SECTIONS
   =================================================================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.6) 0%,
    rgba(123, 45, 66, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Hero (smaller) */
.page-hero {
  min-height: 360px;
}

.page-hero h1 {
  font-size: 2.75rem;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(123, 45, 66, 0.3);
  color: var(--color-white);
}

.btn-outline {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--color-white);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-white:hover {
  background: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  color: var(--color-primary);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================================================================
   CARDS
   =================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.75rem;
}

.card-body h3 {
  margin-bottom: 0.75rem;
}

.card-body p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

/* Icon card (no image) */
.icon-card {
  padding: 2rem;
  text-align: center;
}

.icon-card .card-icon {
  margin: 0 auto 1.25rem auto;
}

/* ===================================================================
   SERVICE TIMES CARD
   =================================================================== */
.service-card {
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.service-card .service-time {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.service-card .service-day {
  font-size: 1.1rem;
  color: var(--color-muted);
}

/* ===================================================================
   MISSION STATEMENT BAND
   =================================================================== */
.mission-band {
  background: var(--color-primary);
  padding: 4rem 2rem;
  text-align: center;
}

.mission-band blockquote {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-white);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.mission-band blockquote::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ===================================================================
   PHOTO GALLERY STRIP
   =================================================================== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.photo-strip img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* ===================================================================
   EVENTS
   =================================================================== */
.event-card {
  display: flex;
  gap: 1.5rem;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  align-items: flex-start;
}

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

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  min-width: 70px;
  flex-shrink: 0;
}

.event-date .month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.event-info h4 {
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.event-info p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.event-info .event-time {
  font-weight: 600;
  color: var(--color-gold);
  font-size: 0.85rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ===================================================================
   TIMELINE
   =================================================================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--color-gold);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 2rem;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border: 3px solid var(--color-gold);
  border-radius: 50%;
}

.timeline-item:nth-child(odd)::after {
  right: -7px;
}

.timeline-item:nth-child(even)::after {
  left: -7px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--color-dark);
  font-size: 0.95rem;
}

/* ===================================================================
   CONTACT FORM
   =================================================================== */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border: 1px solid #c3e6cb;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border: 1px solid #f5c6cb;
}

/* ===================================================================
   CONTACT INFO CARD
   =================================================================== */
.contact-info-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.contact-info-text h4 {
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

/* ===================================================================
   TWO COLUMN LAYOUT
   =================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col-wide-left {
  grid-template-columns: 1.4fr 1fr;
}

.two-col-wide-right {
  grid-template-columns: 1fr 1.4fr;
}

/* ===================================================================
   PULL QUOTE
   =================================================================== */
.pull-quote {
  position: relative;
  padding: 2.5rem 3rem;
  background: var(--color-white);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.pull-quote cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
  font-style: normal;
}

/* ===================================================================
   FEATURE LIST
   =================================================================== */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================================================================
   CALENDAR TABLE
   =================================================================== */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.calendar-table thead {
  background: var(--color-primary);
}

.calendar-table thead th {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 0.75rem;
  text-align: center;
}

.calendar-table tbody td {
  padding: 0.875rem 0.75rem;
  text-align: center;
  vertical-align: top;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  min-height: 80px;
}

.calendar-table tbody td.has-event {
  background: rgba(201, 168, 76, 0.1);
}

.calendar-table .cal-event {
  display: block;
  font-size: 0.7rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 2px 4px;
  border-radius: 3px;
  margin-top: 4px;
}

.calendar-table tbody td.empty {
  background: rgba(0,0,0,0.02);
  color: var(--color-muted);
}

/* ===================================================================
   CREED / POEM BLOCK
   =================================================================== */
.creed-block {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border-top: 4px solid var(--color-gold);
}

.creed-block h3 {
  margin-bottom: 1.5rem;
}

.creed-block p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 2;
  color: var(--color-dark);
}

/* ===================================================================
   MAP EMBED
   =================================================================== */
.map-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.animate-fade-in.visible:nth-child(1) { transition-delay: 0s; }
.animate-fade-in.visible:nth-child(2) { transition-delay: 0.1s; }
.animate-fade-in.visible:nth-child(3) { transition-delay: 0.2s; }
.animate-fade-in.visible:nth-child(4) { transition-delay: 0.3s; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 4rem 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col p {
  color: rgba(249, 246, 240, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(249, 246, 240, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-links {
  list-style: none;
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--color-gold);
  font-weight: 700;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(249, 246, 240, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* ===================================================================
   RESPONSIVE — TABLET (≤ 992px)
   =================================================================== */
@media (max-width: 992px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero h1 { font-size: 2.75rem; }
  .hero { min-height: 480px; }
  .page-hero { min-height: 300px; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .two-col-wide-left, .two-col-wide-right { grid-template-columns: 1fr; gap: 2rem; }
  .events-grid { grid-template-columns: 1fr; }

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

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

  .timeline::before { left: 0; }
  .timeline-item { width: 100%; left: 0 !important; padding-left: 2.5rem !important; padding-right: 0 !important; text-align: left !important; }
  .timeline-item::after { left: -7px !important; right: auto !important; }
}

/* ===================================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================================================== */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 0.75rem 1rem;
    position: relative;
  }

  .header-brand-name {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    flex-basis: 100%;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 1rem 0;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    white-space: normal;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }

  .nav-link.active {
    border-bottom: 1px solid var(--color-border);
    background: rgba(123, 45, 66, 0.05);
  }

  .header-right {
    order: 2;
  }

  .header-phone { display: none; }
  .btn-header { font-size: 0.8rem; padding: 0.4rem 0.8rem; }

  .hero { min-height: 400px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero { min-height: 260px; }

  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }

  .card-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }

  .mission-band blockquote { font-size: 1.4rem; }

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

  .pull-quote { padding: 1.5rem 1.75rem; }
  .pull-quote p { font-size: 1.15rem; }

  .creed-block { padding: 2rem 1.5rem; }

  .calendar-table { font-size: 0.8rem; }
  .calendar-table thead th { padding: 0.6rem 0.25rem; font-size: 0.75rem; }
  .calendar-table tbody td { padding: 0.5rem 0.25rem; }
}

/* ===================================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   =================================================================== */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 0.95rem; }

  .btn-primary, .btn-outline, .btn-white {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .btn-group { flex-direction: column; align-items: stretch; }

  .event-card { flex-direction: column; gap: 1rem; }

  .photo-strip { grid-template-columns: 1fr; }

  .service-card { padding: 1.75rem; }
  .service-card .service-time { font-size: 1.5rem; }
}

/* ===================================================================
   PRINT STYLES
   =================================================================== */
@media print {
  .site-header, .site-footer, .hamburger, .btn-header { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; background: none; }
  .hero-overlay { display: none; }
  .hero-bg { display: none; }
  .hero h1 { color: black; text-shadow: none; }
}
