:root{
  --bg1:#f5efe6;
  --bg2:#efe5d6;

  --navy:#0d2a45;
  --navy2:#071e33;

  --ink:#1f2a38;
  --ink2:#2b3b4f;

  --cream:#fff7ec;
  --card: rgba(255,255,255,.62);
  --card2: rgba(255,255,255,.72);

  --gold:#c9a24d;
  --gold2:#b88f3b;

  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:16px;

  --shadow: 0 14px 34px rgba(10,20,35,.18);
  --shadow-soft: 0 10px 24px rgba(10,20,35,.12);

  --container: 1160px;

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:
    radial-gradient(1200px 760px at 50% 0%, #ffffff 0%, var(--bg1) 50%, var(--bg2) 100%);
}

/* container */
.container{max-width:var(--container); margin:0 auto; padding:0 18px;}

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border:0;
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  box-shadow: var(--shadow-soft);
  letter-spacing:.2px;
}
.btn-live{
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  color:#fff;
}
.btn-gold{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color:#241b0f;
}
.btn-play{
  display:inline-grid; place-items:center;
  width:18px; height:18px;
  font-size:12px;
  line-height:1;
  opacity:.95;
}

/* Top bar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(9,28,47,.92) 0%, rgba(7,24,40,.90) 100%);
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.mini-brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  position: relative;
  color:#fff;
}
.mini-brand-mark{
  width: auto; height: 60px;
  object-fit:contain;
  filter: drop-shadow(0 10px 14px rgbe(0,0,0,.25));
  display: block;
}
.mini-brand-text{display:flex; flex-direction:column; line-height:1.05}
.mini-brand-name{
  font-family:var(--serif);
  font-weight:900;
  font-size:18px;
  letter-spacing:.2px;
}
.mini-brand-sub{
  font-family:var(--serif);
  font-style:italic;
  font-size:12px;
  opacity:.78;
  margin-top:2px;
}

.topnav{
  display:flex;
  align-items:center;
  gap:22px;
}
.topnav-link{
  text-decoration:none;
  color:rgba(255,255,255,.85);
  font-weight:650;
  padding:10px 2px;
  border-bottom:2px solid transparent;
}
.topnav-link:hover{color:#fff}
.topnav-link.is-active{
  color:#fff;
  border-bottom-color: rgba(201,162,77,.95);
}
.nav-cta {
  margin-left: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #122235;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(10,20,35,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(10,20,35,.22);
}
.mobile-cta {
  display: block;
  margin: 10px 16px;
  padding: 14px;
  text-align: center;
  border-radius: 999px;
  background: var(--gold);
  color: #122235;
  font-weight: 900;
  text-decoration: none;
}
.icon-btn{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  width:38px; height:38px;
  cursor:pointer;
}
.icon{font-size:16px}

/* mobile nav */
.nav-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background:#fff;
  margin:4px auto;
  opacity:.9;
}
.mobile-nav{
  border-top: 1px solid rgba(255,255,255,.10);
  padding:12px 18px 16px;
}
.mobile-link{
  display:block;
  padding:10px 6px;
  text-decoration:none;
  color:rgba(255,255,255,.88);
  font-weight:650;
}
.mobile-link.is-active{color:#fff}

/* HERO */
.hero{
  position:relative;
  min-height: 520px;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 110px;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.hero-fade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(245,239,230,.20) 0%,
      rgba(245,239,230,.84) 68%,
      rgba(245,239,230,1) 100%);
}
.hero-inner{
  position:relative;
  padding:78px 0 24px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap:24px;
}
.hero-title{
  font-family:var(--serif);
  font-size:52px;
  margin:0 0 12px;
  color: #23364d;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
}
.hero-subtitle{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.65;
  color: rgba(43,59,79,.88);
}
.hero-actions{display:flex; flex-direction:column; gap:8px; max-width:260px;}
.hero-note{font-size:12px; opacity:.7; margin-left:6px;}

.hero-right{display:flex; justify-content:flex-end;}
.hero-logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.hero-logo img{
  width:auto;
  height:250px;
  object-fit:contain;
  display:block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.hero-logo-name{
  font-family:var(--serif);
  font-weight:950;
  font-size:42px;
  line-height:1.03;
  color:#24364e;
}
.hero-logo-sub{
  font-family:var(--serif);
  font-style:italic;
  font-size:18px;
  color: rgba(36,54,78,.72);
  margin-top:6px;
}

/* Feature strip */
.feature-card{
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(18,40,62,.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:0;
  overflow:hidden;
  position: relative;
  z-index: 60;
}
.feature-strip-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:-90px;     /* controls how much it overlaps */
  z-index:50;
}
.feature-strip{
  position: relative;
  z-index: 50;          /* ensure it sits on top of both sections */
  margin-top: -85px;    /* pulls the strip UP into the hero */
  margin-bottom: -55px; /* pulls the welcome section UP behind it */
  padding-bottom: 0;    /* remove extra spacing */
}
.feature-item{
  display:flex;
  gap:12px;
  padding:16px 16px;
  align-items:flex-start;
  border-right: 1px solid rgba(18,40,62,.10);
}
.feature-item:last-child{border-right:0}
.feature-item:hover{background: rgba(201,162,77,.08);}
.feature-icon{
  width:44px; height:44px;
  object-fit:contain;
  flex:none;
}
.feature-title{
  font-family:var(--serif);
  font-weight:900;
  font-size:18px;
  color:#24364e;
  margin-bottom:4px;
}
.feature-desc{
  font-size:13px;
  line-height:1.45;
  opacity:.82;
}

/* Main grid (welcome + on-demand) */
.main-grid{
  background: url("../img/inx/welcome.png") center / cover no-repeat;
  background-position: 35% 70%; /* X% Y%  (more right = higher X, more down = higher Y) */
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 48px;   /* space inside the section before it ends */
  margin-bottom: 28px;    /* extra gap before the next section */
}
/* 2) Then the overlay layer sits ON TOP of the background */
.main-grid::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(245,239,230,.30); /* tweak 0.80–0.92 */
  z-index:0;
  pointer-events:none;
}
/* 3) Finally, make sure your content is above the overlay */
.main-grid > .container{
  position: relative;
  z-index: 1;
}
.grid-2{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}

