/* Crime Stoppers of Stafford County Inc — Enhanced Static Site */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --navy: #0f2a4a;
  --navy-dark: #071525;
  --navy-light: #1a3d66;
  --gold: #c5a059;
  --gold-light: #e0c989;
  --gold-dark: #a8863f;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray-100: #eef1f5;
  --gray-200: #dde3ea;
  --gray-500: #6b7a8d;
  --gray-700: #3d4f63;
  --text: #1e2d3d;
  --shadow: 0 4px 24px rgba(15, 42, 74, 0.1);
  --shadow-lg: 0 20px 60px rgba(15, 42, 74, 0.18);
  --shadow-gold: 0 8px 32px rgba(197, 160, 89, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.35rem); }
h3 { font-size: 1.2rem; font-family: var(--font); font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.4rem; }

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 37, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-link:hover { color: var(--gold-light); }

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 0.95rem; letter-spacing: 0.02em; font-family: var(--font); }
.logo-text span {
  font-size: 0.68rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font);
}

.main-nav { display: flex; align-items: center; gap: 0.15rem; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font);
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(197, 160, 89, 0.18);
  color: var(--gold-light);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  margin-left: 0.5rem;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy-dark) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

/* ── Hero with background image ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 21, 37, 0.93) 0%,
    rgba(15, 42, 74, 0.82) 45%,
    rgba(15, 42, 74, 0.55) 100%
  );
}

.hero .container { position: relative; z-index: 1; width: 100%; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197,160,89,0.15);
  border: 1px solid rgba(197,160,89,0.5);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  font-family: var(--font);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.92;
  margin-bottom: 2.25rem;
  line-height: 1.75;
  font-family: var(--font);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-logo-wrap {
  position: relative;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(197,160,89,0.4);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-logo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(197,160,89,0.15);
  position: relative;
}

.hero-tagline {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-weight: 600;
  font-family: var(--font);
}

.hero-stats-mini {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font);
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  font-family: var(--font-display);
}
.hero-stat span { font-size: 0.78rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Buttons ── */
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(197,160,89,0.4); color: var(--navy-dark); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); color: var(--white); box-shadow: var(--shadow); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--navy); background: rgba(197,160,89,0.08); }

/* ── Sections ── */
section { padding: 5.5rem 0; }
section.alt-bg { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header p { color: var(--gray-500); font-size: 1.08rem; }
.section-label {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  font-family: var(--font);
}

/* ── Split layout (image + text) ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.split-image:hover img { transform: scale(1.04); }

.split-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font);
}

.split-content h2 { margin-bottom: 1rem; }
.split-content p { color: var(--gray-700); margin-bottom: 1.25rem; }

/* ── Image cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-image {
  height: 200px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-image img { transform: scale(1.06); }

.card-body { padding: 1.75rem; }
.card-body h3 { margin-bottom: 0.65rem; color: var(--navy); }
.card-body p { color: var(--gray-700); font-size: 0.94rem; }

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* plain card without image */
.card--plain { padding: 2rem; }

/* ── Gallery strip ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
}
.gallery-strip img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  z-index: 1;
  position: relative;
}

/* ── Stats bar ── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/partnership.jpg') center/cover;
  opacity: 0.08;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.stat-item span { font-size: 0.88rem; opacity: 0.85; font-family: var(--font); }

/* ── Impact banner ── */
.impact-banner {
  position: relative;
  padding: 5rem 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.impact-banner-bg {
  position: absolute;
  inset: 0;
}
.impact-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.impact-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 37, 0.82);
}
.impact-banner .container { position: relative; z-index: 1; }
.impact-banner h2 { color: var(--white); margin-bottom: 1rem; }
.impact-banner p { max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; font-size: 1.1rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--navy-dark);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--navy-dark); margin-bottom: 0.75rem; }
.cta-banner p { max-width: 560px; margin: 0 auto 2rem; font-size: 1.08rem; }

/* ── Page header with image ── */
.page-header {
  position: relative;
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
}
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,37,0.75), rgba(15,42,74,0.9));
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { opacity: 0.9; max-width: 620px; margin: 0 auto; font-size: 1.08rem; font-family: var(--font); }
.breadcrumb { font-size: 0.85rem; margin-bottom: 1rem; opacity: 0.7; font-family: var(--font); }
.breadcrumb a { color: var(--gold-light); }

/* plain page header fallback */
.page-header--plain {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}

/* ── Content layout ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.content-main { min-width: 0; }
.content-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-card--image { padding: 0; overflow: hidden; }
.sidebar-card--image img { width: 100%; height: 160px; object-fit: cover; }
.sidebar-card--image .sidebar-card-body { padding: 1.5rem; }

.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.info-list { list-style: none; margin: 0; }
.info-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.info-list li:last-child { border-bottom: none; }
.info-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

/* ── Steps ── */
.steps { counter-reset: step; list-style: none; margin: 0; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--font);
}

/* ── Donate ── */
.donate-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.donate-hero-image img { width: 100%; height: 320px; object-fit: cover; }

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.amount-btn {
  padding: 1.1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: var(--font);
}
.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--gold);
  background: rgba(197,160,89,0.12);
  transform: translateY(-2px);
}

