:root {
  --black: #090909;
  --white: #ffffff;
  --paper: #f3f3ef;
  --gray: #9d9d98;
  --orange: #FF4D00;
  --container: 1200px;
  --grid-line: rgba(255,255,255,.16);
  --section-grid: rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: "Helvena Grotesk", "Helvena", Inter, "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background: var(--white);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: .5rem;
  top: .5rem;
  background: var(--orange);
  color: #000;
  padding: .55rem .8rem;
  z-index: 800;
  transform: translateY(-110%);
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { width: clamp(100px, 30vw, 145px); height: auto; }
.header-cta {
  color: #fff;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: .25rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 122px 0 52px;
  background: var(--black);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  left: -18vw;
  top: 12vh;
  width: 78vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, .2), transparent);
  transform: rotate(42deg);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -25vw;
  bottom: -38vw;
  width: 78vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 77, 0, .28);
  transform: rotate(27deg);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 88%);
}
.hero-lines,
.contact-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-line,
.contact-line {
  position: absolute;
  display: block;
  height: 1px;
  background: rgba(255, 77, 0, .22);
  transform-origin: left center;
}
.hero-line-a { width: 34vw; top: 18%; right: -3vw; transform: rotate(32deg); }
.hero-line-b { width: 64vw; top: 62%; left: 42%; transform: rotate(-63deg); }
.hero-line-c { width: 28vw; bottom: 16%; left: -2vw; transform: rotate(18deg); opacity: .35; }
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.4rem;
  align-items: end;
}
.hero-copy {
  max-width: 910px;
  position: relative;
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto auto -2rem 0;
  width: min(100%, 820px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.3), rgba(255,255,255,0));
}
.eyebrow,
.section-number {
  margin: 0 0 1.25rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: .65rem; color: #d0d0cb; }
.eyebrow span { width: 26px; height: 3px; background: var(--orange); }
.hero-kicker {
  margin: 0 0 .55rem;
  color: #9d9d98;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0 0 1.55rem;
  font-size: clamp(2.55rem, 12vw, 7.25rem);
  line-height: .79;
  letter-spacing: -.055em;
  font-weight: 900;
  text-transform: uppercase;
}
h1 span { display: block; }
h1 .accent {
  color: var(--orange);
  font-size: .84em;
  letter-spacing: -.045em;
}
.hero-text {
  max-width: 38rem;
  margin-bottom: 1.65rem;
  color: #c7c7c1;
  font-size: clamp(1.1rem, 3.6vw, 1.25rem);
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: .9rem 1rem;
  border: 0;
  border-radius: 0;
  font-weight: 850;
  letter-spacing: -.015em;
  text-decoration: none;
  transition: filter .15s ease, transform .15s ease;
}
.button-primary { background: var(--orange); color: #090909; }
.button-primary {
  width: min(100%, 390px);
  min-height: 66px;
  padding: 1rem 1.25rem;
  font-size: clamp(1.1rem, 3.6vw, 1.25rem);
  line-height: 1.1;
  justify-content: center;
  text-align: center;
}
.button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
.hero-strip {
  margin-top: 2.1rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  color: #ecece8;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-strip span:nth-child(odd) { color: var(--orange); }

.intro,
.contact {
  position: relative;
  overflow: hidden;
}
.section-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
}
.section-grid {
  background-image:
    linear-gradient(var(--section-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--section-grid) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 90%);
}
.contact-grid {
  opacity: .06;
  background-image:
    linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 72px 72px;
}

.intro {
  padding: 5rem 0;
  background: var(--paper);
}
.intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 9%;
  width: 28vw;
  height: 1px;
  background: rgba(255, 77, 0, .25);
  transform: rotate(-34deg);
}
.intro-layout { position: relative; z-index: 1; display: grid; gap: 2rem; }
.section-number { color: var(--orange); }
.intro h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 8.4vw, 4.8rem);
  line-height: .92;
  letter-spacing: -.045em;
  font-weight: 900;
  text-transform: uppercase;
}
.intro-copy { max-width: 40rem; }
.intro-copy p { color: #30302d; font-size: 1.05rem; }
.intro-copy p:last-child { margin-bottom: 0; }
.intro-copy strong { color: #000; }

.values { background: var(--white); }
.values-grid { display: grid; grid-template-columns: 1fr; }
.value-card {
  position: relative;
  min-width: 0;
  padding: 1.45rem 1.2rem 1.55rem;
  border: 1px solid #bcbcb7;
  border-bottom: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "index title"
    "text text";
  gap: 2.6rem 1.1rem;
  align-items: end;
  background: var(--white);
}
.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,77,0,.22), transparent 70%);
}
.value-card:last-child { border-bottom: 1px solid #bcbcb7; }
.value-card-featured { background: var(--orange); }
.value-index {
  grid-area: index;
  align-self: start;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.value-card h3 {
  grid-area: title;
  min-width: 0;
  margin: 0;
  font-size: clamp(3rem, 15vw, 5.8rem);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.value-card p {
  grid-area: text;
  margin: 0;
  max-width: 36rem;
  font-size: .9rem;
}

.contact {
  padding: 5rem 0;
  background: var(--black);
  color: #fff;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: var(--orange);
}
.contact-layout { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
.section-number-light { color: var(--orange); }
.contact-heading > p:last-child {
  max-width: 32rem;
  margin-top: 1.5rem;
  color: #aaa;
}
.contact-line-a { width: 42vw; top: 11%; right: -8vw; transform: rotate(-30deg); }
.contact-line-b { width: 56vw; bottom: 18%; left: 48%; transform: rotate(61deg); }
.form-shell {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--orange);
  background: #151515;
}
.form-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.site-footer {
  position: relative;
  padding: 2.25rem 0;
  background: #050505;
  color: #fff;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255,77,0,.18), transparent 35%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: top left;
}
.footer-layout { display: grid; gap: 1.5rem; }
.footer-layout > img { width: 150px; height: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a,
.disabled-link {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-links a { color: #fff; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: .25rem; }
.disabled-link { color: #7c7c76; }
.footer-layout > p { margin: 0; color: #7c7c76; font-size: .67rem; }

@media (max-width: 420px) {
  .header-inner { gap: .65rem; }
  .header-cta {
    font-size: .63rem;
    letter-spacing: .035em;
  }
  h1 { font-size: clamp(2.35rem, 11.6vw, 3.25rem); }
  h1 .accent { font-size: .8em; }
}

@media (min-width: 560px) {
  .container { width: min(calc(100% - 3rem), var(--container)); }
  .header-cta { font-size: .76rem; }
}

@media (min-width: 680px) {
  .value-card {
    min-height: 215px;
    padding: 1.65rem 1.6rem;
    grid-template-columns: 54px minmax(220px, .9fr) minmax(240px, .75fr);
    grid-template-areas: "index title text";
    gap: 1.5rem;
    align-items: center;
  }
  .value-card h3 { font-size: clamp(3.4rem, 9vw, 6rem); }
  .value-card p { justify-self: end; }
}

@media (min-width: 900px) {
  .hero { min-height: 820px; padding: 150px 0 74px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 980px; }
  .hero-strip { justify-content: flex-start; gap: 1rem 2rem; }
  .intro { padding: 7rem 0; }
  .intro-layout { grid-template-columns: minmax(0, .95fr) minmax(360px, .7fr); gap: 5rem; align-items: start; }
  .footer-layout { grid-template-columns: 1fr auto auto; align-items: end; }
  .footer-links { justify-content: center; }
}

@media (min-width: 980px) {
  .contact { padding: 7rem 0; }
  .contact-layout { grid-template-columns: minmax(300px, .72fr) minmax(440px, 1fr); gap: 5rem; align-items: start; }
  .contact-heading { position: sticky; top: 2rem; }
}

@media (min-width: 1100px) {
  h1 { font-size: 7.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Tally embed */
.form-shell iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: transparent;
}
.tally-fallback {
  margin: 0;
  padding: 1.5rem;
  color: #d2d2cd;
}
.tally-fallback a {
  color: var(--orange);
}
