/* ---------------------------------------------------------------
   Page sections: award banner, nav, hero, player, welcome, services,
   outreach, recordings, believe, visit, connect, footer.
   Responsive rules grouped at the bottom.
   --------------------------------------------------------------- */

/* ---------- Award banner ---------- */
.award-banner {
  background: linear-gradient(135deg, #1a1400, #3a2800, #1a1400);
  border-bottom: 2px solid var(--gold);
  padding: 0.65rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.award-star {
  color: var(--gold-light);
  width: 1rem;
  height: 1rem;
}
.award-text {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--parchment);
}
.award-text strong {
  color: var(--gold-light);
}
.award-note {
  font-size: 0.75rem;
  color: rgba(253, 250, 244, 0.55);
  font-style: italic;
  font-family: var(--font-body);
  letter-spacing: 0;
  border-left: 1px solid rgba(201, 146, 42, 0.3);
  padding-left: 0.6rem;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(43, 26, 14, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 146, 42, 0.2);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0;
  /* Logo wraps to 2 lines on phones, stays single on tablet+ */
  max-width: 60%;
  line-height: 1.25;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 250, 244, 0.7);
  text-decoration: none;
  padding: 0.85rem 0.7rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.nav-links a:hover {
  color: var(--gold-light);
  background: rgba(201, 146, 42, 0.08);
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid rgba(201, 146, 42, 0.3);
  border-radius: var(--radius-sm);
}
.nav-toggle .icon {
  width: 1.4rem;
  height: 1.4rem;
}
.nav-toggle[aria-expanded="true"] .icon-menu,
.nav-toggle[aria-expanded="false"] .icon-close {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
  background: var(--deep-brown);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%,
      rgba(201, 146, 42, 0.18) 0%, transparent 70%),
    linear-gradient(170deg, #1a0e06 0%, #2b1a0e 40%, #1a120a 100%);
  z-index: 0;
}
.hero-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(400px, 65vw);
  height: min(400px, 65vw);
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.hero-cross::before,
.hero-cross::after {
  content: '';
  position: absolute;
  background: var(--gold-light);
  border-radius: 4px;
}
.hero-cross::before {
  width: 10%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-cross::after {
  width: 100%;
  height: 10%;
  top: 30%;
  left: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}
.hero-sub {
  font-family: var(--font-label);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.18em;
  color: var(--parchment);
  margin-top: 0.6rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}
.hero-verse {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(253, 250, 244, 0.7);
  max-width: 520px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(253, 250, 244, 0.4);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.8s both;
}
.scroll-hint .arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(253, 250, 244, 0.45));
  animation: pulseFade 2s infinite;
}

/* ---------- Featured player ---------- */
#featured-player {
  background: linear-gradient(135deg, #0f0a04, #1e1108, #0f0a04);
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}
#featured-player::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 30% 50%,
    rgba(201, 146, 42, 0.12) 0%, transparent 70%);
}
.player-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.player-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin: 1rem 0 0.4rem;
}
.player-subtitle {
  font-size: 0.95rem;
  color: rgba(253, 250, 244, 0.6);
  font-style: italic;
  margin-bottom: 1.8rem;
}
.audio-player-wrap {
  background: rgba(253, 250, 244, 0.04);
  border: 1px solid rgba(201, 146, 42, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
}
.audio-player-wrap audio {
  width: 100%;
  margin-bottom: 0.8rem;
  outline: none;
}
.player-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.player-meta-date {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.player-meta-link {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(253, 250, 244, 0.55);
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--dur-fast) var(--ease-out);
}
.player-meta-link:hover {
  color: var(--gold-light);
}
.player-note {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(253, 250, 244, 0.4);
  margin-top: 0.8rem;
  line-height: 1.6;
}

/* ---------- Generic section frame ---------- */
.section {
  padding: 5rem 1.5rem;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-heading em {
  font-style: italic;
  color: var(--rust);
}
.section-lead {
  max-width: 540px;
  font-size: 1rem;
  color: var(--color-text-soft);
  line-height: 1.8;
}

/* ---------- Welcome ---------- */
#welcome {
  background: var(--white);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.welcome-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-soft);
  margin-bottom: 1.2rem;
}
.pastor-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--rust);
  display: block;
  margin-top: 1.5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.welcome-visual {
  background: var(--deep-brown);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.welcome-cross {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  color: rgba(201, 146, 42, 0.1);
  pointer-events: none;
}
.verse-card {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.verse-ref {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}
.welcome-visual .stat {
  color: rgba(253, 250, 244, 0.5);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ---------- Services ---------- */
#services {
  background: var(--parchment);
}
.times-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.time-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}
.time-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.time-icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.time-day {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.time-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.4rem;
}
.time-hour {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ---------- Outreach ---------- */
#outreach {
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 100%);
  position: relative;
  overflow: hidden;
}
#outreach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%,
    rgba(45, 92, 64, 0.45) 0%, transparent 70%);
}
.outreach-inner {
  position: relative;
  z-index: 1;
}
#outreach .section-label {
  color: var(--green-soft);
}
#outreach .section-heading {
  color: #f0f7f2;
}
#outreach .section-heading em {
  color: var(--green-soft);
}
.outreach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 1.5rem;
}
.outreach-text p {
  font-size: 1rem;
  color: rgba(240, 247, 242, 0.85);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.outreach-quote {
  background: rgba(45, 92, 64, 0.5);
  border-left: 4px solid var(--green-soft);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.4rem 1.6rem;
  margin-top: 1.5rem;
}
.outreach-quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-pale);
  margin: 0;
  line-height: 1.65;
}
.outreach-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.outreach-card {
  background: rgba(45, 92, 64, 0.3);
  border: 1px solid rgba(126, 200, 154, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.outreach-card:hover {
  border-color: rgba(126, 200, 154, 0.45);
  background: rgba(45, 92, 64, 0.5);
}
.outreach-card-icon {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--green-soft);
  margin-bottom: 0.6rem;
}
.outreach-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-pale);
  margin-bottom: 0.4rem;
}
.outreach-card p {
  font-size: 0.92rem;
  color: rgba(240, 247, 242, 0.7);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Recordings ---------- */
#recordings {
  background: var(--deep-brown);
  position: relative;
  overflow: hidden;
}
#recordings::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 85% 40%,
    rgba(201, 146, 42, 0.09) 0%, transparent 70%);
}
#recordings .section-inner {
  position: relative;
  z-index: 1;
}
#recordings .section-label {
  color: var(--gold-light);
}
#recordings .section-heading {
  color: var(--white);
}
#recordings .section-heading em {
  color: var(--gold-light);
}
.rec-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.rec-count-tag {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 244, 0.45);
}
.rec-loading,
.rec-error {
  text-align: center;
  padding: 2rem;
  color: rgba(253, 250, 244, 0.5);
  font-style: italic;
}
.rec-error {
  color: #ff9b8a;
}
.rec-more {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.rec-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  border: 1px solid rgba(201, 146, 42, 0.3);
  color: rgba(253, 250, 244, 0.65);
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}
.rec-more a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ---------- Believe ---------- */
#believe {
  background: var(--white);
}
.believe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.believe-item {
  padding: 1.8rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.believe-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
}
.believe-item p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-text-soft);
}

