/* =====================================================================
   Prime Time Security Ltd — Design System
   Concept: "On Cue." A broadcast/stage-tally motif (the red lamp that
   means "live") fused with a night-security spotlight aesthetic.
   Dark ink + charcoal ground, cinematic gold accent, signal-red tally.
   ===================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0a0c10;
  --ink-2: #0d1017;
  --charcoal: #14171f;
  --charcoal-2: #1b1f29;
  --charcoal-3: #232836;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --paper: #f7f4ec;
  --paper-dim: #e8e3d6;
  --ash: #a7adba;
  --ash-dim: #6f7583;
  --gold: #f2b705;
  --gold-soft: #ffd75e;
  --gold-deep: #b3860a;
  --red: #e63946;
  --red-glow: rgba(230, 57, 70, 0.55);
  --green: #3fae63;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1220px;
  --radius: 4px;
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 14px 30px -12px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------- reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.navLock { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
  font-weight: 600;
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

.visuallyHidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------------------------------------------------------- eyebrow tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ------------------------------------------------------- tally / on-air */
.tally {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--ash);
  padding: 5px 10px 5px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.tally .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 var(--red-glow); }
  70% { box-shadow: 0 0 0 7px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}
.tally strong { color: var(--paper); font-weight: 600; }
.tally .clockVal { color: var(--gold-soft); font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--paper);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-block { width: 100%; justify-content: center; }
.btnRow { display: flex; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------------------------------- header */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.siteHeader::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  transition: background 0.3s var(--ease);
}
.siteHeader.isScrolled {
  border-color: var(--line);
}
.siteHeader.isScrolled::before {
  background: rgba(10, 12, 16, 0.92);
}
.headerBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--paper);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ash-dim);
  font-weight: 600;
  margin-top: 2px;
}
.brandMark {
  width: 40px;
  height: 40px;
  flex: none;
}
.siteNav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.siteNav ul { display: flex; gap: 28px; }
.headerCtaMobile { display: none; }
.siteNav a {
  font-family: var(--font-display);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.siteNav a:hover, .siteNav a.isActive { color: var(--paper); }
.siteNav a.isActive::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}
.headerCta { display: flex; align-items: center; gap: 18px; }
.headerPhone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.headerPhone span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ash-dim);
  font-weight: 700;
}
.navToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}
.navToggle span {
  height: 2px;
  background: var(--paper);
  margin: 0 8px;
  transition: transform 0.25s, opacity 0.25s;
}
.navToggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navToggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navToggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .siteNav {
    position: fixed;
    inset: 0;
    top: 73px;
    background: var(--ink-2);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 30px 24px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
  }
  .siteNav.isOpen { transform: translateX(0); }
  .siteNav ul { flex-direction: column; gap: 4px; }
  .siteNav ul li a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .siteNav .headerCtaMobile { display: block; margin-top: 20px; }
  .navToggle { display: flex; }
  .headerPhone { display: none; }
}

