/* =========================================================
   Dougy Photography — dark & moody theme
   ========================================================= */
:root {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --bg-card: #17171a;
  --border: #27272a;
  --text: #f2ede4;
  --text-muted: #a9a39a;
  --text-faint: #706b63;
  --accent: #e0913a;
  --accent-soft: #e0913a22;
  --accent-2: #6f8ba6;
  --max-width: 1280px;
  --radius: 3px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}
.brand span { color: var(--accent); }
nav.main-nav { display: flex; gap: 30px; }
nav.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--text);
  border-color: var(--accent);
}
.nav-toggle { display: none; }

@media (max-width: 720px) {
  nav.main-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 86vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.62;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.15) 0%, rgba(10,10,11,0.35) 55%, rgba(10,10,11,0.96) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 28px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-content .eyebrow {
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  margin-bottom: 14px;
  display: block;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1.05;
  max-width: 780px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-content p {
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 18px;
  font-size: 1.05rem;
}
.hero-actions { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  transition: all .2s;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #100c06; border-color: var(--accent); }
.btn-primary:hover { background: #f3a655; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.tight { padding: 48px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.section-head h2 { font-size: 1.9rem; }
.section-head .eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 8px;
}
.section-head p.lede { color: var(--text-muted); max-width: 520px; margin: 0; }

/* ---------- Category tiles (home) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 14px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  grid-column: span 2;
  grid-row: span 1;
}
.cat-tile.lead { grid-column: span 4; grid-row: span 2; }
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
}
.cat-tile .cat-label {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
}
.cat-tile .cat-label .count {
  color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.08em;
  font-family: 'Oswald', sans-serif;
}
.cat-tile .cat-label h3 { font-size: 1.5rem; }
.cat-tile.lead .cat-label h3 { font-size: 2.1rem; }

@media (max-width: 860px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; }
  .cat-tile, .cat-tile.lead { grid-column: span 1; grid-row: span 1; height: 260px; }
}

/* ---------- Spotlight (fan favorites) ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.spotlight-card {
  position: relative;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}
.spotlight-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.spotlight-card:hover img { transform: scale(1.05); }
.spotlight-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.88) 100%);
}
.spotlight-card .badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: var(--accent); color: #100c06;
  font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.spotlight-card .info {
  position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2;
}
.spotlight-card .info .c { color: var(--accent); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.spotlight-card .info h3 { font-size: 1.7rem; margin: 8px 0 6px; }
.spotlight-card .info p { color: var(--text-muted); font-size: 0.92rem; margin: 0; max-width: 420px; }

@media (max-width: 760px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-card { height: 340px; }
}

/* ---------- Masonry / grid gallery ---------- */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px;
}
.filter-bar button {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s;
}
.filter-bar button:hover { border-color: var(--accent); color: var(--text); }
.filter-bar button.active { background: var(--accent); border-color: var(--accent); color: #100c06; }

.grid {
  columns: 4 260px;
  column-gap: 14px;
}
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 12px;
}
.load-more-wrap .btn { min-width: 220px; text-align: center; }
.grid figure {
  margin: 0 0 14px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  cursor: pointer;
}
.grid figure img { width: 100%; display: block; transition: transform .45s ease, opacity .3s; }
.grid figure:hover img { transform: scale(1.045); }
.grid figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  opacity: 0; transition: opacity .25s;
}
.grid figure:hover figcaption { opacity: 1; }
.grid figure figcaption .t { font-family: 'Oswald', sans-serif; font-size: 0.95rem; letter-spacing: 0.03em; }
.grid figure figcaption .c { color: var(--accent); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

@media (max-width: 640px) {
  .grid { columns: 2 160px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(6,6,7,0.96);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 320px; gap: 28px;
  align-items: center;
}
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-meta .c { color: var(--accent); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; }
.lightbox-meta h3 { font-size: 1.6rem; margin: 10px 0 12px; }
.lightbox-meta p { color: var(--text-muted); }
.lightbox-close {
  position: absolute; top: 26px; right: 32px;
  font-size: 1.8rem; color: var(--text-muted); cursor: pointer; z-index: 1001;
  font-family: 'Oswald', sans-serif;
}
.lightbox-close:hover { color: var(--text); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: var(--text-muted); cursor: pointer; padding: 10px;
  user-select: none;
}
.lightbox-nav:hover { color: var(--accent); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 800px) {
  .lightbox-inner { grid-template-columns: 1fr; }
}

/* ---------- Shop ---------- */
.shop-banner {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 44px;
  color: var(--text-muted);
  font-size: 0.94rem;
}
.shop-banner strong { color: var(--text); }
.shop-category { margin-top: 56px; }
.shop-category:first-child { margin-top: 40px; }
.shop-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.shop-category-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.shop-category-head .count {
  color: var(--text-faint);
  font-size: 0.82rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
.shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.shop-card .shop-img { aspect-ratio: 4/5; overflow: hidden; }
.shop-card .shop-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-card .shop-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-card .c { color: var(--accent); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.shop-card h3 { font-size: 1.15rem; }
.shop-card p.desc { color: var(--text-muted); font-size: 0.9rem; margin: 0; flex: 1; }
.shop-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.shop-card .price { font-family: 'Oswald', sans-serif; color: var(--text); }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-grid img { border-radius: var(--radius); }
.about-grid h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-grid p { color: var(--text-muted); margin-bottom: 16px; }
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
}

.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px;
}
.pillar-card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--radius);
}
.pillar-card .num { color: var(--accent); font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; }
.pillar-card h3 { margin: 10px 0 10px; font-size: 1.2rem; }
.pillar-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-info .social-list { display: flex; flex-direction: column; gap: 10px; }
.contact-info .social-list a {
  font-family: 'Oswald', sans-serif; letter-spacing: 0.08em; font-size: 0.9rem;
  color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border);
}
.contact-info .social-list a span { color: var(--text-faint); text-transform: none; letter-spacing: normal; font-family: 'Inter', sans-serif; }
.contact-info .social-list a span.v { color: var(--text); }
form.contact-form { display: flex; flex-direction: column; gap: 16px; }
form.contact-form label {
  font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px; display: block;
}
form.contact-form input, form.contact-form select, form.contact-form textarea {
  width: 100%; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); padding: 12px 14px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
}
form.contact-form input:focus, form.contact-form select:focus, form.contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
form.contact-form textarea { min-height: 130px; resize: vertical; }

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--text-faint);
  font-size: 0.85rem;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
