/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ── */
:root {
  --navy:   #0F1E36;
  --gold:   #977C4E;
  --gold-light: #D4C2AE;
  --sage:   #9BAE9A;
  --cream:  #F4F5F7;
  --white:  #FFFFFF;
  --gray:   #6B6B6B;
  --dark:   #2D2D2D;
  --border: #E0E2E8;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: 1060px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-icon { height: 36px; width: auto; }
.hero-logo { height: 90px; width: auto; margin-bottom: 1.25rem; }
.nav-logo-text { font-style: normal; }
.nav-logo-text em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--sage); }
nav .btn-primary { color: var(--white); }
nav .btn-primary:hover { background: var(--sage); color: var(--white); }
.btn-primary-bright,
nav .nav-links a.btn-primary-bright {
  background: var(--gold);
  color: var(--white) !important;
}
.btn-primary-bright:hover { background: var(--sage); color: var(--white) !important; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.75);
}
.btn-outline:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }

/* ── Hero ── */
.hero {
  background-color: var(--navy);
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 0 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.88;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }
.hero .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero .subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* ── Pain Points ── */
.pain {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Option 1: subtle anchor pattern */
.pain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("logo-dark.svg");
  background-size: 60px 60px;
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
.pain .container { position: relative; z-index: 1; }
.pain h2 { color: var(--navy); margin-bottom: 2.5rem; }

.pain-carousel-outer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.pain-carousel-wrap {
  flex: 1;
  min-width: 0;
}
.pain-carousel {
  width: 100%;
  margin-bottom: 2rem;
  transition: height 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pain-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.2s ease, transform 1.2s ease;
  pointer-events: none;
}
.pain-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.pain-slide-inner {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.65;
}

.pain-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
.pain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.pain-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Pain section — who I work with ── */
.pain-who {
  display: inline-flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem 0 0;
  width: 100%;
}
.pain-who-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  width: 160px;
}
.pain-who-icon { color: var(--gold); }
.pain-who-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 700;
}
.pain-who--light .pain-who-icon { color: rgba(255,255,255,0.85); }
.pain-who--light .pain-who-label { color: rgba(255,255,255,0.85); }

.pain-cta {
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  color: var(--dark);
  font-family: 'Playfair Display', serif;
}
.pain-cta-headline {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}

