:root {
  --ink: #07111d;
  --ink-2: #0b1928;
  --ink-3: #102338;
  --paper: #f1f4f6;
  --paper-2: #e4eaf0;
  --white: #ffffff;
  --muted: #9cadbd;
  --muted-dark: #526577;
  --blue: #5fb5f0;
  --blue-deep: #126eb4;
  --blue-bright: #8ed1ff;
  --line: rgba(255,255,255,.15);
  --line-dark: rgba(7,17,29,.16);
  --police: #316cff;
  --ambulance: #2f8d62;
  --fire: #d33232;
  --radius: 18px;
  --shell: min(1280px, calc(100vw - 48px));
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--blue); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: clamp(96px, 11vw, 170px) 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, padding .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(5,13,23,.88);
  border-color: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; gap: 4px; }
.brand-copy strong { font-family: var(--display); font-size: 19px; letter-spacing: .05em; text-transform: uppercase; }
.brand-copy small { color: #afbdc9; font-size: 9px; letter-spacing: .19em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.desktop-nav a {
  position: relative;
  padding: 10px 14px;
  color: #c6d1da;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }
.desktop-nav a.active { color: var(--white); }
.nav-cta { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #3289ca;
  border-radius: 8px;
  background: linear-gradient(135deg, #187bbf, #0c5f9e);
  box-shadow: 0 12px 36px rgba(0,85,150,.22), inset 0 1px rgba(255,255,255,.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(0,112,194,.32), inset 0 1px rgba(255,255,255,.2); }
.button:focus-visible, .text-link:focus-visible, .desktop-nav a:focus-visible, .brand:focus-visible, summary:focus-visible, .gallery-item:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 4px;
}
.button-small { min-height: 43px; padding-inline: 17px; font-size: 11px; }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); box-shadow: none; }
.button-light:hover { box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.38); box-shadow: none; }
.button-ghost:hover { border-color: var(--white); box-shadow: none; }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(7,17,29,.45);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  width: var(--shell);
  margin: 10px auto 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(7,17,29,.97);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.mobile-menu a:not(.button) { display: block; padding: 13px 8px; border-bottom: 1px solid rgba(255,255,255,.08); text-decoration: none; font-weight: 700; }
