/* ============================================================
   Dunsmore Services, LLC — vintage hand-bill design system
   Navy + oxide two-ink print on cream paper stock
   ============================================================ */

:root {
  --navy: #1F3A5C;
  --navy-deep: #14273F;
  --paper: #F1EEE6;
  --paper-warm: #E9E3D4;
  --paper-bright: #FAF8F1;
  --oxide: #A63A2B;
  --oxide-deep: #8C2F22;
  --line: rgba(31, 58, 92, 0.18);
  --line-strong: rgba(31, 58, 92, 0.35);
  --ink-soft: rgba(31, 58, 92, 0.78);

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-label: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Yellowtail", "Brush Script MT", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--paper);
}
h1, h2, h3, p { margin: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--navy); color: var(--paper); }

:focus-visible {
  outline: 3px solid var(--oxide);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Paper grain over everything, like the flyer's textured stock */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--oxide);
  color: var(--paper-bright);
  box-shadow: 4px 4px 0 var(--navy);
}
.btn-primary:hover {
  background: var(--oxide-deep);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--navy);
}
.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--navy);
}

.btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-ghost:hover { background: var(--navy); color: var(--paper); }

.btn-block { width: 100%; justify-content: center; }

.nav-call {
  font-family: var(--font-script);
  font-size: 1.3rem;
  line-height: 1;
  color: var(--oxide);
  text-decoration: none;
  white-space: nowrap;
}
.nav-call:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* ---------- Top ticker bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: var(--paper);
  padding: 0.45rem 1rem;
}
.topbar-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar .star { font-size: 0.7em; opacity: 0.55; letter-spacing: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--navy);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  flex: none;
}
.brand-chip svg { width: 20px; height: 20px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 2px;
}
.brand-name em {
  font-family: var(--font-script);
  font-style: normal;
  text-transform: none;
  font-size: 1.05em;
  color: var(--oxide);
  margin-left: 0.18rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}
.nav-links > a:not(.btn):not(.nav-call) {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links > a:not(.btn):not(.nav-call):hover { border-bottom-color: var(--oxide); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 2px solid var(--navy);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
}

/* ---------- Hero: the framed poster ---------- */
.hero { padding: clamp(0.9rem, 2.5vw, 1.75rem); }

.hero-frame {
  position: relative;
  border: 2px solid var(--navy);
  overflow: hidden;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--navy);
  pointer-events: none;
  z-index: 2;
}

.hero-poster {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 3rem) clamp(4.5rem, 9vw, 7rem);
  text-align: center;
}

.crest {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.1rem, 2.5vw, 1.7rem);
}
.crest img {
  width: clamp(200px, 27vw, 275px);
  height: auto;
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  color: var(--oxide);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.45rem, 8.6vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0.012em;
}
.hero-line {
  display: block;
  /* two-ink misregistration: the second color slightly off-register */
  text-shadow: 0.038em 0.038em 0 var(--oxide);
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: clamp(0.7rem, 1.8vw, 1.2rem) auto;
}
.hero-rule i {
  display: block;
  width: clamp(60px, 12vw, 130px);
  height: 1px;
  background: var(--navy);
}
.hero-rule b {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  color: var(--oxide);
  line-height: 1;
}

.hero-sub {
  max-width: 620px;
  margin: clamp(1.4rem, 3vw, 2rem) auto 0;
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
}

.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(60px, 9vw, 110px);
  color: var(--navy);
  opacity: 0.08;
  z-index: 1;
}

/* ---------- Services board ---------- */
.services {
  background: var(--paper-warm);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6rem);
}

.ribbon-wrap { display: flex; justify-content: center; }
.ribbon {
  position: relative;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: rotate(-1.4deg);
}
.ribbon span {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: var(--navy);
  color: var(--paper);
  padding: 0.7rem 2.6rem 0.75rem;
}
/* notched ribbon tails */
.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 9px;
  width: 2.4rem;
  height: 100%;
  background: var(--navy-deep);
  z-index: 1;
}
.ribbon::before {
  left: -1.7rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 38% 50%);
}
.ribbon::after {
  right: -1.7rem;
  clip-path: polygon(0 0, 100% 0, 62% 50%, 100% 100%, 0 100%);
}

.services-intro {
  max-width: 520px;
  margin: 1.8rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.board {
  max-width: 1060px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(var(--line), var(--line)) center top / 1px 100% no-repeat;
}

.board-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.15rem;
  padding: 1.3rem 0.25rem;
  border-bottom: 1px solid var(--line);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  flex: none;
}
.chip svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.board-copy h3 {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.25;
}
.board-copy p {
  margin-top: 0.2rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- Recent work ---------- */
.work {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem);
}
.work-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.work-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  color: var(--oxide);
}
.work-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.015em;
  margin-top: 0.2rem;
}

.gallery {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot {
  position: relative;
  margin: 0;
  border: 2px solid var(--navy);
  background: #fff;
  box-shadow: 6px 6px 0 rgba(31, 58, 92, 0.14);
}
.shot img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}
.shot-feature { grid-column: span 2; grid-row: span 2; }
.shot-feature img { aspect-ratio: 1 / 1; }
.shot figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: var(--navy);
  color: var(--paper);
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  pointer-events: none;
}

