@font-face {
  font-family: "Barlow Condensed";
  src: url("./assets/fonts/barlow-condensed-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("./assets/fonts/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #0b0c0d;
  --ink-soft: #202122;
  --paper: #ffffff;
  --accent: #df510b;
  --accent-dark: #b63a00;
  --muted-dark: #b6b6b2;
  --muted-light: #555650;
  --line-dark: rgba(255, 255, 255, 0.24);
  --line-light: #c9c9c4;
  --shell: min(1440px, calc(100% - 96px));
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  translate: 0 -160%;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--paper);
}

.header-inner {
  width: var(--shell);
  min-height: 138px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 200px 1fr 290px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.wordmark,
.footer-wordmark {
  width: max-content;
  color: var(--accent);
  font-family: var(--display);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.wordmark span,
.footer-wordmark span,
.products h2 span,
.brand-statement h2 > span,
.quote-copy h2 span {
  color: var(--accent);
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 46px;
  font-size: 15px;
  font-weight: 500;
}

.primary-nav a {
  position: relative;
  padding-block: 10px;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale 220ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  scale: 1 1;
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1;
}

.header-contact a:hover,
.header-contact a:focus-visible {
  color: var(--paper);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, translate 180ms ease;
}

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

.button-primary:hover {
  background: var(--accent-dark);
  translate: 0 -2px;
}

.button-compact {
  min-width: 226px;
  min-height: 52px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  display: block;
  margin: 6px auto;
  background: currentColor;
  transition: rotate 180ms ease, translate 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(760px, 88svh, 900px);
  overflow: hidden;
  background: #020304;
  color: var(--paper);
  isolation: isolate;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  min-height: clamp(760px, 88svh, 900px);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  padding-block: clamp(190px, 26vh, 270px) 86px;
}

.hero-copy {
  width: min(760px, 54%);
  animation: hero-copy-in 900ms 120ms both var(--ease);
}

.hero h1,
.products h2,
.brand-statement h2,
.quote-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(68px, 5.2vw, 90px);
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 560px;
  margin: 42px 0 30px;
  color: #e0e0dd;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 7px;
  border-bottom: 2px solid currentColor;
  color: var(--accent);
  font-size: 17px;
  font-weight: 500;
}

.text-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
  transition: translate 180ms var(--ease);
}

.text-link:hover svg {
  translate: 5px 0;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  animation: hero-image-in 1400ms both var(--ease);
}

.hero-media img {
  width: 116%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  translate: 14% 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%);
}

.products {
  position: relative;
  z-index: 3;
  background: var(--paper);
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(560px, 1.4fr);
  gap: clamp(70px, 8vw, 150px);
  padding-block: 112px 84px;
}

.products-intro h2 {
  max-width: 520px;
  font-size: clamp(72px, 6.1vw, 102px);
}

.products-intro p {
  max-width: 470px;
  margin: 34px 0 32px;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.65;
}

.text-link-light {
  color: var(--accent);
}

.product-list {
  margin: 0;
  padding: 4px 0 0;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(92px, auto));
  column-gap: 42px;
  list-style: none;
}

.product-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
}

.product-number {
  color: var(--accent);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.product-band {
  width: 100%;
  aspect-ratio: 4.5 / 1;
  display: block;
  overflow: hidden;
  background: var(--ink);
}

.product-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: scale 1.2s var(--ease);
}

.product-band.is-visible img {
  scale: 1.015;
}

.brand-statement {
  padding-block: 66px 76px;
  background: var(--ink-soft);
  color: var(--paper);
}

.statement-inner {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 34px;
  align-items: stretch;
}

.statement-rule {
  background: var(--accent);
}

.brand-statement h2 {
  font-size: clamp(58px, 5.5vw, 92px);
}

.brand-statement h2 strong {
  color: var(--accent);
  font-weight: 700;
}

.section-transition {
  position: relative;
  height: 88px;
  background: var(--paper);
}

.section-transition::before {
  position: absolute;
  top: 0;
  right: 3.1vw;
  left: 3.1vw;
  height: 1px;
  background: var(--line-light);
  content: "";
}

.section-transition span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 88px;
  background: var(--accent);
}

.quote-section {
  position: relative;
  overflow: hidden;
  background-color: var(--ink-soft);
  background-image: repeating-radial-gradient(
    circle at 5% 54%,
    transparent 0 49px,
    rgba(255, 255, 255, 0.035) 50px 51px
  );
  color: var(--paper);
}

.quote-layout {
  min-height: 806px;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  align-items: start;
  gap: clamp(72px, 10vw, 170px);
  padding-block: 80px 64px;
}

.quote-copy h2 {
  font-size: clamp(84px, 7vw, 118px);
  text-transform: uppercase;
}

.quote-copy > p {
  max-width: 510px;
  margin: 34px 0 54px;
  padding-top: 28px;
  border-top: 2px solid var(--accent);
  color: #ddddda;
  font-size: 20px;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  gap: 24px;
}

.contact-methods a {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(26px, 2.25vw, 38px);
  font-weight: 700;
  line-height: 1;
}

.contact-methods a > span:last-child {
  display: grid;
  gap: 4px;
}

.contact-methods small {
  color: var(--paper);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
}

.contact-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.quote-form {
  min-height: 640px;
  padding: clamp(32px, 3vw, 44px);
  display: grid;
  align-content: center;
  gap: 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #8e8e8a;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input {
  height: 52px;
  padding-inline: 14px;
}

