/* ============================================================
   First United Refuge Church
   Editorial, minimal, modern design system
   ============================================================ */

:root {
  --navy: #0F172A;
  --navy-soft: #1E293B;
  --royal: #1D4ED8;
  --royal-dark: #1E3A8A;
  --gold: #C9A227;
  --gold-soft: #A6841C;
  --success: #16A34A;
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --white: #FFFFFF;
  --text: #1E293B;
  --light: #64748B;
  --line: #E2E8F0;
  --container: 1280px;
  --serif: "Raleway", "Inter", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--royal); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--royal-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }

section { padding: 120px 0; position: relative; }

/* Eyebrow without dash */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--light); font-size: 1.08rem; max-width: 640px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ============ BUTTONS (zero radius) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.86rem;
  font-family: var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-soft); color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--royal-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
}
.btn-link svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.btn-link:hover { color: var(--gold-soft); }
.btn-link:hover svg { transform: translateX(4px); }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  padding: 12px 0;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.topbar-info { display: flex; gap: 32px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-info svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.topbar-social { display: flex; gap: 16px; }
.topbar-social a { color: rgba(255, 255, 255, 0.6); display: inline-flex; }
.topbar-social a:hover { color: var(--gold); }
.topbar-social svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .topbar { font-size: 0.72rem; padding: 10px 0; }
  .topbar-inner { justify-content: center; gap: 10px; }
  .topbar-info { gap: 14px; justify-content: center; width: 100%; }
  .topbar-info span { font-size: 0.7rem; }
  .topbar-social { display: none; }
}
@media (max-width: 480px) {
  .topbar-info span:last-child { display: none; }
}

/* ============ NAVIGATION ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 1px 16px rgba(15, 23, 42, 0.06); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 56px; width: auto; display: block; }

@media (max-width: 768px) {
  .nav-inner { padding: 12px 0; gap: 12px; }
  .brand img { height: 44px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 10px 14px; font-size: 0.7rem; letter-spacing: 0.06em; }
}
@media (max-width: 480px) {
  .brand img { height: 40px; }
  .nav-cta .btn-outline-dark { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
}
.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  position: relative;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--navy); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links > li > a svg { width: 10px; height: 10px; opacity: 0.5; }

.has-mega { position: relative; }
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s ease;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  transition: background 0.2s ease;
}
.mega-item:hover { background: var(--bg); }
.mega-icon {
  width: 38px;
  height: 38px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.mega-icon svg { width: 18px; height: 18px; }
.mega-item h5 {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 600;
}
.mega-item p {
  font-size: 0.78rem;
  color: var(--light);
  line-height: 1.45;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 13px 22px; font-size: 0.78rem; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--navy); }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 2px;
    border-top: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }
  .nav-links > li > a { padding: 14px 12px; font-size: 0.95rem; }
  .nav-links > li > a::after { display: none; }
  .mega { display: none; }
}

/* ============ HERO  Centered ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 140px 32px 160px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 18px;
  position: relative;
}
.hero-eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 600; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 1;
}
.scroll-cue .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -30px;
  width: 100%;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -30px; }
  100% { top: 50px; }
}

/* ============ Service Strip below hero ============ */
.service-strip {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  position: relative;
  margin-top: -1px;
}
.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-cell {
  padding: 38px 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.service-cell:last-child { border-right: none; }
.service-cell .sc-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-cell .sc-icon svg { width: 20px; height: 20px; }
.service-cell .sc-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.service-cell .sc-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
}
@media (max-width: 800px) {
  .service-strip-grid { grid-template-columns: 1fr; }
  .service-cell { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
}

/* ============ Page Hero (interior pages) ============ */
.page-hero {
  position: relative;
  padding: 160px 0 120px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.85));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 880px; margin: 0 auto 22px; }
.page-hero p { color: rgba(255, 255, 255, 0.82); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.breadcrumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.breadcrumbs a { color: rgba(255, 255, 255, 0.6); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gold); }

