/* UAC Website VER 1 — 普世豐盛新生命團體 · 陽光喜樂氛圍 */
:root {
  --red: #c9102e;
  --red-dark: #a00d25;
  --blue: #49a6ff;
  --blue-dark: #2b8de8;
  --blue-light: #eaf8ff;
  --blue-pale: #7ed4ff;
  --red-light: #fdecef;
  --sun: #ffd86b;
  --sun-light: #fff6c4;
  --sun-warm: #ffd86b;
  --cream: #fff8d9;
  --sky: #d8f1ff;
  --pink-soft: #ff8fb8;
  --purple-rainbow: #b892ff;
  --text: #2a2a2a;
  --text-muted: #5a6472;
  --bg: #ffffff;
  --bg-soft: #eaf8ff;
  --border: rgba(255, 255, 255, 0.55);
  --footer-bg: #1e4a63;
  --shadow: 0 8px 32px rgba(73, 166, 255, 0.14);
  --shadow-soft: 0 4px 24px rgba(126, 212, 255, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.52);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-blur: blur(14px);
  --sky-gradient: linear-gradient(180deg, #eaf8ff 0%, #d8f1ff 35%, #fff8d9 70%, #ffffff 100%);
  --radius: 16px;
  --font: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--sky-gradient);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--red);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ── Top bar ── */
.top-bar {
  background: linear-gradient(90deg, var(--red) 0%, #e85a20 45%, var(--sun) 100%);
  color: #fff;
  font-size: 0.875rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(245, 166, 35, 0.25);
}

.vision-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.vision-ticker:hover {
  animation-play-state: paused;
}

.vision-ticker img {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ── */
.site-header {
  background: linear-gradient(
    165deg,
    rgba(255, 244, 214, 0.98) 0%,
    rgba(255, 249, 240, 0.96) 38%,
    rgba(232, 244, 252, 0.94) 100%
  );
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--sun-warm);
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--sun-warm);
  box-shadow: 0 0 0 3px var(--blue-light), 0 4px 16px rgba(245, 166, 35, 0.35);
}

.brand-text h1 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--red) 0%, #e85a20 50%, var(--sun) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.3;
}

