:root {
  --forest: #111820;
  --forest-dark: #050708;
  --wood: #ff1919;
  --wood-light: #00aaff;
  --ink: #15181b;
  --muted: #606970;
  --cream: #f1f4f6;
  --paper: #ffffff;
  --line: rgba(21, 24, 27, .14);
  --shadow: 0 22px 60px rgba(5, 7, 8, .18);
  --radius: 3px;
  --font-body: "Segoe UI Variable Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.soft {
  background: var(--cream);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--wood);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0 52%, var(--wood-light) 52% 100%);
  opacity: .8;
}

.nav-wrap {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 208px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--wood-light);
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--wood);
  background: rgba(255, 25, 25, .12);
}

.nav-cta:hover {
  background: var(--wood);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(880px, 100vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--forest-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 5, 6, .96) 0%, rgba(3, 5, 6, .82) 38%, rgba(3, 5, 6, .28) 72%, rgba(3, 5, 6, .12) 100%), linear-gradient(0deg, rgba(0, 0, 0, .62), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 84px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--wood-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wood);
}

.eyebrow.light {
  color: var(--wood-light);
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: -.04em;
}

h1 em {
  color: var(--wood-light);
  font-style: normal;
  font-weight: 750;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  letter-spacing: -.035em;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 36px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, .82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--wood);
}

.button-primary:hover {
  background: #d90000;
}

.button-ghost {
  border-color: rgba(255, 255, 255, .5);
  color: white;
}

.button-ghost:hover {
  color: var(--forest-dark);
  background: white;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: white;
  transform: translateX(-50%);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.intro h2 {
  margin-bottom: 0;
}

.intro-title {
  position: relative;
  padding-bottom: 30px;
}

.circular-mark {
  width: 142px;
  height: 142px;
  margin-top: 44px;
  padding: 6px;
 
  border-radius: 50%;
}

.circular-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.intro-copy>p {
  max-width: 680px;
  margin-bottom: 45px;
  color: var(--muted);
  font-size: 1.08rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.quick-facts div {
  padding: 25px 18px 0 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--wood);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 750;
  letter-spacing: -.025em;
}

.quick-facts div:nth-child(2) strong {
  color: #008bd1;
}

.quick-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading.centered {
  max-width: 710px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading>p:last-child {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(25, 32, 29, .2);
  border-left: 1px solid rgba(25, 32, 29, .2);
}

.feature-card {
  min-height: 470px;
  padding: 0;
  overflow: hidden;
  border-right: 1px solid rgba(25, 32, 29, .2);
  border-bottom: 1px solid rgba(25, 32, 29, .2);
  background: rgba(255, 255, 255, .48);
}

.feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .5s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.04);
}

.feature-body {
  padding: 26px 28px 30px;
}

.feature-number {
  display: block;
  margin-bottom: 24px;
  color: var(--wood);
  font: 800 .78rem var(--font-body);
  letter-spacing: .12em;
}

.feature-card:nth-child(even) .feature-number {
  color: #008bd1;
}

.feature-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font: 750 1.22rem/1.2 var(--font-display);
  letter-spacing: -.015em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: end;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading>p {
  max-width: 520px;
  margin-bottom: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--forest-dark);
}

.product-card-wide {
  min-height: 520px;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 20, 17, .94), rgba(7, 20, 17, .02) 70%);
}

.product-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px;
  color: white;
}

.product-overlay span {
  display: block;
  margin-bottom: 12px;
  color: var(--wood-light);
  font-size: .72rem;
  letter-spacing: .16em;
}

.product-card:nth-child(even) .product-overlay span {
  color: #ff3a3a;
}

.product-overlay h3 {
  margin-bottom: 8px;
  font: 750 1.85rem/1.15 var(--font-display);
  letter-spacing: -.025em;
}

.product-overlay p {
  max-width: 490px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
}

.commitment {
  padding: 0;
  color: white;
  background: var(--forest-dark);
  border-top: 4px solid var(--wood-light);
}

.commitment-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.commitment-image {
  min-height: 720px;
}

.commitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commitment-copy {
  max-width: 650px;
  padding: 100px 76px;
  align-self: center;
}

.commitment-copy h2 {
  font-size: clamp(2.25rem, 3.8vw, 4rem);
}

.commitment-copy .lead {
  color: white;
  font-size: 1.13rem;
}

.commitment-copy p {
  color: rgba(255, 255, 255, .7);
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .86);
  font-size: .88rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wood);
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 120px;
  align-items: start;
}

.contact-grid>div:first-child>p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-card {
  position: relative;
  padding: 44px 40px 40px;
  color: white;
  background: var(--forest-dark);
  box-shadow: var(--shadow);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--wood) 0 50%, var(--wood-light) 50% 100%);
}

.contact-card>div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.contact-card>div:first-child {
  padding-top: 0;
}

.contact-card p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .82);
}

.contact-card a:not(.button):hover {
  color: var(--wood-light);
}

.contact-label {
  color: var(--wood-light);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.button.full {
  width: 100%;
  margin-top: 28px;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, .62);
  background: #030405;
  border-top: 3px solid var(--wood);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-grid>p {
  margin-bottom: 0;
  font-size: .78rem;
}

.footer-grid>p:last-child {
  text-align: right;
}

.footer-brand {
  color: white;
}

.footer-brand img {
  width: 168px;
  height: auto;
}

@media (max-width: 900px) {
  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    z-index: 31;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 24px;
    height: 2px;
    display: block;
    background: white;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 80px 30px;
    background: rgba(9, 27, 22, .98);
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero {
    min-height: 680px;
    height: 100svh;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(3, 5, 6, .96), rgba(3, 5, 6, .6)), linear-gradient(0deg, rgba(0, 0, 0, .58), transparent);
  }

  .intro-grid,
  .split-heading,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .commitment-image {
    min-height: 460px;
    max-height: 580px;
  }

  .commitment-copy {
    max-width: none;
    padding: 80px max(30px, calc((100vw - 760px) / 2));
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 70px 0;
  }

  .nav-wrap {
    height: 92px;
  }

  .brand img {
    width: 176px;
    height: auto;
  }

  .hero-content {
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: baseline;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-image {
    height: 220px;
  }

  .feature-number {
    margin-bottom: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-wide {
    min-height: 390px;
  }

  .product-overlay {
    padding: 28px;
  }

  .commitment-image {
    min-height: 350px;
  }

  .commitment-copy {
    padding: 68px 24px;
  }

  .contact-card {
    padding: 30px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-grid>p:last-child {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}