/* Pathfinder Defense LLC: site styles (site v7).
   Black, greys, and white only. */
:root {
  --black: #0B0B0C;
  --bg: #111213;
  --bg-2: #17181A;
  --panel: #1C1D20;
  --panel-2: #232428;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #E4E4E6;
  --muted: #A2A3A8;
  --white: #FFFFFF;
  --font-head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --wrap: 1140px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); background: var(--black); }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; overflow-wrap: break-word; }
body.menu-open, body.lightbox-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: var(--white); text-underline-offset: 3px; }
a:hover { color: var(--muted); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--white); margin: 0 0 0.5em; letter-spacing: 0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: 0.04em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); text-transform: uppercase; letter-spacing: 0.04em; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
strong { color: var(--white); font-weight: 600; }
:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.skip { position: absolute; left: -9999px; top: 0; }
.skip:focus { left: 16px; top: 12px; z-index: 200; background: var(--white); color: var(--black); padding: 8px 14px; border-radius: 3px; font-weight: 600; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Top bar and header ---------- */
.topbar { background: var(--black); border-bottom: 1px solid var(--line); font-size: 0.86rem; color: var(--muted); }
.topbar .wrap { display: flex; justify-content: flex-end; align-items: center; gap: 0 22px; flex-wrap: wrap; padding-top: 2px; padding-bottom: 2px; }
.topbar a { display: inline-block; padding: 9px 0; color: var(--text); text-decoration: none; }
.topbar a:hover { color: var(--white); text-decoration: underline; }
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(11, 11, 12, 0.96); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .nav .dd > button { color: var(--text); background: none; border: 0; font: 600 0.98rem/1 var(--font-head); letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; padding: 10px 11px; cursor: pointer; }
.nav > a:hover, .nav .dd > button:hover { color: var(--white); box-shadow: inset 0 -2px 0 var(--muted); }
.nav a[aria-current='page'], .nav .dd.current > button { color: var(--white); box-shadow: inset 0 -2px 0 var(--white); }
.dd { position: relative; }
.dd > button::after { content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); }
.dd-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 270px; padding: 8px 0; background: var(--panel); border: 1px solid var(--line-strong); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); }
.dd-menu a { display: block; padding: 10px 16px; color: var(--text); text-decoration: none; font-size: 0.95rem; }
.dd-menu a:hover, .dd-menu a[aria-current='page'] { background: var(--panel-2); color: var(--white); }
.dd.open .dd-menu { display: block; }
@media (hover: hover) and (min-width: 1061px) { .dd:hover .dd-menu { display: block; } }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 3px; }
.menu-toggle span { width: 20px; height: 2px; background: var(--white); }
.menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1060px) {
  .menu-toggle { display: inline-flex; }
  .nav { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 28px; background: var(--black); display: none; overflow-y: auto; overscroll-behavior: contain; }
  .nav.open { display: flex; }
  .nav > a, .nav .dd > button { width: 100%; text-align: left; padding: 15px 8px; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .nav a[aria-current='page'], .nav .dd.current > button { box-shadow: none; }
  .nav > a:hover, .nav .dd > button:hover { box-shadow: none; background: var(--panel); }

  .dd.open .dd-menu { display: block; }
  .dd-menu { position: static; min-width: 0; padding: 0 0 6px 12px; border: 0; box-shadow: none; background: transparent; }
  .dd-menu a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .brand img { height: 42px; }
}

/* ---------- Page title band (hero) ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; padding: 70px 0 60px; text-align: center; background: var(--black); border-bottom: 1px solid var(--line); }
/* The circle wallpaper sits on a taller layer that main.js slides slower than the page scrolls (parallax). */
.hero::before, .section-band::before { content: ''; position: absolute; left: 0; right: 0; top: -45%; bottom: -45%; z-index: -1; background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../img/shared/hero-bg.jpg') center / cover no-repeat; transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }
.hero .wrap { position: relative; }
.hero h1 { margin-bottom: 0.2em; }
.hero .hero-sub { font: 600 clamp(1.15rem, 2.6vw, 1.55rem)/1.3 var(--font-head); letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin: 0; }
.hero-home { padding: 80px 0 70px; }
.hero-home::before { background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../img/home/hero-background-layer1.jpg'); }
.hero-home .hero-logo { width: min(340px, 70%); height: auto; margin: 0 auto 26px; }
.hero-home .tagline { font: 700 clamp(1.5rem, 3.6vw, 2.3rem)/1.2 var(--font-head); color: var(--white); letter-spacing: 0.03em; margin: 0 0 14px; }
.hero-home .hero-sub { max-width: 820px; margin: 0 auto; }
.hero-calls { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 14px; margin-top: 26px; }

/* ---------- Sections and layout ---------- */
.section { padding: 56px 0; }
.section.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 30px; }
.section-head p { color: var(--muted); }
.rule { width: 60px; height: 3px; background: var(--white); margin: 0 0 18px; border: 0; }
.center .rule, .section-head .rule { margin-left: auto; margin-right: auto; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: center; }
.split + .split { margin-top: 56px; }
.split-media img { width: 100%; height: auto; border: 1px solid var(--line); }
.split-media.plain img { border: 0; }
.prose { max-width: 820px; }
.prose.center { margin: 0 auto; }
.list { margin: 0 0 1em; padding-left: 22px; }
.list li { margin: 6px 0; }
.list.dash { list-style: none; padding-left: 0; }
.list.dash li { position: relative; padding-left: 20px; }
.list.dash li::before { content: ''; position: absolute; left: 0; top: 0.8em; width: 10px; height: 2px; background: var(--white); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.panel { background: var(--panel); border: 1px solid var(--line); padding: 26px; }
.panel h3, .panel h4 { margin-top: 0; }
.notice { border: 1px solid var(--line-strong); border-left: 4px solid var(--white); background: var(--panel); padding: 22px 26px; }
.notice p:last-child { margin-bottom: 0; }
.photo-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 30px; }
.photo-row img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--line); }

