/* Jason's Crew — Southern Ontario renovation/landscaping/masonry job marketplace
   Palette inspired by the Better Call Saul title card.
*/

:root {
  --bcj-yellow:    #FCD700;
  --bcj-yellow-2:  #E6C200;
  --bcj-black:     #0a0a0a;
  --bcj-ink:       #1a1a1a;
  --bcj-line:      #2a2a2a;
  --bcj-cream:     #f5f1e8;
  --bcj-paper:     #fbf8ef;
  --bcj-mute:      #8a8678;
  --bcj-rust:      #b6391c;
  --bcj-leather:   #6b4423;
  --bcj-green:     #1f7a3f;
  --bcj-red:       #c0392b;

  --radius:        2px;
  --radius-card:   4px;

  --shadow-flat:   0 1px 0 rgba(0,0,0,0.06);
  --shadow-card:   0 6px 22px rgba(0,0,0,0.08);

  --font-display:  "Bebas Neue", "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body:     "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:     "JetBrains Mono", ui-monospace, "Consolas", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bcj-cream);
  color: var(--bcj-black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--bcj-black); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--bcj-rust); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-weight: 700;
  margin: 0 0 0.4em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1em; }

/* ------- Layout ------- */
.wrap   { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.row    { display: flex; gap: 24px; flex-wrap: wrap; }
.col    { flex: 1 1 280px; }

/* ------- Top bar ------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--bcj-black);
  border-bottom: 4px solid var(--bcj-yellow);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--bcj-yellow);
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.04em;
  text-decoration: none;
}
.brand .mark {
  width: 40px; height: 40px;
  background: var(--bcj-yellow); color: var(--bcj-black);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  border-radius: var(--radius);
}
.nav { display: flex; gap: 22px; }
.nav a {
  color: var(--bcj-cream);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--bcj-yellow); }
.nav-toggle { display: none; background: none; border: 0; color: var(--bcj-cream); font-size: 1.4rem; cursor: pointer; }

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; gap: 14px; padding: 14px 24px 18px; background: var(--bcj-black); border-bottom: 4px solid var(--bcj-yellow); }
  .nav-toggle { display: block; }
  .topbar-inner { flex-wrap: wrap; }
  .nav { flex-basis: 100%; }
}

/* ------- Hero ------- */
.hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.0) 60%, rgba(0,0,0,0.04) 100%),
    var(--bcj-yellow);
  border-bottom: 6px solid var(--bcj-black);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; }
