@charset "UTF-8";

:root {
  --ink: #14231f;
  --ink-soft: #30403b;
  --forest: #173d36;
  --forest-deep: #102d28;
  --acid: #d8ff4f;
  --orange: #ff6846;
  --cream: #f1ede3;
  --paper: #faf8f2;
  --white: #ffffff;
  --line: rgba(20, 35, 31, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 60px rgba(18, 43, 37, 0.16);
  --shell: min(1240px, calc(100% - 64px));
  --header-height: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

html.has-open-menu,
html.has-open-menu body {
  overflow: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--forest-deep);
  background: var(--acid);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: none;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h3 {
  letter-spacing: -0.035em;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 11vw, 160px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(250, 248, 242, 0);
  transition:
    height 260ms var(--ease),
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 72px;
  border-color: var(--line);
  background: rgba(250, 248, 242, 0.94);
  box-shadow: 0 10px 32px rgba(20, 35, 31, 0.06);
  backdrop-filter: blur(16px);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  justify-self: start;
  width: max-content;
  font-family: "Arial Narrow", Arial, sans-serif;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 6px);
  gap: 3px;
  align-items: end;
  width: 26px;
  height: 28px;
  padding: 3px;
  border: 2px solid currentColor;
}

.brand-mark span {
  display: block;
  height: 14px;
  background: currentColor;
}

.brand-mark span:nth-child(2) {
  height: 19px;
}

.brand-mark i {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent var(--orange);
}

.brand-word {
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
}

.brand-go-text {
  color: var(--orange);
}

.brand-pallet-text {
  color: inherit;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  justify-self: end;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.header-phone:hover {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  right: 10px;
  left: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform 220ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding-top: calc(var(--header-height) + 8px);
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 255, 79, 0.34), transparent 24%),
    var(--paper);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 35, 31, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 35, 31, 0.045) 1px, transparent 1px);
  background-size: 8.333vw 100%, 100% 86px;
  pointer-events: none;
  mask-image: linear-gradient(to right, #000, transparent 82%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 6.7fr) minmax(430px, 5.3fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 10px 48px;
}

.eyebrow,
.section-kicker {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.hero h1 {
  position: relative;
  margin: 0 0 28px;
  font-size: clamp(4.6rem, 8.25vw, 8.15rem);
  line-height: 0.78;
  letter-spacing: -0.073em;
  text-transform: uppercase;
}

.hero-go {
  display: inline-block;
  margin: 0 0.08em 0.08em 0;
  padding: 0.05em 0.12em 0.08em;
  color: var(--forest-deep);
  background: var(--acid);
  transform: rotate(-2.2deg);
}

.hero-title-small {
  display: inline-block;
  margin: 0 0 0 0.34em;
  font-size: 0.24em;
  line-height: 1.03;
  letter-spacing: -0.025em;
  text-align: left;
  vertical-align: middle;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    color 220ms ease,
    background-color 220ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.7;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 8px 8px 0 var(--ink);
}

.button-primary:hover {
  box-shadow: 4px 4px 0 var(--ink);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--acid);
}

