/* ========================================
   BEAUTIFUL LITURGIES — Global Stylesheet
   ======================================== */
:root {
  --parchment: #FAFAF8;
  --warm-cream: #F5F2ED;
  --warm-charcoal: #2C2C2C;
  --deep-charcoal: #1A1A1A;
  --muted-gold: #C4A265;
  --warm-gray: #9A9578;
  --soft-sage: #B9D0B3;
  --white: #FFFFFF;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-logo: 'tangier', cursive;
  --max-width: 1000px;
  --max-width-wide: 1200px;
  --section-padding: 140px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--warm-charcoal);
  background: var(--parchment);
  font-size: 15.58px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ========================================
   Typography
   ======================================== */
.section-tag {
  font-family: var(--font-body);
  font-size: 9.84px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 28px;
}

.headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: normal;
  line-height: 0.95;
  margin-bottom: 32px;
}

.headline--lg { font-size: 52.48px; }
.headline--md { font-size: 39.36px; }
.headline--sm { font-size: 29.52px; }

.body-text {
  font-family: var(--font-body);
  font-size: 15.58px;
  line-height: 1.8;
  color: var(--warm-charcoal);
  max-width: 680px;
}

.body-text em { color: var(--warm-gray); }
.body-text p + p { margin-top: 24px; }

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--muted-gold);
  margin: 40px 0;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-logo {
  font-family: var(--font-logo);
  font-style: normal;
  font-weight: 800;
  font-size: 20.50px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--warm-charcoal);
  white-space: nowrap;
  padding: 0.12em 0.18em 0.18em;
}

.brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.brand-stack > span { display: block; }
.brand-stack > span + span { margin-top: 0.14em; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 11.48px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.5s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--muted-gold);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--muted-gold);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm-charcoal);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10.66px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--muted-gold);
  color: var(--muted-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  pointer-events: none;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background: var(--muted-gold);
  color: var(--parchment);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 162, 101, 0.3);
}

.btn--filled {
  background: var(--muted-gold);
  color: var(--parchment);
}

.btn--filled:hover {
  background: #b8943a;
  border-color: #b8943a;
}

.btn--dark {
  border-color: rgba(250, 250, 248, 0.3);
  color: var(--parchment);
}

.btn--dark:hover {
  background: var(--muted-gold);
  border-color: var(--muted-gold);
  color: var(--parchment);
}

.btn--text {
  border: none;
  padding: 0;
  font-size: 12.30px;
  letter-spacing: 0.1em;
  color: var(--muted-gold);
  background: none;
}

.btn--text:hover {
  color: #b8943a;
  background: none;
}

.btn--text::after {
  content: ' →';
}

/* ========================================
   Page Header (inner pages)
   ======================================== */
.page-header {
  padding: 160px 48px var(--section-padding);
  text-align: center;
}

.page-header .headline {
  margin-bottom: 20px;
}

.page-header .body-text {
  margin: 24px auto 0;
  text-align: center;
  font-size: 10.66px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm-gray);
  max-width: 500px;
}

/* ========================================
   Section base
   ======================================== */
.section {
  padding: var(--section-padding) 48px;
}

.section--parchment { background: var(--parchment); }
.section--cream { background: var(--warm-cream); }
.section--dark { background: var(--deep-charcoal); }
.section--dark .section-tag { color: var(--muted-gold); }
.section--dark .headline { color: var(--parchment); }
.section--dark .body-text { color: rgba(250, 250, 248, 0.6); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-inner--wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

/* ========================================
   Liturgy Cards (reusable)
   ======================================== */
.liturgy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.liturgy-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.liturgy-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196, 162, 101, 0.3);
  transform: translateY(-4px);
}

/* Light variant for parchment/cream backgrounds */
.liturgy-card--light {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}