.field textarea {
  min-height: 104px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(223, 81, 11, 0.2);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.form-note {
  color: #696964;
  text-align: center;
}

.form-status {
  min-height: 1.45em;
  color: #32633b;
  font-weight: 600;
  text-align: center;
}

.site-footer {
  background: var(--paper);
}

.footer-inner {
  width: var(--shell);
  min-height: 132px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px 1fr 1.4fr auto;
  align-items: center;
  color: #33332f;
}

.footer-inner > * {
  margin: 0;
  padding-inline: 34px;
}

.footer-inner > *:not(:first-child) {
  border-left: 1px solid var(--line-light);
}

.footer-wordmark {
  padding-left: 0;
  color: var(--ink);
  font-size: 43px;
}

.footer-wordmark span {
  color: var(--accent);
}

.footer-inner p,
.footer-inner address,
.footer-link {
  font-size: 15px;
  font-style: normal;
}

.footer-link {
  padding-right: 0;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

[data-reveal] {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 700ms var(--ease), translate 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  translate: 0;
}

.product-list [data-reveal]:nth-child(2),
.product-list [data-reveal]:nth-child(6) {
  transition-delay: 60ms;
}

.product-list [data-reveal]:nth-child(3),
.product-list [data-reveal]:nth-child(7) {
  transition-delay: 120ms;
}

.product-list [data-reveal]:nth-child(4),
.product-list [data-reveal]:nth-child(8) {
  transition-delay: 180ms;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    translate: 0 24px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    scale: 1.025;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1120px);
  }

  .header-inner {
    grid-template-columns: 170px 1fr auto;
  }

  .primary-nav {
    gap: 28px;
  }

  .header-contact {
    display: none;
  }

  .products-layout {
    grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
    gap: 58px;
  }

  .product-list {
    column-gap: 26px;
  }

  .product-list li {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    font-size: 21px;
  }

  .product-number {
    font-size: 36px;
  }

  .quote-layout {
    gap: 64px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 48px);
  }

  .header-inner {
    min-height: 94px;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .wordmark {
    font-size: 44px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    translate: 0 3.5px;
    rotate: 45deg;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    translate: 0 -3.5px;
    rotate: -45deg;
  }

  .primary-nav {
    position: fixed;
    inset: 94px auto auto 0;
    z-index: 30;
    width: 100vw;
    max-width: none;
    min-height: calc(100svh - 94px);
    justify-self: stretch;
    padding: 38px 24px 60px;
    display: grid;
    align-content: start;
    gap: 6px;
    background: var(--ink);
    border-top: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: 42px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    translate: 0 -14px;
    transition: opacity 180ms ease, translate 180ms ease;
  }

  .primary-nav a {
    padding-block: 14px;
    border-bottom: 1px solid var(--line-dark);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    translate: 0;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 620px;
    align-items: flex-start;
    padding-block: 150px 52px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(64px, 11vw, 90px);
  }

  .hero-copy > p {
    max-width: 560px;
  }

  .hero-media {
    position: relative;
    height: 490px;
  }

  .hero-media img {
    width: 100%;
    object-position: 68% center;
    translate: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .products-layout {
    grid-template-columns: 1fr;
    gap: 72px;
    padding-block: 92px 76px;
  }

  .products-intro h2 {
    max-width: 600px;
  }

  .product-list {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .product-list li {
    min-height: 92px;
  }

  .product-band {
    aspect-ratio: 1.65 / 1;
  }

  .brand-statement h2 br {
    display: none;
  }

  .quote-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 90px;
  }

  .quote-copy > p {
    max-width: 570px;
  }

  .quote-form {
    min-height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-block: 28px;
  }

  .footer-inner > * {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 12px 24px;
  }

  .footer-inner > *:not(:first-child) {
    border-left: 0;
  }

  .footer-inner > *:nth-child(even) {
    border-left: 1px solid var(--line-light);
  }

  .footer-wordmark,
  .footer-inner address {
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 80px;
  }

  .wordmark {
    font-size: 39px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .primary-nav {
    inset: 80px auto auto 0;
    min-height: calc(100svh - 80px);
    font-size: 36px;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 126px 32px;
  }

  .hero h1 {
    font-size: clamp(51px, 15.1vw, 68px);
    line-height: 0.93;
  }

  .hero h1 br {
    display: none;
  }

  .hero-copy > p {
    margin-block: 28px 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-media {
    height: 390px;
  }

  .hero-media img {
    width: 148%;
    max-width: none;
    object-position: 76% center;
    translate: 0;
  }

  .products-layout {
    gap: 58px;
    padding-block: 78px 60px;
  }

  .products-intro h2 {
    font-size: 65px;
    line-height: 0.92;
  }

  .products-intro p {
    margin-top: 26px;
    font-size: 16px;
  }

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

  .product-list li {
    min-height: 80px;
    grid-template-columns: 48px 1fr;
    font-size: 21px;
  }

  .product-number {
    font-size: 34px;
  }

  .product-band {
    aspect-ratio: 1 / 1;
  }

  .product-band img {
    width: 170%;
    max-width: none;
    object-position: center;
  }

  .brand-statement {
    padding-block: 52px 58px;
  }

  .statement-inner {
    gap: 20px;
  }

  .brand-statement h2 {
    font-size: 48px;
    line-height: 0.94;
  }

  .section-transition,
  .section-transition span {
    height: 64px;
  }

  .quote-layout {
    gap: 56px;
    padding-block: 72px;
  }

  .quote-copy h2 {
    font-size: 67px;
  }

  .quote-copy > p {
    margin-block: 28px 40px;
    padding-top: 22px;
    font-size: 17px;
  }

  .contact-methods {
    gap: 20px;
  }

  .contact-methods a {
    gap: 14px;
    font-size: 27px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .quote-form {
    padding: 28px 22px;
    gap: 17px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 24px;
  }

  .footer-inner > * {
    min-height: auto;
    padding: 11px 0;
    border-left: 0 !important;
  }

  .footer-inner address {
    max-width: 270px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    translate: 0;
  }
}