/* ---------- Icon blocks (licenses, services) ---------- */
.icon-block { text-align: center; }
.icon-block .icon { width: 84px; height: 84px; margin: 0 auto 16px; object-fit: contain; }
.icon-side { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 20px; align-items: start; }
.icon-side .icon { width: 76px; height: 76px; object-fit: contain; }
.lic { font-variant-numeric: tabular-nums; }
.lic p { margin: 0 0 4px; }

/* ---------- Badges (SAM, ITAR, DLA, Glock) ---------- */
.badge-card { display: flex; flex-direction: column; gap: 14px; background: var(--panel); border: 1px solid var(--line); padding: 24px; text-decoration: none; color: var(--text); }
a.badge-card:hover { border-color: var(--line-strong); color: var(--text); background: var(--panel-2); }
.badge-card .badge { height: 110px; display: flex; align-items: center; justify-content: center; background: #F2F2F2; padding: 14px; }
.badge-card .badge img { max-height: 82px; width: auto; filter: grayscale(1); }
.badge-card h3 { margin: 0; }
.badge-card p { margin: 0; color: var(--muted); }
.round-badge { width: 180px; height: 180px; border-radius: 50%; margin: 20px 0 0; filter: grayscale(1); }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 11px 20px; border: 1px solid var(--white); border-radius: 2px; background: transparent; color: var(--white); font: 600 0.98rem/1.2 var(--font-head); letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: pointer; }
.btn:hover { background: var(--white); color: var(--black); }
.btn-list { display: flex; flex-direction: column; align-items: center; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.btn-list .btn { min-width: 300px; text-align: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 0; }
.center .btn-row { justify-content: center; }

/* ---------- Testimonials ---------- */
.quote { background: var(--panel); border: 1px solid var(--line); padding: 28px; }
.quote blockquote { margin: 0 0 14px; font-style: italic; font-size: 1.12rem; color: var(--white); }
.quote .who { margin: 0; font-weight: 600; color: var(--muted); }

/* ---------- Staff ---------- */
.staff { display: flex; justify-content: center; flex-wrap: wrap; gap: 50px; }
.person { text-align: center; }
.person a { display: block; text-decoration: none; }
.person img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 2px solid var(--line-strong); }
.person a:hover img { border-color: var(--white); }
.person h3 { margin: 0; }
.person p { margin: 0; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; max-width: 820px; margin: 0 auto; padding: 0; list-style: none; }
.gallery.tiles { grid-template-columns: repeat(auto-fill, 150px); max-width: none; margin: 28px 0 0; }
.gallery button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.gallery img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); filter: grayscale(0.1); transition: filter 0.15s, border-color 0.15s; }
.gallery button:hover img { border-color: var(--white); filter: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; font: 700 1.25rem/1.3 var(--font-head); letter-spacing: 0.03em; color: var(--white); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; line-height: 1; color: var(--muted); }
.faq details[open] summary::after { content: '\2212'; }
.faq details p { margin: 10px 0 0; color: var(--text); }