footer a { color: var(--text-muted); }
footer a:hover { color: var(--accent); }
footer .foot-links { display: flex; gap: 20px; }

/* ---------- Misc ---------- */
.page-hero {
  padding: 150px 0 50px;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow { color: var(--accent); font-size: 0.78rem; letter-spacing: 0.22em; display: block; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.page-hero p { color: var(--text-muted); max-width: 560px; margin-top: 16px; }

/* =========================================================
   Space City Frames — 2026-08-27 rebuild
   Additions and overrides. Original theme above is unchanged.
   ========================================================= */

/* ---------- Working mobile navigation ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px; height: 38px;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle span {
  display: block; position: relative;
  width: 18px; height: 2px; background: currentColor;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  nav.main-nav {
    display: flex;
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,11,0.985);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 18px;
    transform: translateY(-130%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  nav.main-nav.open { transform: translateY(0); }
  nav.main-nav a {
    padding: 15px 28px;
    font-size: 1rem;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  nav.main-nav a:hover, nav.main-nav a.active {
    border-color: transparent; border-left-color: var(--accent);
    background: rgba(224,145,58,0.07);
  }
  .nav-row { padding: 14px 20px; }
  .wrap { padding: 0 20px; }
}
body.nav-open { overflow: hidden; }

/* ---------- Two doors (home) ---------- */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.door {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--border);
  min-height: 420px;
}
.door img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s ease; opacity: .58;
}
.door:hover img { transform: scale(1.05); opacity: .72; }
.door::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.15) 0%, rgba(10,10,11,.55) 60%, rgba(10,10,11,.95) 100%);
}
.door-body { position: relative; z-index: 2; padding: 34px 30px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 420px; }
.door-body .eyebrow { color: var(--accent); font-size: .74rem; letter-spacing: .2em;
  text-transform: uppercase; display: block; margin-bottom: 10px; }
.door-body h3 { font-size: 2rem; }
.door-body p { color: var(--text-muted); margin: 12px 0 0; font-size: .95rem; max-width: 42ch; }
.door-body .door-stats { margin-top: 18px; display: flex; gap: 18px; flex-wrap: wrap;
  font-family: 'Oswald', sans-serif; font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-faint); }
.door-body .door-stats b { color: var(--text); font-weight: 600; }
@media (max-width: 800px) { .doors { grid-template-columns: 1fr; }
  .door, .door-body { min-height: 320px; } }