/* welcome card - Option A (glass) */
.welcome{
  background: rgba(255,255,255,.12); /* translucent parchment */
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 280px;
}
/* Welcome – full-width text version */
.welcome.welcome--full{
  display:block;            /* overrides grid */
  grid-template-columns: none;
  min-height: unset;
}

.welcome.welcome--full .welcome-left{
  padding: 28px 30px 26px;
  max-width: none;
}

/* Safety: hide right image if it still exists */
.welcome.welcome--full .welcome-right{
  display:none;
}
.welcome-left{padding:26px 26px 24px;}
.welcome-left h2{
  font-family:var(--serif);
  font-weight:950;
  font-size:40px;
  line-height:1.06;
  margin:0 0 12px;
  color:#24364e;
}
.welcome-left p{
  margin:0 0 18px;
  line-height:1.7;
  opacity:.86;
}
.welcome-right{
  position:relative;
  background: transparent;
}
.welcome-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.05) contrast(98);
  opacity: 0.55;
}

/* on-demand panel - Option A (glass) */
.ondemand{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  padding:20px;
}
.ondemand-head h2{
  font-family:var(--serif);
  font-weight:950;
  font-size:34px;
  margin:4px 0 12px;
  color:#24364e;
}
.od-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
/* on-demand tiles - Option A (image tiles) */
.od-card{
  position: relative;
  display:block;
  text-decoration:none;
  color:inherit;
  border: 1px solid rgba(18,40,62,.14);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 12px 22px rgba(10,20,35,.12);
  transition: transform .18s ease, box-shadow .18s ease;
  min-height: 168px;
  background:#111; /* fallback if image missing */
}

/* overlay for text readability */
.od-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.12) 0%,
    rgba(0,0,0,.32) 100%
  );
  z-index:1;
  pointer-events:none;
}

.od-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(10,20,35,.16);
}

/* image becomes full-tile background */
.od-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.92;
  transform: scale(1.02);
}

/* gradient overlay for readability */
.od-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.42) 65%,
    rgba(0,0,0,.62) 100%
  );
}

/* text on top */
.od-body{
  position: relative;
  z-index: 1;
  padding: 12px 12px 14px;
}