/* ---------- Tables ---------- */
.table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: 0.95rem; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-family: var(--font-head); letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); font-size: 0.9rem; }
.table-wrap { overflow-x: auto; }

/* ---------- Store ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cat { display: block; background: var(--panel); border: 1px solid var(--line); text-decoration: none; color: var(--white); text-align: center; }
.cat:hover { border-color: var(--white); color: var(--white); }
.cat img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 30px 22% 8px; }
.cat span { display: block; padding: 14px 10px; font: 700 1.15rem/1.2 var(--font-head); letter-spacing: 0.06em; text-transform: uppercase; }
.items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.item { background: var(--panel); border: 1px solid var(--line); padding: 16px; }
.item img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: contain; background: var(--panel-2); margin-bottom: 12px; }
.empty { text-align: center; padding: 40px 20px; border: 1px dashed var(--line-strong); color: var(--muted); }
.warning { border: 1px solid var(--line-strong); background: var(--panel); padding: 22px 26px; }
.warning p { margin: 0 0 10px; font-weight: 600; color: var(--white); }
.warning p:last-child { margin: 0; }

/* ---------- Contact ---------- */
.hours { list-style: none; padding: 0; margin: 0 0 1em; }
.hours li { display: flex; justify-content: space-between; gap: 12px; max-width: 340px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.map { width: 100%; height: 360px; border: 1px solid var(--line); filter: grayscale(1) contrast(1.05); }
.phones { list-style: none; padding: 0; margin: 0 0 1em; }
.phones li { margin: 4px 0; }

/* ---------- Call-to-action band ---------- */
.cta { background: var(--white); color: var(--black); padding: 36px 0; }
.cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta h2, .cta h3 { color: var(--black); margin: 0; }
.cta p { margin: 4px 0 0; }
.cta a { color: var(--black); }
.cta .btn { border-color: var(--black); color: var(--black); }
.cta .btn:hover { background: var(--black); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding: 46px 0 26px; color: var(--muted); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1.25fr 1fr; gap: 30px; }
.site-footer h2 { font-size: 1.05rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0; }
.site-footer li a { display: inline-block; padding: 8px 0; }
.site-footer .social-list a { display: inline-flex; padding: 9px 0; }
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer .footer-logo img { width: 190px; height: auto; margin-bottom: 12px; }
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 50%; }
.socials a:hover { border-color: var(--white); background: var(--panel); text-decoration: none; }
.socials svg { width: 18px; height: 18px; fill: var(--white); }
.footer-bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; font-size: 0.86rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 64px 16px 24px; background: rgba(0, 0, 0, 0.94); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 100px); max-height: calc(100dvh - 100px); width: auto; }
.lightbox-close { position: fixed; top: 12px; right: 16px; width: 44px; height: 44px; border-radius: 3px; border: 1px solid var(--line-strong); background: var(--panel); color: var(--white); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); width: 44px; height: 64px; border: 1px solid var(--line-strong); background: var(--panel); color: var(--white); font-size: 1.6rem; cursor: pointer; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-count { position: fixed; top: 22px; left: 20px; color: var(--muted); font-size: 0.9rem; }

/* ---------- Legal text ---------- */
.legal { max-width: 860px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin-top: 1.6em; }
.legal h3 { font-size: 1.2rem; margin-top: 1.2em; }