.hero h1 { color: var(--bcj-black); }
.hero .hero-cta { justify-content: center; }
.hero p.lead { margin-left: auto; margin-right: auto; }
.hero .kicker {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--bcj-black);
  background: var(--bcj-black);
  color: var(--bcj-yellow);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 18px;
}
.hero p.lead {
  max-width: 640px; font-size: 1.15rem; color: var(--bcj-ink); margin-top: 12px;
}
.hero-cta { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* ------- Buttons (no rounded pills) ------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  border: 2px solid var(--bcj-black);
  background: var(--bcj-black);
  color: var(--bcj-yellow);
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.05s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--bcj-ink); color: var(--bcj-yellow); }
.btn:active { transform: translateY(1px); }
.btn.alt {
  background: var(--bcj-yellow);
  color: var(--bcj-black);
  border-color: var(--bcj-black);
}
.btn.alt:hover { background: var(--bcj-yellow-2); color: var(--bcj-black); }
.btn.ghost { background: transparent; color: var(--bcj-black); }
.btn.ghost:hover { background: var(--bcj-black); color: var(--bcj-yellow); }
.btn.danger { background: var(--bcj-red); color: #fff; border-color: var(--bcj-red); }
.btn.small { padding: 8px 14px; font-size: 0.92rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* ------- Section ------- */
section { padding: 64px 0; }
section.alt { background: var(--bcj-paper); border-top: 1px solid #e7e1cf; border-bottom: 1px solid #e7e1cf; }
section.dark { background: var(--bcj-black); color: var(--bcj-cream); }
section.dark h2 { color: var(--bcj-yellow); }
section.dark a { color: var(--bcj-yellow); }
.section-title { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; justify-content: center; }
section h2 { text-align: center; }
section > .wrap > p.muted, section > .wrap > h2 + p.muted { margin-left: auto; margin-right: auto; text-align: center; }
.section-title .num { font-family: var(--font-mono); color: var(--bcj-mute); font-size: 0.9rem; }
.eyebrow { font-family: var(--font-display); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.9rem; color: var(--bcj-rust); }

/* ------- Trades grid (no card chrome — just typography blocks) ------- */
.trades { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.trade { border-top: 4px solid var(--bcj-black); padding-top: 16px; }
.trade h3 { margin-bottom: 4px; }
.trade p { color: #444; font-size: 0.96rem; }

/* ------- Steps ------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.step { position: relative; padding-left: 56px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -4px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--bcj-yellow);
  -webkit-text-stroke: 1px var(--bcj-black);
}

/* ------- Job cards ------- */
.job-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.job {
  background: #fff;
  border: 1px solid #e3dcc4;
  border-left: 6px solid var(--bcj-yellow);
  padding: 20px 22px;
  border-radius: var(--radius-card);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.08s ease, box-shadow 0.15s ease;
}
.job:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.job .meta { color: var(--bcj-mute); font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.05em; }
.job h3 { margin: 0; font-size: 1.4rem; }
.job .where { color: #444; font-size: 0.95rem; }
.job .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-mono); font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--bcj-black); color: var(--bcj-yellow);
  border-radius: var(--radius);
}
.tag.ghost { background: transparent; color: var(--bcj-black); border: 1px solid var(--bcj-black); }
.tag.green { background: var(--bcj-green); color: #fff; }
.tag.rust  { background: var(--bcj-rust); color: #fff; }
.job-actions { display: flex; gap: 10px; margin-top: 4px; }

/* ------- Filters ------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 22px; }
.filters select, .filters input[type=text], .filters input[type=search] {
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 10px 12px; border: 2px solid var(--bcj-black);
  background: #fff; color: var(--bcj-black); border-radius: var(--radius);
}

/* ------- Forms ------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 0.95rem; }
.field input, .field textarea, .field select {
  font: inherit; padding: 12px 14px;
  border: 2px solid var(--bcj-black);
  background: #fff; color: var(--bcj-black);
  border-radius: var(--radius);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 3px solid var(--bcj-yellow);
  outline-offset: 1px;
}
.field .hint { font-size: 0.85rem; color: var(--bcj-mute); }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; }
.checks label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500; padding: 6px 8px;
  border: 1px solid #ddd6bd; background: #fff;
  border-radius: var(--radius);
}
.checks label.on { background: var(--bcj-yellow); border-color: var(--bcj-black); }
.checks input[type=checkbox] { width: 18px; height: 18px; accent-color: var(--bcj-black); }

/* ------- Tables ------- */
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid #ece6cf; vertical-align: top; }
th { background: var(--bcj-black); color: var(--bcj-yellow); font-family: var(--font-display); letter-spacing: 0.06em; font-size: 0.95rem; }
tbody tr:hover { background: var(--bcj-paper); }

/* ------- Banner / notices ------- */
.notice {
  background: var(--bcj-yellow); color: var(--bcj-black);
  border-left: 6px solid var(--bcj-black);
  padding: 14px 18px; margin: 18px 0;
  font-weight: 500;
}
.notice.dark { background: var(--bcj-black); color: var(--bcj-yellow); border-left-color: var(--bcj-yellow); }
.notice.rust { background: var(--bcj-rust); color: #fff; border-left-color: #fff; }

/* ------- Footer ------- */
.footer {
  background: var(--bcj-black); color: var(--bcj-cream);
  padding: 48px 24px 28px; margin-top: 60px;
  border-top: 6px solid var(--bcj-yellow);
}
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
.footer h4 { color: var(--bcj-yellow); font-size: 1rem; letter-spacing: 0.1em; }
.footer a { color: var(--bcj-cream); text-decoration: none; display: block; padding: 4px 0; font-size: 0.95rem; }
.footer a:hover { color: var(--bcj-yellow); }
.footer .small { color: #999180; font-size: 0.85rem; margin-top: 22px; border-top: 1px solid #2a2a2a; padding-top: 16px; }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

/* ------- Login / portal common ------- */
.portal-shell { background: var(--bcj-paper); min-height: 100vh; }
.portal-card {
  max-width: 520px; margin: 56px auto; background: #fff;
  border-top: 6px solid var(--bcj-yellow);
  border-bottom: 6px solid var(--bcj-black);
  padding: 36px 30px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.portal-card.wide { max-width: 980px; }
.portal-card h1 { font-size: 2rem; }

.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--bcj-black); margin-bottom: 20px; }
.tabs button {
  background: transparent; border: 0; padding: 12px 18px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; color: var(--bcj-mute);
  border-bottom: 4px solid transparent; margin-bottom: -2px;
}
.tabs button.on { color: var(--bcj-black); border-bottom-color: var(--bcj-yellow); }

.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 24px; }
.kpi {
  background: var(--bcj-black); color: var(--bcj-yellow);
  padding: 16px 18px; border-radius: var(--radius-card);
}
.kpi .label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #b9b297; }
.kpi .value { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; margin-top: 4px; }

/* ------- Misc ------- */
.center { text-align: center; }
.muted { color: var(--bcj-mute); }
.hidden { display: none !important; }
.divider { height: 1px; background: #e7e1cf; margin: 24px 0; border: 0; }
.kbd-mark { font-family: var(--font-mono); padding: 1px 6px; background: var(--bcj-black); color: var(--bcj-yellow); border-radius: var(--radius); font-size: 0.85em; }
.callstrip {
  background: var(--bcj-yellow); color: var(--bcj-black);
  text-align: center; padding: 10px 12px;
  font-family: var(--font-display); letter-spacing: 0.08em;
  font-size: 0.95rem; border-bottom: 2px solid var(--bcj-black);
}
.callstrip a { color: var(--bcj-black); text-decoration: none; border-bottom: 2px solid var(--bcj-black); }

/* Crew badge */
.jboys-badge {
  display: inline-block;
  font-family: var(--font-display);
  background: var(--bcj-black); color: var(--bcj-yellow);
  padding: 2px 10px; letter-spacing: 0.1em; font-size: 0.85rem;
  border-radius: var(--radius);
}

/* ------- Crew gallery ------- */
.crew-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 28px auto 0;
}
.crew-card {
  background: #fff;
  border: 1px solid #e3dcc4;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
}
.crew-card .photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #444 100%) center/cover no-repeat;
  position: relative;
}
.crew-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.crew-card .photo::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.crew-card .body { padding: 14px 16px 18px; text-align: center; }
.crew-card .trade {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
  color: var(--bcj-rust);
}
.crew-card h3 { margin: 4px 0 6px; font-size: 1.25rem; }
.crew-card p { margin: 0; color: #555; font-size: 0.92rem; }
.crew-card .region {
  display: inline-block; margin-top: 8px;
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--bcj-mute);
  letter-spacing: 0.04em;
}

/* ------- Generic centering helpers ------- */
.center { text-align: center; }
.center .hero-cta, .center .row { justify-content: center; }

/* ------- Global centering pass ------- */
section .wrap, section .narrow { text-align: center; }
section .wrap > p, section .narrow > p, section .wrap > ul, section .narrow > ul { max-width: 720px; margin-left: auto; margin-right: auto; }
section .narrow ul { text-align: left; display: inline-block; padding-left: 24px; }

/* trades grid items */
.trades { justify-items: center; }
.trade { text-align: center; border-top: 4px solid var(--bcj-black); padding-top: 16px; max-width: 320px; }

/* steps re-laid out around a top-centred number */
.steps { justify-items: center; }
.step { text-align: center; padding-left: 0; padding-top: 56px; max-width: 320px; }
.step::before { left: 50%; transform: translateX(-50%); top: 0; }

/* row with two columns now centers headings + content */
.row { justify-content: center; }
.col { text-align: center; }
.col h3 { text-align: center; }

/* post-a-job form container */
#post .wrap > p.muted { text-align: center; }
#post-form { margin-left: auto; margin-right: auto; }
#post-form .field-row { justify-content: center; }
#post-form label, #post-form .hint { text-align: left; }
#post .checks { justify-content: center; }
#post-form > div[style*="display:flex"] { justify-content: center; }

/* dark sections center their CTAs */
section.dark .wrap { text-align: center; }
section.dark p { margin-left: auto; margin-right: auto; }
section.dark > .wrap > div[style*="margin-top"] { justify-content: center; }

/* footer */
.footer-inner { text-align: center; }
.footer-inner h4 { text-align: center; }
.footer-inner a { display: block; }
.footer-inner > div .brand { justify-content: center; }

/* hero kicker stays inline */
.hero .kicker { display: inline-block; }

/* contact section on about page */
.contact { text-align: center; }

/* ------- Hero gallery strip (top of homepage) ------- */
.hero-gallery { background: var(--bcj-black); padding: 0; border-bottom: 6px solid var(--bcj-yellow); }
.hg-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.hg-tile {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}
.hg-tile img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hg-tile:hover img { transform: scale(1.04); }
.hg-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.78) 100%);
  text-align: center;
}
@media (max-width: 820px) {
  .hg-strip { grid-template-columns: 1fr; }
  .hg-tile { aspect-ratio: 16 / 10; }
}

/* ------- Topbar: centered stacked layout ------- */
.topbar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 24px 14px;
}
.topbar-inner .brand { justify-content: center; }
.topbar-inner .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 28px;
}
.topbar-inner .nav-toggle { display: none; }