/* --------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background:
    radial-gradient(1100px 620px at 82% -10%, rgba(242, 183, 5, 0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(230, 57, 70, 0.10), transparent 60%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(700px 460px at 78% 20%, black, transparent 72%);
  pointer-events: none;
}
.heroBeam {
  position: absolute;
  top: -260px;
  right: -120px;
  width: 900px;
  height: 900px;
  background: conic-gradient(from 200deg at 50% 50%, rgba(242,183,5,0.22), transparent 26%);
  filter: blur(6px);
  pointer-events: none;
}
.heroGrid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.heroKicker { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--paper);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.heroLede {
  margin-top: 22px;
  max-width: 540px;
  font-size: 17.5px;
  color: var(--ash);
}
.heroActions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.heroStats {
  margin-top: 52px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.heroStat {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.heroStat .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--paper);
}
.heroStat .lbl {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash-dim);
  margin-top: 4px;
}

.heroCard {
  position: relative;
  background: linear-gradient(155deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
}
.heroCard .cardTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.heroCard h3 {
  font-size: 19px;
  color: var(--paper);
  margin-bottom: 4px;
}
.heroCard p.sub {
  color: var(--ash-dim);
  font-size: 13px;
}
.cueList { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.cueItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ash);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cueItem:last-child { border-bottom: none; padding-bottom: 0; }
.cueItem .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 13px;
  border: 1px solid var(--line-strong);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.cueItem strong { color: var(--paper); display: block; margin-bottom: 2px; }

@media (max-width: 940px) {
  .heroGrid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 80px; text-align: left; }
}

/* --------------------------------------------------------- section base */
section { position: relative; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: var(--ink); }
.section-charcoal { background: var(--charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-paper { background: var(--paper); color: var(--ink); }
.section-paper h1, .section-paper h2, .section-paper h3 { color: var(--ink); }
.section-paper .ash { color: #5b5f68; }

.sectionHead {
  max-width: 720px;
  margin-bottom: 52px;
}
.sectionHead h2 {
  margin-top: 16px;
  font-size: clamp(28px, 3.4vw, 42px);
}
.sectionHead p {
  margin-top: 18px;
  color: var(--ash);
  font-size: 16.5px;
}
.section-paper .sectionHead p { color: #5b5f68; }
.sectionHead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ------------------------------------------------------------ reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].isRevealed { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal="stagger"].isRevealed > * { opacity: 1; transform: translateY(0); }
[data-reveal="stagger"].isRevealed > *:nth-child(1) { transition-delay: 0.02s; }
[data-reveal="stagger"].isRevealed > *:nth-child(2) { transition-delay: 0.10s; }
[data-reveal="stagger"].isRevealed > *:nth-child(3) { transition-delay: 0.18s; }
[data-reveal="stagger"].isRevealed > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal="stagger"].isRevealed > *:nth-child(5) { transition-delay: 0.34s; }
[data-reveal="stagger"].isRevealed > *:nth-child(6) { transition-delay: 0.42s; }
[data-reveal="stagger"].isRevealed > *:nth-child(7) { transition-delay: 0.50s; }
[data-reveal="stagger"].isRevealed > *:nth-child(8) { transition-delay: 0.58s; }

/* ------------------------------------------------------------- grids */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1100px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 940px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------- service cards */
.serviceCard {
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.serviceCard:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
  box-shadow: var(--shadow-md);
}
.serviceCard .icon {
  width: 52px; height: 52px;
  color: var(--gold);
}
.serviceCard h3 { font-size: 19px; color: var(--paper); }
.serviceCard p { color: var(--ash); font-size: 14.5px; flex: 1; }
.serviceCard .tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-family: var(--font-display);
}
.serviceCard .more {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex; align-items: center; gap: 8px;
}
.serviceCard .more svg { width: 14px; height: 14px; transition: transform 0.25s; }
.serviceCard:hover .more svg { transform: translateX(4px); }

/* ------------------------------------------------------------ pillars */
.pillar { display: flex; gap: 18px; align-items: flex-start; }
.pillar .num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  background: var(--gold);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.pillar h4 { font-size: 16.5px; color: var(--paper); margin-bottom: 8px; }
.pillar p { color: var(--ash); font-size: 14.5px; }
.section-paper .pillar h4 { color: var(--ink); }
.section-paper .pillar p { color: #5b5f68; }

/* --------------------------------------------------------------- stats */
.statBand {
  background: linear-gradient(120deg, var(--charcoal-3), var(--charcoal-2));
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 44px 10px;
}
.statGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.statGrid .stat { border-right: 1px solid var(--line); padding: 0 10px; }
.statGrid .stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--gold);
}
.stat .lbl {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
}
@media (max-width: 780px) {
  .statGrid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .statGrid .stat { border-right: none; }
}

/* -------------------------------------------------------------- process */
.processRow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.processRow::before {
  content: "";
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 1px;
  background: var(--line-strong);
  z-index: 0;
}
.processStep { position: relative; z-index: 1; }
.processStep .stepNum {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.processStep h4 { color: var(--paper); font-size: 16px; margin-bottom: 8px; }
.processStep p { color: var(--ash); font-size: 14px; }
@media (max-width: 780px) {
  .processRow { grid-template-columns: 1fr; }
  .processRow::before { display: none; }
}

/* ------------------------------------------------------------- quote/cta */
.ctaBand {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: linear-gradient(120deg, #171a22, #0d0f14 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ctaBand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(242,183,5,0.05) 0 14px,
    transparent 14px 28px
  );
}
.ctaInner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.ctaInner h2 { font-size: clamp(24px, 3vw, 34px); color: var(--paper); max-width: 560px; }
.ctaInner p { margin-top: 10px; color: var(--ash); max-width: 520px; }

/* ------------------------------------------------------------ testimony-free trust */
.trustBar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.trustChip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ash);
  background: rgba(255,255,255,0.02);
}
.trustChip svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* -------------------------------------------------------------- footer */
.siteFooter {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 70px 0 26px;
}
.footGrid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}
.footBrand .brand { margin-bottom: 16px; }
.footBrand p { color: var(--ash-dim); font-size: 14px; max-width: 300px; }
.footCol h5 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.footCol ul { display: flex; flex-direction: column; gap: 11px; }
.footCol a, .footCol span { color: var(--ash); font-size: 14px; }
.footCol a:hover { color: var(--gold-soft); }
.footBottom {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ash-dim);
}
.footSocial { display: flex; gap: 14px; }
.footSocial a {
  width: 34px; height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footSocial svg { width: 15px; height: 15px; color: var(--ash); }
.footSocial a:hover svg { color: var(--gold); }
@media (max-width: 940px) {
  .footGrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footGrid { grid-template-columns: 1fr; gap: 30px; }
}

/* -------------------------------------------------------- page header (non-home) */
.pageHero {
  padding: 74px 0 60px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.pageHero::after {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(242,183,5,0.16), transparent 70%);
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12.5px;
  color: var(--ash-dim);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--gold-soft); }