.od-title{
  font-family:var(--serif);
  font-weight:950;
  font-size:18px;
  line-height:1.05;
  margin:0 0 6px;
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.od-text{
  font-size:12.5px;
  line-height:1.45;
  margin:0 0 10px;
  color: rgba(255,255,255,.82);
}
.od-btn{
  display:inline-block;
  font-weight:900;
  font-size:11px;
  padding:8px 12px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color:#241b0f;
  letter-spacing:.4px;
}

/* schedule block */
.schedule-wrap{padding:6px 0 34px;}
.schedule{
  background: linear-gradient(180deg, rgba(13,42,69,.96) 0%, rgba(7,30,51,.96) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding:26px;
  color:#fff;
}
.schedule h2{
  font-family:var(--serif);
  font-weight:950;
  font-size:40px;
  margin:0 0 16px;
}
.schedule-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-bottom:16px;
}


/* =========================
   ABOUT PAGE (matches sample)
   ========================= */

/* Mini hero (shorter than Home hero) */
.about-hero{
  position:relative;
  min-height: 260px;           /* mini size */
  overflow:hidden;
  padding: 36px 0 34px;
}
.about-hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  filter: saturate(1.05);
}
.about-hero-fade{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(245,239,230,.20) 0%,
    rgba(245,239,230,.84) 70%,
    rgba(245,239,230,1) 100%
  );
}
.about-hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .85fr;
  align-items:center;
  gap: 24px;
  align-items: end;
}
.about-title{
  font-family:var(--serif);
  font-weight:950;
  font-size:44px;
  margin:0 0 6px;
  color:#23364d;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
  margin-bottom: 6px;   /* tighter than default but intentional */
}
.breadcrumbs{
  margin-top: 11px;          /* space below “About Us” */
  font-size: 13px;          /* slightly larger */
  font-weight: 650;
  color: rgba(36,54,78,.75);
  opacity:.78;
  margin-bottom:10px;
  display:flex;
  gap:8px;
  align-items:center;
  padding-left: 6px; /* subtle “centering” nudge under the title */
  line-height: 1.2;
  letter-spacing: .2px;
  opacity: .9;
}
.breadcrumbs a{
  color: inherit;
  text-decoration:none;
}
.breadcrumbs a:hover{color:#23364d; text-decoration:underline;}
.breadcrumbs span{
  opacity:.65;
}
.breadcrumbs .crumb-sep{
  margin: 0 8px;
  opacity: .6;
}
.about-hero .breadcrumbs{
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}
.about-lead{
  margin:0 0 14px;
  line-height:1.65;
  color: rgba(43,59,79,.88);
  max-width: 60ch;
}
.about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.about-hero-right{
  display:flex;
  justify-content:flex-end;
}
.about-hero-left{
  padding-top: 6px;
  display:flex;
  flex-direction:column;
  align-items:flex-start; /* keep the title left */
}
.about-hero-mark{
  height: 120px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
  opacity:.92;
}

/* Full-width Mission band w/ lantern+bible background (like sample) */
.mission-band{
  position:relative;
  border-top: 1px solid rgba(18,40,62,.10);
  border-bottom: 1px solid rgba(18,40,62,.10);
  padding: 44px 0;
  overflow:hidden;
}
.mission-band-bg{
  position:absolute;
  inset:0;
  background: url("../img/inx/welcome.png") center / cover no-repeat; /* lantern+bible image */
  background-position: 50% 72%; /* show more of the Bible (tweak as needed) */
  transform: scale(1.01);
}
.mission-band-overlay{
  position:absolute;
  inset:0;
  background: rgba(245,239,230,.32); /* lets more background show than before */
}
.mission-band-inner{
  position:relative;
}
.mission-card{
  width: min(640px, 100%);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  padding: 26px 28px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(10px);
}
.mission-card h2{
  font-family:var(--serif);
  font-weight:950;
  font-size:36px;
  margin: 0 0 12px;
  color:#24364e;
}
.mission-card p{
  margin: 0 0 12px;
  line-height:1.7;
  opacity:.88;
}

/* shared about sections */
.about-section{
  padding: 30px 0;
}
.section-title{
  font-family:var(--serif);
  font-weight:950;
  font-size:34px;
  margin: 0 0 14px;
  text-align:center;
  color:#24364e;
}

/* Who We Are cards */
.who-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}
.who-card{
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(18,40,62,.10);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(10,20,35,.10);
  padding: 18px 18px 16px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(10px);
}
/* icon + title row (like the sample) */
.who-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.who-icon{
  width:54px;
  height:54px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(201,162,77,.55);
  box-shadow: 0 10px 18px rgba(10,20,35,.10);
  flex:none;
  margin-bottom: 10px;
  font-weight:900;
  color:#24364e;
}
.who-card h3{
  font-family:var(--serif);
  font-weight:950;
  font-size: 18px;
  margin:0;
  color:#24364e;
}
.who-icon img{
  width:36px;
  height:36px;
  object-fit:contain;
  display:block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}
.who-card p{
  margin:0;
  line-height:1.55;
  opacity:.86;
  font-size:13px;
  color: rgba(43,59,79,.86);
}

/* What You'll Hear (upgrade) */
.hear-card{
  position: relative;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(18,40,62,.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  padding: 26px 28px 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}
/* soft glow + accent */
.hear-card::before{
  content:"";
  position:absolute;
  inset:-40px -40px auto -40px;
  height:140px;
  background: radial-gradient(closest-side, rgba(201,162,77,.22), rgba(201,162,77,0));
  pointer-events:none;
}
.hear-card::after{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:6px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  opacity:.95;
}
/* Title row (works even if you only have h2) */
.hear-card h2{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 32px;
  margin: 0 0 14px;
  color:#24364e;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
  position: relative;
  padding-left: 10px; /* offsets the gold bar */
}
.hear-list{
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px 18px;
  padding-left: 18px;
}
.hear-list li{
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
  font-size: 13.5px;
  color: rgba(31,42,56,.88);
  opacity:.88;
}
/* custom bullet */
.hear-list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  box-shadow: 0 6px 12px rgba(10,20,35,.12);
}
/* make the labels pop */
.hear-list strong{
  color:#1f2a38;
  font-weight: 900;
}
/* actions row */
.hear-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  padding-left: 10px; /* aligns with title */
}

/* optional: a little hover polish */
.hear-card:hover{
  box-shadow: 0 22px 44px rgba(10,20,35,.16);
  transform: translateY(-1px);
  transition: transform .18s ease, box-shadow .18s ease;
}
.hear-card{
  background: linear-gradient(180deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.18) 100%);
}
/* 2 columns on desktop */
@media (min-width: 900px){
  .hear-list{
    grid-template-columns: 1fr 1fr;
  }
}
.hear-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Responsive for About page */
@media (max-width: 1050px){
  .about-hero-inner{grid-template-columns: 1fr;}
  .about-hero-right{justify-content:flex-start;}
  .who-grid{grid-template-columns: 1fr;}
}


