:root {
  --cream: #f3f0ea;
  --ink: #181715;
  --muted: #5e5a54;
  --hair: rgba(24, 23, 21, .17);
  --dark: #171715;
  --page: clamp(1.5rem, 5.6vw, 5.75rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.site-header {
  height: 4.55rem;
  padding: 0 var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
}
.wordmark,
.footer-brand {
  font-size: clamp(1.15rem, 2.25vw, 1.85rem);
  font-weight: 400;
  letter-spacing: .17em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
nav {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3.8vw, 4rem);
}
nav a {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-decoration: none;
}
nav a:hover,
nav a:focus-visible { text-decoration: underline; text-underline-offset: .35rem; }

.hero {
  position: relative;
  height: clamp(29rem, 51vw, 34.5rem);
  overflow: hidden;
  color: #fff;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 9, .34);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(35rem, calc(100% - 2 * var(--page)));
  height: 100%;
  margin-left: var(--page);
  padding-top: clamp(9.3875rem, calc(8vw + 4.1875rem), 10.5875rem);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 4.85vw, 4.7rem);
  font-weight: 400;
  letter-spacing: .055em;
  line-height: .98;
}
.tagline {
  margin: .7rem 0 0;
  font-size: clamp(.78rem, 1.25vw, 1rem);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.rule {
  width: 3.1rem;
  height: 1px;
  margin-top: 1.8rem;
  display: block;
  background: rgba(255, 255, 255, .85);
}
.hero-copy {
  max-width: 31rem;
  margin: 1.45rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 300;
  line-height: 1.42;
}
.button {
  min-width: 12.7rem;
  min-height: 2.95rem;
  padding: .75rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
  border: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1;
  text-decoration: none;
}
.button-light { color: #fff; }
.button-dark { color: #fff; background: var(--dark); }

.capabilities {
  padding: 2.5rem var(--page) .4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
}
.capabilities article {
  min-width: 0;
  min-height: 10rem;
  padding: .2rem clamp(1.25rem, 3vw, 2.5rem) 0;
  border-left: 1px solid var(--hair);
}
.capabilities article:first-child { padding-left: 0; border-left: 0; }
.capabilities article:last-child { padding-right: 0; }
.number,
.eyebrow {
  display: block;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .15em;
}
.capabilities h2 {
  min-height: 3.1rem;
  margin: .85rem 0 0;
  font-size: clamp(.83rem, 1.35vw, 1.04rem);
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.4;
}
.short-rule {
  width: 2.35rem;
  height: 1px;
  margin-top: .8rem;
  display: block;
  background: var(--hair);
}
.capabilities p {
  max-width: 19rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: clamp(.88rem, 1.2vw, 1rem);
  font-weight: 300;
  line-height: 1.35;
}

.market {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: start;
  background: var(--cream);
  scroll-margin-top: 1rem;
}
.market-copy {
  padding: clamp(2.4rem, 3.5vw, 3.5rem) clamp(2rem, 4.5vw, 4.6rem) clamp(2.6rem, 4vw, 4rem) var(--page);
}
.eyebrow {
  margin: 0;
  line-height: 1.75;
}
.rule-dark {
  width: 2.35rem;
  margin-top: 1.35rem;
  background: var(--ink);
}
.market h2 {
  max-width: 34rem;
  margin: 1.55rem 0 0;
  font-size: clamp(2.15rem, 3.95vw, 4.15rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .94;
}
.market-copy > p:last-of-type {
  max-width: 35rem;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(.95rem, 1.25vw, 1.08rem);
  font-weight: 300;
  line-height: 1.4;
}
.market .button { margin-top: 1.7rem; }
.market-image {
  min-width: 0;
  margin: clamp(7.4rem, 9vw, 8.5rem) var(--page) 0 clamp(1.25rem, 2.5vw, 2.5rem);
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
}
.market-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.site-footer {
  position: relative;
  min-height: 9.6rem;
  padding: 0 var(--page);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "brand message";
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  background: var(--dark);
  color: #fff;
  scroll-margin-top: 1rem;
}
.footer-brand { grid-area: brand; font-size: clamp(1rem, 1.8vw, 1.45rem); }
.footer-message {
  grid-area: message;
  padding-left: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid rgba(255, 255, 255, .4);
}
.site-footer p {
  margin: 0;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
}
.footer-email {
  margin-top: .45rem;
  display: inline-block;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 300;
  letter-spacing: .035em;
  text-decoration: none;
}
.footer-email:hover,
.footer-email:focus-visible { color: #fff; text-decoration: underline; text-underline-offset: .25rem; }
.legal {
  position: absolute;
  right: var(--page);
  bottom: .6rem;
  color: rgba(255, 255, 255, .5);
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .04em;
}

@media (max-width: 820px) {
  .site-header { height: 4.2rem; }
  nav { gap: 1.3rem; }
  nav a { font-size: .61rem; }
  .hero { height: 28.5rem; }
  .hero-content { padding-top: 6.2rem; }
  .capabilities { grid-template-columns: repeat(3, 1fr); padding-top: 1.7rem; padding-bottom: 1.7rem; }
  .capabilities article { min-height: 8.1rem; padding: .95rem 1rem; }
  .market { grid-template-columns: 1fr; }
  .market-copy { padding: 3rem var(--page); }
  .market-image { height: auto; margin: 0 var(--page) 3rem; aspect-ratio: 1.25 / 1; }
  .site-footer {
    min-height: 8.5rem;
    padding-top: 1.35rem;
    padding-bottom: 2rem;
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand message";
    row-gap: 0;
  }
  .footer-message { padding-left: 0; border-left: 0; text-align: right; }
  .footer-message p { display: none; }
}

@media (max-width: 560px) {
  :root { --page: 1.3rem; }
  .wordmark { font-size: 1rem; letter-spacing: .13em; }
  nav a:nth-child(2) { display: none; }
  nav { gap: 1rem; }
  .hero { height: 29rem; }
  .hero-image { object-position: 58% center; }
  .hero-shade { background: rgba(11, 10, 9, .43); }
  .hero-content { width: calc(100% - 2 * var(--page)); padding-top: 7.4rem; }
  .hero h1 { font-size: 2.25rem; }
  .tagline { font-size: .68rem; letter-spacing: .13em; }
  .hero-copy { max-width: 19rem; font-size: .98rem; }
  .button { min-width: 11.8rem; }
  .capabilities { grid-template-columns: 1fr; padding-top: .9rem; padding-bottom: .9rem; }
  .capabilities article,
  .capabilities article:nth-child(odd) {
    min-height: 0;
    padding: .95rem 0;
    border-left: 0;
    border-top: 1px solid var(--hair);
  }
  .capabilities article:first-child { border-top: 0; }
  .capabilities h2 { min-height: 0; }
  .market-copy { padding: 2.7rem var(--page) 2.9rem; }
  .market h2 { font-size: 2.36rem; }
  .market-image { height: auto; margin: 0 var(--page) 2.75rem; aspect-ratio: 1.25 / 1; }
  .site-footer {
    min-height: 9.5rem;
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "message";
    gap: 1rem;
  }
  .footer-brand { font-size: 1.1rem; }
  .footer-message { text-align: left; }
  .footer-message p { display: block; }
}

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