.pageHero h1 { font-size: clamp(32px, 4.4vw, 50px); color: var(--paper); position: relative; }
.pageHero .lede { margin-top: 16px; max-width: 620px; color: var(--ash); font-size: 16.5px; position: relative; }

/* --------------------------------------------------------- service detail */
.detailLayout {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 60px;
}
@media (max-width: 940px) {
  .detailLayout { grid-template-columns: 1fr; }
}
.detailBody h2 {
  font-size: 25px;
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--paper);
}
.detailBody h2:first-child { margin-top: 0; }
.detailBody p { color: var(--ash); font-size: 16px; margin-bottom: 4px; }
.checkList { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.checkList li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--ash); font-size: 15px;
}
.checkList svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.checkList strong { color: var(--paper); }

.sideCard {
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 30px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.sideCard h3 { color: var(--paper); font-size: 18px; margin-bottom: 8px; }
.sideCard p { color: var(--ash-dim); font-size: 13.5px; margin-bottom: 20px; }
.sideCard .sideList { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.sideCard .sideList a {
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ash);
  display: flex;
  justify-content: space-between;
}
.sideCard .sideList a:hover { border-color: var(--gold-deep); color: var(--paper); }
.sideCard .sideList a.isActive { border-color: var(--gold); color: var(--gold-soft); background: rgba(242,183,5,0.06); }

/* ------------------------------------------------------------------ FAQ */
.accordion { border-top: 1px solid var(--line); }
.accItem { border-bottom: 1px solid var(--line); }
.accTrigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: var(--paper);
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.01em;
  text-align: left;
}
.accTrigger .plus {
  flex: none;
  width: 24px; height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
}
.accTrigger .plus::before, .accTrigger .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease);
}
.accTrigger .plus::before { top: 50%; left: 5px; right: 5px; height: 1.5px; transform: translateY(-50%); }
.accTrigger .plus::after { left: 50%; top: 5px; bottom: 5px; width: 1.5px; transform: translateX(-50%); }
.accItem.isOpen .accTrigger .plus::after { transform: translateX(-50%) scaleY(0); }
.accPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.accItem.isOpen .accPanel { max-height: 400px; }
.accPanelInner { padding: 0 4px 24px; color: var(--ash); font-size: 15px; max-width: 700px; }

/* -------------------------------------------------------------- forms */
.formCard {
  background: linear-gradient(160deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 40px;
}
.formRow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 640px) { .formRow { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash-dim);
  font-family: var(--font-display);
}
.field input, .field select, .field textarea {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14.5px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 110px; }
.formStatus {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--gold-deep);
  border-radius: 4px;
  color: var(--gold-soft);
  font-size: 14px;
  background: rgba(242,183,5,0.06);
}

.contactInfoCard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contactInfoCard:last-child { border-bottom: none; }
.contactInfoCard svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.contactInfoCard h4 { color: var(--paper); font-size: 14.5px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; font-family: var(--font-display); }
.contactInfoCard p, .contactInfoCard a { color: var(--ash); font-size: 15px; }
.contactInfoCard a:hover { color: var(--gold-soft); }

/* --------------------------------------------------------- misc bits */
.divider { height: 1px; background: var(--line); margin: 0; }
.badgeRow { display: flex; gap: 10px; flex-wrap: wrap; }
.miniBadge {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  border-radius: 999px;
}
.twoCol { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .twoCol { grid-template-columns: 1fr; gap: 36px; } }

.markCircle {
  width: 100%; height: auto;
}

.locGrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 860px) { .locGrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .locGrid { grid-template-columns: repeat(2, 1fr); } }
.locChip {
  text-align: center;
  padding: 14px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  color: var(--ash);
}

.jobCard {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255,255,255,0.02);
}
.jobCard h4 { color: var(--paper); font-size: 17px; margin-bottom: 6px; }
.jobCard .meta { color: var(--gold-soft); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-display); margin-bottom: 12px; }
.jobCard p { color: var(--ash); font-size: 14.5px; margin-bottom: 16px; }