.slot{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding:18px 14px;
  text-align:center;
}
.slot-time{
  font-family:var(--serif);
  font-weight:950;
  font-size:26px;
  margin-bottom:8px;
}
.slot-title{font-weight:900; font-size:16px; margin-bottom:4px;}
.slot-sub{opacity:.85; font-size:13px;}

/* =========================
   SCHEDULE PAGE (Auto-render)
   ========================= */

.page-hero{
  position:relative;
  min-height: 260px;
  overflow:hidden;
  padding: 22px 0 28px;
}
.page-hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.page-hero-fade{
  position:absolute; inset:0;
  background: linear-gradient(180deg,
    rgba(245,239,230,.35) 0%,
    rgba(245,239,230,.84) 70%,
    rgba(245,239,230,1) 100%);
}
.page-hero-inner{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:28px;
  padding: 30px 0 10px;
}
.page-hero-left{ max-width: 720px; }

.page-hero-right{
  margin-left:auto;
  display:flex;
  align-items:flex-start;
}
.page-title{
  font-family:var(--serif);
  font-weight:950;
  font-size:46px;
  margin:0 0 6px;
  color:#23364d;
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
}
.page-lead{
  margin: 10px 0 0;
  max-width: 70ch;
  line-height:1.65;
  color: rgba(43,59,79,.88);
}
.page-hero-actions{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
  margin-top: 44px;
}

/* Reuse your breadcrumbs styles; just ensure they can grow */
.page-hero .breadcrumbs{
  margin-top: 10px;
  font-size: 13px;
}

/* Shell */
.schedule-page{ padding: 24px 0 56px; }

.sched-shell{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(10px);
  overflow:hidden;
}

.sched-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(18,40,62,.10);
}
.sched-title{
  font-family:var(--serif);
  font-weight:950;
  font-size:34px;
  margin:0 0 6px;
  color:#24364e;
}
.sched-sub{
  margin:0;
  opacity:.84;
  line-height:1.55;
}

.sched-tabs{
  display:inline-flex;
  background: rgba(13,42,69,.10);
  border: 1px solid rgba(18,40,62,.14);
  border-radius: 999px;
  padding: 6px;
  height: fit-content;
}
.sched-tab{
  border:0;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight:850;
  cursor:pointer;
  color: rgba(36,54,78,.82);
}
.sched-tab.is-active{
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold2) 100%);
  color:#241b0f;
  box-shadow: 0 10px 18px rgba(10,20,35,.12);
}

/* Now bar */
.sched-now{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(18,40,62,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.10) 100%);
}
.now-kicker{
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.72;
}
.now-title{
  font-family:var(--serif);
  font-weight:950;
  font-size:22px;
  margin-top:2px;
  color:#24364e;
}
.now-meta{
  font-size:12px;
  opacity:.78;
  margin-top:2px;
}
.now-right{flex:none}

/* Panels */
.sched-panels{ padding: 18px 22px 10px; }
.sched-panel{ display:none; }
.sched-panel.is-active{ display:block; }

/* Daily rows */
.daily-grid{ display:grid; gap:12px; }

.daily-row{
  display:grid;
  grid-template-columns: 200px 1fr;
  gap:14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(18,40,62,.12);
  background: rgba(255,255,255,.22);
}
.daily-row.is-live{
  border-color: rgba(201,162,77,.55);
  background: rgba(201,162,77,.10);
}
.daily-range{
  font-family:var(--serif);
  font-weight:950;
  font-size:18px;
  color:#24364e;
}
.daily-live{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
  font-size:12px;
  font-weight:900;
  color: rgba(13,42,69,.92);
}
.daily-live .dot{
  width:8px; height:8px;
  border-radius:999px;
  background: var(--gold2);
  box-shadow: 0 0 0 4px rgba(201,162,77,.20);
}
.daily-body h3{
  margin:0 0 6px;
  font-family:var(--serif);
  font-weight:950;
  color:#24364e;
}
.daily-body p{ margin:0; opacity:.86; line-height:1.6; }

/* Weekly */
.weekly-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.week-card{
  border: 1px solid rgba(18,40,62,.12);
  background: rgba(255,255,255,.22);
  border-radius: 18px;
  padding: 14px 14px;
}
.week-card.is-today{
  border-color: rgba(201,162,77,.55);
  background: rgba(201,162,77,.10);
}
.week-day{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.week-pill{
  font-weight:900;
  font-size:12px;
  padding: 6px 10px;
  border-radius:999px;
  background: rgba(13,42,69,.10);
  border: 1px solid rgba(18,40,62,.12);
}
.week-today{
  font-size:12px;
  font-weight:900;
  color: rgba(13,42,69,.85);
}
.week-card h3{
  margin:0 0 6px;
  font-family:var(--serif);
  font-weight:950;
  color:#24364e;
}
.week-card p{ margin:0; opacity:.86; line-height:1.6; }

/* Footer line */
.sched-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding: 14px 22px 20px;
  border-top: 1px solid rgba(18,40,62,.10);
}
.sched-updated{ font-size:12px; opacity:.78; }
.sched-cta{ display:flex; gap:12px; flex-wrap:wrap; }