/* SVG mark sizing inside the brand */
.brand svg.mark {
  width: 40px; height: 40px;
  display: inline-block;
  border-radius: var(--radius);
}

/* keep the mobile nav-toggle behaviour, just nicer */
@media (max-width: 720px) {
  .topbar-inner { padding: 14px 24px 14px; gap: 10px; }
  .topbar-inner .nav-toggle { display: block; position: absolute; right: 18px; top: 22px; }
  .topbar-inner .nav { display: none; }
  .topbar-inner .nav.open { display: flex; flex-direction: column; gap: 12px; }
}

/* callstrip centered too */
.callstrip { text-align: center; }

/* ============================================================
   Motion: ken-burns hero, scroll reveal, logo entry
   ============================================================ */

/* Hero gallery: slow ken-burns zoom on each tile */
@keyframes kb1 { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.12) translate(-1.5%, -1%); } }
@keyframes kb2 { 0% { transform: scale(1.08) translate(1%, 0); } 100% { transform: scale(1) translate(0, 1.5%); } }
@keyframes kb3 { 0% { transform: scale(1) translate(0, 1%); } 100% { transform: scale(1.10) translate(-1%, -1%); } }
.hg-tile img {
  will-change: transform;
  animation: kb1 16s ease-in-out infinite alternate;
}
.hg-tile:nth-child(2) img { animation-name: kb2; animation-duration: 18s; }
.hg-tile:nth-child(3) img { animation-name: kb3; animation-duration: 20s; }