/* ============ TWO-COLUMN ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-stack {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.image-stack img { width: 100%; height: 100%; object-fit: cover; }
.image-stack .frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}
.image-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 26px;
  font-family: var(--serif);
  font-weight: 700;
}
.image-meta strong { display: block; font-size: 1.6rem; line-height: 1; }
.image-meta span { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }

.lede { color: var(--light); font-size: 1.08rem; margin-bottom: 22px; line-height: 1.8; }

.welcome-list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.welcome-list li { display: flex; align-items: center; gap: 14px; color: var(--navy); font-weight: 500; }
.welcome-list .check {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.welcome-list .check svg { width: 16px; height: 16px; }

/* ============ MINISTRY DETAIL CARDS ============ */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.ministry-detail {
  background: var(--white);
  padding: 46px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.35s ease;
  display: flex;
  flex-direction: column;
}
.ministry-detail:hover { background: var(--bg); }
.ministry-detail .md-head {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.ministry-detail .md-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ministry-detail .md-icon svg { width: 28px; height: 28px; }
.ministry-detail .md-num {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.ministry-detail h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.ministry-detail .md-tagline {
  color: var(--royal);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
}
.ministry-detail .md-lead {
  color: var(--light);
  font-size: 0.96rem;
  margin-bottom: 22px;
  line-height: 1.7;
}
.ministry-detail .md-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}
.ministry-detail .md-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 500;
}
.ministry-detail .md-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}
.ministry-detail .md-foot {
  color: var(--light);
  font-size: 0.92rem;
  font-style: italic;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .ministry-grid { grid-template-columns: 1fr; }
  .ministry-detail { padding: 36px 26px; }
}

/* ============ FIND MINISTRY BAND ============ */
.find-ministry {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.find-ministry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.12), transparent 60%);
}
.find-ministry .container { position: relative; }
.find-ministry .eyebrow { color: var(--gold); }
.find-ministry h2 { color: var(--white); max-width: 760px; margin: 0 auto 22px; }
.find-ministry p { color: rgba(255, 255, 255, 0.78); max-width: 700px; margin: 0 auto 36px; font-size: 1.08rem; }

.three-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 60px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.three-lines .line-cell {
  padding: 50px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.three-lines .line-cell .ln-num {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.28em;
  display: block;
  margin-bottom: 16px;
}
.three-lines .line-cell h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 800px) { .three-lines { grid-template-columns: 1fr; } }

/* ============ Research: Contrast Quote Pair ============ */
.contrast-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 50px auto 0;
  max-width: 760px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.cq {
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.cq-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cq-old .cq-label { color: var(--light); }
.cq-old p {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--light);
  font-style: italic;
  text-decoration: line-through;
  text-decoration-color: var(--light);
  text-decoration-thickness: 1px;
}
.cq-new { background: var(--navy); }
.cq-new .cq-label { color: var(--gold); }
.cq-new p {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  font-style: italic;
}
@media (max-width: 640px) { .contrast-quotes { grid-template-columns: 1fr; } }

/* ============ Research Priority Grid ============ */
.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  text-align: left;
}
.priority-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.priority-card:hover { background: rgba(212, 160, 23, 0.06); }
.priority-card .pc-num {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.3);
  width: 100%;
}
.priority-card h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.3;
}
.priority-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) { .priority-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .priority-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .priority-card[style*="span 2"] { grid-column: span 2 !important; }
}
@media (max-width: 600px) {
  .priority-card[style*="span 2"] { grid-column: span 1 !important; }
}

/* ============ Research Faith + Research Split ============ */
.partner-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1000px;
  margin: 50px auto 0;
}
.ps-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 38px 34px;
  color: var(--white);
  text-align: left;
}
.ps-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.ps-icon svg { width: 26px; height: 26px; }
.ps-card h4 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.ps-card ul { list-style: none; }
.ps-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.96rem;
  padding: 6px 0;
}
.ps-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}
.ps-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  padding: 0 10px;
}
@media (max-width: 800px) {
  .partner-split { grid-template-columns: 1fr; }
  .ps-plus { padding: 4px 0; }
}