.brand-text p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: var(--sun-light);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.social-links a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 14px rgba(24, 155, 212, 0.35);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* ── Navigation ── */
.main-nav {
  background: linear-gradient(
    180deg,
    rgba(255, 249, 235, 0.92) 0%,
    rgba(232, 246, 252, 0.88) 100%
  );
  border-top: 1px solid rgba(245, 166, 35, 0.25);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.nav-list a:hover {
  background: var(--sun-light);
  color: var(--red-dark);
  transform: translateY(-1px);
}

.nav-list a.active {
  background: linear-gradient(135deg, var(--red) 0%, #e85a20 100%);
  color: #fff;
  box-shadow: 0 3px 12px rgba(201, 16, 46, 0.3);
}

.nav-toggle {
  display: none;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ── Hero · Banner 圖片輪播 ── */
.banner-track {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a1a1a;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero .banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.2s;
}

.banner-btn:hover {
  background: var(--sun-warm);
  transform: translateY(-50%) scale(1.08);
}

.banner-prev {
  left: 0.75rem;
}

.banner-next {
  right: 0.75rem;
}

.hero .banner-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
}

.banner-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.banner-dot.is-active,
.banner-dot:hover {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

/* ── Hero · 文字前景 + 橫幅背景 ── */
.hero {
  position: relative;
  min-height: min(52vw, 460px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid rgba(126, 212, 255, 0.45);
}

.hero .hero-inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(52vw, 460px);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 4rem) clamp(4rem, 8vw, 5.5rem);
  z-index: 2;
  text-align: center;
  box-sizing: border-box;
}

.hero-contents {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.hero-content {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-content.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-welcome {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.hero-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-title span {
  color: var(--sun-warm);
  position: relative;
}

.hero-title span::after {
  display: none;
}

.hero-mood {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #e85a20 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201, 16, 46, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 16, 46, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.75);
  color: var(--blue-dark);
  border-color: rgba(73, 166, 255, 0.55);
  backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-sun {
  background: linear-gradient(135deg, var(--sun-warm), var(--sun));
  color: #5a3e00;
  border-color: transparent;
  font-weight: 700;
}

.btn-sun:hover {
  filter: brightness(1.05);
  color: #3d2a00;
}

/* ── 首頁下半部背景 ── */
.heaven-sky {
  position: relative;
  background: var(--sky-gradient);
  overflow: hidden;
}

.heaven-sky > .quick-links,
.heaven-sky > .page-main {
  position: relative;
  z-index: 1;
}

.heaven-sky > .page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../assets/images/webbg001.jpg") center center / cover no-repeat;
}

.heaven-sky > .page-main > .container {
  position: relative;
  z-index: 1;
}

/* ── Quick links ── */
.quick-links {
  padding: 1.5rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(126, 212, 255, 0.25);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quick-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  transition: transform 0.25s, box-shadow 0.25s;
  aspect-ratio: 16/7;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(73, 166, 255, 0.22);
}

.quick-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  font-weight: 600;
}

.highlight-banner {
  margin: 1.5rem 0;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(135deg,
    rgba(255, 246, 196, 0.75) 0%,
    rgba(126, 212, 255, 0.55) 50%,
    rgba(255, 143, 184, 0.45) 100%);
  color: var(--text);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-soft);
}

/* ── Main layout ── */
.page-main {
  padding: 2rem 0 3rem;
  background: transparent;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
  padding: 0.9rem 1.4rem;
  font-size: clamp(1.4rem, 2.8vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--red-dark);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 248, 217, 0.95) 55%,
    rgba(234, 248, 255, 0.92) 100%);
  border: 1px solid rgba(255, 216, 107, 0.5);
  border-radius: var(--radius);
  box-shadow:
    0 4px 24px rgba(73, 166, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section-title::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 1.35em;
  background: linear-gradient(180deg, var(--red) 0%, var(--sun-warm) 55%, var(--blue) 100%);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(255, 216, 107, 0.45);
}

/* ── News cards · 易讀活動消息格 ── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow:
    0 8px 32px rgba(73, 166, 255, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-top: 4px solid var(--blue);
}

.news-card.featured {
  border-top-color: var(--red);
  box-shadow:
    0 8px 36px rgba(201, 16, 46, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.35rem;
  background: linear-gradient(135deg,
    rgba(234, 248, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 100%);
  border-bottom: 1px solid rgba(126, 212, 255, 0.25);
}

.news-card.featured .news-card-header {
  background: linear-gradient(135deg,
    rgba(255, 246, 196, 0.98) 0%,
    rgba(255, 252, 245, 0.95) 100%);
  border-bottom-color: rgba(255, 216, 107, 0.4);
}

.news-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #e85a20 100%);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 16, 46, 0.2);
}

.news-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red-dark);
  flex: 1;
  line-height: 1.45;
}

.news-card-body {
  padding: 1.15rem 1.35rem 1.35rem;
}

.news-meta {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  gap: 0;
  font-size: 0.92rem;
  margin: 0;
  background: rgba(255, 252, 248, 0.98);
  border: 1px solid rgba(255, 216, 107, 0.35);
  border-radius: 12px;
  overflow: hidden;
}

.news-meta dt,
.news-meta dd {
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-meta dt {
  font-weight: 700;
  color: var(--red-dark);
  background: rgba(255, 246, 196, 0.45);
  border-right: 1px solid rgba(255, 216, 107, 0.25);
}

.news-meta dd {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  background: #fff;
}

.news-meta dt:last-of-type,
.news-meta dd:last-of-type {
  border-bottom: none;
}

.news-meta dd a {
  color: var(--red-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 16, 46, 0.45);
}

.news-meta dd a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}

.news-banner {
  margin-top: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 216, 107, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-banner img {
  width: 100%;
  display: block;
}

.news-copy {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.news-copy h4 {
  margin: 1.35rem 0 0.6rem;
  font-size: 1.05rem;
  color: var(--red-dark);
}

.news-copy h4:first-child {
  margin-top: 0;
}

.news-copy p {
  margin: 0 0 0.75rem;
}

.news-copy ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
}

.news-copy li {
  margin-bottom: 0.35rem;
}

.news-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.notice-box {
  background: linear-gradient(135deg,
    rgba(255, 246, 196, 0.82) 0%,
    rgba(255, 248, 217, 0.75) 100%);
  border: 1px solid rgba(255, 216, 107, 0.55);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-soft);
}

.notice-box a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.15rem;
  padding: 0.35rem 0.9rem;
  font-weight: 700;
  color: var(--red-dark);
  background: linear-gradient(135deg, var(--sun-light) 0%, var(--sun-warm) 100%);
  border: 1px solid rgba(255, 216, 107, 0.9);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(255, 216, 107, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, color 0.2s;
}

.notice-box a::after {
  content: "→";
  font-size: 0.9em;
}

.notice-box a:hover {
  color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 216, 107, 0.5);
}

/* ── Sidebar · 玻璃質感 ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.sidebar-card-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-pale) 100%);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.sidebar-card-body {
  padding: 1rem;
}

.fb-card {
  text-align: center;
  padding: 1.5rem;
}

.fb-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.promo-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.promo-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}

.promo-item:hover {
  transform: scale(1.02);
}

.promo-item img {
  width: 100%;
}

.promo-placeholder {
  padding: 1rem;
  background: linear-gradient(135deg, var(--red-light), var(--blue-light));
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--red);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, var(--footer-bg) 0%, #163a4f 100%);
  color: #e8f4fc;
  padding: 2.5rem 0 1.5rem;
  border-top: 4px solid var(--sun-warm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.site-footer a {
  color: var(--blue);
}

.site-footer a:hover {
  color: #7dd3fc;
}

.footer-contact h4 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1rem;
}

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

.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* ── Inner pages ── */
.page-hero-sm {
  background: linear-gradient(135deg, var(--sun-light) 0%, var(--blue-light) 40%, var(--blue) 100%);
  color: var(--text);
  padding: 2.5rem 0;
  text-align: center;
  border-bottom: 3px solid var(--sun-warm);
}

.page-hero-sm h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--red-dark);
}

