/* Ernie Klassen, MP — South Surrey–White Rock
   Member of Parliament · Parliament of Canada
   World-class design system */

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

:root {
  --red: #D71920;          /* Brand red */
  --red-dark: #A3131A;     /* Deeper red for hero */
  --red-bright: #EC1F27;   /* Vibrant accent red */
  --red-soft: #FBE9EA;     /* Soft pink wash */
  --ink: #0D1B2A;          /* Crisp near-black for text */
  --gray: #4a5568;
  --gray-soft: #718096;
  --light: #f8f6f3;        /* Warm off-white */
  --border: #e6e8eb;
  --shadow: 0 1px 3px rgba(13,27,42,0.04), 0 4px 16px rgba(13,27,42,0.06);
  --shadow-lg: 0 4px 12px rgba(13,27,42,0.06), 0 12px 32px rgba(215,25,32,0.10);
}

html { scroll-behavior: smooth; color-scheme: only light; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  forced-color-adjust: none;
}
/* Hard opt-out of any browser auto dark mode (Chrome/Android force-dark) */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: only light; }
  html, body {
    background: #ffffff !important;
    color: var(--ink) !important;
  }
  /* Force light backgrounds on all white surfaces Chrome tries to invert */
  nav, .stats-strip, .card, .issue-card, .service-card, .highlight,
  .step, .office-card, .video-thumb, .value-item, .contact-prompt,
  input, textarea, select {
    background: #ffffff !important;
    color: var(--ink) !important;
  }
  .section.gray { background: var(--light) !important; }
  .service-items li { background: var(--light) !important; color: var(--ink) !important; }
  .service-note, .bio-photo-caption { background: var(--red-soft) !important; }
  .contact-method { background: var(--light) !important; }
  .contact-method:hover { background: var(--red-soft) !important; }
  /* Force red brand color stays red, not Chrome's darkened version */
  .stat-item strong, .section-eyebrow, .item-tag, .service-link,
  .card-link, .service-note strong, .office-badge {
    color: var(--red) !important;
  }
  /* Hero "Our Community" emphasis must stay translucent white, not red */
  .hero-mp-left h1 em { color: rgba(255,255,255,0.82) !important; }
}
a { color: var(--red); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--red-bright); text-decoration: underline; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { letter-spacing: -0.015em; line-height: 1.2; color: var(--ink); }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  background: #fff;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 88px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(13,27,42,0.04);
}
.nav-brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand:hover { text-decoration: none; color: var(--ink); }
.nav-brand .logo {
  width: auto;
  height: 76px;
  flex-shrink: 0;
  object-fit: contain;
  filter: saturate(1.45) contrast(1.15) brightness(1.04) drop-shadow(0 2px 5px rgba(0,0,0,0.28));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
}
.nav-brand .brand-text { display: flex; flex-direction: column; font-size: 1.05rem; line-height: 1.25; }
.nav-brand .brand-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-soft);
  letter-spacing: 0.2px;
  margin-top: 2px;
}

/* Hamburger toggle */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-burger:hover { background: var(--red-soft); }
.nav-burger span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--red); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--red); }

.nav-links { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
.nav-links a {
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--red-soft); color: var(--red); text-decoration: none; }
.nav-links a.active { color: var(--red); font-weight: 700; }
.nav-links a.contact-btn {
  background: var(--red);
  color: #fff !important;
  margin-left: 6px;
  padding: 10px 22px;
  border-radius: 6px;
}
.nav-links a.contact-btn:hover { background: var(--red-bright); }

/* ─── HERO SPLIT ──────────────────────────────────── */
.hero-mp {
  display: grid;
  grid-template-columns: 1fr 40%;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}