.mobile-menu .button { margin-top: 16px; width: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #050d17;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-media.is-active { opacity: 1; }
.hero-media img { object-fit: cover; object-position: 53% center; filter: saturate(.87) contrast(1.04); transform: scale(1.015); }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,9,16,.97) 0%, rgba(4,12,22,.88) 31%, rgba(4,12,22,.34) 60%, rgba(3,9,16,.36) 100%),
    linear-gradient(0deg, rgba(3,10,18,.96) 0%, transparent 38%, rgba(3,9,16,.25) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 116px;
  padding-bottom: 130px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  color: #bbd5e8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.eyebrow span { width: 28px; height: 2px; background: var(--blue); box-shadow: 0 0 14px var(--blue); }
.eyebrow.dark { color: #32495d; }
.hero h1, .section-heading h2, .join h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.035em;
}
.hero h1 { max-width: 820px; font-size: clamp(58px, 7.2vw, 118px); text-shadow: 0 10px 30px rgba(0,0,0,.28); }
.hero h1 em, .section-heading h2 em, .join h2 em { color: var(--blue-bright); font-style: italic; font-weight: 800; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: #c8d3dc; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #dce6ed; font-size: 13px; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.text-link span { color: var(--blue); transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.hero-brief {
  align-self: end;
  margin-bottom: 44px;
  padding: 22px;
  border-left: 2px solid var(--blue);
  background: linear-gradient(90deg, rgba(8,23,37,.82), rgba(8,23,37,.25));
  backdrop-filter: blur(8px);
}
.brief-label { color: var(--blue-bright); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .2em; }
.hero-brief p { margin: 12px 0 18px; color: #d1dae1; font-size: 13px; line-height: 1.6; }
.brief-status { display: flex; align-items: center; gap: 8px; color: #adbbc6; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.brief-status i { width: 7px; height: 7px; border-radius: 50%; background: #6ee7a8; box-shadow: 0 0 12px #6ee7a8; }
.hero-facts {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(3,10,17,.72);
  backdrop-filter: blur(10px);
}
.hero-facts > div { position: relative; display: grid; grid-template-columns: 32px 1fr; grid-template-rows: auto auto; column-gap: 12px; padding: 18px clamp(18px, 3vw, 48px); border-right: 1px solid rgba(255,255,255,.1); }
.hero-facts > div:last-child { border-right: 0; }
.hero-facts span { grid-row: 1 / 3; align-self: center; color: var(--blue); font-family: var(--display); font-size: 12px; font-weight: 900; }
.hero-facts strong { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.hero-facts small { color: #a8b6c2; font-size: 12px; }

.signal-strip { overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); background: #0d2235; }
.signal-track { width: max-content; display: flex; align-items: center; gap: 26px; padding: 14px 0; animation: ticker 35s linear infinite; }
.signal-track span { color: #c5d5e2; font-family: var(--display); font-size: 14px; font-style: italic; font-weight: 800; letter-spacing: .12em; }
.signal-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
@keyframes ticker { to { transform: translateX(-50%); } }

.origin { background: var(--paper); color: var(--ink); }
.origin::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(7,17,29,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(7,17,29,.05) 1px, transparent 1px); background-size: 48px 48px; }
.origin .page-shell { position: relative; }
.section-heading { max-width: 850px; }
.section-heading h2 { font-size: clamp(54px, 7vw, 104px); }
.origin .section-heading h2 em, .experience .section-heading h2 em, .faq .section-heading h2 em { color: var(--blue-deep); }
.section-heading > p:last-child { max-width: 640px; margin: 28px 0 0; color: var(--muted); font-size: 18px; }
.section-heading-light { color: var(--white); }
.origin-layout { display: grid; grid-template-columns: .72fr 1.45fr; gap: clamp(50px, 8vw, 130px); align-items: start; margin-top: 85px; }
.origin-year { display: grid; grid-template-columns: auto 1fr; align-items: start; border-top: 2px solid var(--ink); padding-top: 18px; }
.origin-year small { padding-top: 12px; color: var(--muted-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; writing-mode: vertical-rl; transform: rotate(180deg); }
.origin-year strong { font-family: var(--display); font-size: clamp(110px, 15vw, 220px); font-weight: 900; line-height: .68; letter-spacing: -.08em; }
.origin-story { max-width: 740px; }
.origin-story p { color: #3a4a57; font-size: 18px; }
.origin-story .intro-copy { margin-top: 0; color: var(--ink); font-family: var(--display); font-size: clamp(30px, 3.4vw, 48px); font-weight: 700; line-height: 1.08; text-transform: uppercase; }
.origin-story blockquote { margin: 50px 0 0; padding: 24px 0 24px 28px; border-left: 3px solid var(--blue-deep); color: #18334b; font-size: 19px; font-weight: 700; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 100px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.value { padding: 34px 28px 38px 0; border-right: 1px solid var(--line-dark); }
.value + .value { padding-left: 28px; }
.value:last-child { border-right: 0; }
.value span { color: var(--blue-deep); font-size: 10px; font-weight: 900; }
.value h3 { margin: 32px 0 12px; font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.value p { margin: 0; color: #566877; font-size: 14px; }

.departments { overflow: hidden; background: #07111d; }
.departments::before { content: ""; position: absolute; inset: -20%; background: radial-gradient(circle at 15% 20%, rgba(48,128,189,.18), transparent 28%), radial-gradient(circle at 85% 65%, rgba(53,91,130,.15), transparent 31%); }
.departments .page-shell { position: relative; }
.department-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 76px; }
.department-card {
  --accent: var(--blue);
  position: relative;
  min-height: 560px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(145deg, #102236, #091521 70%);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.department-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 75% 27%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 35%); opacity: .85; }
.department-card::after { content: ""; position: absolute; z-index: -1; inset: auto -15% -45% 30%; height: 70%; border-radius: 50%; background: var(--accent); filter: blur(110px); opacity: .12; }
.department-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 55%, white 10%); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.department-card.civilian { --accent: #83cfff; }
.department-card.police { --accent: #3f73ff; }
.department-card.ambulance { --accent: #42b87b; }
.department-card.fire { --accent: #ec4242; }
.department-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.department-topline span { color: var(--accent); font-family: var(--display); font-size: 15px; font-weight: 900; }
.department-topline small { color: #9cadbc; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.department-visual { position: absolute; top: 65px; right: 8px; width: 55%; height: 58%; display: grid; place-items: center; opacity: .75; transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease; }
.department-card:hover .department-visual { transform: scale(1.045) rotate(-1deg); opacity: .95; }
.department-visual img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 20px 35px rgba(0,0,0,.35)); }
.department-visual.crest { width: 47%; right: 25px; }
.department-visual.fire-mark { width: 63%; right: 10px; top: 95px; align-items: start; }
.department-copy { position: absolute; inset: auto 28px 30px; max-width: 75%; }
.department-index { margin: 0 0 10px; color: var(--accent); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.department-copy h3 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(36px, 4vw, 58px); line-height: .95; text-transform: uppercase; }
.department-copy > p:last-child { margin: 0; color: #aebbc6; font-size: 14px; }
.multiagency-note { max-width: 900px; margin: 56px 0 0 auto; padding: 28px 0 0 140px; border-top: 1px solid rgba(255,255,255,.12); color: #9fb0bd; font-size: 17px; }
.multiagency-note span { color: var(--white); font-weight: 800; }

.experience { background: var(--paper); color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: 1.5fr .8fr; grid-template-rows: 370px 330px; gap: 18px; margin-top: 76px; }
.gallery-item { position: relative; min-width: 0; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: #0c1722; cursor: zoom-in; text-align: left; }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,10,17,.83), transparent 50%); }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1.1); }
.gallery-main { grid-row: 1 / 3; }
.gallery-main img { object-position: center; }
.gallery-recruit img { object-position: center; }
.gallery-action { grid-column: 2; }
.gallery-caption { position: absolute; z-index: 2; left: 24px; bottom: 22px; display: flex; align-items: center; gap: 13px; color: var(--white); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.gallery-caption small { color: var(--blue-bright); }
.gallery-quote { grid-column: 1 / 3; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 28px 38px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: #e6ebef; }
.gallery-quote > span { color: var(--blue-deep); font-family: Georgia, serif; font-size: 60px; line-height: 1; }
.gallery-quote p { margin: 0; color: #203443; font-family: var(--display); font-size: clamp(22px, 2.5vw, 34px); font-style: italic; font-weight: 700; line-height: 1.08; text-transform: uppercase; }
.gallery-quote small { color: #5b6d7a; font-size: 9px; font-weight: 900; letter-spacing: .16em; }

.patrols { overflow: hidden; background: #07111d; }
.patrol-backdrop { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, transparent, black 25%, black 75%, transparent); }
.patrols::after { content: ""; position: absolute; width: 700px; height: 700px; right: -220px; top: -260px; border-radius: 50%; background: #0d7ec5; filter: blur(180px); opacity: .13; }
.patrol-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 90px 100px; }
.schedule-card { align-self: end; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: linear-gradient(145deg, rgba(19,49,73,.95), rgba(9,24,38,.95)); box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.schedule-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 20px; padding: 32px; }
.schedule-top > div:last-child { text-align: right; }
.schedule-top small { display: block; margin-bottom: 8px; color: #8fa8ba; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.schedule-top strong { font-family: var(--display); font-size: clamp(50px, 5vw, 78px); line-height: .9; }
.schedule-top > span { padding-bottom: 10px; color: var(--blue); font-size: 26px; }
.schedule-meta { display: flex; justify-content: space-between; gap: 20px; padding: 18px 32px; border-top: 1px solid rgba(255,255,255,.11); color: #9dafbd; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.schedule-meta span:first-child { display: flex; align-items: center; gap: 8px; color: #c7d5de; }
.schedule-meta i { width: 7px; height: 7px; border-radius: 50%; background: #6ee7a8; box-shadow: 0 0 10px #6ee7a8; }
.patrol-steps { grid-column: 1 / 3; margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.13); }
.patrol-steps li { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 30px 28px 0 0; border-right: 1px solid rgba(255,255,255,.1); }
.patrol-steps li + li { padding-left: 28px; }
.patrol-steps li:last-child { border-right: 0; }
.patrol-steps > li > span { color: var(--blue); font-family: var(--display); font-size: 12px; font-weight: 900; }
.patrol-steps h3 { margin: 0 0 10px; font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.patrol-steps p { margin: 0; color: #9cadbb; font-size: 13px; }

.join { padding-top: 100px; padding-bottom: 100px; background: #07111d; }
.join-panel { position: relative; min-height: 610px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 90px; padding: clamp(48px, 6vw, 82px); border: 1px solid rgba(255,255,255,.17); border-radius: 26px; overflow: hidden; background: linear-gradient(125deg, #123d5f 0%, #0b263e 42%, #07121f 100%); box-shadow: 0 45px 120px rgba(0,0,0,.28); }
.join-panel::before { content: ""; position: absolute; inset: 0; opacity: .35; background: repeating-linear-gradient(120deg, transparent 0 48px, rgba(255,255,255,.035) 49px 50px); }
.join-copy, .application-route { position: relative; z-index: 2; }
.join h2 { font-size: clamp(56px, 7vw, 104px); }
.join-copy > p:not(.eyebrow) { max-width: 620px; color: #b7c6d2; font-size: 18px; }
.join-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.application-route { display: grid; gap: 4px; }
.application-route > div { display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: center; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.application-route > div:last-child { border-bottom: 0; }
.application-route > div > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--blue-bright); font-family: var(--display); font-size: 11px; font-weight: 900; }
.application-route p { display: grid; margin: 0; }
.application-route strong { font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.application-route small { color: #9fb0bd; }
.join-logo { position: absolute; z-index: 0; width: 430px; right: -110px; bottom: -145px; opacity: .12; transform: rotate(8deg); }

.faq { background: var(--paper); color: var(--ink); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq .section-heading h2 { font-size: clamp(48px, 5.6vw, 82px); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 2px; cursor: pointer; list-style: none; font-family: var(--display); font-size: 22px; font-weight: 800; text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--line-dark); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: var(--ink); transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%) rotate(0deg); }
.faq-list details p { max-width: 680px; margin: -5px 0 28px; padding-right: 50px; color: #536675; }

.site-footer { padding: 70px 0 28px; border-top: 1px solid rgba(255,255,255,.1); background: #040b12; }
.footer-grid { display: grid; grid-template-columns: 180px 1fr auto; gap: 70px; align-items: center; }
.footer-brand img { width: 130px; height: auto; }
.footer-copy strong { display: block; font-family: var(--display); font-size: 25px; text-transform: uppercase; }
.footer-copy p { margin: 8px 0 0; color: #8193a1; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.footer-links a { color: #b8c5ce; font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a:hover { color: var(--blue-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #677886; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }

.lightbox { width: min(1200px, calc(100vw - 32px)); max-width: none; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; overflow: hidden; background: #050c13; box-shadow: 0 40px 140px rgba(0,0,0,.7); }
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(5,12,19,.72); color: var(--white); font-size: 28px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.values .reveal:nth-child(2), .patrol-steps .reveal:nth-child(2) { transition-delay: .08s; }
.values .reveal:nth-child(3), .patrol-steps .reveal:nth-child(3) { transition-delay: .16s; }
.values .reveal:nth-child(4), .patrol-steps .reveal:nth-child(4) { transition-delay: .24s; }
.department-grid .reveal:nth-child(2), .department-grid .reveal:nth-child(4) { transition-delay: .1s; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 36px, 980px); }
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-brief { display: none; }
  .hero-media img { object-position: 62% center; }
  .hero-facts > div { padding-inline: 22px; }
  .values { grid-template-columns: 1fr 1fr; }
  .value:nth-child(2) { border-right: 0; }
  .value:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .department-card { min-height: 500px; }
  .department-copy { max-width: 90%; }
  .patrol-layout { gap: 70px 50px; }
  .patrol-steps { grid-template-columns: 1fr 1fr; }
  .patrol-steps li:nth-child(2) { border-right: 0; }
  .patrol-steps li:nth-child(-n+2) { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .patrol-steps li:nth-child(3) { padding-left: 0; padding-top: 28px; }
  .patrol-steps li:nth-child(4) { padding-top: 28px; }
  .join-panel { grid-template-columns: 1fr; gap: 50px; }
  .application-route { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .application-route > div { grid-template-columns: 1fr; align-items: start; }
  .faq-layout { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 28px); }
  .section { padding: 86px 0; }
  .site-header { padding: 11px 0; }
  .brand-copy { display: none; }
  .brand img { width: 43px; height: 43px; }
  .hero { min-height: 800px; }
  .hero-media img { object-position: 61% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,9,16,.98) 0%, rgba(3,9,16,.72) 58%, rgba(3,9,16,.4) 100%); }
  .hero-content { align-items: end; padding-top: 125px; padding-bottom: 210px; }
  .hero h1 { font-size: clamp(54px, 17vw, 78px); }
  .hero-lead { margin-top: 24px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: center; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts > div { padding: 13px 14px; }
  .hero-facts > div:nth-child(2) { border-right: 0; }
  .hero-facts > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-grid { display: none; }
  .section-heading h2 { font-size: clamp(48px, 15vw, 70px); }
  .origin-layout { grid-template-columns: 1fr; margin-top: 55px; gap: 55px; }
  .origin-year { max-width: 330px; }
  .origin-year strong { font-size: 145px; }
  .origin-story .intro-copy { font-size: 33px; }
  .origin-story p { font-size: 16px; }
  .values { grid-template-columns: 1fr; margin-top: 70px; }
  .value, .value + .value { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .value:last-child { border-bottom: 0; }
  .value h3 { margin-top: 14px; }
  .department-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .department-card { min-height: 490px; padding: 22px; }
  .department-visual { width: 62%; top: 70px; }
  .department-visual.crest { width: 50%; }
  .department-copy { left: 22px; right: 22px; bottom: 25px; }
  .department-copy h3 { font-size: 43px; }
  .multiagency-note { margin-top: 40px; padding-left: 0; }
  .gallery-grid { display: flex; flex-direction: column; margin-top: 50px; }
  .gallery-item { height: 290px; }
  .gallery-main { height: 420px; }
  .gallery-quote { grid-template-columns: auto 1fr; padding: 25px; }
  .gallery-quote small { display: none; }
  .patrol-layout { grid-template-columns: 1fr; gap: 50px; }
  .schedule-card { grid-column: 1; }
  .schedule-top { padding: 24px 18px; gap: 12px; }
  .schedule-top strong { font-size: 50px; }
  .schedule-meta { flex-direction: column; padding: 15px 18px; gap: 6px; }
  .patrol-steps { grid-column: 1; grid-template-columns: 1fr; }
  .patrol-steps li, .patrol-steps li + li, .patrol-steps li:nth-child(3), .patrol-steps li:nth-child(4) { padding: 24px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .patrol-steps li:last-child { border-bottom: 0; }
  .join { padding: 60px 0; }
  .join-panel { min-height: 0; padding: 34px 24px; border-radius: 18px; }
  .join h2 { font-size: clamp(50px, 15vw, 72px); }
  .join-copy > p:not(.eyebrow) { font-size: 16px; }
  .join-actions { flex-direction: column; }
  .application-route { grid-template-columns: 1fr; gap: 0; }
  .application-route > div { grid-template-columns: 42px 1fr; }
  .join-logo { width: 300px; right: -100px; bottom: -100px; }
  .faq-layout { gap: 45px; }
  .faq-list summary { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand img { width: 100px; }
  .footer-links { grid-template-columns: repeat(4, auto); justify-content: start; gap: 12px 22px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
