:root {
  --ink: #11100f;
  --ink-soft: #2a2927;
  --paper: #f5f1e8;
  --paper-strong: #fffaf0;
  --concrete: #d7d0c3;
  --steel: #65707a;
  --red: #d71920;
  --red-dark: #9f1117;
  --gold: #f2b233;
  --green: #3d5c4a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 14, 12, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.inline-link {
  color: var(--gold);
  font-weight: 900;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--white);
  outline: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 16, 15, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 38px;
  padding: 6px max(24px, calc((100vw - var(--max)) / 2));
  color: #151514;
  background: #9d9b94;
  font-size: 0.82rem;
  border-bottom: 1px solid #7f7d76;
}

.utility-bar strong {
  color: var(--red);
  font-weight: 900;
}

.utility-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
}

.utility-contact a {
  font-weight: 800;
  white-space: nowrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--red);
  background: rgba(215, 25, 32, 0.08);
  font-size: 0.9rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: var(--red);
  transform: translateY(-1px);
  outline: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max);
  min-height: 78px;
  margin: 0 auto;
  padding: 12px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 54px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
}

.brand span {
  max-width: 190px;
  font-size: 0.94rem;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.9rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(215, 25, 32, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.93) 0%, rgba(12, 11, 10, 0.74) 38%, rgba(12, 11, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 11, 10, 0.62), rgba(12, 11, 10, 0.05) 42%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 24px 112px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.25rem;
  line-height: 0.95;
  font-weight: 900;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.28rem;
}

.hero-support {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 38px rgba(215, 25, 32, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(360px, calc(100% - 48px));
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(17, 16, 15, 0.76);
  backdrop-filter: blur(14px);
}

.hero-stat span,
.featured-image span,
.gallery-card span,
.contact-card span,
.proof-item span,
.numbers-panel span,
.approach-list span {
  display: block;
}

.hero-stat span,
.featured-image span,
.gallery-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--max));
  margin: -44px auto 0;
  position: relative;
  z-index: 3;
  padding: 0 24px;
  gap: 1px;
}

.proof-item {
  min-height: 128px;
  padding: 26px;
  background: var(--ink);
  color: var(--white);
  border-top: 4px solid var(--red);
}

.proof-item:nth-child(2) {
  border-top-color: var(--gold);
}

.proof-item:nth-child(3) {
  border-top-color: var(--green);
}

.proof-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 88px 24px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 54px;
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.04;
}

h3,
p {
  margin-top: 0;
}

.intro-grid p,
.section-heading p,
.project-feature-copy p,
.split-copy p,
.contact-section p,
.testimonial-copy p {
  color: #5a554d;
  font-size: 1.06rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
}

.capabilities {
  padding-top: 36px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.capability-card {
  grid-column: span 2;
  min-height: 238px;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper-strong);
  border: 1px solid rgba(17, 16, 15, 0.1);
  box-shadow: 0 16px 38px rgba(17, 16, 15, 0.06);
}

.capability-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.capability-card:nth-last-child(1) {
  grid-column: 4 / span 2;
}

.capability-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
}

.capability-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.capability-card p {
  margin-bottom: 0;
  color: #5d584f;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2)) 36px;
  color: var(--white);
  background: var(--ink);
}

.project-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 0;
}

.project-feature-copy h2 {
  color: var(--white);
}

.project-feature-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.featured-image {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 8px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-image::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 11, 10, 0.76), rgba(12, 11, 10, 0.04) 58%);
}

.featured-image div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
}

.featured-image strong {
  display: block;
  max-width: 620px;
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 290px;
  gap: 16px;
  padding: 24px max(24px, calc((100vw - var(--max)) / 2)) 104px;
  background: var(--ink);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #211f1c;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
}

