:root {
  --paper: #f3efe6;
  --paper-deep: #e7e1d4;
  --ink: #1c1a16;
  --ink-soft: #3d3933;
  --muted: #5c564c;
  --line: #d5cdbf;
  --brass: #8a5a28;
  --brass-deep: #6e451c;
  --dark: #141311;
  --cream: #f3ecdf;
  --cream-dim: #c9c2b6;
  --serif: "Newsreader", "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  --sans: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --wrap: 1120px;
  --header: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--brass-deep);
  outline-offset: 3px;
}

::selection {
  background: #e4c48a;
  color: var(--ink);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 0.9rem;
  text-decoration: none;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-top: 2px solid var(--brass);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  min-height: var(--header);
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.brand svg {
  color: var(--brass-deep);
  flex: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.35rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--brass);
}

.hero {
  padding: 4.25rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: 2.75rem 2.5rem;
  align-items: center;
}

.eyebrow,
.num,
.card-index,
.list-label,
.contact-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.eyebrow {
  margin-bottom: 1.15rem;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 11ch;
}

.lede {
  margin-top: 1.5rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
}

.button span {
  transition: transform 160ms ease;
}

.button:hover {
  background: var(--brass-deep);
}

.button:hover span {
  transform: translateX(3px);
}

.text-link {
  font-size: 0.95rem;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.text-link:hover {
  color: var(--brass-deep);
}

.frames {
  position: relative;
}

.frame {
  margin: 0;
}

.frames .frame {
  background: #fff;
  box-shadow:
    0 1px 2px rgba(20, 19, 17, 0.08),
    0 18px 44px rgba(20, 19, 17, 0.16);
}

.frame img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  background: #fff;
}

.shot-list {
  position: relative;
  z-index: 1;
  width: 92%;
}

.shot-dash {
  position: relative;
  z-index: 1;
  width: 86%;
  margin-top: -4%;
}

.shot-invoice {
  position: absolute;
  z-index: 2;
  width: 72%;
  right: 0;
  top: 24%;
}

.frame figcaption {
  margin-top: 0.65rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 42rem);
  gap: 0.5rem 1rem;
  margin-bottom: 2.75rem;
}

.num {
  padding-top: 0.7rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.12;
}

.section-head .intro {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.outcomes,
.supports {
  display: grid;
  gap: 2rem 1.75rem;
}

.outcomes {
  grid-template-columns: repeat(3, 1fr);
}

.supports {
  grid-template-columns: repeat(4, 1fr);
}

.outcome,
.support {
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.card-index {
  display: block;
  margin-bottom: 0.9rem;
}

.outcome h3,
.support h3 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.outcome p,
.support p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.industry-block {
  margin-left: 4.5rem;
  max-width: 36rem;
}

.list-label {
  margin-bottom: 0.85rem;
}

.industry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: industry;
}

.industry-list li {
  counter-increment: industry;
  display: flex;
  align-items: baseline;
  gap: 1.15rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.industry-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.industry-list li::before {
  content: counter(industry, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--brass-deep);
  min-width: 1.8rem;
}

.pull {
  margin-top: 2.5rem;
  padding: 1.35rem 0 1.35rem 1.15rem;
  border-left: 2px solid var(--brass);
  background: linear-gradient(90deg, rgba(138, 90, 40, 0.08), transparent 70%);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 44rem;
}

.close-band {
  background: var(--dark);
  color: var(--cream);
  border-top: 2px solid var(--brass);
}

.close {
  padding: 6rem 0 4.5rem;
}

.close .eyebrow {
  color: #e4c48a;
}

.close h2 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.close-follow {
  margin-top: 1rem;
  max-width: 16ch;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #f0e2c4;
}

.contact-label {
  margin-top: 2.75rem;
  margin-bottom: 0.85rem;
  color: #e4c48a;
}

.close .button {
  background: var(--cream);
  color: var(--dark);
}

.close .button:hover {
  background: #e4c48a;
  color: var(--dark);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.15rem 0 1.6rem;
  border-top: 1px solid rgba(243, 236, 223, 0.16);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

@media (max-width: 980px) {
  .supports {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 8.25rem;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 2.25rem));
  }

  .hero {
    padding-top: 2.75rem;
  }

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

  .section-head {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .industry-block {
    margin-left: 0;
    max-width: none;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .supports {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .close {
    padding: 4rem 0 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button span {
    transition: none;
  }
}