.hero-mp-left {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(255,255,255,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.05) 0%, transparent 50%),
    linear-gradient(145deg, var(--red-dark) 0%, var(--red) 50%, var(--red-bright) 100%);
  color: #fff;
  padding: 80px 64px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-mp-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  color: #fff;
  width: fit-content;
}
.hero-mp-left h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.hero-mp-left h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.82);
}
.hero-mp-left > p {
  font-size: 1.18rem;
  opacity: 0.94;
  line-height: 1.65;
  max-width: 530px;
  margin-bottom: 38px;
}
.hero-mp-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}
.hero-mp-right {
  position: relative;
  overflow: hidden;
  background: var(--red-soft);
}
.hero-mp-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
/* No overlay — clean photo edge */

/* Outline buttons on red backgrounds (hero + all banners) — dark ink, clearly secondary */
.hero-mp-left .btn-outline,
.banner .btn-outline {
  background: rgba(13,27,42,0.72);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}
.hero-mp-left .btn-outline:hover,
.banner .btn-outline:hover {
  background: rgba(13,27,42,0.90);
  border-color: rgba(255,255,255,0.38);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}

/* ─── STATS STRIP ────────────────────────────────── */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(13,27,42,0.05);
}
.stats-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 24px;
}
.stat-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1.15;
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.78rem;
  color: var(--gray-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ─── SECTIONS ────────────────────────────────────── */
.section { padding: 88px 24px; }
.section.gray { background: var(--light); }
.container { max-width: 1140px; margin: 0 auto; }
.section-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title { font-size: 2.25rem; color: var(--ink); margin-bottom: 14px; font-weight: 800; }
.section-sub { font-size: 1.05rem; color: var(--gray); margin-bottom: 48px; line-height: 1.65; max-width: 720px; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  background: #fff;
  color: var(--red);
  padding: 15px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); text-decoration: none; color: var(--red); }
.btn-outline {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; text-decoration: none; transform: translateY(-2px); }
.btn-red {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(215,25,32,0.28);
}
.btn-red:hover { background: var(--red-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(215,25,32,0.38); text-decoration: none; color: #fff; }

/* ─── ABOUT SPLIT ─────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.0rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.highlight {
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
}
.highlight strong {
  display: block;
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.highlight span {
  font-size: 0.84rem;
  color: var(--gray-soft);
  line-height: 1.45;
}

/* ─── ISSUES GRID ─────────────────────────────────── */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.issue-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s;
  border-top: 4px solid transparent;
}
.issue-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--red);
}
.issue-icon {
  width: 52px; height: 52px;
  background: var(--red-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s;
}
.issue-card:hover .issue-icon { background: var(--red); }
.issue-icon svg { width: 26px; height: 26px; fill: var(--red); transition: fill 0.2s; }
.issue-card:hover .issue-icon svg { fill: #fff; }
.issue-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.issue-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

/* ─── CONSTITUENCY SERVICES ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.service-icon {
  width: 64px; height: 64px;
  min-width: 64px;
  background: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 30px; height: 30px; fill: #fff; }
.service-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.service-content > p { font-size: 0.93rem; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.service-list li {
  font-size: 0.875rem;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 0.8rem; top: 2px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  transition: gap 0.15s;
}
.service-link:hover { gap: 10px; text-decoration: none; }

/* ─── CARDS (news) ────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 700; }
.card p { line-height: 1.65; color: var(--gray); font-size: 0.93rem; }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--red);
}
.card .card-link:hover { gap: 8px; text-decoration: none; }
.item-tag {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── ITEMS (events/press list) ───────────────────── */
.items { display: flex; flex-direction: column; gap: 16px; }
.item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.item:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--red); }
.item-date {
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  text-align: center;
  min-width: 68px;
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.item-date .month { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.95; }
.item-body h3 { margin-bottom: 6px; font-size: 1.1rem; font-weight: 700; }
.item-body p { color: var(--gray); font-size: 0.93rem; line-height: 1.6; }

/* ─── CONTACT FORM ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
input, textarea, select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
textarea { resize: vertical; min-height: 130px; }

/* ─── OFFICE CARDS ────────────────────────────────── */
.office-cards { display: flex; flex-direction: column; gap: 20px; }
.office-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
}
.office-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.office-badge {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.office-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.office-detail svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }
.office-detail p, .office-detail a { font-size: 0.9rem; color: var(--gray); line-height: 1.5; }
.office-detail a:hover { color: var(--red); }