/* ============ Visit Research Site Block ============ */
.visit-site {
  background: var(--navy);
  color: var(--white);
  padding: 120px 0;
  text-align: left;
}
.visit-site .eyebrow { color: var(--gold); }
.visit-site h2 { color: var(--white); margin-bottom: 16px; line-height: 1.18; }
.visit-site p { color: rgba(255, 255, 255, 0.78); max-width: 580px; font-size: 1.04rem; line-height: 1.7; }
.vs-inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 56px;
}
.vs-actions { display: flex; align-items: center; }
.vs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.vs-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 500;
  transition: all 0.3s ease;
  min-height: 78px;
}
.vs-item:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold);
}
.vs-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.vs-item span { line-height: 1.4; }
@media (max-width: 900px) {
  .vs-inner { grid-template-columns: 1fr; align-items: flex-start; gap: 28px; }
  .vs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) { .vs-grid { grid-template-columns: 1fr; } }

/* ============ Volunteer Application Form ============ */
.app-form {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.fs {
  padding: 44px 48px;
  border-bottom: 1px solid var(--line);
}
.fs:last-of-type { border-bottom: none; }
.fs-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.fs-head .fs-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.24em;
  background: var(--navy);
  padding: 10px 16px;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}
.fs-head h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.fs-head p { color: var(--light); font-size: 0.92rem; margin: 0; line-height: 1.55; }

.fs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fs-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.fs-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.fs-field { display: flex; flex-direction: column; }
.fs-field.full { grid-column: 1 / -1; }
.fs-field.span-2 { grid-column: span 2; }
.fs-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.fs-field label .req { color: #DC2626; margin-left: 2px; }
.fs-field input[type="text"],
.fs-field input[type="email"],
.fs-field input[type="tel"],
.fs-field input[type="date"],
.fs-field input[type="number"],
.fs-field input[type="url"],
.fs-field select,
.fs-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  width: 100%;
  transition: all 0.2s ease;
}
.fs-field input:focus,
.fs-field select:focus,
.fs-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.fs-field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
@media (max-width: 720px) {
  .fs { padding: 32px 24px; }
  .fs-grid, .fs-grid.cols-3, .fs-grid.cols-4 { grid-template-columns: 1fr; }
  .fs-field.span-2 { grid-column: 1 / -1; }
}

/* Checkbox & radio styling */
.cb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cb-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cb-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cb-grid.cols-7 { grid-template-columns: repeat(7, 1fr); }
@media (max-width: 900px) {
  .cb-grid, .cb-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cb-grid.cols-7 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .cb-grid, .cb-grid.cols-2, .cb-grid.cols-4, .cb-grid.cols-7 { grid-template-columns: 1fr; }
}

.cb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.cb:hover { border-color: var(--navy); background: var(--bg); }
.cb input[type="checkbox"],
.cb input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cb .cb-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--light);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.cb input[type="radio"] ~ .cb-box { border-radius: 50%; }
.cb .cb-box svg { width: 12px; height: 12px; color: var(--white); opacity: 0; transition: opacity 0.15s ease; }
.cb input:checked ~ .cb-box { background: var(--gold); border-color: var(--gold); }
.cb input:checked ~ .cb-box svg { opacity: 1; }
.cb input:checked ~ .cb-label { color: var(--navy); font-weight: 600; }
.cb:has(input:checked) { border-color: var(--gold); background: rgba(201, 162, 39, 0.06); }
.cb .cb-label { color: var(--navy); font-size: 0.92rem; line-height: 1.4; }

/* Pair of yes/no radios */
.yn-group { display: flex; gap: 12px; margin-bottom: 14px; }
.yn-group .cb { flex: 0 0 auto; min-width: 110px; justify-content: center; }