.gallery-card h3 {
  margin: 8px 0 0;
  font-size: 1.12rem;
  line-height: 1.2;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.split-image {
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-list {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: rgba(17, 16, 15, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.approach-list div {
  padding: 22px;
  background: var(--paper-strong);
}

.approach-list strong {
  display: block;
  margin-bottom: 4px;
}

.approach-list span {
  color: #676158;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
  padding: 86px max(24px, calc((100vw - var(--max)) / 2));
  background: #e6dfd2;
}

.testimonial-copy {
  padding-right: 40px;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1.1;
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--red-dark);
  font-style: normal;
  font-weight: 900;
}

.numbers-panel {
  display: grid;
  gap: 1px;
  background: rgba(17, 16, 15, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.numbers-panel div {
  padding: 26px;
  background: var(--ink);
  color: var(--white);
}

.numbers-panel strong {
  display: block;
  color: var(--gold);
  font-size: 2.1rem;
  line-height: 1;
}

.numbers-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.numbers-panel a {
  color: inherit;
  overflow-wrap: anywhere;
}

.employment-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: 48px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 24px;
}

.employment-copy p {
  max-width: 620px;
  color: #5a554d;
  font-size: 1.06rem;
}

.employment-card {
  max-width: 560px;
  margin-top: 24px;
  padding: 22px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 16px 38px rgba(17, 16, 15, 0.06);
}

.employment-card strong,
.employment-card span {
  display: block;
}

.employment-card strong {
  margin-bottom: 6px;
}

.employment-card span {
  color: #676158;
}

.employment-form {
  align-self: stretch;
}

.employment-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.employment-fields .full-field {
  grid-column: 1 / -1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px 24px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px 13px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: #5c574f;
}

.contact-card img {
  width: 76px;
  margin-bottom: 4px;
}

.contact-card a {
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(280px, 1fr) minmax(220px, 0.7fr);
  align-items: start;
  gap: 36px;
  padding: 44px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 0.9rem;
}

.footer-company {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-company img {
  width: 58px;
  height: 52px;
  object-fit: contain;
  padding: 4px;
  border-radius: 6px;
  background: var(--white);
}

.footer-company strong,
.footer-company span,
.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-company strong {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-company span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact {
  display: grid;
  gap: 6px;
}

.footer-contact span {
  color: var(--white);
  font-weight: 900;
}

.footer-contact a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 25, 32, 0.55);
  border-radius: 50%;
  color: var(--red);
  background: rgba(215, 25, 32, 0.08);
  font-size: 1.1rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
  outline: none;
}

.footer-note {
  color: rgba(255, 255, 255, 0.54);
  text-align: right;
}

.projects-showcase {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2)) 108px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17, 16, 15, 0.98), rgba(17, 16, 15, 0.94)),
    var(--ink);
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.projects-heading h2 {
  color: var(--white);
}

.projects-heading p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.video-break {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: #e6dfd2;
}

.video-break-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
  color: var(--ink);
}

.video-break-heading h2 {
  color: var(--ink);
}

.video-break-heading p {
  margin-bottom: 0;
  color: #5a554d;
  font-size: 1.06rem;
}

.video-break-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.video-break-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 310px;
  gap: 16px;
}

.project-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #211f1c;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.project-card.featured-project {
  grid-column: span 2;
  grid-row: span 2;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 11, 10, 0.86), rgba(12, 11, 10, 0.12) 58%),
    linear-gradient(90deg, rgba(215, 25, 32, 0.28), rgba(242, 178, 51, 0));
  opacity: 0.92;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.045);
}

.project-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.project-count {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 16, 15, 0.76);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.project-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
}

.project-card-copy p {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card-copy h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.featured-project .project-card-copy h3 {
  max-width: 600px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.project-card-copy span {
  display: inline-flex;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 900;
}

.projects-page-hero {
  padding: 94px max(24px, calc((100vw - var(--max)) / 2)) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.9), rgba(12, 11, 10, 0.58)),
    url("./assets/images/precision-promo-poster.jpg") center / cover;
}