/* ─── SOCIAL ICONS — bulletproof centering ──────── */
.socials {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.socials a {
  position: relative !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  max-width: 40px;
  display: inline-block !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.2);
  color: #fff;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  padding: 0 !important;
  margin: 0;
  line-height: 0;
  flex-shrink: 0;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  overflow: hidden;
}
.socials a:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); text-decoration: none; }
.socials a svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 20px !important;
  height: 20px !important;
  fill: currentColor;
  display: block !important;
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
}
.socials.light a { background: var(--red-soft); color: var(--red); }
.socials.light a:hover { background: var(--red); color: #fff; }
footer .socials a {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(215,25,32,0.32);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
footer .socials a:hover {
  background: var(--red-bright);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(236,31,39,0.50);
}

/* ─── BANNER CTA ──────────────────────────────────── */
.banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: #fff;
  text-align: center;
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 40%, rgba(255,255,255,0.1) 0%, transparent 45%);
}
.banner > * { position: relative; }
.banner h2 { font-size: 2.4rem; margin-bottom: 16px; color: #fff; font-weight: 800; }
.banner p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HEADER ─────────────────────────────────── */
.page-header {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(255,255,255,0.14), transparent 50%),
    linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, var(--red-bright) 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.07) 0%, transparent 40%);
}
.page-header > * { position: relative; }
.page-header h1 { font-size: 2.8rem; color: #fff; font-weight: 900; }
.page-header p { opacity: 0.95; margin-top: 12px; font-size: 1.1rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--ink);
  color: #a0aec0;
  padding: 64px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 40px;
}
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 0.95rem; font-weight: 700; }
.footer-col p, .footer-col a { font-size: 0.9rem; line-height: 1.9; color: #a0aec0; display: block; }
.footer-col a { transition: color 0.15s; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .logo {
  width: auto;
  height: 64px;
  object-fit: contain;
  filter: saturate(1.40) contrast(1.12) brightness(1.06) drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}
.footer-brand strong { color: #fff; font-size: 0.95rem; }
.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
  border-top: 1px solid #2d3748;
  padding-top: 24px;
  max-width: 1140px;
  margin: 0 auto;
  color: #718096;
}

/* ─── VIDEO GRID ──────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.video-thumb {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.video-thumb:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; }
.video-thumb-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}
.video-thumb-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.video-thumb:hover .video-thumb-img img { transform: scale(1.04); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  background: rgba(215,25,32,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.2s;
}
.video-thumb:hover .video-play { background: var(--red-bright); transform: translate(-50%,-50%) scale(1.12); }
.video-play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.video-thumb-info { padding: 16px; }
.video-thumb-info h3 { font-size: 0.93rem; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 5px; }
.video-thumb-info span { font-size: 0.78rem; color: var(--gray-soft); }
/* Video modal */
.video-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.open { display: flex; }
.video-modal-wrap { position: relative; width: 100%; max-width: 900px; }
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: #fff;
  font-size: 2.2rem; cursor: pointer; line-height: 1; font-weight: 300;
  transition: color 0.15s;
}
.video-modal-close:hover { color: var(--red-soft); }
.video-modal iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: 8px; display: block; }

