:root {
  --red: #bf2126;
  --red-dark: #8e161b;
  --ink: #17181c;
  --muted: #5b616b;
  --paper: #f3efe8;
  --sand: #e8e1d4;
  --white: #fff;
  --line: #ddd6c9;
  --shadow: 0 18px 40px rgba(23, 24, 28, 0.12);
  --max: 1140px;
  --header: 5.6rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, .display {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--white);
  padding: 0.5rem 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--ink);
  color: #d6d2cb;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 0.45rem 0;
}
.topbar a { color: #f3efe8; }
.topbar-place { margin-left: auto; color: #9aa0a8; }
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
  gap: 1rem;
}
.logo {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.logo:hover,
.logo:focus-visible {
  text-decoration: none;
}
.logo-lockup {
  position: relative;
  display: block;
  width: 168px;
  height: 59px;
  overflow: hidden;
}
.logo-lockup img {
  position: absolute;
  left: 0;
  top: 0;
  width: 168px;
  height: auto;
  max-width: none;
}
.logo-mark {
  -webkit-clip-path: polygon(7.3% 10.9%, 98.6% 10.9%, 92.7% 67.3%, 1.05% 67.3%);
  clip-path: polygon(7.3% 10.9%, 98.6% 10.9%, 92.7% 67.3%, 1.05% 67.3%);
  transform: translateX(-110%);
}
.logo-tag {
  -webkit-clip-path: inset(73.3% 13.6% 6.9% 8.4%);
  clip-path: inset(73.3% 13.6% 6.9% 8.4%);
  opacity: 0;
}
.logo.is-ready .logo-mark {
  animation: logo-slide 2s cubic-bezier(0.4, 0, 0.4, 1) 0.2s both;
}
.logo.is-ready .logo-tag {
  animation: logo-fade 0.9s ease 1.55s both;
}
@keyframes logo-slide {
  from { transform: translateX(-110%); }
  to { transform: none; }
}
@keyframes logo-fade {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-mark { transform: none; }
  .logo-tag { opacity: 1; }
  .logo.is-ready .logo-mark,
  .logo.is-ready .logo-tag {
    animation: none;
  }
}
.nav {
  display: flex;
  align-items: center;
  gap: 0 1.2rem;
}
.nav > a:not(.btn),
.has-sub > a {
  display: inline-flex;
  align-items: center;
  height: 2.8rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0;
  position: relative;
}
.nav > a:not(.btn):hover,
.has-sub > a:hover {
  color: var(--red);
  text-decoration: none;
}
.nav > a[aria-current="page"],
.has-sub > a[aria-current="page"] {
  color: var(--red);
}
.nav > a:not(.btn)::after,
.has-sub > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  height: 2px;
  background: transparent;
}
.nav > a[aria-current="page"]::after,
.has-sub > a[aria-current="page"]::after {
  background: var(--red);
}
.has-sub {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.8rem;
}
.sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.4rem 0;
}
.has-sub:hover .sub,
.has-sub:focus-within .sub { display: block; }
.sub a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
}
.sub a:hover { background: var(--paper); color: var(--red); }
.nav-cta {
  margin-left: 0.4rem;
  height: 2.8rem;
  min-height: 2.8rem;
  line-height: 1;
  border-width: 0;
  text-decoration: none;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.8rem;
  padding: 0.55rem 1.15rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-solid {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-solid:hover { background: var(--red-dark); border-color: var(--red-dark); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); text-decoration: none; }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { border-color: var(--white); text-decoration: none; }
.btn-on-dark {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-on-dark:hover { background: var(--white); color: var(--ink); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: var(--white);
  background: #111 center/cover no-repeat;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,18,21,0.86) 0%, rgba(17,18,21,0.45) 48%, rgba(17,18,21,0.18) 100%),
    linear-gradient(180deg, rgba(17,18,21,0.15), rgba(17,18,21,0.55));
  z-index: -1;
}
.hero-inner { padding: 5.5rem 0 4rem; max-width: 38rem; }
.eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem 0.35rem 1rem;
  margin-bottom: 1rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin-bottom: 0.6em;
}
.hero p { font-size: 1.15rem; color: #ece8e1; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.page-hero {
  min-height: 38vh;
  align-items: center;
}
.page-hero .hero-inner { padding: 4.2rem 0 3rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-tint { background: var(--paper); }
.section-head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
  max-width: 40rem;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.lede { color: var(--muted); font-size: 1.08rem; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.vehicle-photo {
  width: 100%;
  height: auto;
  background: transparent;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--white);
  padding: 1.4rem 1.2rem;
}
.stat strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.1rem;
  color: var(--red);
  letter-spacing: 0.02em;
}
.stat span { color: var(--muted); font-size: 0.95rem; }

.section-logos {
  padding: 1.2rem 0 3.4rem;
}
.section-logos .section-head {
  max-width: 46rem;
}
.retailer-logos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.retailer-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.4rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
}
.retailer-logo {
  width: 100%;
  max-width: 11.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.88;
}
.retailer-logos li:hover .retailer-logo {
  filter: none;
  opacity: 1;
}