@media (max-width: 900px) {
  .split, .grid-2 { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .split.reverse-mobile .split-media { order: -1; }
  .grid-3 { grid-template-columns: minmax(0, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .section { padding: 42px 0; }
  .hero { padding: 50px 0 44px; }
  .photo-row { grid-template-columns: minmax(0, 1fr); }
  .gallery, .gallery.tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .items { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .btn-list .btn { min-width: 0; width: 100%; }
  .icon-side { grid-template-columns: 56px minmax(0, 1fr); gap: 14px; }
  .icon-side .icon { width: 56px; height: 56px; }
  .topbar .wrap { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ---------- Additions: page details ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.hero-home h1 { margin: 0; }
.eyebrow { font: 600 0.9rem/1.2 var(--font-head); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
.split.top { align-items: start; }
.wordmark { width: 100%; max-width: 440px; height: auto; margin: 0 auto; }
.photo-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.photo-row button { display: block; padding: 0; border: 0; background: none; cursor: zoom-in; }
.photo-row button img { aspect-ratio: 4 / 3; }
.photo-row button:hover img { border-color: var(--white); }
.split-media button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.section-band { position: relative; overflow: hidden; isolation: isolate; background: var(--black); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-band::before { background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../img/home/parallax-background-layer2.jpg'); }
.section-band > .wrap { position: relative; }
.lic-card { background: rgba(17, 18, 19, 0.82); border: 1px solid var(--line); padding: 28px 22px; }
.lic-card h3 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.06em; }
.lic-card .lic { color: var(--text); }
.lic .sub { color: var(--muted); margin-bottom: 10px; }
.service { max-width: 920px; margin: 0 auto; }
.service h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cols-2 { columns: 2; column-gap: 34px; }
.cols-2 li { break-inside: avoid; }
.price-tag { display: inline-block; border: 1px solid var(--line-strong); padding: 6px 14px; font: 700 1.1rem/1.2 var(--font-head); letter-spacing: 0.06em; color: var(--white); margin: 0 0 1em; }
.table td:last-child { white-space: nowrap; }
.table.wrap-last td:last-child { white-space: normal; }
.locke { max-width: 760px; margin: 0 auto; text-align: center; }
.locke blockquote { margin: 0; font: italic 400 clamp(1.15rem, 2.4vw, 1.45rem)/1.5 var(--font-body); color: var(--white); }
.locke cite { display: block; margin-top: 10px; font-style: normal; color: var(--muted); }
.crumbs { font-size: 0.9rem; color: var(--muted); margin: 0 0 22px; }
.crumbs a { color: var(--text); }
.shop-elsewhere { text-align: center; margin-top: 34px; }
.contact-list { list-style: none; margin: 0 0 1.2em; padding: 0; }
.contact-list li { margin: 5px 0; }
.contact-list .who { display: inline-block; min-width: 128px; color: var(--muted); }
.social-list { list-style: none; margin: 0; padding: 0; }
.social-list li { margin: 0; }
.social-list a { display: inline-flex; align-items: center; gap: 10px; padding: 9px 0; text-decoration: none; color: var(--text); }
.social-list a:hover { color: var(--white); text-decoration: underline; }
.social-list svg, .social-list img { width: 20px; height: 20px; flex: none; color: var(--white); fill: var(--white); object-fit: contain; }
.footer-links { columns: 2; column-gap: 20px; }
.footer-links li { break-inside: avoid; }
.site-footer .tagline { font-size: 0.9rem; max-width: 260px; }
.map-link { font-size: 0.9rem; margin-top: 8px; }
.person .contact { margin-top: 8px; color: var(--text); }
.person .contact a { display: inline; color: var(--text); text-decoration: underline; }
.skull-link { display: block; width: 110px; margin: 40px auto 0; }
.skull-link img { width: 100%; height: auto; }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.facts .panel h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.05em; }
.facts .panel p { margin: 0; color: var(--text); }
@media (max-width: 900px) {
  .photo-row.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .photo-row.three { grid-template-columns: minmax(0, 1fr); }
  .cols-2 { columns: 1; }
  .topbar .tb-email { display: none; }
  .topbar { font-size: 0.82rem; }
  .table td:last-child { white-space: normal; }
}
.person { max-width: 380px; }
.person .bio { margin: 12px auto 0; color: var(--text); }
.contact-list a { overflow-wrap: anywhere; }
.email-us { font-size: 1.2rem; margin: 0; }
.social-list svg.lc { width: 26px; height: 26px; margin: -3px -3px -3px -3px; }