.page-content {
  padding: 2.5rem 0 3rem;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  color: var(--red);
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--blue);
}

.prose h2:first-child {
  margin-top: 0;
}

.about-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.about-nav a {
  padding: 0.4rem 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--text);
}

.about-nav a:hover {
  border-color: var(--red);
  color: var(--red);
}

.member-tier {
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border);
}

.member-tier strong {
  color: var(--red);
}

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

.contact-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 4px solid var(--blue);
}

.contact-card h3 {
  margin: 0 0 1rem;
  color: var(--red);
}

.contact-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-card li {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.contact-card li strong {
  min-width: 4em;
  color: var(--blue);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--border);
}

.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.coming-soon h2 {
  color: var(--blue);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero .hero-inner {
    min-height: 360px;
  }

  .hero-content {
    padding: 1.25rem 1rem 1.5rem;
  }

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

  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav .nav-list {
    display: none;
    flex-direction: column;
    padding: 0.5rem 0 1rem;
  }

  .main-nav.open .nav-list {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .social-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text h1 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .hero-mood {
    margin-inline: auto;
  }

  .hero .banner-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .hero .banner-prev {
    left: 0.35rem;
  }

  .hero .banner-next {
    right: 0.35rem;
  }

  .news-meta {
    grid-template-columns: 1fr;
  }

  .news-meta dt {
    border-right: none;
    padding-bottom: 0.2rem;
  }

  .news-meta dd {
    padding-top: 0;
    margin-bottom: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vision-ticker,
  .banner-slide {
    animation: none;
    transition: none;
  }
}