.cards-2, .cards-3 {
  display: grid;
  gap: 1.25rem;
}
.cards-2 { grid-template-columns: 1fr 1fr; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.35rem 1.4rem 1.5rem; }
.card h3 { font-size: 1.6rem; }
.card p { color: var(--muted); }

.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.7rem;
}
.photo-grid img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-grid a:first-child { grid-row: 1 / span 2; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.gallery a { display: block; height: 210px; overflow: hidden; }
.gallery img, .photo-grid img { transition: transform 0.4s ease; }
.gallery a:hover img, .photo-grid a:hover img { transform: scale(1.04); }

.list-checks {
  columns: 2;
  gap: 2rem;
  list-style: none;
}
.list-checks li {
  break-inside: avoid;
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.list-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--red);
  clip-path: polygon(3px 0, 100% 0, calc(100% - 3px) 100%, 0 100%);
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.brand-row span {
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.table-wrap { overflow: auto; border: 1px solid var(--line); background: var(--white); }
.table-wrap.is-windowed {
  --project-head: 2.75rem;
  --project-row: 2.65rem;
  max-height: calc(var(--project-head) + 10 * var(--project-row));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.table-wrap.is-windowed:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.table-wrap.is-windowed thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  height: var(--project-head);
  box-shadow: 0 1px 0 var(--ink);
}
.table-wrap.is-windowed table {
  border-collapse: separate;
  border-spacing: 0;
}
.table-wrap.is-windowed tbody tr {
  --row-fade: 1;
}
.table-wrap.is-windowed tbody td {
  height: var(--project-row);
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
  white-space: nowrap;
  opacity: var(--row-fade);
  transition: opacity 0.12s linear;
}
@media (prefers-reduced-motion: reduce) {
  .table-wrap.is-windowed tbody td { transition: none; }
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
th, td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
}
tr:hover td { background: #faf7f2; }
.project-name-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--red);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}
.project-name-btn:hover {
  text-decoration: underline;
}
.project-name-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
td .photo-count {
  display: inline-block;
  margin-left: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.filter-bar input,
.filter-bar select,
.form input,
.form select,
.form textarea {
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.7rem 0.85rem;
  width: 100%;
}
.filter-bar input { max-width: 22rem; }
.filter-bar select { max-width: 16rem; }
.filter-count {
  margin: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.92rem;
  align-self: center;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
}
.chip {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.48rem 0.85rem;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.chip:hover {
  border-color: var(--ink);
}
.chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.chip:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

#featured,
#track-record {
  scroll-margin-top: 7rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.featured-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.featured-card.is-photo {
  grid-column: span 2;
}
.featured-card.has-gallery {
  cursor: pointer;
}
.featured-card.has-gallery:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.featured-media {
  position: relative;
  display: block;
  overflow: hidden;
}
.featured-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-card.has-photo:not(.is-photo) img {
  height: 168px;
}
.featured-card.has-gallery:hover img {
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .featured-card.has-gallery:hover img { transform: none; }
}
.featured-media .photo-count {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  margin: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.28rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-card .card-body {
  flex: 1;
}
.featured-card .eyebrow {
  margin-bottom: 0.65rem;
  color: var(--white);
}
.featured-card h3 {
  font-size: 1.55rem;
}
.featured-card .card-body > p:not(.eyebrow):not(.featured-client) {
  color: var(--muted);
}
.featured-client {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}
.repeat-block {
  margin-top: 3.2rem;
}
.client-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.client-pill {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1rem 1.1rem;
}
.client-pill strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.1rem;
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.client-pill span {
  color: var(--muted);
  font-size: 0.95rem;
}

.refs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.ref {
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
  background: var(--white);
}
.ref strong { display: block; }
.ref span { color: var(--muted); font-size: 0.92rem; }

.form {
  display: grid;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form label { font-size: 0.86rem; font-weight: 600; display: grid; gap: 0.35rem; }
.form textarea { min-height: 8rem; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-note { color: var(--muted); font-size: 0.9rem; }
.form-status {
  padding: 0.8rem 1rem;
  display: none;
}
.form-status.ok { display: block; background: #e8f4ea; color: #1b5e20; }
.form-status.err { display: block; background: #fdecea; color: #8e161b; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}
.details-card {
  background: var(--ink);
  color: #ece8e1;
  padding: 1.8rem;
}
.details-card h2 { color: var(--white); }
.details-card a { color: #fff; }
.details-card p { color: #c9c4bb; }
.map {
  width: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(0.3);
}

.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 2.8rem 0;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0; }
.cta-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.site-footer {
  background: #111214;
  color: #b7b3ab;
  padding: 3rem 0 1.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-brand p {
  max-width: 34rem;
}
.footer-lockup {
  position: relative;
  display: block;
  width: 158px;
  height: 34px;
  overflow: hidden;
  margin: 0 0 1.15rem;
}
.footer-lockup img {
  position: absolute;
  left: 0;
  top: -6px;
  width: 168px;
  height: auto;
  max-width: none;
  -webkit-clip-path: polygon(7.3% 10.9%, 98.6% 10.9%, 92.7% 67.3%, 1.05% 67.3%);
  clip-path: polygon(7.3% 10.9%, 98.6% 10.9%, 92.7% 67.3%, 1.05% 67.3%);
}
.footer-lockup:hover,
.footer-lockup:focus-visible {
  text-decoration: none;
  opacity: 0.88;
}
.site-footer h3 {
  color: var(--white);
  font-size: 1.15rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin: 0.4rem 0; }
.site-footer a { color: #ece8e1; }
.footer-base {
  border-top: 1px solid #2a2c31;
  padding-top: 1rem;
  font-size: 0.88rem;
}

.wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  background: #128c7e;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.wa:hover { color: var(--white); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,12,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 90vh; }

.pgal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 1.2rem;
}
.pgal[hidden] { display: none; }
.pgal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 24, 28, 0.94);
}
.pgal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.pgal-close,
.pgal-nav {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pgal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.pgal-close:hover { background: var(--red-dark); }
.pgal-nav {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--white);
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pgal-prev { left: 0; }
.pgal-next { right: 0; }
.pgal-nav:hover { background: var(--red); color: var(--white); }
.pgal-nav[hidden] { display: none; }
.pgal-figure {
  margin: 0 3rem;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pgal-figure img {
  max-width: 100%;
  max-height: min(68vh, 760px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}
.pgal-figure figcaption {
  width: 100%;
  color: var(--white);
  padding: 1.1rem 0 0.2rem;
}
.pgal-figure .eyebrow {
  color: var(--red);
  margin-bottom: 0.35rem;
}
.pgal-figure h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.25rem;
}
.pgal-figure figcaption p {
  margin: 0;
  color: #c9c3ba;
}
.pgal-index {
  margin-top: 0.45rem !important;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white) !important;
}
.pgal-thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.9rem 3rem 0.2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.pgal-thumbs[hidden] { display: none; }
.pgal-thumbs button {
  flex: 0 0 92px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  background: #2a2c32;
  cursor: pointer;
  scroll-snap-align: start;
  overflow: hidden;
}
.pgal-thumbs button.is-current {
  border-color: var(--red);
}
.pgal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-card.is-photo {
    grid-column: span 2;
  }
}
@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1.2rem 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .has-sub {
    height: auto;
    display: block;
  }
  .nav > a:not(.btn),
  .has-sub > a {
    height: auto;
    min-height: 2.6rem;
  }
  .has-sub .sub { position: static; display: block; border: 0; box-shadow: none; }
  .split, .cards-2, .cards-3, .contact-grid, .footer-grid, .cta-band-inner, .refs, .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-card.is-photo { grid-column: auto; }
  .client-row { grid-template-columns: 1fr 1fr; }
  .retailer-logos { grid-template-columns: 1fr 1fr; }
  .filter-count { margin-left: 0; }
  .cta-band-inner, .stats { display: block; }
  .stat { border-bottom: 1px solid var(--line); }
  .photo-grid, .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .photo-grid a:first-child { grid-row: auto; }
  .list-checks { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-place { margin-left: 0; }
  .pgal { padding: 0.7rem; }
  .pgal-figure { margin: 2.6rem 0 0; }
  .pgal-figure img { max-height: 46vh; }
  .pgal-thumbs { padding: 0.8rem 0 0; }
  .pgal-nav {
    top: auto;
    bottom: 7.2rem;
    width: 2.2rem;
    height: 2.2rem;
  }
  .pgal-prev { left: 0.4rem; }
  .pgal-next { right: 0.4rem; }
}