/* ── Credential Tiles (Option 1) ── */
.cred-tiles {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 1.25rem;
}
.cred-tile {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--cream);
}
.cred-stat {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}
.cred-label {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Credential Icons (Option 2) ── */
.cred-icons {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.cred-icon-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.cred-icon-wrap {
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.cred-icon-stat {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.cred-icon-label {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── About Intro ── */
.about-intro { background: var(--white); }
.about-intro .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.about-intro .image-placeholder {
  background: transparent;
  border: none;
  border-radius: 0;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 360px;
  margin-left: auto;
  margin-top: 2.5rem;
  box-shadow: 8px 8px 0px 0px var(--gold);
}
.about-intro .text h2 { color: var(--navy); margin-bottom: 1.25rem; }
.about-intro .text p { color: var(--gray); }

/* ── Testimonials ── */
.testimonials { background: var(--cream); color: var(--dark); }
.testimonials h2 { text-align: center; color: var(--navy); margin-bottom: 3rem; }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial-arrow {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-arrow:hover:not(:disabled) { background: var(--gold); color: var(--white); }
.testimonial-arrow:disabled { opacity: 0.25; cursor: default; }
.testimonial-carousel-wrap {
  overflow: hidden;
  width: 100%;
}
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s ease;
  will-change: transform;
}
.testimonial-track .testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.testimonial-card p {
  font-size: 0.97rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-card .attribution {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--sage);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(255,255,255,0.88); margin-bottom: 2rem; }

/* ── Curriculum Page ── */
.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.page-hero-wave svg { display: block; width: 100%; }
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: var(--sage); max-width: 650px; margin: 0 auto; }

.curriculum-intro { background: var(--cream); }
.curriculum-intro .container { max-width: 780px; text-align: center; }
.curriculum-intro h2 { color: var(--navy); margin-bottom: 1.25rem; }
.curriculum-intro p  { color: var(--gray); }

.programs { background: var(--white); }
.programs h2 { color: var(--navy); text-align: center; margin-bottom: 3rem; }
.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.program-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
  transform: translateY(-2px);
}
.program-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.program-card h3 { color: var(--navy); margin-bottom: 1rem; }
.program-card p  { color: var(--gray); font-size: 0.97rem; }
.program-price { margin-top: 1.25rem; font-weight: 600; color: var(--gold) !important; font-size: 0.95rem; }
.program-card--navy .program-price { color: var(--sage) !important; }
.program-card--navy { background: var(--navy); border-color: var(--navy); }
.program-card--navy h3 { color: var(--white); }
.program-card--navy p  { color: var(--white); }
.program-card--navy .custom-bullets li { color: var(--white); }
.program-card--navy .custom-bullets li::before { color: var(--sage); }
.program-card--navy .custom-bullets li { border-bottom-color: rgba(255,255,255,0.1); }
.program-card--navy .tag { background: transparent; color: var(--sage); }

.week-list { background: var(--cream); }
.week-list h2 { color: var(--navy); text-align: center; margin-bottom: 0.5rem; }
.week-list .subtitle {
  text-align: center;
  color: var(--gold) !important;
  margin-bottom: 3rem;
  font-size: 0.97rem;
}
.weeks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}
.week-item {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 3px 3px 0;
}
.week-item .week-num {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.week-item .week-title { font-size: 0.97rem; color: var(--navy); font-weight: 600; }

/* Flip card weeks */
.week-item.week-flip {
  background: transparent;
  border-left: none;
  padding: 0;
  perspective: 1000px;
  height: 100px;
}
.week-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  cursor: pointer;
}
.week-item.week-flip:hover .week-flip-inner {
  transform: rotateY(180deg);
}
.week-flip-front,
.week-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 0 3px 3px 0;
  padding: 1rem 1.25rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.week-flip-front {
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.week-flip-back {
  background: var(--navy);
  border-left: 3px solid var(--gold);
  transform: rotateY(180deg);
}
.week-flip-back p {
  color: var(--white) !important;
  font-size: 0.88rem;
  margin: 0 0 0.4rem;
  line-height: 1.5;
}
.week-flip-back .week-scripture {
  color: var(--sage) !important;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0;
}

/* ── Program card expand/collapse ── */
.card-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.card-expandable.open { max-height: 1000px; }
.card-toggle {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0.5rem 0 0;
  text-transform: uppercase;
}
.card-toggle--navy { color: var(--sage); }
.card-toggle:hover { opacity: 0.75; }

.custom-bullets { list-style: none; padding: 0; }
.custom-bullets li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--gray);
  font-size: 0.97rem;
  border-bottom: 1px solid var(--border);
}
.custom-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.75rem;
}

/* ── About Page ── */
.about-bio { background: var(--white); position: relative; overflow: hidden; }
.bible-watermark {
  position: absolute;
  right: 0;
  bottom: -7rem;
  width: 102%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-20deg) translateX(22.5rem);
  transform-origin: bottom right;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 55%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 55%);
}
.faith-text { position: relative; z-index: 1; }
.faith-text { grid-column: 1 / -1; max-width: 75%; }
.faith-text h2 { margin-bottom: 1rem; }
.faith-text p { color: var(--gray); font-size: 0.97rem; }
.about-bio .container {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 4rem;
  row-gap: 0.25rem;
  align-items: start;
}
.about-bio .image-placeholder {
  background: var(--gold-light);
  border-radius: 4px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: sticky;
  top: 5rem;
}
.headshot-compare-home { display: flex; gap: 1.5rem; }
.headshot-compare-home .headshot-option img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: 4px; display: block; }
.headshot-wrap { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; margin-top: 60px; }
.headshot-wrap img { position: absolute; width: 120%; height: 112%; object-fit: cover; object-position: top; top: 0%; left: -10%; display: block; }
.about-bio .text h2 { color: var(--navy); margin-bottom: 1.25rem; }
.about-bio .text p  { color: var(--gray); }
.about-bio .divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}
.faith-section { background: var(--cream); }
.faith-section .container { max-width: 780px; text-align: center; }
.faith-section .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: -1rem;
}
.faith-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ── Section Divider ── */
.section-divider-wrap {
  position: relative;
  overflow: visible;
}
.section-divider {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  white-space: nowrap;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 100px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
  display: block;
}
.section-divider-icon {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 1;
  line-height: 1;
}

