:root {
  color-scheme: dark;
  --ink: #f7f1e5;
  --muted: #cabaa5;
  --paper: #14110e;
  --surface: #211a15;
  --surface-strong: #2e251d;
  --line: #4b3a2c;
  --brass: #d1a04b;
  --copper: #b65b3b;
  --teal: #3dbab4;
  --shadow: 0 22px 70px rgb(0 0 0 / 34%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #ffffff;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgb(20 17 14 / 88%);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--brass);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.site-nav {
  gap: clamp(14px, 4vw, 32px);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 64px) 72px;
  color: #ffffff;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(0 0 0 / 72%), rgb(0 0 0 / 30%) 56%, rgb(0 0 0 / 12%)),
    linear-gradient(0deg, rgb(20 17 14 / 48%), transparent 45%);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.eyebrow,
.metric-label,
figcaption {
  margin: 0;
  text-transform: uppercase;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: var(--brass);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  margin-top: 10px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  letter-spacing: 0;
}

h2 {
  max-width: 940px;
  font-size: clamp(2rem, 5vw, 4.35rem);
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 900;
}

.button.primary {
  background: var(--copper);
  color: #ffffff;
}

.button.primary:hover {
  background: #94452f;
}

.button.secondary {
  border: 1px solid rgb(255 255 255 / 72%);
  color: #ffffff;
}

.intro,
.section,
.story,
.site-footer {
  padding-right: clamp(18px, 5vw, 64px);
  padding-left: clamp(18px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro > div {
  min-height: 136px;
  padding: 26px;
  background: var(--surface);
}

.metric {
  display: block;
  color: var(--brass);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.section {
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.collections {
  background:
    linear-gradient(180deg, var(--paper), #171a16 40%, #12191c 76%, var(--paper));
}

.collection-list {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
}

.collection-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(220px, 0.54fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.collection-copy,
.sketch-panel,
.render-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(33 26 21 / 88%);
  box-shadow: var(--shadow);
}

.collection-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
}

.collection-copy p:not(.eyebrow),
.story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

figure {
  margin: 0;
}

.sketch-panel,
.render-card {
  overflow: hidden;
}

.image-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.sketch-panel img,
.render-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.sketch-panel img {
  height: 100%;
  min-height: 430px;
}

.image-button:hover img {
  transform: scale(1.025);
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--brass);
}

.render-rail {
  display: grid;
  grid-auto-columns: minmax(320px, 58%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 14px;
  scroll-snap-type: x proximity;
}

.render-rail::-webkit-scrollbar {
  height: 10px;
}

.render-rail::-webkit-scrollbar-track {
  background: rgb(255 255 255 / 8%);
  border-radius: 999px;
}

.render-rail::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--brass) 70%, #ffffff 10%);
  border-radius: 999px;
}

.render-card {
  scroll-snap-align: start;
}

.render-card img {
  height: 430px;
  aspect-ratio: 4 / 3;
}

.video-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  background: #000000;
}

.render-card.tall img {
  aspect-ratio: 3 / 4;
}

.render-card.wide img {
  aspect-ratio: 16 / 10;
}

.story {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding-top: clamp(72px, 10vw, 132px);
  padding-bottom: clamp(72px, 10vw, 132px);
  background: var(--surface-strong);
}

.story h2 {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgb(0 0 0 / 86%);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1180px, 100%);
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgb(0 0 0 / 60%);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 50%;
  background: rgb(20 17 14 / 82%);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .collection-card {
    grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
  }

  .collection-copy {
    grid-column: 1 / -1;
  }

  .render-rail {
    grid-auto-columns: minmax(300px, 72%);
  }
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 130px;
  }

  .intro,
  .collection-card,
  .story {
    grid-template-columns: 1fr;
  }

  .intro > div {
    min-height: auto;
  }

  .render-rail {
    grid-auto-columns: minmax(280px, 86%);
  }

  .sketch-panel img,
  .render-card img,
  .video-card iframe {
    min-height: 0;
    height: 340px;
  }

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

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.8rem);
  }
}
