:root {
  --bg: #ece7df;
  --surface: #f7f2ea;
  --surface-2: #ded4c6;
  --surface-deep: #d8ccb9;
  --ink: #151515;
  --muted: #5a554d;
  --line: rgba(21, 21, 21, 0.14);
  --dark: #11100f;
  --dark-2: #1a1612;
  --dark-3: #251d17;
  --light: #f7f2ea;
  --accent: #b54821;
  --accent-soft: #d96a3e;
  --amber: #c89455;
  --shadow: 0 26px 70px rgba(19, 17, 14, 0.18);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  color: #fff;
  background: linear-gradient(to bottom, rgba(10, 9, 8, 0.82), rgba(10, 9, 8, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, "Nimbus Sans", sans-serif;
  font-size: 2.48rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
}

.brand-accent {
  color: var(--accent-soft);
}

.brand-rest {
  color: #fff;
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% - 0.1rem);
  right: 1rem;
  min-width: 16rem;
  padding: 0.75rem;
  background: rgba(17, 16, 15, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 0.75rem 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.88rem;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.9rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: clip;
  background: #0f0f0f;
  color: #fff;
}

.hero-image-wrap,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroShift 20s ease-in-out infinite alternate;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.16) 62%);
}

.hero-content,
.hero-foot {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(100%, 44rem);
  margin-top: auto;
  padding: 7rem 1.15rem 2.25rem;
  animation: riseIn 0.85s ease both;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-soft);
  letter-spacing: 0.02em;
}

.hero h1,
.section h2,
.section h3,
.signal-strip strong {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.15rem, 12vw, 7.2rem);
  max-width: 10.5ch;
}

.hero-copy {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-soft);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-foot {
  padding: 0 1.15rem 1.2rem;
}

.hero-foot p {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.signal-strip {
  display: grid;
  gap: 0;
  background: var(--dark);
  color: var(--light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-strip div {
  padding: 1.1rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.signal-strip strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1.35rem;
}

.signal-strip span {
  display: block;
  color: rgba(247, 242, 234, 0.68);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 1.15rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.1rem;
}

.wide-heading {
  max-width: 58rem;
}

.section h2 {
  font-size: clamp(2.25rem, 8vw, 4.8rem);
  max-width: 12ch;
}

.wide-heading h2 {
  max-width: 15ch;
}

.lead-in {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    var(--bg);
}

.lead-layout {
  display: grid;
  gap: 1rem;
}

.lead-copy {
  max-width: 42rem;
}

.lead-copy p,
.program-copy p,
.operations p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.lead-statement {
  margin-top: 0;
  color: var(--ink) !important;
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  line-height: 1.35;
  font-weight: 700;
}

.capability-section {
  background: var(--surface);
}

.capability-grid,
.workflow-list,
.program-grid {
  display: grid;
  gap: 1rem;
}

.capability-grid article,
.workflow-list article,
.program-grid article {
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
}

.capability-grid h3,
.workflow-list h3,
.program-grid h3 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.capability-grid p,
.workflow-list p,
.program-grid p,
.lead-form label {
  color: var(--muted);
}

.image-band {
  display: grid;
  gap: 1.4rem;
  align-items: end;
  background: var(--dark-2);
  color: var(--light);
}

.calm-band {
  background:
    radial-gradient(circle at 15% 10%, rgba(181, 72, 33, 0.28), transparent 34%),
    var(--dark-2);
}

.stock-band {
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 148, 85, 0.2), transparent 38%),
    var(--dark-3);
}

.image-band .eyebrow {
  color: #ee8a63;
}

.image-band h2 {
  max-width: 13ch;
}

.image-band-copy p {
  max-width: 38rem;
  color: rgba(247, 242, 234, 0.78);
}

.image-band-media img {
  width: 100%;
  min-height: 18rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.workflow {
  background: var(--surface-deep);
}

.workflow-list article {
  display: grid;
  gap: 0.45rem;
}

.workflow-list span {
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.product-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)),
    var(--bg);
}

.program-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.program-copy {
  max-width: 36rem;
}

.program-grid article {
  background: rgba(255, 255, 255, 0.22);
  padding: 1.05rem;
  border: 1px solid var(--line);
}

.operations {
  background: var(--surface);
}

.operations-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.operations-lead {
  max-width: 30rem;
  color: var(--ink) !important;
  font-size: 1.1rem;
  font-weight: 700;
}

.operations-points {
  display: grid;
  gap: 1.15rem;
}

.operations-points div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.operations-points strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.contact-section {
  display: grid;
  gap: 2rem;
  background: #111111;
  color: var(--light);
  padding-bottom: 3rem;
}

.contact-copy p,
.contact-copy li {
  color: rgba(247, 242, 234, 0.76);
}

.contact-copy p {
  max-width: 35rem;
}

.contact-copy h2 {
  max-width: 12ch;
}

.contact-notes {
  margin-top: 1.4rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-notes ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.contact-notes li + li {
  margin-top: 0.35rem;
}

.direct-contact {
  margin-top: 1.4rem;
}

.direct-contact a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-content: start;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(247, 242, 234, 0.84);
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 0.92rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(217, 106, 62, 0.72);
  outline-offset: 2px;
}

.lead-form textarea::placeholder {
  color: rgba(247, 242, 234, 0.42);
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: #ee8a63;
}

.full-width {
  grid-column: 1 / -1;
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.15rem 2rem;
  background: #111111;
  color: rgba(247, 242, 234, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0 0 0.2rem;
  color: rgba(247, 242, 234, 0.76);
}

.site-footer strong,
.site-footer a {
  color: #fff;
}

@keyframes heroShift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.11) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .hero-content,
  .hero-foot,
  .section,
  .site-footer,
  .signal-strip div {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .signal-strip div {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .capability-grid,
  .workflow-list,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .lead-layout,
  .program-layout,
  .operations-layout,
  .contact-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .image-band {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    padding: 5rem 2rem;
  }

  .stock-band .image-band-copy {
    order: 2;
  }

  .stock-band .image-band-media {
    order: 1;
  }

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

@media (min-width: 1080px) {
  .site-header {
    padding: 1.1rem 2rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    gap: 1.2rem;
    min-width: auto;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav a {
    padding: 0;
    border-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: #fff;
  }

  .hero-content {
    box-sizing: content-box;
    width: min(46rem, calc(100% - 8rem));
  }

  .hero h1 {
    max-width: 15ch;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-foot p {
    max-width: 44rem;
  }

  .hero-content,
  .hero-foot,
  .section,
  .site-footer {
    padding-left: max(2.5rem, calc((100vw - var(--max)) / 2));
    padding-right: max(2.5rem, calc((100vw - var(--max)) / 2));
  }

  .signal-strip {
    padding-left: max(2.5rem, calc((100vw - var(--max)) / 2));
    padding-right: max(2.5rem, calc((100vw - var(--max)) / 2));
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .signal-strip div {
    min-width: 0;
    padding-left: 0;
    margin-right: 1.15rem;
  }

  .image-band {
    padding-left: max(2.5rem, calc((100vw - var(--max)) / 2));
    padding-right: max(2.5rem, calc((100vw - var(--max)) / 2));
  }
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.86)),
    url("../img/warehouse.jpg") center / cover no-repeat,
    #111111;
  color: var(--light);
}

.thanks-wrap {
  width: min(100%, 42rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: rgba(17, 16, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.thanks-wrap h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.thanks-wrap p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(247, 242, 234, 0.78);
  margin: 1.1rem 0 1.5rem;
}
