.promo-bar {
  padding: 8px 16px;
  border-bottom: 2px solid var(--black);
  text-align: center;
}

.promo-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.promo-bar-message {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.35;
  color: inherit;
}

a.promo-bar-message:hover {
  opacity: 0.85;
}

.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: var(--nav-z);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 190px 1fr 120px;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

.nav-logo img {
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.nav-logo-text,
.top-logo-text,
.footer-logo-text {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-align: center;
}

.nav-links,
.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  list-style: none;
}

.nav-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-links a:focus,
.nav-links a:focus {
  transform: translateY(-2px);
  opacity: 0.88;
}

.bag-link,
.nav-cta {
  justify-self: end;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.nav-links .bag-link {
  display: none;
}

.footer {
  padding: 38px 24px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links {
  justify-content: flex-end;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 105px 24px 110px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
}

.hero h2 {
  font-size: clamp(66px, 10vw, 142px);
  max-width: 760px;
}

.hero h2 span {
  display: inline-block;
  padding: 0 12px 9px;
}

.hero-copy {
  max-width: 560px;
  margin-top: 30px;
  font-size: 20px;
  color: var(--muted);
}

.hero-photo {
  min-height: 580px;
  border: 3px solid var(--black);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  border: 2px solid var(--black);
}

.gate-grid,
.category-header,
.shop-header,
.yellow-grid,
.feature-grid,
.drop-grid,
.notes-grid,
.newsletter-box,
.contact-grid {
  display: grid;
  gap: 56px;
}

.gate-grid,
.feature-grid,
.drop-grid,
.notes-grid,
.yellow-grid,
.newsletter-box,
.contact-grid {
  gap: 70px;
}

.gate-grid,
.category-header,
.shop-header,
.yellow-grid,
.feature-grid,
.drop-grid,
.notes-grid,
.newsletter-box,
.contact-grid {
  grid-template-columns: 1fr 0.72fr;
}

.gate-grid,
.feature-grid,
.drop-grid,
.notes-grid,
.yellow-grid,
.newsletter-box {
  grid-template-columns: 0.95fr 1.05fr;
}

.newsletter-box {
  grid-template-columns: 1fr 0.9fr;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}