/* Responsive */
@media (max-width: 900px){
  .page-hero-inner{ flex-direction:column; }
  .page-hero-actions{ justify-content:flex-start; margin-top: 6px; }
  .daily-row{ grid-template-columns: 1fr; }
  .weekly-grid{ grid-template-columns: 1fr; }
  .sched-head{ flex-direction:column; align-items:flex-start; }
}

/* =========================
   On-Demand Page
========================= */
.ondemand-page .od-shell{
  padding: 10px 0 36px;
}

/* Search bar */
.od-search{
  margin: 10px auto 22px;
  max-width: 760px;
}
.od-search-inner{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.40);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 12px;
}
.od-search-ico{
  opacity:.8;
  margin-left: 6px;
}
.od-search-input{
  flex:1;
  border:none;
  outline:none;
  background: transparent;
  font-size: 15px;
  padding: 10px 6px;
  color: rgba(35,54,78,.92);
}
.od-search-input::placeholder{
  color: rgba(35,54,78,.55);
}
.od-search-btn{
  border:none;
  cursor:pointer;
  width: 54px;
  height: 42px;
  border-radius: 999px;
  background: var(--gold);
  color: #122235;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(10,20,35,.18);
}
.od-search-hint{
  margin-top: 8px;
  font-size: 12px;
  opacity: .75;
  text-align: center;
}

/* Featured card */
.od-feature{
  position: relative;
  display:flex;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  margin: 10px 0 18px;
}
.od-feature-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201,162,77,.16);
  border: 1px solid rgba(201,162,77,.35);

  display: grid;
  place-items: center;

  flex: 0 0 auto;
  overflow: hidden;
}
.od-feature-icon img{
  width: 34px;
  height: 34px;
  display:block;
}
.od-feature-body h2{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 34px;
  margin: 0 0 6px;
  color: #24364d;
}
.od-feature-body p{
  margin: 0 0 12px;
  opacity: .88;
  max-width: 68ch;
}

/* Grid cards */
.od-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Base card */
.od-card{
  position: relative;
  overflow:hidden;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  min-height: 190px;
}

/* FULL-CARD BACKGROUND IMAGE (per card via modifier class) */
.od-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .72;                 /* image strength */
  filter: saturate(.95) contrast(1.05);
  pointer-events:none;
  z-index: 0;
}

/* READABILITY OVERLAY (keeps text readable) */
.od-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(248,243,235,.55) 0%,
    rgba(248,243,235,.65) 38%,
    rgba(10,20,35,.55) 100%
  );
  pointer-events:none;
  z-index: 1;
}

/* Ensure ALL card content sits above background + overlay */
.od-card > *{
  position: relative;
  z-index: 2;
}

/* Card header + icon */
.od-card-head{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-bottom: 8px;
  position: relative;
}
/* Make grid icons match the featured icon: SQUARE + centered */
.od-card-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201,162,77,.16);
  border: 1px solid rgba(201,162,77,.35);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}

.od-feature-icon img{
  width: 34px;
  height: 34px;
  display: block;
  margin: 0;
}

.od-card-icon img{
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  transform: none !important;
  margin: 0 !important;

  width: 34px !important;
  height: 34px !important;

  display: block !important;
  max-width: none !important;

  object-fit: contain;
  object-position: center;
  z-index: 3;
}

/* Card text */
.od-card h3{
  margin: 0;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 22px;
  color: #24364d;
}
.od-card p{
  margin: 0 0 14px;
  opacity: .88;
  max-width: 48ch;
}

/* Per-card background images (EDIT THESE PATHS IF NEEDED) */
.od-card--scripture::before{
  background-image: url("../img/odm/scripture.jpg");
}
.od-card--teaching::before{
  background-image: url("../img/odm/teaching.jpg");
}
.od-card--global::before{
  background-image: url("../img/odm/global.jpg");
}
.od-card--devotionals::before{
  background-image: url("../img/odm/devotionals.jpg");
}

/* If you still have <img class="od-card-bg"> in the HTML, hide it */
.od-card-bg{ display:none !important; }

/* Bottom button */
.od-bottom{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}
.btn.btn-soft{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(35,54,78,.92);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 12px 22px rgba(10,20,35,.12);
}

/* Responsive */
@media (max-width: 900px){
  .od-grid{ grid-template-columns: 1fr; }
  .od-card::after{
    background: linear-gradient(
      180deg,
      rgba(248,243,235,.60) 0%,
      rgba(248,243,235,.70) 36%,
      rgba(10,20,35,.60) 100%
    );
  }
}

/* =========================
   Partners Page
========================= */

.partners-page .pt-shell{
  padding: 18px 0 46px;
}

/* Hero section can reuse your existing hero styling in styles.css.
   This adds only minor spacing. */
.page-hero--partners .hero-inner{
  padding: 26px 0 10px;
}

/* =========================
   Hero Mini Banner + Breadcrumbs
   (Partners page only)
========================= */

/* WELCOME kicker */
.page-hero--partners .hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;

  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(35,54,78,.75);
}

/* Breadcrumbs */
.page-hero--partners .breadcrumbs{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 10px;
  font-size: 13px;
  color: rgba(35,54,78,.78);
}
.page-hero--partners .breadcrumbs a{
  color: rgba(35,54,78,.78);
  text-decoration: none;
  font-weight: 700;
}
.page-hero--partners .breadcrumbs a:hover{ text-decoration: underline; }
.page-hero--partners .crumb-sep{ opacity: .55; }

