/* ==========================================================
   SMFCCDXB.COM — SHARED DESIGN SYSTEM
   Matches SMFCC Connect visual identity:
   Playfair Display + Inter · Blue #2E3192 · Teal #11B2BB
   ========================================================== */

:root {
  --blue-deep: #2E3192;
  --blue-darker: #1F2168;
  --blue-light: #4B4FB8;
  --teal: #11B2BB;
  --teal-light: #3FCBD2;
  --red: #ED1C24;
  --orange: #F7941D;
  --yellow: #FFC60B;
  --tan: #D9B68C;
  --tan-light: #F2E8DA;
  --bg: #F4F6FB;
  --white: #FFFFFF;
  --ink: #232342;
  --ink-soft: #5A5A78;
  --border: #E4E0F0;
  --card-border: rgba(46, 49, 146, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(46, 49, 146, 0.05), 0 6px 18px rgba(46, 49, 146, 0.07);
  --shadow-md: 0 4px 12px rgba(46, 49, 146, 0.08), 0 16px 40px rgba(46, 49, 146, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(17,178,187,0.25); }
*:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
body ::-webkit-scrollbar { width: 8px; height: 8px; }
body ::-webkit-scrollbar-track { background: transparent; }
body ::-webkit-scrollbar-thumb { background: rgba(46,49,146,0.22); border-radius: 999px; }
body ::-webkit-scrollbar-thumb:hover { background: rgba(46,49,146,0.38); }

.font-display { font-family: 'Playfair Display', Georgia, serif; }

/* ===== Top nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--blue-deep);
  text-decoration: none;
}
.nav-brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(46,49,146,0.22);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--blue-deep); background: rgba(46,49,146,0.06); }
.nav-links a.active { color: var(--blue-deep); background: rgba(46,49,146,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-deep) 60%, var(--blue-darker) 100%) !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(46,49,146,0.28);
}
.nav-cta:hover { color: white !important; filter: brightness(1.08); background: linear-gradient(135deg, var(--blue-light), var(--blue-darker)) !important; }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-inner { padding: 12px 16px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  font-family: inherit;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--blue-darker);
  box-shadow: 0 4px 14px rgba(247,148,29,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 8px 22px rgba(247,148,29,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-deep) 60%, var(--blue-darker) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(46,49,146,0.32), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-blue:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep);
}
.btn-outline:hover { background: var(--blue-deep); color: white; }

/* ===== Hero (used on home) ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blue-darker) 0%, var(--blue-deep) 45%, var(--teal) 100%);
  color: white;
  padding: 90px 24px 110px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,198,11,0.14) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(237,28,36,0.14) 0%, transparent 45%);
  animation: heroFloat 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--yellow), #FFE694);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto 34px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Compact hero (used on inner pages) ===== */
.hero-compact {
  position: relative;
  background: linear-gradient(160deg, var(--blue-darker) 0%, var(--blue-deep) 45%, var(--teal) 100%);
  color: white;
  padding: 64px 24px 74px;
  overflow: hidden;
  text-align: center;
}
.hero-compact::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
}
.hero-compact h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 48px);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.hero-compact p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Section base ===== */
section { padding: 88px 24px; }
.container { max-width: 1160px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--blue-deep);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 56px; height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue-deep));
}
.section-title.centered { text-align: center; }
.section-title.centered::after { left: 50%; transform: translateX(-50%); }

/* ===== Footer (shared) ===== */
footer {
  background: var(--blue-darker);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 30px;
  font-size: 14px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--yellow));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-darker);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
}
footer h4 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 14px;
  font-weight: 700;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s ease;
}
footer a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1160px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ===== Reveal-on-scroll ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   HOME PAGE SPECIFIC
   ========================================================== */

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-copy {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.about-copy p { margin: 0 0 18px; }
.about-copy strong { color: var(--ink); font-weight: 700; }
.about-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  color: var(--blue-deep);
  border-left: 4px solid var(--teal);
  padding: 4px 0 4px 24px;
  margin: 0;
}
.about-quote-attr {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 14px;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Gallery */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--tan-light);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}
.gallery-item:hover { transform: translateY(-3px) scale(1.01); box-shadow: var(--shadow-md); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1 / 1; }
}

/* Ministry cards */
.ministry { background: var(--white); }
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.ministry-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.ministry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.ministry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ministry-card:hover::before { transform: scaleX(1); }
.ministry-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(17,178,187,0.14), rgba(46,49,146,0.14));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  margin-bottom: 4px;
}
.ministry-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-deep);
  margin: 0;
}
.ministry-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.ministry-card-link {
  color: var(--teal);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 820px) {
  .ministry-grid { grid-template-columns: 1fr; }
}