.projects-page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 0.96;
}

.projects-page-hero p {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.project-gallery-list {
  display: grid;
  gap: 48px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 82px 24px 96px;
}

.project-gallery-block {
  display: grid;
  gap: 20px;
}

.project-gallery-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 16, 15, 0.16);
  padding-bottom: 16px;
}

.project-gallery-title p {
  margin: 0;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-gallery-title h2 {
  max-width: 760px;
  font-size: 2.55rem;
}

.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-strong);
  border: 1px solid rgba(17, 16, 15, 0.1);
  box-shadow: 0 16px 38px rgba(17, 16, 15, 0.06);
}

.project-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-photo-grid figcaption {
  min-height: 58px;
  padding: 12px 14px;
  color: #514c45;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.projects-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.projects-page-cta h2 {
  color: var(--white);
  font-size: 2.45rem;
}

.project-modal {
  width: min(1180px, calc(100% - 32px));
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
}

.project-modal::backdrop {
  background: rgba(5, 5, 4, 0.78);
  backdrop-filter: blur(10px);
}

.modal-shell {
  position: relative;
  max-height: 92vh;
  overflow: auto;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.modal-close {
  position: sticky;
  top: 16px;
  left: calc(100% - 94px);
  z-index: 5;
  width: 76px;
  height: 42px;
  margin: 16px 16px -58px auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(17, 16, 15, 0.88);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  min-height: 520px;
  background: var(--ink);
  color: var(--white);
}

.case-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.case-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 70px 42px 42px;
}

.case-hero-copy h2 {
  color: var(--white);
}

.case-hero-copy p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(17, 16, 15, 0.12);
}

.case-stats div {
  min-height: 118px;
  padding: 24px;
  background: var(--paper-strong);
}

.case-stats strong,
.case-stats span {
  display: block;
}

.case-stats strong {
  margin-bottom: 8px;
  color: var(--red-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.case-stats span {
  color: #5d584f;
  font-weight: 800;
  line-height: 1.32;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
  padding: 26px;
}

.case-shot {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.case-shot.large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 676px;
}

.case-shot.wide {
  grid-column: span 8;
}

.case-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 11, 10, 0.78), rgba(12, 11, 10, 0.04) 62%);
}