.donate-box {
  background: linear-gradient(135deg, var(--off-white), var(--white));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.donate-box address { font-style: normal; font-size: 1.15rem; line-height: 1.9; color: var(--navy); }

.tax-notice {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}
.tax-notice strong { color: var(--gold); }

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--font);
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.65rem; font-family: var(--font-display); }
.blog-card p { font-size: 0.92rem; color: var(--gray-700); flex: 1; }
.read-more {
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font);
}
.read-more:hover { color: var(--navy); }

.blog-filter.active {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy) !important;
}

/* ── Article ── */
.article { max-width: 780px; }
.article-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
}
.article-featured-img img { width: 100%; height: 400px; object-fit: cover; }

.article-meta {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font);
}
.article h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.article h3 { margin: 1.5rem 0 0.75rem; }
.article p, .article ul { color: var(--gray-700); }
.article .lead { font-size: 1.2rem; color: var(--text); line-height: 1.75; }

/* ── Contact ── */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}
.contact-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197,160,89,0.15);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.5rem; }

.alert {
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.alert-info {
  background: rgba(15,42,74,0.07);
  border-left: 4px solid var(--navy);
  color: var(--navy);
}
.alert-warning {
  background: rgba(197,160,89,0.12);
  border-left: 4px solid var(--gold);
  color: var(--navy-dark);
}

/* ── Trust badges ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
  font-family: var(--font);
}
.trust-badge span { color: var(--gold-dark); font-size: 1rem; }

/* ── Footer (Enhanced) ── */
.site-footer {
  position: relative;
  margin-top: 0;
}

/* Seamless join: last content section flows into footer */
.site-footer .footer-pre {
  margin-top: 0;
}
section + .site-footer,
section:last-of-type {
  margin-bottom: 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold-dark));
  z-index: 2;
}

/* Footer pre-section — single CTA before footer body */
.footer-pre {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.footer-pre-bg {
  position: absolute;
  inset: 0;
}
.footer-pre-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-pre-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 37, 0.88) 0%,
    rgba(15, 42, 74, 0.92) 100%
  );
}
.footer-pre-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.footer-pre-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-family: var(--font);
}
.footer-pre-inner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.footer-pre-inner p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-family: var(--font);
}
.footer-pre-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn-footer-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: var(--font);
  text-decoration: none;
}
.btn-footer-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer main body */
.footer-body {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/partnership.jpg') center/cover;
  opacity: 0.04;
  pointer-events: none;
}
.footer-body > .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}
.footer-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(197,160,89,0.12), var(--shadow-gold);
  flex-shrink: 0;
  object-fit: cover;
}
.footer-org-name {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-family: var(--font);
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
  font-family: var(--font);
}

.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer-pill {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(197,160,89,0.15);
  border: 1px solid rgba(197,160,89,0.35);
  color: var(--gold-light);
  font-family: var(--font);
}

.footer-social-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
  font-family: var(--font);
}
.footer-social-links { display: flex; gap: 0.65rem; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
  background: rgba(197,160,89,0.2);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.35rem;
  font-family: var(--font);
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul { list-style: none; margin: 0; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.2s;
  font-family: var(--font);
}
.footer-col a:hover { color: var(--gold-light); transform: translateX(3px); }
.footer-link-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.footer-col a:hover .footer-link-dot { opacity: 1; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-family: var(--font);
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(197,160,89,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-contact-list a { color: var(--gold-light); font-size: 0.88rem; }
.footer-contact-list a:hover { color: var(--white); }

.footer-newsletter {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-newsletter-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: var(--font);
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.footer-newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: none;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font);
  min-width: 0;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form input:focus { outline: none; background: rgba(255,255,255,0.1); }
.footer-newsletter-btn {
  padding: 0 1.1rem;
  background: var(--gold);
  border: none;
  color: var(--navy-dark);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter-btn:hover { background: var(--gold-light); }
.footer-newsletter-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.5rem;
  font-family: var(--font);
}

.footer-legal-row {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-family: var(--font);
}
.footer-legal-links a:hover { color: var(--gold-light); }
.footer-legal-sep { color: rgba(255,255,255,0.2); font-size: 0.85rem; }
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: var(--font);
}

.footer-bottom {
  padding: 1.5rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
}
.footer-bottom-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-bottom-loc svg { opacity: 0.6; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-section.reverse { direction: ltr; }
  .split-image img { height: 300px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 4rem 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero p { margin-inline: auto; }
  .hero-stats-mini { justify-content: center; }
  .btn-row { justify-content: center; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-pre { padding: 3.5rem 0; }
  .footer-pre-actions { flex-direction: column; align-items: center; }
  .footer-pre-actions .btn { width: 100%; max-width: 280px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav a { width: 100%; padding: 0.85rem 1rem; }
  .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; }
  .logo-text { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-top { flex-direction: column; text-align: center; }
  .footer-trust-row { justify-content: center; }
  .footer-social { text-align: center; }
  .footer-social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .hero-logo { width: 180px; height: 180px; }
  section { padding: 4rem 0; }
}
