/* Legislative Summit 2026 — County Assembly of Machakos */

:root {
  --bg-deep: #07080c;
  --bg-elevated: #0e1018;
  --bg-card: #131722;
  --text: #f4f5f8;
  --text-muted: rgba(244, 245, 248, 0.62);
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.22);
  --line: rgba(255, 255, 255, 0.08);
  --header-h: 4.25rem;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Instrument Sans", var(--font);
  --radius: 14px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #e8c85c;
}

.muted {
  color: var(--text-muted);
  font-size: 0.95em;
}

code {
  font-size: 0.85em;
  background: var(--bg-card);
  padding: 0.1em 0.35em;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(820px, 100% - 2.5rem);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.brand-text {
  max-width: 12rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .brand-text {
    max-width: none;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle-bar,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle-bar {
  opacity: 0;
}

.nav-toggle.is-open::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open::after {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.primary-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(7, 8, 12, 0.97);
  border-bottom: 1px solid var(--line);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.primary-nav.is-open {
  max-height: min(70vh, 480px);
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .primary-nav {
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    border: none;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.15rem 0.5rem;
    padding: 0;
  }
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.nav-list a.nav-cta {
  margin-top: 0.35rem;
  padding: 0.55rem 1rem;
  background: #fff;
  color: #111;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-list a.nav-cta:hover {
  background: #f0f0f0;
  color: #111;
}

.nav-list a:not(.nav-cta) {
  position: relative;
}

.nav-list a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
  opacity: 0.95;
}

.nav-list a:not(.nav-cta):hover::after {
  width: 72%;
  left: 14%;
}

.nav-pill {
  color: var(--accent) !important;
}

.nav-cta--glow {
  animation: navCtaPulse 3s ease-in-out infinite;
}

@keyframes navCtaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(212, 175, 55, 0.15);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 10px 40px rgba(0, 0, 0, 0.45), 0 0 36px rgba(212, 175, 55, 0.38);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta--glow {
    animation: none;
  }
}

@media (min-width: 1024px) {
  .nav-list a.nav-cta {
    margin-top: 0;
    margin-left: 0.35rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 6rem;
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
  transform: scale(1.06);
}

.hero-slide--1 {
  background-image: url("../assets/Lands_Committee_Site_Visit_to_MUA_WARD_ON_PETITION_BY_MUA_FARMERS_ImageOne.jpeg");
  animation-delay: 0s;
}

.hero-slide--2 {
  background-image: url("../assets/AGRICULTURE_COMMITTEE_AT_KITUI_AGRICULTURAL_TRAINING_CENTRE_One.jpeg");
  animation-delay: 6s;
}

.hero-slide--3 {
  background-image: url("../assets/DEVOLUTION_COMMITTEE_SEMINAR_AT_IGRTC_NAIROBI_IN_JULY_2025.jpeg");
  animation-delay: 12s;
}

@keyframes heroFade {
  0%,
  5% {
    opacity: 1;
  }
  33%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }
  .hero-slide--1 {
    opacity: 1;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(7, 8, 12, 0.55) 0%,
      rgba(7, 8, 12, 0.5) 35%,
      rgba(7, 8, 12, 0.88) 100%
    ),
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(212, 175, 55, 0.08), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
  justify-items: center;
}

@media (min-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    justify-items: stretch;
  }

  .hero-content {
    text-align: left;
    justify-self: start;
    max-width: 36rem;
  }

  .hero-meta {
    margin-inline: 0;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.35s ease, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(145deg, #fff 0%, #ececec 45%, #fff 90%);
  background-size: 220% 220%;
  color: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.4);
  animation: btnShimmer 5s ease-in-out infinite;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 32px rgba(212, 175, 55, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  border-color: rgba(212, 175, 55, 0.65);
  color: var(--accent);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.22);
}

@keyframes btnShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn--pulse {
  animation: btnShimmer 5s ease-in-out infinite, ctaGlow 2.8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(212, 175, 55, 0.22);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.55), 0 14px 52px rgba(0, 0, 0, 0.5), 0 0 56px rgba(212, 175, 55, 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--primary,
  .btn--pulse {
    animation: none;
  }

  .btn--primary {
    background: #fff;
  }
}

.hero-broadcast {
  width: 100%;
  max-width: 520px;
  justify-self: center;
  padding: 1.2rem 1.3rem 1.45rem;
  background: rgba(10, 12, 20, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.broadcast-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.broadcast-sub {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.broadcast-sub a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.broadcast-sub a:hover {
  border-bottom-color: var(--accent);
}

.hero-embed-shell {
  position: relative;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  background: #030305;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.55);
}

.hero-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.video-tab {
  flex: 1 1 auto;
  min-width: 5.25rem;
  padding: 0.48rem 0.5rem;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s, box-shadow 0.35s;
}

.video-tab:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: #fff;
}

.video-tab.is-active {
  color: #141414;
  background: linear-gradient(145deg, #f0dc8f, var(--accent));
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.38);
}

.hero-title--shine {
  background: linear-gradient(105deg, #fff 0%, #fff 38%, #f2e6b5 48%, #fff 58%, #fff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShine 7s linear infinite;
}

@keyframes titleShine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title--shine {
    animation: none;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-year {
  color: var(--accent);
}

.hero-tagline {
  margin: 0 auto 2rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 40rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
  max-width: 36rem;
  margin-inline: auto;
}

.hero-meta-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-meta-item .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
  color: var(--accent);
}

.hero-countdown {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  text-align: right;
  padding: 1rem 1.15rem;
  background: rgba(14, 16, 24, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (min-width: 1080px) {
  .hero-countdown {
    right: auto;
    left: clamp(1rem, 4vw, 2.5rem);
    text-align: left;
  }

  .hero-countdown .countdown-unit {
    align-items: flex-start;
  }
}

.countdown-label {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.countdown-grid {
  display: flex;
  gap: 0.85rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 3rem;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-cap {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 720px) {
  .hero-countdown {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
    align-self: stretch;
    text-align: center;
  }
  .countdown-grid {
    justify-content: center;
  }
  .countdown-unit {
    align-items: center;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.section--theme {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
}

.section-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title--center {
  text-align: center;
}

.section-lead {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.theme-quote {
  margin: 0;
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
  box-shadow: var(--shadow);
}

.h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-list {
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
}

.feature-list li {
  margin-bottom: 0.65rem;
}

.feature-list li::marker {
  color: var(--accent);
}

.prose-block,
.prose-card {
  margin-bottom: 2rem;
  padding: 1.5rem 1.65rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.prose-card p:last-child {
  margin-bottom: 0;
}

.read-more {
  margin-top: 1rem;
}

.read-more__summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
  padding: 0.35rem 0;
  user-select: none;
}

.read-more__summary::-webkit-details-marker {
  display: none;
}

.read-more__summary::after {
  content: " \203A";
  display: inline-block;
  transition: transform 0.2s ease;
}

.read-more[open] .read-more__summary::after {
  transform: rotate(90deg);
}

.read-more__body {
  margin-top: 0.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.read-more__body p {
  margin: 0 0 0.85rem;
}

.read-more__body p:last-child {
  margin-bottom: 0;
}

.read-more__summary:hover {
  color: #e8c85c;
}

.read-more__summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.prose-block p:last-child {
  margin-bottom: 0;
}

.media-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.media-grid--two {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .media-grid--two {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.media-grid--follow {
  margin-top: 1.25rem;
}

.media-grid--three {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .media-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.media-card {
  margin: 0;
}

.media-card figcaption {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.media-card--simple img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  background: var(--bg-card);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.impact-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.impact-card {
  padding: 1.35rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.impact-card p:last-child {
  margin-bottom: 0;
}

.cards-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  padding: 1.25rem 1.35rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.spotlight {
  margin-top: 2rem;
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), var(--bg-card));
  border: 1px solid var(--accent-soft);
}

.spotlight .feature-list {
  margin-bottom: 0;
}

/* Speaker’s residence slider + paired prose: see residence-live.css (separate file for CDN cache parity). */

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: #040508;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-logo {
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.footer-heading {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-legal {
  margin: 2rem auto 0;
  width: min(1120px, 100% - 2.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