/* Scroll reveal: sections fade up when entering viewport */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.13s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.21s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.29s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.37s; opacity: 1; transform: translateY(0); }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hg-tile img { animation: none; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
}

/* Logo entry: square draws in on first paint */
@keyframes logoIn {
  0%   { transform: scale(0.8) rotate(-4deg); opacity: 0; }
  60%  { transform: scale(1.05) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.brand svg.mark { animation: logoIn 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s both; }

/* CTA buttons subtle pulse-ready hover */
.btn { transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,0.12); }

/* Crew card photo zoom on hover */
.crew-card { overflow: hidden; }
.crew-card .photo img { transition: transform 0.5s ease; }
.crew-card:hover .photo img { transform: scale(1.05); }

/* ============================================================
   Install FAB (PWA install button)
   ============================================================ */
#installFab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  background: var(--bcj-yellow);
  color: var(--bcj-black);
  border: 2px solid var(--bcj-black);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
  animation: fabIn 0.6s ease 1.6s both, fabPulse 2.6s ease 2.4s 2;
}
#installFab:hover { background: var(--bcj-yellow-2); }
#installFab:active { transform: translateY(1px); }
#installFab[hidden] { display: none; }
#installFab .ic {
  width: 28px; height: 28px; display: grid; place-items: center;
  background: var(--bcj-black); color: var(--bcj-yellow);
  border-radius: 50%;
}
#installFab .ic svg { width: 14px; height: 14px; }
@keyframes fabIn { 0% { transform: translateY(40px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes fabPulse { 0%, 100% { box-shadow: 0 10px 26px rgba(0,0,0,0.2); } 50% { box-shadow: 0 10px 26px rgba(0,0,0,0.2), 0 0 0 14px rgba(252,215,0,0.0); transform: scale(1.04); } }
@media (max-width: 600px) {
  #installFab { right: 12px; bottom: 12px; padding: 10px 14px 10px 12px; font-size: 0.85rem; }
}