/* Story feature */
.story {
  background: linear-gradient(160deg, var(--tan-light) 0%, #EFF3FA 100%);
}
.story-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.story-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 16px;
}
.story-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  color: var(--blue-deep);
  margin: 0 0 12px;
}
.story-attr {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.story-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  text-align: left;
}
.story-body p { margin: 0 0 20px; }
.story-body p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.6em;
  line-height: 0.9;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--teal);
  font-weight: 700;
}

/* Join */
.join {
  background: linear-gradient(135deg, var(--blue-darker) 0%, var(--blue-deep) 60%, var(--teal) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.join::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
}
.join .container { position: relative; z-index: 1; }
.join .section-title { color: white; }
.join .section-title::after { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.join-lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

/* Find us */
.findus { background: var(--white); }
.findus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.findus-info dt {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-top: 22px;
}
.findus-info dt:first-of-type { margin-top: 0; }
.findus-info dd {
  margin: 6px 0 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
}
.findus-info dd a { color: var(--blue-deep); text-decoration: none; font-weight: 600; }
.findus-info dd a:hover { text-decoration: underline; }
.findus-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}
.findus-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 820px) {
  .findus-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ==========================================================
   SONG LINE UP PAGE
   ========================================================== */

.songs-index {
  background: var(--white);
  padding: 72px 24px;
}
.songs-year-block { margin-bottom: 56px; }
.songs-year-block:last-child { margin-bottom: 0; }
.songs-year-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}
.songs-year {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
}
.songs-year-count {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.songs-month-block { margin-bottom: 28px; }
.songs-month {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}
.songs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.songs-list a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  border: 1px solid transparent;
}
.songs-list a:hover {
  background: var(--bg);
  border-color: var(--card-border);
  transform: translateX(4px);
}
.songs-date {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--teal);
  min-width: 74px;
}
.songs-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.35;
}
.songs-title-plain {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  font-style: italic;
}
.songs-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}
.tag-fri { background: rgba(17,178,187,0.15); color: var(--teal); }
.tag-sat { background: rgba(247,148,29,0.15); color: var(--orange); }
.tag-sun { background: rgba(46,49,146,0.15); color: var(--blue-deep); }
.tag-special { background: rgba(237,28,36,0.15); color: var(--red); }

/* ==========================================================
   MASS POST PAGE
   ========================================================== */

.mass-page { background: var(--white); }
.mass-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.mass-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.15s ease, transform 0.15s ease;
}
.mass-back:hover { color: var(--blue-deep); transform: translateX(-3px); }

.mass-header { margin-bottom: 40px; }
.mass-date {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}
.mass-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--blue-deep);
  margin: 0;
  letter-spacing: -0.01em;
}

.mass-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  background: var(--tan-light);
}

.mass-gospel {
  background: linear-gradient(135deg, var(--tan-light) 0%, #EFF3FA 100%);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.mass-gospel-ref {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.mass-gospel-ref a { color: inherit; text-decoration: none; border-bottom: 1px dotted currentColor; }
.mass-gospel-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--blue-deep);
  margin: 0 0 14px;
  line-height: 1.3;
}
.mass-gospel-summary {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}

.mass-reflection {
  margin-bottom: 44px;
}
.mass-block-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.mass-reflection p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 16px;
}
.mass-reflection p:last-child { margin-bottom: 0; }

.mass-songs {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.mass-songs h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-deep);
  margin: 0 0 20px;
}
.mass-songs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.mass-songs li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
}
.mass-songs li:last-child { border-bottom: none; }
.song-role {
  flex-shrink: 0;
  min-width: 130px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.song-title {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

.mass-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.mass-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  background: var(--white);
  color: var(--blue-deep);
  border: 1.5px solid var(--card-border);
  transition: all 0.15s ease;
}
.mass-link:hover {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: white;
  transform: translateY(-1px);
}

.mass-videos {
  margin-bottom: 32px;
}
.mass-videos h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--blue-deep);
  margin: 0 0 20px;
}
.mass-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mass-video-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}
.mass-video-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 640px) {
  .mass-video-grid { grid-template-columns: 1fr; }
  .song-role { min-width: 100px; font-size: 10.5px; }
  .mass-gospel, .mass-songs { padding: 22px; }
}