/* ─── VIDEO TEASER (homepage) ────────────────────── */
.video-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-mp-left h1 { font-size: 3rem; }
  .hero-mp-left { padding: 64px 48px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  nav {
    padding: 8px 16px;
    min-height: 72px;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-brand { padding: 6px 0; gap: 10px; min-width: 0; flex: 1 1 auto; }
  .nav-brand .logo { width: auto; height: 56px; }
  .nav-brand .brand-text { font-size: 0.95rem; }
  .nav-brand .brand-text span { display: none; }
  .nav-burger { display: flex; order: 2; }
  .nav-links {
    display: none; order: 3; flex-basis: 100%;
    flex-direction: column; gap: 2px;
    padding: 12px 0 6px;
    border-top: 1px solid var(--border); margin-top: 8px;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 14px 12px; border-radius: 6px; font-size: 1rem; width: 100%; }
  .nav-links a.contact-btn { margin: 8px 0 4px; text-align: center; padding: 14px; }

  /* ── Hero: photo on top, text below — no dead space ── */
  .hero-mp { grid-template-columns: 1fr; min-height: auto; }
  .hero-mp-right { order: 1; height: 95vw; min-height: 360px; max-height: 640px; }
  .hero-mp-left {
    order: 2;
    padding: 40px 20px 44px;
  }
  .hero-mp-eyebrow { font-size: 0.7rem; letter-spacing: 1.8px; margin-bottom: 16px; }
  .hero-mp-left h1 { font-size: 2.2rem; margin-bottom: 14px; }
  .hero-mp-left > p { font-size: 0.97rem; margin-bottom: 24px; }
  .hero-mp-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 24px;
  }
  .hero-mp-btns .btn,
  .hero-mp-btns .btn-outline {
    text-align: center;
    padding: 15px 20px;
    width: 100%;
    display: block;
  }
  .hero-mp-btns .btn-outline { margin: 0; }
  .socials { gap: 10px; }

  /* ── Stats strip: 2×2, compact ── */
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px 8px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .stat-item strong { font-size: 1.0rem; }
  .stat-item span { font-size: 0.68rem; line-height: 1.35; }

  /* ── Sections ── */
  .section { padding: 48px 20px; }
  .section-title { font-size: 1.65rem; }
  .section-sub { font-size: 0.97rem; margin-bottom: 32px; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-highlights { grid-template-columns: 1fr 1fr; gap: 12px; }
  .issues-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }

  /* Service cards: keep icon left, content right on mobile (good look) */
  .service-card { padding: 24px 20px; gap: 16px; }
  .service-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 12px; }
  .service-icon svg { width: 24px; height: 24px; }

  /* ── Contact / Forms ── */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .item { flex-direction: column; gap: 14px; }
  .item-date { align-self: flex-start; }

  /* ── Footer ── */
  footer { padding: 40px 20px 24px; }

  /* ── Page headers / banners ── */
  .page-header h1 { font-size: 1.9rem; }
  .page-header p { font-size: 1rem; }
  .banner h2 { font-size: 1.75rem; }
  .banner p { font-size: 1rem; margin-bottom: 28px; }
  .banner-btns { flex-direction: column; align-items: center; gap: 12px; }
  .banner-btns .btn,
  .banner-btns .btn-outline { width: 100%; max-width: 320px; text-align: center; display: block; padding: 15px 20px; }

  /* ── Videos ── */
  .video-grid { grid-template-columns: 1fr; gap: 16px; }
  .video-teaser-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── PRINT STYLES ─────────────────────────────────── */
@media print {
  nav, footer, .banner, .video-modal, .nav-burger { display: none; }
  body { background: #fff !important; color: #000 !important; }
  .hero-mp { display: block; }
  .hero-mp-left { background: #fff !important; color: #000 !important; padding: 20px; }
  .hero-mp-left h1, .hero-mp-left h1 em { color: #000 !important; }
  .section { padding: 20px 0; page-break-inside: avoid; }
}

/* ─── ACCESSIBILITY: Focus rings ──────────────────── */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── ENTRANCE ANIMATIONS — subtle, modern ───────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-mp-eyebrow,
.hero-mp-left h1,
.hero-mp-left > p,
.hero-mp-btns,
.hero-mp-left .socials {
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.hero-mp-left h1       { animation-delay: 0.08s; }
.hero-mp-left > p      { animation-delay: 0.16s; }
.hero-mp-btns          { animation-delay: 0.24s; }
.hero-mp-left .socials { animation-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}