.text-link,
.underlined-link {
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-block: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.text-link::after,
.underlined-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.text-link:hover::after,
.underlined-link:hover::after {
  transform: scaleX(0.45);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 15px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-points li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
  content: "";
  transform: rotate(45deg);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.visual-frame {
  position: absolute;
  top: 3%;
  right: 0;
  bottom: 2%;
  left: 2%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(20, 35, 31, 0.12);
  background:
    linear-gradient(145deg, rgba(216, 255, 79, 0.95), rgba(216, 255, 79, 0.56)),
    var(--acid);
  clip-path: polygon(12% 0, 100% 0, 100% 91%, 85% 100%, 0 100%, 0 13%);
}

.visual-frame::before {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(20, 35, 31, 0.25);
  border-radius: 50%;
  content: "";
}

.visual-frame::after {
  position: absolute;
  top: 17%;
  right: 17%;
  width: 40%;
  aspect-ratio: 1;
  border: 1px dashed rgba(20, 35, 31, 0.25);
  border-radius: 50%;
  content: "";
}

.visual-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: 55% 40%;
  filter: none;
}

.visual-index {
  position: absolute;
  z-index: 2;
  top: -11px;
  right: -7px;
  color: transparent;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(8rem, 16vw, 15rem);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(20, 35, 31, 0.18);
}

.visual-note {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 154px;
  padding: 14px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.visual-note-top {
  top: 18%;
  left: -6%;
}

.visual-note-bottom {
  right: -6%;
  bottom: 19%;
  background: var(--orange);
}

.note-number {
  padding-top: 2px;
  color: var(--acid);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.visual-note-bottom .note-number {
  color: var(--white);
  opacity: 0.75;
}

.visual-stamp {
  position: absolute;
  z-index: 3;
  bottom: 1%;
  left: -5%;
  display: grid;
  place-content: center;
  width: 95px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: center;
  transform: rotate(-12deg);
}

.hero-ticker {
  position: relative;
  display: flex;
  gap: clamp(16px, 3vw, 46px);
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ticker i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--orange);
  transform: rotate(45deg);
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 5.2fr 4fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.section-index {
  padding-top: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--orange);
}

.section-kicker-light {
  color: var(--acid);
}

.intro-title-wrap h2 {
  font-size: clamp(3rem, 5.8vw, 5.6rem);
}

.intro-copy {
  padding-top: 53px;
}

.intro-copy p {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.formats {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--forest-deep);
  background-size: 72px 72px;
}

.formats::before {
  position: absolute;
  top: -16vw;
  right: -12vw;
  width: 38vw;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 255, 79, 0.18);
  border-radius: 50%;
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3.2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 90px);
}