/* ── Scripture placements ── */
.hero-scripture {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.book-scripture {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 3rem;
  text-align: center;
}
.pain-scripture {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.about-scripture {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 2.5rem 0;
  font-size: 0.85rem;
}
footer a { color: var(--gold); text-decoration: none; }
footer .footer-about { max-width: 600px; margin: 0 auto 1.25rem; line-height: 1.7; opacity: 0.75; }
footer .footer-logo { display: block; margin: 0 auto 1.25rem; opacity: 0.2; width: 28px; }

/* ── CTA Band anchor icon ── */
.cta-band .cta-anchor { display: block; margin: 0 auto 1rem; opacity: 0.18; width: 26px; }

/* ── Page hero anchor watermark ── */
.page-hero-anchor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  opacity: 0.07;
  pointer-events: none;
}
.page-hero-anchor--left { left: 8%; }
.page-hero-anchor--right { right: 8%; }

/* ── Responsive ── */
@media (max-width: 768px) {

  /* Nav */
  nav .container { flex-wrap: wrap; gap: 0.75rem; }
  .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .nav-links a { font-size: 0.82rem; }
  .nav-logo-icon { height: 28px; }

  /* Section spacing */
  section { padding: 3rem 0; }

  /* Hero */
  .hero { padding: 4rem 0 5rem; }
  .hero .subhead { font-size: 1rem; }
  .hero-logo { height: 70px; }
  .hero-scripture-citation { white-space: nowrap; }

  /* Page hero */
  .page-hero { padding: 3rem 0; }

  /* Pain carousel */
  .pain-slide-inner { font-size: 1.1rem; }
  .pain-carousel-outer { gap: 0.25rem; }
  .pain-quote { font-size: 2.5rem; }

  /* About intro (home page) */
  .about-intro .container { grid-template-columns: 1fr; }
  .about-intro .image-placeholder { max-width: 100%; margin: 0 auto; aspect-ratio: 3/2; }
  .about-intro .image-placeholder img {
    object-position: 50% 25% !important;
    transform: scale(1.085) translateX(-4%) !important;
  }
  .about-intro .text a.btn-primary {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  /* Testimonials */
  .testimonial-track .testimonial-card { flex: 0 0 100%; }

  /* Program cards */
  .program-cards { grid-template-columns: 1fr; }

  /* Week flip cards — tap to flip on mobile */
  .weeks { grid-template-columns: 1fr; }
  .week-item.week-flip { height: 80px; perspective: 1000px; }
  .week-flip-inner { position: relative; transform-style: preserve-3d; }
  .week-item.week-flip:hover .week-flip-inner { transform: none; }
  .week-item.week-flip.flipped .week-flip-inner { transform: rotateY(180deg); }
  .week-flip-front,
  .week-flip-back {
    position: absolute;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    height: 100%;
  }

  /* About bio */
  .about-bio .container { grid-template-columns: 1fr; column-gap: 0; row-gap: 2rem; }
  .headshot-wrap { margin-top: 0; width: 240px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .faith-text { grid-column: auto; max-width: 100%; }
  .bible-watermark {
    display: block;
    width: 160%;
    bottom: -2rem;
    transform: rotate(-20deg) translateX(6rem);
  }

  /* Footer */
  footer .footer-about { font-size: 0.82rem; }
  footer { padding: 2rem 1rem; }
}
