:root {
  --ink: #17191c;
  --muted: #666d75;
  --line: #d7d9dc;
  --paper: #f3f2ee;
  --panel: #ffffff;
  --accent: #6f746d;
  --accent-dark: #3f4642;
  --soft: #e7e5df;
  --frame: rgba(22, 25, 31, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

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.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

a:focus-visible {
  outline: 2px solid rgba(63, 70, 66, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 9px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(22, 25, 31, 0.12);
  background: rgba(243, 242, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.25;
}

.nav {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav a,
.footer a {
  border-radius: 999px;
  padding: 6px 10px;
}

.nav a:hover,
.footer a:hover {
  background: var(--soft);
  color: var(--ink);
}

main {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
  min-height: 0;
  padding: clamp(34px, 5vw, 58px) 0 34px;
}

.intro-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 10px;
  font-size: clamp(2.25rem, 4.8vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3.2vw, 3.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 7px;
  font-size: 0.96rem;
  line-height: 1.2;
}

.intro-copy > p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
}

.quick-details {
  border-top: 1px solid rgba(23, 25, 28, 0.45);
  border-bottom: 1px solid rgba(23, 25, 28, 0.45);
  padding: 6px 0;
}

.quick-details dl {
  margin: 0;
}

.quick-details div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.quick-details div:first-child {
  border-top: 0;
}

dt {
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--muted);
}

.featured-work,
.asset-study {
  padding: clamp(38px, 5vw, 56px) 0;
  border-top: 1px solid rgba(22, 25, 31, 0.14);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}

.project-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--frame);
  border-radius: 6px;
  background: #111;
}

.project-figure img {
  aspect-ratio: 1601 / 646;
  object-fit: cover;
  object-position: center;
}

.collection-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--frame);
  border-radius: 6px;
  background: #3a9a73;
}

.collection-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 36%;
}

.environment-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--frame);
  border-radius: 6px;
  background: #1b1920;
}

.environment-figure img {
  aspect-ratio: 1920 / 922;
  object-fit: cover;
  object-position: center;
}

.helicopter-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--frame);
  border-radius: 6px;
  background: #1d2226;
}

.helicopter-figure img {
  aspect-ratio: 1080 / 643;
  object-fit: cover;
  object-position: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: 18px;
  background: transparent;
  border: 0;
}

.project-summary {
  min-height: 100%;
  padding: 12px 0 0;
  border-top: 1px solid rgba(23, 25, 28, 0.18);
  background: transparent;
}

.project-summary p,
.project-summary li,
.asset-copy p {
  color: var(--muted);
}

.project-summary p,
.asset-copy p,
dd {
  max-width: 62ch;
}

ul {
  margin: 0;
  padding-left: 18px;
}

li + li {
  margin-top: 4px;
}

.asset-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 0.74fr);
  gap: 1px;
  align-items: stretch;
  background: var(--line);
  border: 1px solid var(--frame);
  border-radius: 6px;
  overflow: hidden;
}

.asset-render {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 520px;
  background: linear-gradient(180deg, #d4d5d6 0%, #a7a8aa 100%);
  overflow: hidden;
}

.asset-render img {
  height: min(88vh, 900px);
  max-height: 100%;
  width: 118%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 70%;
}

.asset-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 44px);
  background: var(--panel);
}

.asset-kicker {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.8vw, 2.55rem);
  line-height: 1;
  letter-spacing: 0;
}

.view-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  gap: 1px;
  margin-top: 1px;
  border: 1px solid var(--frame);
  border-radius: 6px;
  background: var(--line);
  overflow: hidden;
}

.view-grid figure {
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
  margin: 0;
  min-width: 0;
  background: #1e1f21;
  overflow: hidden;
}

.view-grid img {
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.view-side img {
  width: 116%;
  max-width: none;
  object-position: 51% 58%;
}

.view-front img {
  width: 132%;
  max-width: none;
  object-position: 50% 56%;
}

.view-top img {
  width: 132%;
  max-width: none;
  object-position: 49% 56%;
}

.view-base img {
  width: 100%;
  max-width: none;
  object-fit: contain;
  object-position: 50% 50%;
  background: #1e1f21;
}

.view-grid figcaption {
  padding: 8px 10px;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.78rem;
}

.project-grid.compact {
  margin-top: 16px;
}

.helicopter-process {
  display: grid;
  grid-template-columns: 1.2fr 1.25fr 1fr;
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--frame);
  border-radius: 6px;
  background: var(--line);
  overflow: hidden;
}

.helicopter-process figure {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  margin: 0;
  min-width: 0;
  background: #303234;
  overflow: hidden;
}

.helicopter-process img {
  height: 100%;
  object-fit: cover;
}

.helicopter-process figcaption {
  padding: 8px 10px;
  color: var(--muted);
  background: var(--panel);
  font-size: 0.78rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(22, 25, 31, 0.18);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer-meta {
  align-self: end;
  text-align: right;
}

.footer strong,
.footer span,
.footer p a {
  display: block;
}

.footer p a {
  width: max-content;
  margin-left: -10px;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .intro,
  .section-heading,
  .project-grid,
  .asset-hero,
  .view-grid,
  .helicopter-process {
    grid-template-columns: 1fr;
  }

  .asset-render {
    min-height: auto;
  }

  .asset-render img {
    height: auto;
    width: 118%;
    max-height: 760px;
  }

  .intro {
    min-height: auto;
    padding-top: 30px;
  }

  .section-heading {
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .footer {
    flex-direction: column;
  }

  .footer-meta {
    align-self: start;
    text-align: left;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .quick-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .featured-work,
  .asset-study {
    padding: 34px 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .view-grid figure {
    grid-template-rows: minmax(240px, 1fr) auto;
  }

  .helicopter-process figure {
    grid-template-rows: minmax(220px, 1fr) auto;
  }
}

@media print {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    position: static;
  }

  main,
  .footer {
    width: 100%;
  }

  .featured-work,
  .asset-study,
  .section-heading,
  .project-grid,
  .project-summary,
  figure {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .helicopter-process {
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .helicopter-process figure {
    grid-template-rows: auto auto;
    border: 1px solid var(--frame);
    border-radius: 6px;
  }

  .helicopter-process img {
    height: auto;
    max-height: 4.25in;
    object-fit: contain;
    background: #303234;
  }
}