/* Covenant list */
.covenant-list { list-style: none; display: grid; gap: 12px; margin: 0 0 28px; }
.covenant-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--bg);
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 500;
}
.covenant-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Submit row */
.fs-submit {
  background: var(--navy);
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.fs-submit p { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; margin: 0; max-width: 480px; line-height: 1.55; }
.fs-submit .btn { padding: 18px 36px; }
.fs-msg {
  padding: 18px 24px;
  background: rgba(22, 163, 74, 0.12);
  border-left: 3px solid var(--success);
  color: var(--success);
  font-weight: 600;
  margin: 16px 48px 0;
  display: none;
}
.fs-msg.show { display: block; }
@media (max-width: 720px) {
  .fs-submit { padding: 28px 24px; }
  .fs-msg { margin: 16px 24px 0; }
}

/* Volunteer Why list */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  transition: all 0.3s ease;
}
.why-cell:hover { background: var(--navy); color: var(--white); }
.why-cell:hover .wc-icon { color: var(--gold); border-color: var(--gold); }
.why-cell:hover span { color: var(--white); }
.why-cell .wc-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  color: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.why-cell .wc-icon svg { width: 18px; height: 18px; }
.why-cell span { color: var(--navy); font-weight: 600; font-size: 0.94rem; line-height: 1.4; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* ============ Contact: Visit Info Cards ============ */
.visit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.visit-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.visit-card .vc-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-card .vc-icon svg { width: 26px; height: 26px; }
.visit-card .vc-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.visit-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
}
.visit-card p { color: var(--light); font-size: 0.98rem; line-height: 1.65; margin: 0; }
.visit-card .vc-detail {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 800px) { .visit-cards { grid-template-columns: 1fr; } }

/* ============ Map Embed ============ */
.map-embed {
  width: 100%;
  height: 460px;
  border: 1px solid var(--line);
  display: block;
}

/* ============ FAQ Accordion ============ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: none;
  transition: background 0.2s ease;
}
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq[open] summary { color: var(--gold-soft); }
.faq:hover { background: var(--bg); }
.faq .faq-body {
  padding: 0 28px 24px;
  color: var(--light);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ============ Welcome Checklist ============ */
.welcome-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 780px;
  margin: 36px auto 0;
}
.welcome-check li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.98rem;
  list-style: none;
}
.welcome-check li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
@media (max-width: 600px) { .welcome-check { grid-template-columns: 1fr; } }

/* ============ Two forms side by side ============ */
.dual-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .dual-form { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 50px; }
}

/* ============ IMPACT STATS  Editorial ============ */
.impact {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.impact .eyebrow { color: var(--gold); }
.impact h2 { color: var(--white); }
.impact .section-head p { color: rgba(255, 255, 255, 0.7); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.impact-cell {
  padding: 44px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.impact-cell .num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.impact-cell .label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.impact-cell.shared .num {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .impact-grid { grid-template-columns: 1fr; }
}

/* ============ WHY ELMIRA ============ */
.elmira { background: var(--bg); }
.challenges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.challenge {
  background: var(--white);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}
.challenge:hover {
  background: var(--navy);
  color: var(--white);
}
.challenge:hover span { color: var(--white); }
.challenge:hover .c-icon { color: var(--gold); border-color: var(--gold); }
.challenge .c-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  color: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.challenge .c-icon svg { width: 18px; height: 18px; }
.challenge span {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.94rem;
  transition: color 0.3s ease;
}

.belief-list {
  margin-top: 40px;
  padding: 30px 32px;
  border-left: 3px solid var(--gold);
  background: var(--white);
}
.belief-list p {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 500;
}
.belief-list p:last-child { margin-bottom: 0; }

/* ============ MISSION CARDS ============ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.mission-card {
  background: var(--white);
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--navy);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.mission-card:hover::before { height: 100%; }
.mission-card > * { position: relative; z-index: 1; }
.mission-card:hover h3,
.mission-card:hover p { color: var(--white); }
.mission-card:hover .m-icon { color: var(--gold); border-color: var(--gold); }
.mission-card:hover .num-tag { color: var(--gold); }

.mission-card .num-tag {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
  transition: color 0.3s ease;
}
.mission-card .m-icon {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.mission-card .m-icon svg { width: 26px; height: 26px; }
.mission-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.mission-card p {
  color: var(--light);
  font-size: 0.92rem;
  line-height: 1.65;
  transition: color 0.3s ease;
}

@media (max-width: 1024px) { .mission-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .mission-grid { grid-template-columns: 1fr; } }

/* ============ SOCIAL PRESCRIBING ============ */
.prescribe {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.prescribe::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: 50%;
}
.prescribe::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  border: 1px solid rgba(212, 160, 23, 0.16);
  border-radius: 50%;
}
.prescribe h2 { color: var(--white); }
.prescribe .eyebrow { color: var(--gold); }
.prescribe .section-head p { color: rgba(255, 255, 255, 0.7); }
.prescribe .container { position: relative; z-index: 1; }

.prescribe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 60px 0 50px;
}
.pill-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 18px;
  text-align: center;
  transition: all 0.3s ease;
}
.pill-card:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.pill-card:hover .pc-icon { color: var(--navy); }
.pill-card:hover span { color: var(--navy); }
.pill-card .pc-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.pill-card .pc-icon svg { width: 24px; height: 24px; }
.pill-card span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  transition: color 0.3s ease;
}