/* ---------- Job log: before & after ---------- */
.joblog { max-width: 1100px; margin: clamp(3rem, 6vw, 4.5rem) auto 0; }
.joblog-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: 0.015em;
  text-align: center;
}
.joblog-intro {
  max-width: 520px;
  margin: 0.8rem auto 2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.job {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  padding: 1.6rem 0.25rem;
  border-top: 1px solid var(--line);
}
.job:last-child { border-bottom: 1px solid var(--line); }
.job-head h4 {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin: 0;
}
.job-head p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.job-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}
.jshot { position: relative; flex: none; margin: 0; }
.jshot img {
  display: block;
  height: clamp(130px, 15vw, 175px);
  width: auto;
  border: 1.5px solid var(--navy);
  cursor: zoom-in;
}
.tag {
  position: absolute;
  top: 7px;
  left: 7px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 8px 3px;
  color: var(--paper-bright);
  pointer-events: none;
}
.tag-before { background: var(--oxide); }
.tag-during { background: rgba(31, 58, 92, 0.62); }
.tag-after  { background: var(--navy); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 39, 63, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 4.5rem;
}
.lightbox[hidden] { display: none; }
.lb-stage { margin: 0; text-align: center; max-width: 100%; }
.lb-stage img {
  max-width: min(88vw, 1100px);
  max-height: 80vh;
  width: auto;
  height: auto;
  border: 2px solid var(--paper);
  background: var(--paper);
}
.lb-stage figcaption {
  margin-top: 0.8rem;
  color: rgba(241, 238, 230, 0.85);
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}
.lb-btn {
  position: absolute;
  background: none;
  border: 2px solid rgba(241, 238, 230, 0.4);
  color: var(--paper);
  font-size: 1.6rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-btn:hover { border-color: var(--paper); background: rgba(241, 238, 230, 0.12); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ---------- Navy band: how we work ---------- */
.band {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem);
}
.band-inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}
.band-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  color: rgba(241, 238, 230, 0.85);
}
.band-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: 0.015em;
  margin-top: 0.4rem;
}
.band-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  text-align: center;
}
.band-num {
  display: block;
  font-size: 0.85rem;
  color: rgba(241, 238, 230, 0.5);
  margin-bottom: 0.8rem;
}
.band-col h3 {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.band-col p {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(241, 238, 230, 0.75);
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
}
.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  color: var(--oxide);
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.1rem);
  letter-spacing: 0.012em;
  margin-top: 0.2rem;
}
.contact-lede {
  max-width: 460px;
  margin-top: 1rem;
  color: var(--ink-soft);
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.8rem;
  max-width: 460px;
}
.ccard {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1.2rem;
  border: 1.5px solid var(--line-strong);
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
a.ccard:hover { border-color: var(--navy); background: var(--paper-bright); }
.ccard-label {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(31, 58, 92, 0.6);
}
.ccard-value {
  font-weight: 600;
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.estimate {
  background: var(--paper-bright);
  border: 2px solid var(--navy);
  box-shadow: 8px 8px 0 rgba(31, 58, 92, 0.16);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.estimate-title {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 0;
  padding: 0.7rem 0.85rem;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 1px var(--navy);
}
.estimate-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(31, 58, 92, 0.6);
  text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: var(--paper);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: grid; gap: 0.3rem; justify-items: start; }
.footer-logo {
  width: 132px;
  height: auto;
  margin-bottom: 0.7rem;
}
.footer-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}
.footer-tag {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: rgba(241, 238, 230, 0.8);
}
.footer-contact {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
  font-size: 0.98rem;
}
.footer-contact a {
  text-decoration-color: rgba(241, 238, 230, 0.4);
  text-underline-offset: 4px;
}
.footer-contact a:hover { text-decoration-color: var(--paper); }
.footer-contact p { color: rgba(241, 238, 230, 0.65); font-size: 0.88rem; }

.footer-rule {
  border-top: 1px solid rgba(241, 238, 230, 0.18);
  padding: 1.1rem 1.25rem;
  text-align: center;
}
.footer-rule p {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 238, 230, 0.55);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1079px) and (min-width: 861px) {
  .nav-call-lead { display: none; }
}

@media (max-width: 900px) {
  .band-cols { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-lede, .contact-cards { max-width: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--navy);
    padding: 0.5rem 1.25rem 1.25rem;
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links > a:not(.btn):not(.nav-call) {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links .nav-call {
    display: block;
    margin-top: 1.1rem;
    text-align: center;
    font-size: 1.6rem;
  }

  .board {
    grid-template-columns: 1fr;
    background: none;
  }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .job { grid-template-columns: 1fr; gap: 1rem; }
  .lightbox { padding: 3.5rem 0.75rem 4.5rem; }
  .lb-prev { left: auto; right: 76px; top: auto; bottom: 14px; transform: none; }
  .lb-next { right: 14px; top: auto; bottom: 14px; transform: none; }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .shot-feature { grid-column: span 2; grid-row: span 1; }
  .shot-feature img { aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .topbar-line span:nth-child(n+4) { display: none; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