.page-hero--partners{
  position: relative;
  overflow: hidden;
  padding: 48px 0 36px; /* similar breathing room to other pages */
}

/* Hero layout: left text, then tools row */
.page-hero--partners .hero-inner{
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* LEFT (fixes your issue) */
  text-align: left;         /* LEFT (fixes your issue) */
  gap: 18px;
}

/* Full-width background image */
.page-hero--partners .page-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .28;
  pointer-events: none;
  z-index: 0;
}

/* Soft overlay for readability (full width) */
.page-hero--partners::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: radial-gradient(
    1200px 520px at 30% 0%,
    rgba(255,255,255,.72) 0%,
    rgba(255,255,255,.52) 45%,
    rgba(10,20,35,.12) 100%
  );
  pointer-events:none;
}

/* Mini welcome + breadcrumbs align centered */
.page-hero--partners .hero-kicker{
  margin-bottom: 0;
}

/* 1) FORCE breadcrumbs to be left-aligned (override any global breadcrumb centering) */
.page-hero--partners .breadcrumbs{
  justify-content: flex-start !important;
  width: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* If a global breadcrumb style uses margin: 0 auto; on the nav itself */
.page-hero--partners nav.breadcrumbs{
  margin-inline: 0 !important;
}

/* Keep hero subtext readable width */
.page-hero--partners .hero-sub{
  max-width: 72ch;
}

.page-hero--partners .breadcrumbs a{
  color: rgba(35,54,78,.78);
  text-decoration: none;
  font-weight: 700;
}

.page-hero--partners .breadcrumbs a:hover{
  text-decoration: underline;
}

.page-hero--partners .crumb-sep{
  opacity: .55;
}

/* Search + filters side-by-side */
.page-hero--partners .pt-hero-tools{
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 6px;
}

/* IMPORTANT: undo the centered/max-width behavior inside hero */
.page-hero--partners .pt-search{ max-width: 600px; }
.page-hero--partners .pt-filters{ margin-top: -6px; }

.page-hero--partners .pt-search-hint{
  text-align: left;    /* match left layout */
}


/* Search bar (matches on-demand style) */
.pt-search{
  margin: 14px auto 14px;
  max-width: 860px;
}
.pt-search-inner{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.40);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 12px;
}
.pt-search-ico{
  opacity:.85;
  margin-left: 6px;
}
.pt-search-input{
  flex:1;
  border:none;
  outline:none;
  background: transparent;
  font-size: 15px;
  padding: 10px 6px;
  color: rgba(35,54,78,.92);
}
.pt-search-input::placeholder{
  color: rgba(35,54,78,.55);
}
.pt-search-btn{
  border:none;
  cursor:pointer;
  width: 64px;
  height: 42px;
  border-radius: 999px;
  background: var(--gold);
  color: #122235;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(10,20,35,.18);
}
.pt-search-hint{
  margin-top: 8px;
  font-size: 12px;
  opacity: .75;
  text-align: center;
}

/* Filters */
.pt-filters{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.pt-filter{
  border:none;
  cursor:pointer;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.45);
  color: rgba(35,54,78,.92);
  box-shadow: 0 12px 22px rgba(10,20,35,.12);
  font-weight: 800;
  font-size: 13px;
}
.pt-filter.is-active{
  background: rgba(201,162,77,.26);
  border-color: rgba(201,162,77,.55);
}

/* Intro card */
.pt-intro{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  margin: 6px 0 14px;
}
.pt-intro h2{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 26px;
  color: #24364d;
}
.pt-intro p{
  margin: 0;
  opacity: .9;
  max-width: 70ch;
}
.pt-intro-actions{
  flex: 0 0 auto;
}

/* Meta row */
.pt-meta{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 10px 0 14px;
}
.pt-count{
  font-weight: 800;
  color: rgba(35,54,78,.92);
  opacity: .9;
}
.pt-sort{
  display:flex;
  align-items:center;
  gap: 8px;
}
.pt-sort-label{
  font-size: 13px;
  opacity: .8;
}
.pt-sort-select{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.16);
  padding: 10px 12px;
  color: rgba(35,54,78,.92);
  outline: none;
}

/* Grid */
.pt-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Partner card */
.pt-card{
  position: relative;
  overflow:hidden;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.pt-card-top{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 10px;
}

/* Logo box (optional logo) */
.pt-card-logo{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201,162,77,.16);
  border: 1px solid rgba(201,162,77,.35);
  display:grid;
  place-items:center;
  overflow:hidden;
  flex: 0 0 auto;
}
.pt-card-logo img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
}

/* Text */
.pt-card h3{
  margin: 0;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 20px;
  color: #24364d;
}
.pt-card-meta{
  margin-top: 3px;
  font-size: 12px;
  opacity: .8;
  color: rgba(35,54,78,.92);
}
.pt-card-desc{
  margin: 0 0 12px;
  opacity: .9;
  max-width: 58ch;
  flex: 1;
  margin: 0 0 12px;
}

/* Tags */
.pt-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.pt-tag{
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.40);
  opacity: .9;
}