.big-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  color: var(--gold);
  font-weight: 500;
  max-width: 760px;
  margin: 40px auto 0;
  line-height: 1.3;
}
.big-quote::before, .big-quote::after { content: "\""; }

@media (max-width: 800px) { .prescribe-grid { grid-template-columns: 1fr 1fr; } }

/* ============ VISION 2035 ============ */
.vision { background: var(--bg); }
.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.vision-card {
  background: var(--white);
  padding: 38px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s ease;
  position: relative;
}
.vision-card:hover {
  background: var(--navy);
  color: var(--white);
}
.vision-card:hover h3 { color: var(--white); }
.vision-card:hover p { color: rgba(255, 255, 255, 0.7); }
.vision-card:hover .year { color: var(--gold); }
.vision-card:hover .v-icon { color: var(--gold); border-color: var(--gold); }

.vision-card .year {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
  transition: color 0.3s ease;
}
.vision-card .v-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}
.vision-card .v-icon svg { width: 24px; height: 24px; }
.vision-card h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.vision-card p {
  color: var(--light);
  font-size: 0.88rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}
@media (max-width: 1024px) { .vision-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .vision-grid { grid-template-columns: 1fr; } }

/* ============ DECLARATION ============ */
.declaration {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.declaration::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.12), transparent 60%);
}
.declaration .container { position: relative; }
.declaration .eyebrow { color: var(--gold); }
.declaration h2 { color: var(--white); max-width: 820px; margin: 0 auto; }

.declare-list { max-width: 880px; margin: 60px auto 60px; }
.declare-list p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: rgba(255, 255, 255, 0.92);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  line-height: 1.4;
}
.declare-list p:last-child { border-bottom: none; }

.declare-final {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.declare-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--gold);
  color: var(--navy);
  padding: 120px 0;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h3 {
  color: var(--navy);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 8px;
  max-width: 600px;
}
.cta-band p { color: var(--navy); max-width: 580px; opacity: 0.85; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-dark { background: var(--navy); color: var(--white); }
.cta-band .btn-outline-dark { color: var(--navy); border-color: var(--navy); }
.cta-band .btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ============ FOOTER ============ */
.footer {
  background: #0A1224;
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { margin-bottom: 22px; }
.footer-brand img { height: 64px; }
.footer p { color: rgba(255, 255, 255, 0.62); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.7; }
.footer h5 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer ul a:hover { color: var(--gold); padding-left: 6px; }

.newsletter input {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter button {
  width: 100%;
  justify-content: center;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-social svg { width: 15px; height: 15px; }

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

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ HELPERS ============ */
.text-center { text-align: center; }
.bg-alt { background: var(--bg); }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
