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

:root {
  /* Designer's palette */
  --green-dark:  #0d2040;
  --green-mid:   #3a7bd5;
  --bronze:      #BB8A52;
  --gold:        #FFBA00;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F8F7F3;
  --paper:       #F2EFE9;
  --ink:         #111111;
  --ink-mid:     #555555;
  --ink-light:   #999999;
  --border:      #E5E2DC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── UTILITY ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

.label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--green-mid); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 36px;
  background: transparent;
  color: var(--green-dark);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--green-dark);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--green-dark); color: var(--white); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
nav.nav-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
/* logo + links: white on transparent, dark on scrolled */
nav:not(.nav-scrolled) .nav-logo img { filter: brightness(0) invert(1); }
nav:not(.nav-scrolled) .nav-links a { color: rgba(255,255,255,0.80); }
nav:not(.nav-scrolled) .nav-links a:hover { color: var(--white); }
nav:not(.nav-scrolled) .nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-dark); }
.nav-cta {
  padding: 10px 26px;
  background: var(--green-dark);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-mid) !important; }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 4px;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
nav.nav-scrolled .nav-hamburger span { background: var(--ink); }
nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO (full-bleed cinematic) ─── */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #060d1e;
}
/* Full-bleed background photo */
.hero-bg-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 55%;
  display: block;
  z-index: 0;
}
/* Multi-layer cinematic gradient — face area stays visible, right darkens for text */
.hero-cin-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(6,13,30,0.04) 0%,
      rgba(6,13,30,0.15) 22%,
      rgba(6,13,30,0.72) 48%,
      rgba(6,13,30,0.94) 68%,
      rgba(6,13,30,0.98) 100%
    ),
    linear-gradient(to top, rgba(6,13,30,0.75) 0%, transparent 25%),
    linear-gradient(to bottom, rgba(6,13,30,0.45) 0%, transparent 16%);
  z-index: 1;
}
/* Subtle film grain */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  pointer-events: none;
  z-index: 2;
}
/* Bottom-left tag pinned over photo */
.hero-photo-tag {
  position: absolute;
  bottom: 44px;
  left: 48px;
  z-index: 4;
  background: var(--gold);
  padding: 8px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #060d1e;
}
/* Centred content rail, pushed to the right half */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 100vh;
}
.hero-content {
  width: 48%;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 14px;
  margin-bottom: 30px;
}
.hero-eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-name {
  margin-bottom: 28px;
  text-align: right;
}
.hero-name-first,
.hero-name-last {
  font-family: 'Playfair Display', serif;
  font-size: clamp(62px, 7.8vw, 126px);
  font-weight: 700;
  line-height: 0.90;
  letter-spacing: -0.01em;
  color: var(--white);
  display: block;
}
.hero-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
  margin-left: auto;
}
.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 42px;
  text-align: right;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 36px;
  background: transparent;
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.40);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--green-dark);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 24s linear infinite;
}
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  padding: 0 28px;
}
.marquee-dot {
  color: var(--gold);
  padding: 0 4px;
}

/* ─── ABOUT ─── */
#about {
  padding: 140px 0;
  background: var(--white);
}
#about .label { color: var(--gold); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.about-left {}
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 32px;
}
.about-heading span {
  display: none;
}
.about-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}
.about-right {
  position: relative;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  width: 50%;
  bottom: -32px;
  right: -32px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-badge {
  position: absolute;
  top: 28px;
  left: -24px;
  background: var(--gold);
  padding: 16px 20px;
  text-align: center;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1;
  color: var(--green-dark);
}
.about-badge-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: 2px;
}

/* ─── BOOK ─── */
#book {
  padding: 140px 0;
  background: var(--off-white);
}
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.book-cover-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.book-cover-wrap::before {
  content: '';
  position: absolute;
  inset: 40px -20px -20px 40px;
  background: var(--green-dark);
  opacity: 0.06;
}
.book-cover {
  position: relative;
  width: 100%;
  max-width: 400px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(13,32,64,0.22));
}
.book-content {}
.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.book-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0;
}
.book-title-sub {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.book-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 28px;
}
.book-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}
.book-format-note {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 14px;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,32,64,0); transform: translateY(0); }
  50%       { box-shadow: 0 8px 28px rgba(13,32,64,0.28); transform: translateY(-3px); }
}
.btn-buy-now {
  animation: btn-pulse 2.8s ease-in-out infinite;
}
.book-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