.liturgy-card--light:hover {
  background: var(--white);
  border-color: var(--muted-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.liturgy-card-thumb {
  aspect-ratio: 16/10;
  background: rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.section--dark .liturgy-card-thumb {
  background: rgba(255,255,255,0.03);
}

.liturgy-card-thumb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.liturgy-card-thumb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 10px solid rgba(0,0,0,0.2);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  z-index: 1;
  transition: border-left-color 0.3s ease;
}

.section--dark .liturgy-card-thumb::after {
  border-color: rgba(250, 250, 248, 0.15);
}

.section--dark .liturgy-card-thumb::before {
  border-left-color: rgba(250, 250, 248, 0.3);
}

.liturgy-card:hover .liturgy-card-thumb::after {
  border-color: var(--muted-gold);
  background: rgba(196, 162, 101, 0.08);
}

.liturgy-card:hover .liturgy-card-thumb::before {
  border-left-color: var(--muted-gold);
}

.liturgy-card-body {
  padding: 24px;
}

.liturgy-card-theme {
  font-family: var(--font-body);
  font-size: 9.02px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-sage);
  margin-bottom: 10px;
}

.liturgy-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 19.68px;
  color: var(--warm-charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.section--dark .liturgy-card-title {
  color: var(--parchment);
}

.liturgy-card-meta {
  font-family: var(--font-body);
  font-size: 11.48px;
  color: var(--warm-gray);
}

.liturgy-card-meta span { margin-right: 8px; }

.liturgy-card-formats {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.liturgy-card-format {
  font-family: var(--font-body);
  font-size: 9.84px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 4px 10px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.liturgy-card-format:hover {
  border-color: var(--muted-gold);
  color: var(--muted-gold);
}

/* ========================================
   Filter Bar
   ======================================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  align-items: center;
}

.filter-label {
  font-family: var(--font-body);
  font-size: 9.84px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-right: 8px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 11.48px;
  padding: 8px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  color: var(--warm-gray);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--muted-gold);
  color: var(--muted-gold);
}

.filter-search {
  font-family: var(--font-body);
  font-size: 13.12px;
  padding: 10px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  color: var(--warm-charcoal);
  outline: none;
  flex: 1;
  min-width: 200px;
  transition: border-color 0.3s ease;
}

.filter-search::placeholder { color: rgba(0,0,0,0.25); }
.filter-search:focus { border-color: var(--muted-gold); }

/* ========================================
   Download Cards (For Your Church)
   ======================================== */
.download-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
}

.download-card:hover {
  border-color: var(--muted-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.download-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 21.32px;
  color: var(--warm-charcoal);
  margin-bottom: 6px;
}

.download-card-ref {
  font-family: var(--font-body);
  font-size: 12.30px;
  color: var(--warm-gray);
  margin-bottom: 6px;
}

.download-card-theme {
  font-family: var(--font-body);
  font-size: 9.02px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft-sage);
  margin-bottom: 20px;
}

.download-card-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.download-btn {
  font-family: var(--font-body);
  font-size: 9.84px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-gold);
  padding: 8px 16px;
  border: 1px solid var(--muted-gold);
  background: transparent;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.download-btn:hover {
  background: var(--muted-gold);
  color: var(--parchment);
}

/* ========================================
   Elegant icon treatment (no emojis)
   ======================================== */
.church-use-icon,
.how-card-icon {
  font-size: 14.76px;
  color: var(--muted-gold);
  margin-bottom: 24px;
  letter-spacing: 0.3em;
}

.about-fact-icon {
  color: var(--muted-gold);
  font-size: 13.12px;
}

.platform-card-icon {
  width: 40px;
  height: 1px;
  background: var(--muted-gold);
  margin: 0 auto 20px;
}

/* ========================================
   About page
   ======================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--warm-cream);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-family: var(--font-body);
  font-size: 10.66px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.about-facts {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.about-fact {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 13.12px;
  color: var(--warm-gray);
}

.about-fact-icon {
  font-size: 14.76px;
  flex-shrink: 0;
}

/* Theology section */
.theology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.theology-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
}

.theology-card-title {
  font-family: var(--font-body);
  font-size: 10.66px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-charcoal);
  margin-bottom: 10px;
}

.theology-card-body {
  font-family: var(--font-body);
  font-size: 13.12px;
  line-height: 1.7;
  color: var(--warm-gray);
}

.theology-card-ref {
  font-size: 9.84px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-top: 16px;
}

/* ========================================
   Subscribe section (reusable)
   ======================================== */
.subscribe-form {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13.12px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--parchment);
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-input::placeholder { color: rgba(250, 250, 248, 0.3); }
.subscribe-input:focus { border-color: var(--muted-gold); }

.subscribe-platforms {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.subscribe-platform {
  font-family: var(--font-body);
  font-size: 10.66px;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 248, 0.4);
  transition: color 0.3s ease;
}

.subscribe-platform:hover { color: var(--muted-gold); }

/* ========================================
   Individual Liturgy page
   ======================================== */
.liturgy-single-video {
  max-width: 800px;
  margin: 0 auto 60px;
  aspect-ratio: 16/9;
  background: var(--deep-charcoal);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.08);
}

.liturgy-single-video::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(250, 250, 248, 0.2);
}

.liturgy-single-video::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-40%, -50%);
  width: 0; height: 0;
  border-left: 16px solid rgba(250, 250, 248, 0.3);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  z-index: 1;
}

