:root {
  --paper: #f3f4f1;
  --ink: #14161a;
  --ink-soft: #565a54;
  --line: #dbdcd6;
  --rec: #d6331f;
  --rec-dim: rgba(214, 51, 31, 0.1);
  --panel: #eceee9;

  --display: ui-serif, "New York", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #121312;
    --ink: #ecede7;
    --ink-soft: #9a9d93;
    --line: #2a2c27;
    --rec: #ff5b3d;
    --rec-dim: rgba(255, 91, 61, 0.14);
    --panel: #191b18;
  }
}
:root[data-theme="dark"] {
  --paper: #121312;
  --ink: #ecede7;
  --ink-soft: #9a9d93;
  --line: #2a2c27;
  --rec: #ff5b3d;
  --rec-dim: rgba(255, 91, 61, 0.14);
  --panel: #191b18;
}
:root[data-theme="light"] {
  --paper: #f3f4f1;
  --ink: #14161a;
  --ink-soft: #565a54;
  --line: #dbdcd6;
  --rec: #d6331f;
  --rec-dim: rgba(214, 51, 31, 0.1);
  --panel: #eceee9;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body {
  overflow-x: hidden;
  padding-top: 66px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.email-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.email-bar-inner {
  display: flex;
  justify-content: flex-end;
}
.email-bar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
@media (prefers-reduced-motion: no-preference) {
  .email-bar a { transition: color 0.15s ease; }
}
.email-bar a:hover { color: var(--rec); }
.email-bar a:focus-visible { outline: 2px solid var(--rec); outline-offset: -2px; }
.page-content { flex: 1 0 auto; }
.footer-shell { flex: 0 0 auto; margin-top: auto; }

a { color: inherit; }

.corner {
  position: fixed;
  width: 22px;
  height: 22px;
  z-index: 55;
  pointer-events: none;
  opacity: 0.55;
}
.corner::before, .corner::after {
  content: "";
  position: absolute;
  background: var(--ink-soft);
}
.corner::before { width: 100%; height: 1px; }
.corner::after { width: 1px; height: 100%; }
.corner.tl { top: 14px; left: 14px; }
.corner.tr { top: 14px; right: 14px; }
.corner.bl { bottom: 14px; left: 14px; }
.corner.br { bottom: 14px; right: 14px; }
.corner.tl::before, .corner.tl::after { top: 0; left: 0; }
.corner.tr::before { top: 0; right: 0; }
.corner.tr::after { top: 0; right: 0; }
.corner.bl::before { bottom: 0; left: 0; }
.corner.bl::after { bottom: 0; left: 0; }
.corner.br::before { bottom: 0; right: 0; }
.corner.br::after { bottom: 0; right: 0; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

h1, h2, h3 { font-family: var(--display); font-weight: 500; margin: 0; text-wrap: balance; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
.shotlist .shot:nth-child(2) { transition-delay: 0.08s; }
.shotlist .shot:nth-child(3) { transition-delay: 0.16s; }
.process-row .step:nth-child(2) { transition-delay: 0.08s; }
.process-row .step:nth-child(3) { transition-delay: 0.16s; }
.process-row .step:nth-child(4) { transition-delay: 0.24s; }
.crew-row .crew-col:nth-child(2) { transition-delay: 0.08s; }
.crew-row .crew-col:nth-child(3) { transition-delay: 0.16s; }

/* nav */
nav.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
}
.mark {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-trigger {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 6px;
  margin: -6px;
  cursor: pointer;
  border-radius: 2px;
}
.menu-trigger:focus-visible { outline: 2px solid var(--rec); outline-offset: 2px; }
.mark .bars { display: flex; flex-direction: column; gap: 3px; }
.mark .bars span { display: block; height: 2px; background: var(--ink); transition: background-color 0.15s ease; }
.mark .bars span:nth-child(1) { width: 18px; }
.mark .bars span:nth-child(2) { width: 13px; }
.mark .bars span:nth-child(3) { width: 9px; }
.menu-trigger:hover .bars span, .menu-trigger[aria-expanded="true"] .bars span { background: var(--rec); }
.wordmark {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.02em;
}
.navlinks {
  position: absolute;
  top: calc(100% + 16px);
  left: -6px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  min-width: 190px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
}
.navlinks.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .navlinks { transition: none; }
}
.navlinks a {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 11px 20px;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}
.navlinks a:hover, .navlinks a:focus-visible { color: var(--ink); border-color: var(--rec); background: var(--rec-dim); }
.navlinks a:focus-visible { outline: none; }
.navlinks a[aria-current="page"] { color: var(--ink); border-color: var(--rec); }

.navlinks-inline {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navlinks-inline a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: color 0.15s, border-color 0.15s;
}
.navlinks-inline a:hover, .navlinks-inline a:focus-visible { color: var(--ink); border-color: var(--ink-soft); }
.navlinks-inline a:focus-visible { outline: 2px solid var(--rec); outline-offset: 3px; }
.navlinks-inline a[aria-current="page"] { color: var(--ink); border-color: var(--rec); }

/* hero */
.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  flex: 1 0 auto;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.1) 0%, rgba(8, 9, 8, 0.08) 35%, rgba(8, 9, 8, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 9, 8, 0.6) 0%, rgba(8, 9, 8, 0.15) 60%);
}
.hero-corner { position: absolute; width: 22px; height: 22px; z-index: 3; pointer-events: none; }
.hero-corner::before, .hero-corner::after { content: ""; position: absolute; background: rgba(245, 245, 240, 0.7); }
.hero-corner::before { width: 100%; height: 1px; }
.hero-corner::after { width: 1px; height: 100%; }
.hc-tl { top: 24px; left: 48px; } .hc-tl::before, .hc-tl::after { top: 0; left: 0; }
.hc-tr { top: 24px; right: 48px; } .hc-tr::before { top: 0; right: 0; } .hc-tr::after { top: 0; right: 0; }
.hc-bl { bottom: 24px; left: 48px; } .hc-bl::before { bottom: 0; left: 0; } .hc-bl::after { bottom: 0; left: 0; }
.hc-br { bottom: 24px; right: 48px; } .hc-br::before { bottom: 0; right: 0; } .hc-br::after { bottom: 0; right: 0; }
.hero-watermark {
  position: absolute;
  bottom: 24px;
  right: 48px;
  z-index: 3;
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 242, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content .label,
.hero-content .headline {
  color: #f5f5f2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.hero-content .sub {
  color: rgba(245, 245, 242, 0.82);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.hero-content .btn.ghost {
  border-color: rgba(245, 245, 242, 0.5);
  color: #f5f5f2;
}
.hero-content .btn.ghost:hover { border-color: #f5f5f2; }
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rec);
  flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .dot.live { animation: pulse 1.6s ease-in-out infinite; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

h1.headline { font-size: 52px; line-height: 1.08; letter-spacing: -0.01em; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.rotator {
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
  vertical-align: bottom;
  position: relative;
  color: var(--rec);
}
.rotator-track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rotator-word {
  display: block;
  height: 1.2em;
  line-height: 1.2;
  white-space: nowrap;
}
.hero p.sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 26px 0 34px;
}
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 2px;
  border: none;
  display: inline-block;
  cursor: pointer;
}
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.ghost { border: 1px solid var(--line); color: var(--ink); }
.btn:focus-visible { outline: 2px solid var(--rec); outline-offset: 2px; }
@media (prefers-reduced-motion: no-preference) {
  .btn { transition: opacity 0.15s ease; }
  .btn:hover { opacity: 0.75; }
}

.viewfinder {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.vf-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.vf-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 9, 8, 0.6) 0%, rgba(8, 9, 8, 0.1) 30%, rgba(8, 9, 8, 0.1) 65%, rgba(8, 9, 8, 0.62) 100%);
}
.viewfinder .vf-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 2;
}
.viewfinder .vf-corner::before, .viewfinder .vf-corner::after { content: ""; position: absolute; background: rgba(245, 245, 240, 0.85); }
.viewfinder .vf-corner::before { width: 100%; height: 1px; }
.viewfinder .vf-corner::after { width: 1px; height: 100%; }
.vf-tl { top: 0; left: 0; } .vf-tl::before, .vf-tl::after { top: 0; left: 0; }
.vf-tr { top: 0; right: 0; } .vf-tr::before { top: 0; right: 0; } .vf-tr::after { top: 0; right: 0; }
.vf-bl { bottom: 0; left: 0; } .vf-bl::before { bottom: 0; left: 0; } .vf-bl::after { bottom: 0; left: 0; }
.vf-br { bottom: 0; right: 0; } .vf-br::before { bottom: 0; right: 0; } .vf-br::after { bottom: 0; right: 0; }
.vf-center, .vf-bottom { position: relative; z-index: 2; color: #f5f5f2; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); }
.vf-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.vf-center .tc { font-size: 26px; }
.vf-center .caption { margin-top: 8px; color: rgba(245, 245, 242, 0.8); }
.vf-bottom { display: flex; justify-content: space-between; font-size: 11px; }

hr.rule { border: none; border-top: 1px solid var(--line); margin: 0; }

section { padding: 96px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: 32px; }

/* shot list */
.shot {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 26px 48px;
  margin: 0 -48px;
  border-top: 1px solid var(--line);
}
.shotlist .shot:last-child { border-bottom: 1px solid var(--line); }
.shot .num { font-family: var(--mono); font-size: 13px; color: var(--ink-soft); }
.shot h3 { font-size: 21px; margin-bottom: 6px; }
.shot p { margin: 0; color: var(--ink-soft); font-size: 15px; max-width: 52ch; line-height: 1.55; }
@media (prefers-reduced-motion: no-preference) {
  .shot { transition: background-color 0.2s ease; }
  .shot .num { transition: color 0.2s ease; }
}
.shot:hover { background-color: var(--rec-dim); }
.shot:hover .num { color: var(--rec); }
.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rec);
  border: 1px solid var(--rec);
  background: var(--rec-dim);
  padding: 4px 8px;
  border-radius: 2px;
  white-space: nowrap;
  align-self: start;
}