/* ---------- Visit ---------- */
#visit {
  background: var(--parchment);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 1.5rem;
}
.visit-info > * + * {
  margin-top: 1.5rem;
}
.info-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  display: block;
}
.info-value {
  font-size: 1rem;
  color: var(--deep-brown);
  line-height: 1.7;
  font-weight: 600;
}
.info-value a {
  color: var(--rust);
  text-decoration: none;
  padding: 0.25rem 0;
  display: inline-block;
}
.info-value a:hover {
  text-decoration: underline;
}
.map-wrap {
  background: var(--deep-brown);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Connect ---------- */
#connect {
  background: var(--white);
}
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.fb-card {
  background: var(--deep-brown);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.fb-card-glyph {
  position: absolute;
  top: -2rem;
  right: -1rem;
  font-size: 10rem;
  font-weight: 900;
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}
.fb-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  position: relative;
}
.fb-card p {
  font-size: 0.95rem;
  color: rgba(253, 250, 244, 0.7);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  position: relative;
}
.fb-stat {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.8rem;
  position: relative;
}
.fb-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.fb-stat-label {
  font-size: 0.78rem;
  font-family: var(--font-label);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 250, 244, 0.55);
}
.fb-note {
  font-size: 0.82rem;
  color: rgba(253, 250, 244, 0.45);
  font-style: italic;
  margin-bottom: 1.4rem !important;
}
.fb-card .btn-primary {
  width: 100%;
  margin-bottom: 0.6rem;
}
.fb-card .btn-outline {
  width: 100%;
  font-size: 0.75rem;
  background: rgba(253, 250, 244, 0.06);
  border-color: rgba(253, 250, 244, 0.18);
  color: rgba(253, 250, 244, 0.7);
}
.prayer-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(201, 146, 42, 0.25);
}
.prayer-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 0.7rem;
}
.prayer-card > p {
  font-size: 0.98rem;
  color: var(--color-text-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(253, 250, 244, 0.6);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-inner {
  max-width: 700px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.footer-address {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.85rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulseFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */

@media (max-width: 1024px) {
  .nav-links a {
    padding: 0.85rem 0.55rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 4rem 1.25rem;
  }
  .welcome-grid,
  .outreach-grid,
  .visit-grid,
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .times-grid {
    grid-template-columns: 1fr 1fr;
  }
  .believe-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Mobile nav: hide the inline link list, show the toggle */
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(43, 26, 14, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 146, 42, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: flex;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.78rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(201, 146, 42, 0.08);
  }
  .nav-links li:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .award-banner {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    flex-direction: column;
  }
  .award-text {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    line-height: 1.45;
  }
  .award-note {
    border-left: 0;
    padding-left: 0;
    font-size: 0.75rem;
    line-height: 1.45;
  }
  .award-star {
    display: none;
  }

  .section {
    padding: 3.5rem 1rem;
  }

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

  /* Show recording cards instead of table */
  .rec-table {
    display: none;
  }
  .rec-cards {
    display: flex;
  }

  .audio-player-wrap {
    padding: 1.4rem 1.1rem;
  }

  .welcome-visual,
  .fb-card,
  .prayer-card {
    padding: 2rem 1.5rem;
  }

  .fb-stat {
    gap: 1.5rem;
  }
}