.liturgy-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.liturgy-tab {
  font-family: var(--font-body);
  font-size: 11.48px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 16px 28px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.liturgy-tab:hover,
.liturgy-tab.active {
  color: var(--muted-gold);
  border-bottom-color: var(--muted-gold);
}

.liturgy-text {
  max-width: 700px;
  margin: 0 auto;
}

.liturgy-text-section {
  margin-bottom: 48px;
}

.liturgy-text-label {
  font-family: var(--font-body);
  font-size: 9.02px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-gold);
  margin-bottom: 16px;
}

.liturgy-text-leader {
  font-family: var(--font-body);
  font-size: 15.58px;
  line-height: 1.8;
  color: var(--warm-charcoal);
  font-weight: 600;
  margin-bottom: 8px;
}

.liturgy-text-congregation {
  font-family: var(--font-body);
  font-size: 15.58px;
  line-height: 1.8;
  color: var(--warm-charcoal);
  font-weight: 400;
}

.liturgy-text-direction {
  font-family: var(--font-body);
  font-size: 12.30px;
  font-style: italic;
  color: var(--warm-gray);
  margin: 8px 0;
}

.liturgy-text-scripture {
  font-family: var(--font-body);
  font-size: 16.40px;
  line-height: 1.85;
  color: var(--warm-charcoal);
}

.liturgy-text-ref {
  font-family: var(--font-body);
  font-size: 11.48px;
  color: var(--warm-gray);
  text-align: right;
  margin-top: 8px;
}

/* ========================================
   Quote Block
   ======================================== */
.quote-section {
  padding: var(--section-padding) 48px;
  text-align: center;
  background: var(--parchment);
}

.quote-inner {
  max-width: 800px;
  margin: 0 auto;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 29.52px;
  line-height: 1.5;
  color: var(--warm-charcoal);
  margin-bottom: 30px;
}

.quote-rule {
  width: 40px;
  height: 1px;
  background: var(--muted-gold);
  margin: 0 auto 20px;
}

.quote-attr {
  font-family: var(--font-body);
  font-size: 11.48px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--warm-cream);
  padding: 80px 48px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.footer-logo {
  font-family: var(--font-logo);
  font-style: normal;
  font-weight: 800;
  font-size: 29.52px;
  line-height: 0.72;
  color: var(--warm-charcoal);
  margin-bottom: 42px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 9.84px;
  letter-spacing: 0.25em;
  color: var(--warm-gray);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 11.48px;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  transition: color 0.3s ease;
}

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

.footer-copy {
  font-family: var(--font-body);
  font-size: 10.66px;
  color: var(--warm-gray);
  opacity: 0.6;
}

/* ========================================
   Animations & Transitions
   ======================================== */

/* Fade in from below */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Gold rule draw-in */
.gold-rule {
  width: 0;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.gold-rule.drawn {
  width: 60px;
}

/* Text reveal word-by-word */
.reveal-text .reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-text.revealed .reveal-word {
  opacity: 1;
  transform: translateY(0);
}

/* Shape step numbers */
.shape-step-num {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.shape-step-num.num-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Cursor glow on dark sections */
.cursor-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Page entrance */
body {
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-loaded {
  opacity: 1;
}

/* Nav transitions */
.nav {
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

/* Card hover transitions */
.liturgy-card,
.download-card,
.church-use,
.how-card,
.theology-card,
.pack-card,
.platform-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
}

/* Quote section subtle float */
.quote-text {
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Liturgy tab panel transitions handled in JS */

/* Subscribe input focus glow */
.subscribe-input:focus {
  box-shadow: 0 0 20px rgba(196, 162, 101, 0.15);
}

/* Button hover lift */
.btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Section tag letter-spacing animation */
.section-tag {
  transition: letter-spacing 0.6s ease;
}

.fade-in.visible .section-tag,
.section-tag {
  letter-spacing: 0.3em;
}

/* Mobile nav animation */
.nav-links {
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    z-index: 99;
  }

  .nav-links.nav-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 16.40px;
  }

  .nav-toggle {
    z-index: 101;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  :root { --section-padding: 80px; }
  
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  
  .section, .page-header, .quote-section { padding-left: 24px; padding-right: 24px; }
  .page-header { padding-top: 120px; }
  
  .headline--lg { font-size: 29.52px; }
  .headline--md { font-size: 24.60px; }
  .headline--sm { font-size: 21.32px; }
  .body-text { font-size: 13.94px; }
  
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .theology-grid { grid-template-columns: 1fr; }
  .liturgy-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .subscribe-form { flex-direction: column; }
  .subscribe-platforms { flex-wrap: wrap; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .quote-text { font-size: 21.32px; }
}

@media (max-width: 480px) {
  .headline--lg { font-size: 24.60px; }
}
