:root {
  --orange: #f27c22;
  --ink: #0d0d0d;
  --paper: #f4f0e8;
  --muted: rgba(244, 240, 232, 0.62);
  --line: rgba(244, 240, 232, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  max-width: 100rem;
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2.75rem) clamp(1.25rem, 4vw, 4.5rem);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
}

.wordmark {
  color: var(--paper);
  font-family: "Bricolage Grotesque", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  column-gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
  width: 100%;
  padding: clamp(3rem, 8vh, 6.5rem) 0;
}

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

h1 {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(3.3rem, 6.3vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.headline-line {
  display: block;
  white-space: nowrap;
}

h1 .accent {
  color: var(--orange);
}

.intro {
  max-width: 38rem;
  margin: clamp(1.8rem, 4vh, 3rem) 0 0;
  color: rgba(244, 240, 232, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.products {
  width: 100%;
  max-width: 38rem;
  justify-self: end;
}

.products-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.2rem 0.85rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.products-heading h2 {
  margin: 0;
  font: inherit;
}

.product-list {
  border-top: 1px solid var(--line);
}

.product-link {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  align-items: center;
  padding: clamp(1.15rem, 2.2vh, 1.65rem) 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  text-decoration: none;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.product-link[aria-disabled="true"] {
  cursor: default;
  opacity: 0.58;
}

.product-link[aria-disabled="true"]::before {
  display: none;
}

.product-link::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(242, 124, 34, 0.1);
  transform: translateX(-102%);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-number {
  align-self: start;
  padding-top: 0.22rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.product-copy {
  display: grid;
  gap: 0.28rem;
}

.product-copy strong {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.product-copy small {
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.35;
}

.arrow {
  font-size: 1.35rem;
  transition: transform 220ms ease;
}

.product-status {
  align-self: start;
  margin-top: 0.12rem;
  padding: 0.25rem 0.42rem;
  border: 1px solid rgba(242, 124, 34, 0.48);
  color: var(--orange);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.product-link:hover::before,
.product-link:focus-visible::before {
  transform: translateX(0);
}

.product-link:hover .arrow,
.product-link:focus-visible .arrow,
.contact:hover .arrow,
.contact:focus-visible .arrow {
  transform: translate(0.2rem, -0.2rem);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  margin-top: clamp(1.25rem, 3vh, 2rem);
  padding: clamp(1.15rem, 2vw, 1.45rem);
  color: #fff;
  background: var(--orange);
  text-decoration: none;
  transition: background-color 220ms ease;
}

.contact-copy {
  display: grid;
  gap: 0.18rem;
}

.contact-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-copy strong {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.contact-email {
  font-size: 0.82rem;
  font-weight: 500;
}

.contact:hover,
.contact:focus-visible {
  background: #ff8a32;
}

.product-link:focus-visible,
.contact:focus-visible,
.wordmark:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.contact:focus-visible {
  outline-color: var(--paper);
}

.site-footer {
  color: rgba(244, 240, 232, 0.48);
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: clamp(3.5rem, 8vh, 5.5rem);
    padding-top: clamp(4.5rem, 10vh, 7rem);
  }

  .hero-copy,
  .products {
    max-width: 48rem;
  }

  .products {
    justify-self: start;
  }

  h1 {
    font-size: clamp(3rem, 10.5vw, 6.7rem);
  }

  .site-footer {
    padding-top: 2.5rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2.55rem, 12vw, 4.5rem);
    line-height: 0.85;
  }

  .product-link {
    grid-template-columns: 1.5rem minmax(0, 1fr) auto;
    padding-inline: 0.4rem;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-email {
    display: none;
  }
}

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

  .product-link,
  .product-link::before,
  .contact,
  .arrow {
    transition: none;
  }
}