/* process */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step { padding: 0 22px; position: relative; }
.step:first-child { padding-left: 0; }
.step:not(:first-child) { border-left: 1px solid var(--line); }
.step .tc { display: block; margin-bottom: 18px; color: var(--ink-soft); font-size: 12px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
@media (prefers-reduced-motion: no-preference) {
  .step .tc { transition: color 0.2s ease; }
}
.step:hover .tc { color: var(--rec); }

/* crew */
.crew-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.crew-col { border-top: 1px solid var(--ink); padding-top: 20px; }
.crew-col .label { display: block; margin-bottom: 14px; }
.crew-col h3 { font-size: 19px; margin-bottom: 10px; }
.crew-col p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
@media (prefers-reduced-motion: no-preference) {
  .crew-col { transition: border-top-color 0.2s ease; }
  .crew-col .label { transition: color 0.2s ease; }
}
.crew-col:hover { border-top-color: var(--rec); }
.crew-col:hover .label { color: var(--rec); }
.crew-note {
  margin-top: 44px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.6;
}

footer {
  padding: 80px 0 60px;
  border-top: 1px solid var(--line);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
footer h2 { font-size: 34px; margin-bottom: 22px; }
.foot-lede { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; max-width: 42ch; }
.foot-lede a { text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
@media (prefers-reduced-motion: no-preference) {
  .foot-lede a { transition: color 0.15s, text-decoration-color 0.15s; }
}
.foot-lede a:hover { color: var(--rec); text-decoration-color: var(--rec); }

.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.inquiry-form label { display: flex; flex-direction: column; gap: 7px; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 9px 2px;
  resize: vertical;
}
.inquiry-form textarea { min-height: 84px; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-bottom-color: var(--rec);
}
@media (prefers-reduced-motion: no-preference) {
  .inquiry-form input, .inquiry-form select, .inquiry-form textarea {
    transition: border-bottom-color 0.15s ease;
  }
}
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; width: 100%; padding-right: 20px; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--ink-soft);
  pointer-events: none;
}
.inquiry-form .btn { align-self: flex-start; border: none; cursor: pointer; }
.form-status { min-height: 1em; margin: -8px 0 0; font-size: 12px; font-family: var(--mono); letter-spacing: 0.06em; color: var(--ink-soft); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.foot-bottom .mono { font-size: 11px; }

/* persistent small footer (non-contact pages) */
.mini-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.mini-footer .mono { font-size: 11px; }

/* page header (non-hero pages) */
.page-head {
  padding: 64px 0 0;
}
.page-head .label { display: block; margin-bottom: 16px; }
.page-head h1 { font-size: 44px; line-height: 1.1; letter-spacing: -0.01em; }
@media (max-width: 860px) {
  .page-head h1 { font-size: 34px; }
}

/* page hero (image-backed page header, e.g. Portfolio) */
.page-hero {
  position: relative;
  min-height: 42vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 8, 0.25) 0%, rgba(8, 9, 8, 0.18) 30%, rgba(8, 9, 8, 0.6) 65%, rgba(8, 9, 8, 0.9) 100%),
    linear-gradient(90deg, rgba(8, 9, 8, 0.72) 0%, rgba(8, 9, 8, 0.25) 60%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .page-head { padding-top: 0; }
.page-hero .page-head .label,
.page-hero .page-head h1 {
  color: #f5f5f2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
@media (max-width: 860px) {
  .page-hero { min-height: 32vh; padding-bottom: 32px; }
}

/* inquiry modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 9, 8, 0.55);
  opacity: 0;
  visibility: hidden;
}
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
@media (prefers-reduced-motion: no-preference) {
  .modal-backdrop {
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .modal-backdrop.is-open { transition: opacity 0.3s ease; }
}
.modal-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
}
.modal-sheet.is-open { transform: translateY(0); }
@media (prefers-reduced-motion: no-preference) {
  .modal-sheet { transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1); }
}
.modal-inner { padding: 14px 48px 48px; }
.modal-grabber {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  margin: 0 auto 22px;
}
.modal-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-sheet-head h2 { font-size: 24px; }
.modal-close {
  background: none;
  border: none;
  padding: 6px;
  margin: -6px;
  font-size: 24px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.modal-close:hover { color: var(--rec); }
.modal-close:focus-visible { outline: 2px solid var(--rec); outline-offset: 2px; }
body.modal-open { overflow: hidden; }

@media (max-width: 860px) {
  .wrap { padding: 0 22px; }
  .nav-inner { padding: 16px 22px; }
  body { padding-top: 58px; }
  .hero { min-height: 62vh; padding-bottom: 40px; }
  .hc-tl, .hc-tr { top: 16px; }
  .hc-bl, .hc-br { bottom: 16px; }
  .hc-tl, .hc-bl { left: 22px; }
  .hc-tr, .hc-br { right: 22px; }
  .hero-watermark { bottom: 16px; right: 22px; }
  h1.headline { font-size: 38px; }
  .process-row, .crew-row { grid-template-columns: 1fr; }
  .step, .crew-col { border-left: none !important; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .step:first-child, .crew-col:first-child { border-top: none; padding-top: 0; }
  .foot-top { grid-template-columns: 1fr; gap: 40px; }
  .corner { display: none; }
  .modal-inner { padding: 14px 22px 32px; }
  .shot { padding: 22px; margin: 0 -22px; grid-template-columns: 1fr; gap: 8px; }
  .shot .tag { margin-top: 4px; align-self: start; }
  .mini-footer { flex-direction: column; align-items: flex-start; gap: 6px; }
  .inquiry-form { gap: 14px; }
  .inquiry-form textarea { min-height: 64px; }
  .email-bar-inner { justify-content: center; }
  .navlinks-inline { display: none; }
}