/* ─── CHURCH ─── */
#church {
  padding: 140px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.church-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.church-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 80px;
}
.church-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--green-dark);
}
.church-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 28px;
}
/* Clean link cards */
.church-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.church-card {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.church-card:last-child { border-right: none; }
.church-card:hover { background: var(--green-dark); }
.church-card:hover .church-card-name,
.church-card:hover .church-card-sub,
.church-card:hover .church-card-arrow { color: var(--white); }
.church-card:hover .church-card-logo { filter: brightness(0) invert(1); }
.church-card-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 28px;
  display: block;
  transition: filter 0.3s;
}
.church-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.church-card-sub {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.6;
  flex: 1;
  transition: color 0.3s;
}
.church-card-arrow {
  margin-top: 32px;
  font-size: 22px;
  color: var(--bronze);
  transition: color 0.3s;
}
/* ─── SUNDAY SERVICE ─── */
.sunday-service {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-auto-rows: 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 64px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10);
}
.sunday-service-info {
  background: var(--green-dark);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sunday-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 40px;
  width: fit-content;
}
.sunday-service-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}
.sunday-service-time {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.sunday-time-main {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.sunday-time-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.sunday-service-location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
}
.sunday-service-location svg { flex-shrink: 0; opacity: 0.7; }
.sunday-directions-btn {
  margin-top: 8px;
  align-self: flex-start;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
}
.sunday-service-map {
  min-height: 400px;
  background: var(--border);
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  display: flex;
}
.sunday-service-map iframe {
  width: 100%;
  flex: 1;
  border: 0;
  display: block;
  vertical-align: top;
}

/* ─── VIDEOS (YouTube) ─── */
#videos {
  padding: 140px 0;
  background: var(--off-white);
}
.videos-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.videos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.videos-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 108px);
  line-height: 0.88;
  color: var(--green-dark);
}
.videos-heading span {
  display: none;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  background: var(--white);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(13,32,64,0.12);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.video-card:hover .video-play-btn { transform: scale(1.1); background: rgba(255,255,255,1); }
.video-play-btn::after {
  content: '';
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent var(--green-dark);
  margin-left: 4px;
}
.video-body { padding: 20px 22px 26px; }
.video-date {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 9px;
}
.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.35;
}
.videos-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px;
  color: var(--ink-light);
  font-size: 14px;
}
.videos-loading a { color: var(--green-dark); }
.videos-subscribe {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.videos-subscribe-text {
  font-size: 14px;
  color: var(--ink-mid);
  font-weight: 300;
}

/* ─── CONTACT ─── */
#contact {
  padding: 140px 0;
  background: var(--green-dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.contact-left {}
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-heading span {
  display: none;
}
.contact-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 48px;
}
.contact-socials { display: flex; gap: 12px; }
.social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.btn-gold {
  align-self: flex-start;
  margin-top: 8px;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.88; }

/* ─── FOOTER ─── */
footer {
  background: #0a2519;
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  list-style: none;
}
.footer-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleReveal {
  from { opacity: 0; transform: scale(0.97) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes labelWipe {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to   { clip-path: inset(0 0% 0 0);   opacity: 1; }
}

/* ─── HERO ENTRANCE (CSS, fires on page load) ─── */
.hero-bg-photo  { animation: scaleReveal 1.8s cubic-bezier(0.16,1,0.3,1) 0s both; }
.hero-eyebrow   { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.30s both; }
.hero-name      { animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.44s both; }
.hero-rule      { animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.62s both; }
.hero-quote     { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.72s both; }
.hero-actions   { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.86s both; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1),
              transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ─── HEADING-SPECIFIC SCROLL ANIMATION ─── */
.reveal-heading {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1),
              transform 1.1s cubic-bezier(0.16,1,0.3,1);
}
.reveal-heading.in { opacity: 1; transform: translateY(0); }

/* ─── LABEL SLIDE ANIMATION ─── */
.reveal-label {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s,
              transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.reveal-label.in { opacity: 1; transform: translateX(0); }

/* ─── BOOK COVER HOVER TILT ─── */
.book-cover-wrap {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.book-cover-wrap:hover {
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

/* ─── SUBTLE HEADING UNDERLINE DRAW ─── */
.animated-heading {
  position: relative;
  display: inline-block;
}
.animated-heading::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.7s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.reveal-heading.in .animated-heading::after { width: 100%; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {

  /* Nav: show hamburger, hide links by default */
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  nav.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 15px 0;
    color: var(--ink) !important;
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .nav-cta {
    display: block;
    margin-top: 0;
    padding: 15px 0;
    background: transparent !important;
    color: var(--ink) !important;
    border: none;
  }

  /* Hero — mobile */
  .hero-bg-photo { width: 100%; }
  .hero-photo-tag { left: 24px; bottom: 24px; font-size: 9px; }
  .hero-inner { justify-content: flex-end; padding: 0 24px; }
  .hero-content { width: 100%; padding: 120px 0 80px; align-items: flex-end; }
  .hero-cin-overlay {
    background:
      linear-gradient(to bottom, rgba(6,13,30,0.55) 0%, rgba(6,13,30,0.35) 30%, rgba(6,13,30,0.80) 70%, rgba(6,13,30,0.96) 100%),
      rgba(6,13,30,0.30);
  }
  .hero-name-first, .hero-name-last { font-size: clamp(52px, 13vw, 84px); }

  /* Section padding — consistent and tighter on mobile */
  #about, #book, #church, #videos, #contact { padding: 72px 0; }
  footer { padding: 40px 0; }

  /* Grid sections */
  .about-inner, .book-inner, .church-intro, .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .videos-inner, .church-inner { padding: 0 24px; }
  .videos-grid { grid-template-columns: 1fr; }
  .videos-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Ministry cards — no borders, no box, flows as plain content */
  .church-cards {
    grid-template-columns: 1fr;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .church-card {
    border-right: none;
    padding: 0;
  }
  .church-card:last-child { border-bottom: none; }
  .church-card:hover { background: transparent; }
  .church-card:hover .church-card-name,
  .church-card:hover .church-card-sub,
  .church-card:hover .church-card-arrow { color: inherit; }
  .church-card:hover .church-card-logo { filter: none; }
  .church-card-name { color: var(--green-dark); }
  .church-card-sub { color: var(--ink-light); }
  .church-card-arrow { color: var(--bronze); }

  /* Sunday Service */
  .sunday-service { grid-template-columns: 1fr; margin-top: 40px; }
  .sunday-service-info { padding: 40px 28px; }
  .sunday-service-map { height: 280px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; padding: 0 24px; }
  .footer-links { justify-content: center; }
}
