/* ==========================================================================
   VC SURVEILLANCE — Design System
   ========================================================================== */

:root {
  /* Palette — charcoal / steel / white, red accent from brandmark */
  --black: #0a0b0d;
  --charcoal-900: #101318;
  --charcoal-800: #171b21;
  --charcoal-700: #21262e;
  --charcoal-600: #2c323c;
  --steel-500: #5b6472;
  --steel-400: #7c8592;
  --steel-300: #a3aab3;
  --steel-200: #c7ccd2;
  --steel-100: #e3e6e9;
  --white: #ffffff;
  --off-white: #f6f7f8;
  --red-600: #b81627;
  --red-500: #d31f2f;
  --red-400: #e8394a;

  --ink: #12151a;
  --muted: #5c6470;

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 10px rgba(10, 11, 13, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 11, 13, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 11, 13, 0.18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { margin: 0; padding: 0; list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font-family: inherit; }

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

html, body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body { overflow-x: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--charcoal-900);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { line-height: 1.7; color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

/* ---- Type scale ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-500);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-500);
  display: inline-block;
}

h1.display { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2.h-lg { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3.h-md { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--steel-500);
  max-width: 640px;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.75rem; }
.section-head p { margin-top: 1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-600); transform: translateY(-2px); }
.btn-dark {
  background: var(--charcoal-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--black); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--steel-200);
  color: var(--charcoal-900);
}
.btn-outline-dark:hover { border-color: var(--charcoal-900); background: var(--off-white); }
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.85rem; }
.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10, 11, 13, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled,
.site-header.solid {
  background: rgba(10, 11, 13, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
  min-width: 0;
  flex-shrink: 1;
}
.brand img { height: 40px; width: 40px; object-fit: contain; flex-shrink: 0; }
.brand > span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--steel-300);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.main-nav a {
  color: var(--steel-100);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--red-500);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--white); }

.header-cta { display: flex; align-items: center; gap: 1.2rem; flex-shrink: 0; }
.header-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  display: none;
}
.header-phone svg { vertical-align: -3px; margin-right: 0.35rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  position: relative;
  transition: all 0.25s var(--ease);
}
.nav-toggle span::before { content: ""; position: absolute; top: -7px; width: 22px; height: 2px; background: var(--white); }
.nav-toggle span::after { content: ""; position: absolute; top: 7px; width: 22px; height: 2px; background: var(--white); }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-phone { display: none !important; }
  .nav-toggle { display: flex; }
  .site-header { background: rgba(10,11,13,0.92); backdrop-filter: blur(10px); }
}
@media (max-width: 640px) {
  .header-inner { gap: 0.75rem; }
  .brand { gap: 0.55rem; font-size: 0.92rem; }
  .brand img { height: 32px; width: 32px; }
  .brand small { display: none; }
  .header-cta { gap: 0.6rem; }
  .header-cta .btn-sm { padding: 0.6rem 0.9rem; font-size: 0.78rem; }
}
@media (max-width: 420px) {
  .brand > span { display: none; }
  .brand img { height: 34px; width: 34px; }
}
@media (max-width: 360px) {
  .header-cta .btn-sm { padding: 0.55rem 0.7rem; font-size: 0.72rem; }
}
@media (min-width: 981px) {
  .header-phone { display: flex; align-items: center; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--charcoal-900);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 6.5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .mobile-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.mobile-close {
  position: absolute;
  top: 1.6rem; right: var(--gutter);
  background: none; border: none; color: var(--white);
  width: 40px; height: 40px; font-size: 1.6rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-top: 6rem;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(8,9,11,0.94) 8%, rgba(10,12,15,0.82) 42%, rgba(10,12,15,0.55) 75%);
}
.hero-content { position: relative; z-index: 2; padding-block: 3rem; }
.hero .eyebrow { color: var(--red-400); }
.hero h1 { color: var(--white); margin-top: 1rem; max-width: 820px; }
.hero .lede { color: var(--steel-100); margin-top: 1.4rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: clamp(3rem, 8vw, 5.5rem);
  padding-top: 2rem;
}
.hero-stats .stat { padding-right: 1.5rem; }
.hero-stats .stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--white);
}
.hero-stats .stat span {
  font-size: 0.82rem;
  color: var(--steel-300);
  letter-spacing: 0.03em;
}
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; }
  .hero { min-height: unset; padding-bottom: 3rem; }
}

/* Page (non-home) hero — shorter */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.page-hero .hero-media img { width:100%;height:100%;object-fit:cover;position:absolute;inset:0; }
.page-hero .hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,10,12,0.55) 0%, rgba(9,10,12,0.92) 100%);
}
.page-hero .breadcrumb {
  position: relative; z-index: 2;
  font-size: 0.82rem; color: var(--steel-300);
  margin-bottom: 0.9rem;
}
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 { position: relative; z-index: 2; color: var(--white); font-size: clamp(2.1rem, 4vw, 3.2rem); }
.page-hero p.lede { position: relative; z-index: 2; color: var(--steel-100); margin-top: 0.9rem; }

/* ==========================================================================
   SECTIONS / LAYOUT UTILITIES
   ========================================================================== */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--charcoal-900); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark .section-head p { color: var(--white); }
