:root {
  --odm-ink: #090908;
  --odm-black: #0f0f0d;
  --odm-graphite: #181714;
  --odm-graphite-2: #23211d;
  --odm-paper: #f2ecdf;
  --odm-paper-2: #e5dac8;
  --odm-muted: #b8ad9b;
  --odm-muted-dark: #62594d;
  --odm-gold: #b89a62;
  --odm-gold-dark: #7a633b;
  --odm-line-dark: rgba(242, 236, 223, 0.16);
  --odm-line-light: rgba(15, 15, 13, 0.16);
  --odm-font-heading: Georgia, "Times New Roman", serif;
  --odm-font-body: Arial, Helvetica, sans-serif;
  --odm-container: 1220px;
  --odm-section: 124px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 5%, rgba(184, 154, 98, 0.12), transparent 28rem),
    var(--odm-ink);
  color: var(--odm-paper);
  font-family: var(--odm-font-body);
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration-color: var(--odm-gold);
  text-underline-offset: 0.24em;
}

a:hover,
a:focus {
  color: var(--odm-gold);
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--odm-gold);
  outline-offset: 5px;
}

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

h1,
h2,
h3,
blockquote {
  font-family: var(--odm-font-heading);
  font-weight: 400;
  line-height: 0.98;
}

p,
dd {
  margin-bottom: 0;
}

.site {
  overflow: hidden;
  background: var(--odm-ink);
}

.odm-container {
  width: min(100% - 56px, var(--odm-container));
  margin-inline: auto;
}

.site-header {
  background:
    linear-gradient(180deg, rgba(9, 9, 8, 0.98), rgba(15, 15, 13, 0.94));
  border-bottom: 1px solid var(--odm-line-dark);
  color: var(--odm-paper);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) auto minmax(150px, 0.8fr);
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.site-brand {
  justify-self: start;
  color: var(--odm-paper);
  text-decoration: none;
}

.site-brand__name {
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--odm-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--odm-paper);
}

.odm-section {
  position: relative;
  padding-block: var(--odm-section);
}

.odm-section-dark {
  background:
    radial-gradient(circle at 18% 10%, rgba(184, 154, 98, 0.08), transparent 24rem),
    linear-gradient(145deg, var(--odm-black), var(--odm-graphite));
  color: var(--odm-paper);
}

.odm-section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent),
    var(--odm-paper);
  color: var(--odm-ink);
}

.odm-eyebrow {
  margin-bottom: 22px;
  color: var(--odm-gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.odm-section-light .odm-eyebrow {
  color: var(--odm-gold-dark);
}

.odm-section__header {
  max-width: 840px;
  margin-bottom: 58px;
}

.odm-section__title {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
}

.odm-section__lead {
  max-width: 680px;
  color: var(--odm-muted);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
}

.odm-section-light .odm-section__lead {
  color: var(--odm-muted-dark);
}

.odm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--odm-gold);
  background: var(--odm-gold);
  color: var(--odm-ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.odm-button:hover,
.odm-button:focus {
  background: transparent;
  color: var(--odm-gold);
}

.odm-button-outline {
  justify-self: end;
  background: transparent;
  color: var(--odm-paper);
}

.odm-button-outline:hover,
.odm-button-outline:focus {
  background: var(--odm-gold);
  color: var(--odm-ink);
}

.odm-button-small {
  min-height: 38px;
  padding: 10px 15px;
  white-space: nowrap;
}

.odm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
}

.odm-text-cta,
.odm-link,
.odm-case-link {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--odm-gold);
  color: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.odm-text-cta:hover,
.odm-link:hover,
.odm-case-link:hover {
  color: var(--odm-gold);
}

.odm-hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding-block: 86px;
  border-bottom: 1px solid var(--odm-line-dark);
  background:
    radial-gradient(circle at 82% 28%, rgba(184, 154, 98, 0.16), transparent 26rem),
    linear-gradient(115deg, #090908 0%, #12110f 46%, #1d1b18 100%);
}

.odm-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
  align-items: center;
  gap: 70px;
}

.odm-hero__title {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(4.5rem, 7.1vw, 6rem);
}

.odm-hero__title span {
  color: var(--odm-gold);
}

.odm-hero__lead {
  max-width: 520px;
  color: var(--odm-paper-2);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.odm-hero-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(150px, 1fr));
  gap: 14px;
  min-height: 620px;
  padding: 18px;
  border: 1px solid var(--odm-line-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.025);
}