.case-shot figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .utility-bar {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 26px;
    background: rgba(17, 16, 15, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .header-cta {
    width: 100%;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding-top: 86px;
    padding-bottom: 118px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-stat {
    left: 24px;
    right: 24px;
  }

  .proof-band,
  .capability-grid,
  .project-feature,
  .projects-heading,
  .split-section,
  .testimonial-section,
  .employment-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .capability-card,
  .capability-card:nth-last-child(2),
  .capability-card:nth-last-child(1) {
    grid-column: auto;
  }

  .proof-band {
    margin-top: 0;
    padding: 0;
  }

  .proof-item {
    border-top: 0;
    border-left: 4px solid var(--red);
  }

  .proof-item:nth-child(2) {
    border-left-color: var(--gold);
  }

  .proof-item:nth-child(3) {
    border-left-color: var(--green);
  }

  .intro-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  h2 {
    font-size: 2.35rem;
  }

  .gallery-section {
    grid-template-columns: 1fr 1fr;
  }

  .projects-showcase {
    padding-top: 74px;
  }

  .video-break {
    padding-top: 74px;
    padding-bottom: 82px;
  }

  .video-break-heading,
  .project-gallery-title {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .project-index {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 320px;
  }

  .project-card.featured-project {
    grid-column: span 2;
    grid-row: span 1;
  }

  .projects-page-hero {
    padding-top: 82px;
    padding-bottom: 60px;
  }

  .projects-page-hero h1 {
    font-size: 3.35rem;
  }

  .project-gallery-list {
    gap: 42px;
    padding-top: 68px;
    padding-bottom: 78px;
  }

  .project-gallery-title {
    display: grid;
  }

  .project-gallery-title h2 {
    font-size: 2.15rem;
  }

  .project-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-hero,
  .case-stats {
    grid-template-columns: 1fr;
  }

  .case-hero img {
    min-height: 390px;
  }

  .case-hero-copy {
    padding: 34px 28px 32px;
  }

  .case-shot,
  .case-shot.large,
  .case-shot.wide {
    grid-column: span 6;
    min-height: 330px;
    grid-row: auto;
  }

  .testimonial-copy {
    padding-right: 0;
  }

  blockquote {
    font-size: 2rem;
  }

  .contact-section {
    gap: 28px;
  }

  .employment-section {
    gap: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    padding-inline: 16px;
  }

  .brand span {
    max-width: 150px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 84svh;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(12, 11, 10, 0.74) 0%, rgba(12, 11, 10, 0.46) 48%, rgba(12, 11, 10, 0.1) 100%),
      linear-gradient(0deg, rgba(12, 11, 10, 0.42), rgba(12, 11, 10, 0.03) 48%);
  }

  .hero-content {
    padding: 58px 18px 132px;
    text-shadow: 0 2px 18px rgba(12, 11, 10, 0.58);
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-support {
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 44px;
    font-size: 0.92rem;
  }

  .hero-stat {
    bottom: 16px;
    padding: 12px 14px;
    background: rgba(17, 16, 15, 0.52);
  }

  .hero-stat strong {
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .section,
  .employment-section,
  .contact-section {
    padding: 64px 18px;
  }

  .employment-fields {
    grid-template-columns: 1fr;
  }

  .project-feature {
    padding: 64px 18px 28px;
  }

  .featured-image {
    min-height: 360px;
  }

  .featured-image strong {
    font-size: 1.34rem;
  }

  .gallery-section {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
    padding: 18px 18px 70px;
  }

  .projects-showcase {
    padding: 64px 18px 70px;
  }

  .video-break {
    padding: 64px 18px 70px;
  }

  .video-break-heading {
    display: block;
    margin-bottom: 22px;
  }

  .video-break-heading h2 {
    margin-top: 8px;
    font-size: 2.06rem;
  }

  .video-break-heading p {
    margin-top: 12px;
    font-size: 0.96rem;
  }

  .project-index {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .project-card.featured-project {
    grid-column: auto;
  }

  .featured-project .project-card-copy h3 {
    font-size: 1.7rem;
  }

  .projects-page-hero {
    padding: 70px 18px 50px;
  }

  .projects-page-hero h1 {
    font-size: 2.52rem;
  }

  .projects-page-hero p {
    font-size: 0.98rem;
  }

  .project-gallery-list {
    gap: 38px;
    padding: 54px 18px 70px;
  }

  .project-gallery-title {
    display: block;
    padding-bottom: 12px;
  }

  .project-gallery-title h2 {
    margin-top: 8px;
    font-size: 1.82rem;
  }

  .project-photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-photo-grid figcaption {
    min-height: 0;
  }

  .projects-page-cta {
    padding: 58px 18px 64px;
  }

  .projects-page-cta h2 {
    font-size: 1.9rem;
  }

  .project-modal {
    width: calc(100% - 18px);
    max-height: 94vh;
  }

  .modal-shell {
    max-height: 94vh;
  }

  .modal-close {
    top: 10px;
    margin-top: 10px;
    margin-right: 10px;
  }

  .case-hero {
    min-height: 0;
  }

  .case-hero img {
    min-height: 300px;
  }

  .case-hero-copy {
    padding: 28px 20px 26px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .case-shot,
  .case-shot.large,
  .case-shot.wide {
    grid-column: auto;
    min-height: 300px;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .capability-card {
    min-height: 0;
  }

  .split-image {
    height: 360px;
  }

  .testimonial-section {
    padding: 64px 18px;
  }

  blockquote {
    font-size: 1.62rem;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }
}