.section-dark p { color: var(--steel-300); }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--charcoal-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-top: 0.4rem; }
.service-card ul { margin-top: 0.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card ul li {
  font-size: 0.9rem; color: var(--muted);
  padding-left: 1.3rem; position: relative;
}
.service-card ul li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 7px; height: 7px;
  background: var(--red-500);
  border-radius: 1px;
  transform: rotate(45deg);
}
.service-card .card-link {
  margin-top: auto;
  font-weight: 600; font-size: 0.88rem;
  color: var(--charcoal-900);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.service-card .card-link .btn-arrow { transition: transform .25s var(--ease); }
.service-card:hover .card-link .btn-arrow { transform: translateX(3px); }

.media-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.media-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.media-card:hover img { transform: scale(1.06); }
.media-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,13,0) 40%, rgba(10,11,13,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; color: var(--white);
}
.media-card .overlay .tag {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red-400); font-weight: 700; margin-bottom: 0.4rem;
}
.media-card .overlay h3 { color: var(--white); font-size: 1.05rem; }

.industry-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  color: var(--white);
}
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.industry-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,13,0.15) 0%, rgba(10,11,13,0.9) 100%);
}
.industry-card span {
  position: absolute; left: 1.1rem; bottom: 1rem; right: 1rem; z-index: 2;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
}
.industry-card:hover img { transform: scale(1.08); }

/* ---- Stat block ---- */
.stat-block { text-align: center; }
.stat-block b {
  display: block; font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--charcoal-900);
}
.stat-block span { color: var(--muted); font-size: 0.9rem; }

/* ---- Feature row (icon + text) ---- */
.feature-row { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature-row .icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(211,31,47,0.09); color: var(--red-500);
  display: flex; align-items: center; justify-content: center;
}
.feature-row .icon svg { width: 22px; height: 22px; }
.feature-row h4 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.feature-row p { font-size: 0.92rem; }

/* ---- Split section ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split-media { position: relative; }
.split-media .badge-float {
  position: absolute; bottom: -1.2rem; left: -1.2rem;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.split-media .badge-float b { font-family: var(--font-head); font-size: 1.4rem; color: var(--charcoal-900); display:block; }
.split-media .badge-float span { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
}

/* ---- Logos / trust strip ---- */
.trust-strip { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; justify-content: space-between; }
.trust-strip .item { display: flex; align-items: center; gap: 0.7rem; color: var(--steel-500); font-weight: 600; font-size: 0.88rem; }
.trust-strip .item svg { color: var(--red-500); width: 20px; height: 20px; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  height: 100%;
}
.testimonial-card .stars { color: var(--red-500); display: flex; gap: 3px; }
.testimonial-card p.quote { color: var(--ink); font-size: 1.02rem; line-height: 1.6; flex: 1; }
.testimonial-card .who { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-card .who .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal-900); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.testimonial-card .who b { display: block; font-size: 0.92rem; color: var(--ink); }
.testimonial-card .who span { font-size: 0.8rem; color: var(--muted); }

/* ---- Map / coverage ---- */
.coverage-panel {
  background: var(--charcoal-900); color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 860px) { .coverage-panel { grid-template-columns: 1fr; } }
.coverage-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.coverage-list .row { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
.coverage-list .row b { font-family: var(--font-head); }
.coverage-list .row span { color: var(--steel-300); font-size: 0.88rem; }
.map-graphic { position: relative; }
.map-graphic svg { width: 100%; height: auto; }
.map-graphic .pin { fill: var(--red-500); }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(120deg, var(--charcoal-900), var(--black));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -40%; right: -10%;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(211,31,47,0.35), transparent 70%);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 520px; position: relative; z-index: 1;}
.cta-band .actions { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- Timeline (About) ---- */
.value-card { padding: 2rem; border-radius: var(--radius-md); background: var(--off-white); height: 100%; }
.value-card .icon { width: 46px; height: 46px; border-radius: 50%; background: var(--charcoal-900); color: var(--white); display:flex; align-items:center; justify-content:center; margin-bottom: 1rem; }
.value-card .icon svg { width: 22px; height: 22px; }

/* ---- Process steps ---- */
.step-list { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 70px 1fr; gap: 1.5rem;
  padding-block: 1.8rem; border-top: 1px solid var(--steel-100);
}
.step:first-child { border-top: none; }
.step .num { font-family: var(--font-head); font-size: 1.6rem; color: var(--steel-200); }
.step h4 { margin-bottom: 0.4rem; }

/* ---- Forms ---- */
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal-900); }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.85rem 1rem; border: 1.5px solid var(--steel-100); border-radius: var(--radius-sm);
  font-size: 0.95rem; background: var(--white); transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--charcoal-900); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.contact-panel {
  background: var(--charcoal-900); color: var(--white);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-panel h3 { color: var(--white); }
.office-card { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.4rem; }
.office-card:first-of-type { border-top: none; }
.office-card b { display: block; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 0.3rem; }
.office-card p { color: var(--steel-300); font-size: 0.88rem; margin: 0; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; background: var(--steel-100); position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--black); color: var(--steel-300); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 980px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer-col h5 { color: var(--white); font-family: var(--font-head); font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.social-row { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s;
}
.social-row a:hover { background: var(--red-500); border-color: var(--red-500); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.6rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ---- Emergency bar ---- */
.emergency-bar {
  background: var(--red-500); color: var(--white);
  font-size: 0.82rem; font-weight: 600;
  text-align: center; padding: 0.55rem var(--gutter);
  position: relative; z-index: 250;
}
.emergency-bar a { text-decoration: underline; }

/* ---- Misc utilities ---- */
.mt-0{margin-top:0} .text-center{text-align:center} .relative{position:relative}
.tag-pill {
  display: inline-flex; align-items: center; padding: 0.4rem 0.9rem;
  border-radius: 999px; background: var(--off-white); font-size: 0.8rem;
  font-weight: 600; color: var(--charcoal-900); border: 1px solid var(--steel-100);
}