.odm-collage-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--odm-line-dark);
  background:
    linear-gradient(135deg, rgba(242, 236, 223, 0.06), rgba(184, 154, 98, 0.07)),
    var(--odm-graphite-2);
}

.odm-collage-tile::before,
.odm-collage-tile::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.odm-collage-tile::before {
  inset: 16px;
  border: 1px solid rgba(242, 236, 223, 0.09);
}

.odm-collage-tile::after {
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 154, 98, 0.5);
}

.odm-collage-tile span {
  position: relative;
  z-index: 1;
  color: var(--odm-paper);
  font-size: 0.72rem;
  font-weight: 700;
}

.odm-collage-tile strong {
  position: relative;
  z-index: 1;
  color: var(--odm-gold);
  font-family: var(--odm-font-heading);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.odm-collage-packaging {
  grid-column: span 2;
  grid-row: span 2;
}

.odm-collage-screen {
  background:
    linear-gradient(180deg, rgba(242, 236, 223, 0.08) 0 12%, transparent 12%),
    linear-gradient(135deg, rgba(184, 154, 98, 0.12), rgba(255, 255, 255, 0.02)),
    var(--odm-graphite-2);
}

.odm-collage-identity {
  background:
    repeating-linear-gradient(90deg, rgba(242, 236, 223, 0.07) 0 1px, transparent 1px 26px),
    var(--odm-graphite-2);
}

.odm-collage-photo {
  background:
    radial-gradient(circle at 58% 44%, rgba(242, 236, 223, 0.16), transparent 5rem),
    var(--odm-graphite-2);
}

.odm-collage-print {
  background:
    linear-gradient(90deg, rgba(184, 154, 98, 0.14) 0 18%, transparent 18% 100%),
    var(--odm-graphite-2);
}

.odm-collage-tile-wide {
  grid-column: span 2;
}

.odm-collage-year,
.odm-collage-mark {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.odm-manifest {
  padding-block: 0;
  border-bottom: 1px solid var(--odm-line-dark);
}

.odm-manifest__inner {
  display: grid;
  gap: 0;
  border-inline: 1px solid var(--odm-line-dark);
}

.odm-manifest__statement {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: 54px;
  padding: 74px 52px;
  border-bottom: 1px solid var(--odm-line-dark);
}

.odm-manifest__quote {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(2.7rem, 4.4vw, 5.1rem);
}

.odm-manifest__text {
  max-width: 460px;
  align-self: end;
  color: var(--odm-muted);
  font-size: 1.02rem;
}

.odm-challenge-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
}

.odm-challenge {
  min-height: 300px;
  padding: 32px 26px;
  border-right: 1px solid var(--odm-line-dark);
}

.odm-challenge:last-child {
  border-right: 0;
}

.odm-challenge span {
  display: block;
  margin-bottom: 92px;
  color: var(--odm-gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.odm-challenge h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
}

.odm-history__inner,
.odm-process__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 76px;
}

.odm-history__header,
.odm-process__header {
  margin-bottom: 0;
}

.odm-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.odm-timeline__item {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--odm-line-light);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12));
}

.odm-timeline__item span {
  display: block;
  margin-bottom: 60px;
  color: var(--odm-gold-dark);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.odm-timeline__item h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.odm-timeline__item p {
  color: var(--odm-muted-dark);
  font-size: 0.96rem;
}

.odm-founders {
  padding-top: 0;
}

.odm-founders__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 72px;
  padding-top: 76px;
  border-top: 1px solid var(--odm-line-light);
}

.odm-founders__body {
  display: grid;
  gap: 34px;
  color: var(--odm-muted-dark);
  font-size: 1.05rem;
}

.odm-bio {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--odm-line-light);
}

.odm-bio h3 {
  margin-bottom: 0;
  color: var(--odm-ink);
  font-size: 1.7rem;
}

.odm-projects {
  border-top: 1px solid var(--odm-line-dark);
}

.odm-grid {
  display: grid;
  gap: 22px;
}