.section-heading > p {
  max-width: 420px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.format-card {
  position: relative;
  display: grid;
  grid-column: span 6;
  grid-template-rows: auto minmax(280px, 42vh) 1fr auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  color: var(--ink);
  background: var(--paper);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms ease;
}

.format-card:hover {
  z-index: 2;
  box-shadow: 15px 15px 0 var(--orange);
  transform: translate(-4px, -4px);
}

.format-card-global {
  background: #ead9c4;
}

.format-card-head {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.format-code {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.format-badge {
  padding: 7px 10px;
  color: var(--forest-deep);
  background: var(--acid);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-photo {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-bottom: 1px solid var(--line);
  background: #dce7d8;
}

.format-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.format-card-body {
  padding: 26px 24px 30px;
}

.format-card-body h3 {
  margin-bottom: 8px;
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
}

.format-card-body h3 span {
  display: inline-block;
  font-size: 0.42em;
  letter-spacing: -0.02em;
  vertical-align: middle;
}

.format-units {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.format-price {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.format-price span {
  font-size: 0.55em;
}

.format-card-body p:not(.format-price) {
  max-width: 530px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.format-card-body ul {
  display: grid;
  gap: 9px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.format-card-body li {
  position: relative;
  padding-left: 17px;
  font-size: 0.8rem;
  font-weight: 700;
}

.format-card-body li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.card-link {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding-inline: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.card-link span {
  font-size: 1.3rem;
}

.card-link:hover {
  color: var(--white);
  background: var(--orange);
}

.warehouse {
  overflow: hidden;
  background: var(--cream);
}

.warehouse-grid {
  display: grid;
  grid-template-columns: minmax(0, 6.7fr) minmax(340px, 4.3fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.warehouse-photo {
  position: relative;
  margin: 0;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #dce7d8;
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 0 100%);
}

.warehouse-photo img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
}

.warehouse-photo figcaption {
  position: absolute;
  z-index: 2;
  top: 43%;
  left: 45%;
  display: grid;
  justify-items: center;
  padding: 18px 22px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.warehouse-photo figcaption span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.warehouse-photo figcaption small {
  margin-top: 5px;
  color: var(--acid);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.warehouse-copy h2 {
  margin-bottom: 32px;
}

.warehouse-lead {
  max-width: 480px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.warehouse-facts {
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
}

.warehouse-facts div {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 22px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.warehouse-facts dt {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.warehouse-facts dd {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.how {
  background: var(--paper);
}

.how-heading > p {
  color: var(--ink-soft);
}

.steps-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 1.1fr 4fr auto;
  gap: 30px;
  align-items: center;
  min-height: 145px;
  padding: 22px 28px 22px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 240ms var(--ease),
    color 240ms ease,
    background-color 240ms ease;
}

.steps-list li:hover {
  padding-left: 28px;
  color: var(--white);
  background: var(--forest);
}

.step-number {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.steps-list h3 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.steps-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.steps-list li:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.step-icon {
  font-size: 1.8rem;
}

.seo-copy {
  background: var(--cream);
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 4fr 5.4fr;
  gap: clamp(30px, 5vw, 76px);
}

.seo-grid h2 {
  max-width: 540px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 1;
}

.seo-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding-top: 48px;
}

.seo-columns p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.8;
}

.seo-columns a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.seo-columns a:hover {
  color: var(--orange);
}

.geo-directory {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--forest);
  background-size: 72px 72px;
}

.geo-directory-grid {
  display: grid;
  grid-template-columns: minmax(300px, 4fr) minmax(0, 6fr);
  gap: clamp(52px, 9vw, 130px);
  align-items: start;
}

.geo-directory h2 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
}

.geo-directory-grid > div:first-child > p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.geo-directory-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.geo-directory-links a {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.geo-directory-links a:hover,
.geo-directory-links .geo-directory-all {
  color: var(--forest-deep);
  background: var(--acid);
}

.geo-directory-links .geo-directory-all:hover {
  color: var(--white);
  background: var(--orange);
}

.geo-directory-links i {
  font-style: normal;
  font-size: 1.1rem;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(290px, 3.4fr) minmax(0, 6.6fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-bottom: 28px;
}

.faq-heading > p:last-child {
  max-width: 290px;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 24px;
  align-items: center;
  min-height: 95px;
  padding: 20px 4px;
  cursor: pointer;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  position: relative;
  width: 26px;
  height: 26px;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease);
}

details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  max-width: 680px;
  margin-bottom: 0;
  padding: 0 50px 28px 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.contacts {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 10vw, 138px);
  color: var(--white);
  background: var(--orange);
}

.contacts-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 47%, rgba(20, 35, 31, 0.08) 47%, rgba(20, 35, 31, 0.08) 53%, transparent 53%);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, #000, transparent 55%);
}

.contacts-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 4.2fr) minmax(0, 5.8fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
}

.contacts-copy h2 {
  margin-bottom: 30px;
}

.contacts-copy p:last-child {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contacts .section-kicker-light {
  color: var(--forest-deep);
}

.contact-phone {
  justify-self: start;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.contact-phone:hover {
  border-color: var(--forest-deep);
  color: var(--forest-deep);
}

.site-footer {
  padding-block: 54px 34px;
  color: var(--white);
  background: var(--forest-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-light);
}

.brand-footer .brand-go-text {
  color: var(--acid);
}

.footer-top > p {
  max-width: 240px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-end;
}

.footer-top nav a {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-top nav a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 44px, 1050px);
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 6fr) minmax(360px, 4fr);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8.6vw, 6.7rem);
  }

  .hero-visual {
    min-height: 590px;
  }

  .visual-note-bottom {
    right: -2%;
  }

  .format-card {
    grid-column: span 6;
  }

  .warehouse-photo,
  .warehouse-photo img {
    min-height: 580px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .header-grid {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .header-phone {
    font-size: 0.72rem;
    letter-spacing: 0;
  }

  .menu-toggle {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 71px 0 0;
    display: grid;
    grid-auto-rows: min-content;
    gap: 0;
    padding: 30px 22px;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-16px);
    transition:
      visibility 0s linear 260ms,
      opacity 220ms ease,
      transform 260ms var(--ease);
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 66px;
    border-bottom: 1px solid var(--line);
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 28px;
  }

  .hero-visual {
    width: min(100%, 610px);
    min-height: 600px;
    margin-left: auto;
  }

  .hero-ticker {
    margin-top: 30px;
  }

  .intro-grid {
    grid-template-columns: 0.5fr 4.5fr;
  }

  .intro-copy {
    grid-column: 2;
    padding-top: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 570px;
  }

  .format-card {
    grid-column: 1 / -1;
    grid-template-rows: auto minmax(260px, 38vh) 1fr auto;
    min-height: 0;
  }

  .warehouse-grid {
    grid-template-columns: 1fr;
  }

  .warehouse-photo {
    width: min(100%, 720px);
  }

  .warehouse-photo,
  .warehouse-photo img {
    min-height: 460px;
  }

  .warehouse-copy {
    max-width: 650px;
  }

  .seo-grid {
    grid-template-columns: 0.5fr 4.5fr;
  }

  .seo-columns {
    grid-column: 2;
    padding-top: 12px;
  }

  .geo-directory-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contacts-copy {
    max-width: 650px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .section {
    padding-block: 82px;
  }

  h2 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    height: 68px;
  }

  .brand-word {
    font-size: 1.18rem;
  }

  .mobile-nav {
    inset: 67px 0 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 6px);
  }

  .hero-grid-lines {
    background-size: 25vw 100%, 100% 68px;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.61rem;
  }

  .eyebrow-line {
    width: 22px;
  }

  .hero h1 {
    margin-bottom: 30px;
    font-size: clamp(3.65rem, 19vw, 5.25rem);
    line-height: 0.82;
  }

  .hero-title-small {
    display: block;
    margin: 0.75em 0 0;
    font-size: 0.25em;
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-visual {
    min-height: 450px;
    margin-top: 15px;
  }

  .visual-frame {
    left: 0;
  }

  .visual-note {
    min-width: 132px;
    padding: 11px;
    font-size: 0.66rem;
  }

  .visual-note-top {
    top: 13%;
    left: -2%;
  }

  .visual-note-bottom {
    right: -2%;
    bottom: 16%;
  }

  .visual-stamp {
    left: -2%;
    width: 76px;
    font-size: 0.52rem;
  }

  .visual-index {
    top: 4px;
    right: 2px;
    font-size: 8rem;
  }

  .hero-ticker {
    justify-content: space-between;
    overflow: hidden;
    white-space: nowrap;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .section-index {
    margin-bottom: -8px;
  }

  .intro-copy,
  .seo-columns {
    grid-column: 1;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .format-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .format-card {
    grid-column: 1;
    min-height: 0;
    grid-template-rows: auto 240px 1fr auto;
  }

  .format-card-body h3 {
    font-size: 3rem;
  }

  .warehouse-photo,
  .warehouse-photo img {
    min-height: 360px;
  }

  .warehouse-photo figcaption {
    left: 50%;
  }

  .warehouse-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .steps-list li {
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    min-height: 120px;
    padding-right: 4px;
  }

  .steps-list li:hover {
    padding-left: 12px;
  }

  .steps-list h3 {
    font-size: 2.15rem;
  }

  .steps-list p {
    font-size: 0.83rem;
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .seo-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .geo-directory-links {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 1.14rem;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    display: grid;
  }

}

@media (max-width: 420px) {
  .header-phone {
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero-visual {
    min-height: 400px;
  }

  .visual-note-bottom {
    bottom: 14%;
  }

  .warehouse-photo,
  .warehouse-photo img {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .card-link,
  .button,
  .contacts-pattern {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .contacts {
    padding-block: 36px;
  }
}