/* Buttons */
.pt-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.pt-actions .btn{
  font-size: 13px;
}

/* Empty state */
.pt-empty{
  margin: 18px 0 6px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  text-align:center;
}
.pt-empty h3{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 950;
  color: #24364d;
}
.pt-empty p{
  margin: 0 0 12px;
  opacity: .85;
}

/* CTA */
.pt-cta{
  margin-top: 18px;
}
.pt-cta-card{
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.pt-cta-card h2{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 950;
  color: #24364d;
}
.pt-cta-card p{
  margin: 0 0 12px;
  opacity: .9;
  max-width: 80ch;
}
.pt-cta-list{
  margin: 0 0 14px;
  padding-left: 18px;
  opacity: .92;
}
.pt-cta-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pt-cta-note{
  margin-top: 12px;
  font-size: 12px;
  opacity: .8;
}

/* Partners hero: align CTAs like other pages (same vertical zone as breadcrumbs) */
.page-hero--partners .hero-inner{
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "main actions"
    "tools tools";
  column-gap: 26px;
  row-gap: 18px;

  align-items: start;
  text-align: left;
}

/* Map the existing markup into grid areas */
.page-hero--partners .hero-main{ grid-area: main; }
.page-hero--partners .page-hero-right{
  grid-area: actions;
  align-self: center;          /* this is what brings it up to the breadcrumbs/lead zone */
  justify-self: end;
}
.page-hero--partners .pt-hero-tools{
  grid-area: tools;
  margin-top: 0;               /* prevents extra drop */
}

/* Responsive */
@media (max-width: 980px){
  .pt-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pt-meta{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px){
  .pt-grid{ grid-template-columns: 1fr; }
  .pt-intro{ flex-direction: column; }
}
/* Responsive: stack tools on small screens */
@media (max-width: 900px){
  .page-hero--partners .pt-hero-tools{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Privacy Page (Legal)
========================= */

.privacy-page .privacy-shell{
  padding: 18px 0 46px;
}

/* Main content card */
.privacy-card{
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

/* Meta line */
.privacy-meta{
  margin: 0 0 10px;
  font-size: 13px;
  opacity: .85;
  color: rgba(35,54,78,.92);
}

/* Headings match your serif + weight style */
.privacy-card h2{
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 24px;
  color: #24364d;
}

.privacy-card h3{
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 15px;
  color: rgba(35,54,78,.95);
}

/* Body text */
.privacy-card p,
.privacy-card li{
  color: rgba(35,54,78,.92);
  line-height: 1.65;
}

/* Lists spacing */
.privacy-card ul{
  margin: 8px 0 14px;
  padding-left: 18px;
}

/* Bottom actions */
.privacy-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* =========================
   Legal Pages (Privacy / Terms)
========================= */

.privacy-page .privacy-shell,
.terms-page .terms-shell{
  padding: 18px 0 46px;
}

/* Reusable legal content card */
.legal-card{
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

/* Meta line */
.legal-meta{
  margin: 0 0 10px;
  font-size: 13px;
  opacity: .85;
  color: rgba(35,54,78,.92);
}

/* Headings */
.legal-card h2{
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 24px;
  color: #24364d;
}

.legal-card h3{
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 15px;
  color: rgba(35,54,78,.95);
}

/* Body text */
.legal-card p,
.legal-card li{
  color: rgba(35,54,78,.92);
  line-height: 1.65;
}

.legal-card ul{
  margin: 8px 0 14px;
  padding-left: 18px;
}

/* Bottom actions */
.legal-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* =========================
   Contact Page
========================= */

.contact-page .contact-shell{
  padding: 18px 0 46px;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 16px;
  align-items: start;
}

/* Glass card look (matches your site) */
.contact-card{
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.40);
  box-shadow: 0 18px 34px rgba(10,20,35,.14);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.contact-card h2{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 950;
  font-size: 26px;
  color: #24364d;
}

.contact-sub{
  margin: 0 0 16px;
  opacity: .9;
  color: rgba(35,54,78,.92);
  max-width: 70ch;
}

.contact-card--side h3{
  margin: 0 0 8px;
  font-weight: 950;
  color: rgba(35,54,78,.95);
}

/* Form */
.contact-form{
  display: grid;
  gap: 12px;
}

.cf-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf-field{
  display: grid;
  gap: 6px;
}

.cf-field label{
  font-size: 13px;
  font-weight: 800;
  color: rgba(35,54,78,.92);
}

.cf-field input,
.cf-field select,
.cf-field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.16);
  color: rgba(35,54,78,.92);
  padding: 12px 12px;
  outline: none;
}

.cf-field textarea{
  resize: vertical;
  min-height: 160px;
}

.cf-actions{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.cf-note{
  font-size: 12px;
  opacity: .8;
  color: rgba(35,54,78,.90);
}

.cf-note a{
  color: rgba(35,54,78,.95);
  font-weight: 800;
  text-decoration: none;
}
.cf-note a:hover{ text-decoration: underline; }

/* Right-side info */
.contact-info{
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.ci-label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  opacity: .75;
  color: rgba(35,54,78,.92);
}

.ci-value{
  font-weight: 800;
  color: rgba(35,54,78,.95);
}

.contact-divider{
  height: 1px;
  background: rgba(255,255,255,.45);
  margin: 16px 0;
}

.contact-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .cf-row{
    grid-template-columns: 1fr;
  }
}


/* footer */
.footer{
  background: linear-gradient(180deg, rgba(9,28,47,.98) 0%, rgba(6,20,34,.98) 100%);
  color: rgba(255,255,255,.88);
  padding:26px 0 18px;
  padding-top: 56px;
  padding-bottom: 32px;
}
.footer-actions h4{
  margin: 0 0 10px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;;
  gap:34px;
  align-items:start;
}
.footer-brand{
  display:flex;
  gap:22px;
  align-items:center;
}
.footer-logo{
  width:70px; height:70px; object-fit:contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.25));
}
.footer-brand-name{
  font-family:var(--serif);
  font-weight:950;
  font-size:18px;
  color:#fff;
}
.footer-brand-sub{
  font-family:var(--serif);
  font-style:italic;
  font-size:12px;
  opacity:.78;
  margin-top:2px;
}
.footer-about p{
  margin:0; 
  line-height:1.65; 
  opacity:.86;
}

.footer-links-row a{
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}
.footer-links-row a:hover{ color: rgba(255,255,255,.95); }

/* NEW inline link row */
.footer-links-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-links h4 {
  margin-bottom: 6px;
}
.footer-links a:hover{color:#fff;}
.muted{opacity:.78}


.footer-links-row a:hover{
  text-decoration: underline;
}
.footer-links-left,
.footer-links-right{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items:center;
}

.footer-dot{
  opacity:.35;
}

/* Make the Support link feel important but not huge */
.footer-cta-link{
  color: #fff;
  font-weight: 900;
}

.footer form.signup {
  margin-top: 0px;
  margin-bottom: 12px;
}

.footer .social {
  margin-top: 0px;
}

.signup{
  display:flex;
  gap:10px;
  margin:0 0 12px;
}
.signup input{
  flex:1;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  padding:12px 14px;
  outline:none;
}
.signup input::placeholder{color:rgba(255,255,255,.55);}
.social{display:flex; gap:10px; margin-top:10px;}
.social a{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
}

.footer-bottom{
  margin-top:14px;
  padding-top:12px;
  border-top: 1px solid rgba(255,255,255,.10);
  opacity:.85;
}

/* modal */
.modal{position:fixed; inset:0; display:none; z-index:100;}
.modal.is-open{display:block;}
.modal-backdrop{position:absolute; inset:0; background:rgba(0,0,0,.55);}
.modal-panel{
  position:relative;
  width:min(560px, calc(100% - 26px));
  margin:10vh auto 0;
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  color:#fff;
}
.modal-title{font-family:var(--serif); font-weight:950;}
.modal-close{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}
.modal-body{padding:16px;}
.modal-sub{margin:0 0 12px; opacity:.86;}
.modal-hint{margin-top:10px; font-size:12px; opacity:.75;}
.modal-actions{margin-top:14px;}
audio{width:100%}

/* responsive */
@media (max-width: 1050px){
  .feature-card{grid-template-columns: repeat(2, 1fr);}
  .feature-item{border-right:0; border-bottom:1px solid rgba(18,40,62,.10);}
  .feature-item:nth-last-child(-n+2){border-bottom:0;}
  .grid-2{grid-template-columns: 1fr;}
  .welcome{grid-template-columns: 1fr;}
  .welcome-right{min-height:220px;}
  .footer-grid{grid-template-columns: 1fr;}
}
@media (max-width: 820px){
  .topnav{display:none;}
  .nav-toggle{display:inline-block;}
  .hero-inner{grid-template-columns: 1fr; padding-top:62px;}
  .hero-right{justify-content:flex-start;}
  .hero-logo-name{font-size:38px;}
  .hero-title{font-size:44px;}
  .schedule-grid{grid-template-columns: 1fr;}
  .od-grid{grid-template-columns: 1fr;}
}
@media (max-width: 460px){
  .hero-title{font-size:38px;}
  .welcome-left h2{font-size:34px;}
  .schedule h2{font-size:34px;}
}
@media (max-width: 768px) {
  .feature-strip-overlay {
    position: static;
    margin-top: 24px;
  }
  .hero {
    padding-bottom: 40px;
  }
}
/* responsive for About */
@media (max-width: 1050px){
  .about-split{grid-template-columns: 1fr;}
  .about-media img{min-height: 220px;}
  .about-grid-3{grid-template-columns: 1fr;}
}
@media (max-width: 820px){
  .hero-title--about{font-size: 44px;}
  .hero-inner--about{grid-template-columns: 1fr;}
  .hero-right--about{justify-content:flex-start;}
}
/* mobile */
@media (max-width: 820px){
  .about-hero-inner{ grid-template-columns: 1fr; align-items:start; }
  .about-hero-right{ justify-content:flex-start; margin-top:12px; }
}
/* responsive */
@media (max-width: 1050px){
  .who-grid{ grid-template-columns: 1fr; }
}
/* Mobile: stack the link row cleanly */
@media (max-width: 820px){
  .footer-links-row{
    flex-direction: column;
    align-items: flex-start;
  }
}