.odm-grid-projects {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.odm-case-card {
  padding: 18px;
  border: 1px solid var(--odm-line-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--odm-graphite-2);
}

.odm-case-card:hover {
  border-color: rgba(184, 154, 98, 0.55);
}

.odm-case-visual {
  display: flex;
  align-items: flex-end;
  min-height: 245px;
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid var(--odm-line-dark);
  background:
    linear-gradient(135deg, rgba(184, 154, 98, 0.18), rgba(242, 236, 223, 0.035)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(242, 236, 223, 0.05) 28px 29px),
    var(--odm-graphite);
  color: var(--odm-paper);
  font-family: var(--odm-font-heading);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.odm-case-card h3 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.odm-case-meta {
  margin-bottom: 28px;
}

.odm-case-meta dt {
  margin-top: 18px;
  color: var(--odm-gold);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.odm-case-meta dd {
  margin-left: 0;
  color: var(--odm-muted);
}

.odm-process__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.odm-process__list::before {
  content: "";
  position: absolute;
  top: 44px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--odm-line-light);
}

.odm-process__item {
  position: relative;
  padding: 0 24px 0 0;
}

.odm-process__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 34px;
  border: 1px solid var(--odm-line-light);
  background: var(--odm-paper);
  color: var(--odm-gold-dark);
  font-weight: 700;
}

.odm-process__item h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.odm-process__item p {
  color: var(--odm-muted-dark);
  font-size: 0.94rem;
}

.odm-trust {
  border-top: 1px solid var(--odm-line-dark);
  border-bottom: 1px solid var(--odm-line-dark);
}

.odm-trust__inner {
  display: grid;
  gap: 58px;
}

.odm-trust__quote {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 1;
}

.odm-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--odm-line-dark);
  border-left: 1px solid var(--odm-line-dark);
}

.odm-stats p {
  padding: 24px;
  border-right: 1px solid var(--odm-line-dark);
  border-bottom: 1px solid var(--odm-line-dark);
}

.odm-stats span {
  color: var(--odm-gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.odm-final-cta__inner {
  max-width: 930px;
}

.odm-final-cta .odm-link {
  color: var(--odm-ink);
}

.site-footer {
  padding-block: 44px;
  border-top: 1px solid var(--odm-line-dark);
  background: var(--odm-ink);
  color: var(--odm-paper);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 36px;
  align-items: start;
}

.site-footer__brand {
  margin-bottom: 8px;
  color: var(--odm-paper);
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  color: var(--odm-muted);
  font-size: 0.84rem;
}

.site-footer__copy {
  text-align: right;
}

@media (max-width: 1280px) {
  .odm-challenge-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    padding-block: 16px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .odm-hero__inner,
  .odm-history__inner,
  .odm-founders__inner,
  .odm-process__inner {
    grid-template-columns: 1fr;
  }

  .odm-manifest__statement {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .odm-challenge-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --odm-section: 84px;
  }

  .odm-container {
    width: min(100% - 34px, var(--odm-container));
  }

  .odm-hero {
    min-height: auto;
    padding-block: 72px;
  }

  .odm-hero__title {
    font-size: clamp(3.5rem, 14vw, 5.4rem);
  }

  .odm-hero-collage {
    grid-template-rows: none;
    min-height: 0;
  }

  .odm-collage-tile,
  .odm-collage-packaging,
  .odm-collage-tile-wide {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 130px;
  }

  .odm-manifest__statement {
    padding: 54px 28px;
  }

  .odm-timeline,
  .odm-grid-projects,
  .odm-process__list,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .odm-challenge {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--odm-line-dark);
  }

  .odm-challenge span {
    margin-bottom: 38px;
  }

  .odm-bio {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .odm-process__list::before {
    top: 0;
    bottom: 0;
    left: 43px;
    width: 1px;
    height: auto;
  }

  .odm-process__item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 22px;
    padding: 0 0 28px;
  }

  .odm-process__number {
    margin-bottom: 0;
  }

  .odm-process__item h3 {
    margin-top: 8px;
  }

  .odm-case-visual {
    min-height: 190px;
  }

  .site-footer__copy {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .odm-challenge-list,
  .odm-stats {
    grid-template-columns: 1fr;
  }

  .odm-stats p {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .site-brand,
  .odm-button-outline {
    justify-self: auto;
  }

  .site-nav {
    gap: 13px;
    font-size: 0.64rem;
  }

  .odm-button-small {
    width: 100%;
  }

  .odm-hero__inner {
    gap: 42px;
  }

  .odm-collage-tile,
  .odm-collage-packaging,
  .odm-collage-tile-wide {
    grid-column: 1 / -1;
  }

  .odm-section__title,
  .odm-manifest__quote,
  .odm-trust__quote {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .odm-timeline__item,
  .odm-case-card {
    padding: 18px;
  }
}