/* ---------- Series badge on grid tiles ---------- */
.grid figure { position: relative; }
.series-badge {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  font-family: 'Oswald', sans-serif; font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 2px;
  background: rgba(10,10,11,.82); color: var(--text);
  border: 1px solid rgba(224,145,58,.55); backdrop-filter: blur(4px);
}
.grid figure figcaption .latin { font-style: italic; color: var(--text-faint); font-size: .78rem; }
.grid figure figcaption .meta-line {
  color: var(--text-faint); font-size: .72rem; margin-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Lightbox: caption block + series filmstrip ---------- */
.lightbox-inner { width: min(1180px, 94vw); }
.lightbox-stage { position: relative; }
.lightbox-meta { margin-top: 18px; }
.lightbox-meta .latin { font-style: italic; color: var(--text-muted); margin: -6px 0 12px; }
.lightbox-meta p.desc { color: var(--text-muted); max-width: 74ch; margin: 0 0 14px; }
.lb-facts {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: .8rem; color: var(--text-faint);
  border-top: 1px solid var(--border); padding-top: 12px;
}
.lb-facts span.site { color: var(--text-muted); }
.lb-strip { display: flex; gap: 8px; margin-top: 16px; overflow-x: auto; padding-bottom: 6px; }
.lb-strip button {
  flex: 0 0 auto; width: 78px; height: 58px; padding: 0; cursor: pointer;
  border: 1px solid var(--border); background: none; border-radius: 2px; overflow: hidden;
  opacity: .5; transition: opacity .2s, border-color .2s;
}
.lb-strip button img { width: 100%; height: 100%; object-fit: cover; }
.lb-strip button:hover { opacity: .85; }
.lb-strip button.active { opacity: 1; border-color: var(--accent); }
.lb-counter {
  font-family: 'Oswald', sans-serif; font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block;
}
.lb-note { color: var(--text-faint); font-size: .82rem; margin: 8px 0 0; font-style: italic; }
@media (max-width: 800px) {
  .lightbox img { max-height: 56vh; }
  .lightbox-inner { width: 96vw; }
  .lb-strip button { width: 62px; height: 46px; }
}

/* ---------- Prints / inquiry page ---------- */
.note-panel {
  border: 1px solid var(--border); border-left: 3px solid var(--accent);
  background: var(--bg-elevated); padding: 22px 26px; border-radius: var(--radius);
  color: var(--text-muted); margin-bottom: 40px;
}
.note-panel strong { color: var(--text); }
.note-panel p { margin: 0 0 10px; } .note-panel p:last-child { margin: 0; }
.spec-table { width: 100%; border-collapse: collapse; margin: 8px 0 0; font-size: .92rem; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border); }
.spec-table th { font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: .1em; font-size: .76rem; color: var(--text-faint); font-weight: 600; }
.spec-table td { color: var(--text-muted); }
.spec-table td:first-child { color: var(--text); }
.table-scroll { overflow-x: auto; }

/* ---------- Field notes / about ---------- */
.kit-list { list-style: none; padding: 0; margin: 0; }
.kit-list li { padding: 11px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.kit-list li b { color: var(--text); font-family: 'Oswald', sans-serif;
  font-weight: 600; letter-spacing: .04em; }
.placeholder-flag {
  border: 1px dashed rgba(224,145,58,.5); background: rgba(224,145,58,.05);
  padding: 14px 18px; border-radius: var(--radius); color: var(--text-muted);
  font-size: .88rem; margin: 18px 0;
}
.placeholder-flag b { color: var(--accent); }

/* ---------- Footer tidy ---------- */
footer .foot-links a:hover { color: var(--accent); }
.brand span { color: var(--accent); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #100c06; padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- 2026-08-27: contrast + layout corrections ---------- */
.hero img { opacity: .70; }
.hero .btn-outline { border-color: rgba(242,237,228,.55); background: rgba(10,10,11,.35);
  backdrop-filter: blur(3px); }
.hero .btn-outline:hover { border-color: var(--accent); background: rgba(10,10,11,.55); }

/* Spotlight: a real three-up, with a scrim strong enough for a bright frame */
.spotlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spotlight-card { grid-column: auto !important; grid-row: auto !important;
  aspect-ratio: 4 / 5; min-height: 0; }
.spotlight-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.10) 0%, rgba(10,10,11,.55) 45%,
                              rgba(10,10,11,.90) 72%, rgba(10,10,11,.97) 100%);
}
.spotlight-card .info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px 22px; }
.spotlight-card .info h3 { font-size: 1.35rem; margin: 6px 0 8px; }
.spotlight-card .info p { font-size: .86rem; max-width: none;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.spotlight-card .badge { z-index: 3; }
@media (max-width: 980px) { .spotlight-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-card { aspect-ratio: 3 / 2; } }

/* Doors: keep the subject readable under the scrim */
.door img { opacity: .68; }

/* Lightbox filmstrip: show every frame instead of scrolling four of seven */
@media (min-width: 801px) { .lb-strip { flex-wrap: wrap; overflow-x: visible; } }

/* aspect-ratio must drive from width, not from the inherited fixed height —
   otherwise a definite height computes the width and blows out the grid track */
.spotlight-card { height: auto; }
@media (max-width: 760px) { .spotlight-card { height: auto; } }

/* Category grid: 4 tiles must fill the block exactly, with no orphan row.
   4 cols x 2 rows — lead 2x2, automotive 2x1, landscape 1x1, astro 1x1. */
@media (min-width: 861px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 232px); }
  .cat-tile { grid-column: span 1; grid-row: span 1; }
  .cat-tile.lead { grid-column: span 2; grid-row: span 2; }
  .cat-tile:nth-child(2) { grid-column: span 2; }
}

/* Grid captions were hover-only, so on a phone every title, species name and
   location was invisible. Show them by default wherever there is no hover. */
@media (hover: none), (max-width: 860px) {
  .grid figure figcaption { opacity: 1;
    background: linear-gradient(180deg, transparent, rgba(10,10,11,.92) 62%); padding-top: 34px; }
  .grid figure figcaption .meta-line { display: none; }
}

/* Tiles carry width/height attributes (so the grid does not jump while images
   load). Without height:auto the HTML height attribute wins and stretches them. */
.grid figure img { height: auto; }
