:root {
  --bg: #090909;
  --bg-soft: #131313;
  --panel: #171717;
  --panel-2: #202020;
  --text: #ffffff;
  --muted: #b8b0a6;
  --dark-text: #111111;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #bb1801;
  --accent-2: #dc2912;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Bahnschrift, "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
}

h1,
h2,
h3,
.site-footer h3 {
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
}

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

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

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

.section {
  padding: 68px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff7c6a;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading h2,
.feature-copy h2,
.quote-shell h2 {
  margin: 0 0 16px;
  color: inherit;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.section-heading p,
.feature-copy p,
.quote-shell p,
.footer-copy {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: white;
  box-shadow: 0 18px 30px rgba(187, 24, 1, 0.28);
}

.btn-ghost,
.btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.btn-light {
  background: white;
  color: var(--dark-text);
}

.btn-dark {
  background: #111111;
  color: white;
}

.site-topbar {
  background: #060606;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.site-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  min-height: 40px;
  padding: 8px 0;
}

@media (min-width: 800px) {
  .site-topbar-inner {
    justify-content: space-between;
  }
}

.site-topbar-badge {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.site-topbar-note {
  opacity: 0.35;
}

.site-topbar-meta {
  text-align: center;
}

.site-topbar-phone {
  font-weight: 700;
  color: #fff;
}

.site-topbar-phone:hover {
  color: #ff9a8c;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-name {
  color: white;
}

.brand-suffix {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover {
  color: white;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

html.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal] {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

@media (prefers-reduced-motion: no-preference) {
  html:not(.no-js) [data-reveal]:not(.is-visible) {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
  }
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .industry-card.is-visible:hover,
  .trust-item.is-visible:hover,
  .brands .partner-logo-cell.is-visible:hover {
    transform: none;
  }

  .industry-card.is-visible:hover .industry-card-img,
  .trust-item.is-visible:hover .trust-thumb img {
    transform: none;
  }
}

.site-nav a:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 6px;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(48px, 8vw, 88px) 0 clamp(64px, 10vw, 112px);
  min-height: min(92vh, 900px);
  border-radius: 0 0 clamp(24px, 4vw, 40px) clamp(24px, 4vw, 40px);
}

.hero-media,
.hero-overlay,
.hero-ambient,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  background: #070707;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
  transform: scale(1.03);
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 55% at 12% 20%, rgba(220, 41, 18, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 88% 78%, rgba(187, 24, 1, 0.14), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(244, 68, 45, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.15) 0%, transparent 38%, rgba(9, 9, 9, 0.92) 100%);
  pointer-events: none;
}

.hero-ambient {
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.hero-blob--a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -8%;
  left: -12%;
  background: rgba(220, 41, 18, 0.55);
  animation: hero-blob-drift 18s ease-in-out infinite;
}

.hero-blob--b {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  bottom: 5%;
  right: -5%;
  background: rgba(120, 30, 24, 0.5);
  animation: hero-blob-drift 22s ease-in-out infinite reverse;
}

.hero-blob--c {
  width: min(240px, 35vw);
  height: min(240px, 35vw);
  top: 40%;
  right: 28%;
  background: rgba(255, 255, 255, 0.06);
  animation: hero-blob-drift 26s ease-in-out infinite;
}

@keyframes hero-blob-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -14px) scale(1.06);
  }
}

.hero-noise {
  z-index: 3;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  min-height: min(72vh, 720px);
}

.hero-copy {
  max-width: 640px;
  padding-top: clamp(12px, 3vw, 28px);
}

.hero-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(220, 41, 18, 0.25);
  flex-shrink: 0;
}

.hero-eyebrow.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.88);
}

.hero-title {
  margin: 0 0 clamp(18px, 3vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  text-wrap: balance;
}

.hero-title-top {
  display: block;
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #fff;
}

.hero-title-gradient {
  display: block;
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  background: linear-gradient(120deg, #fff 0%, #ffc8be 35%, var(--accent-2) 55%, #ff9a8a 85%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-shimmer 8s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-text {
  max-width: 520px;
  margin: 0 0 clamp(24px, 4vw, 34px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-bottom: 28px;
}

.btn-hero-primary {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 20px 40px rgba(187, 24, 1, 0.35);
}

.btn-hero-secondary {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: center;
}

.hero-card {
  border-radius: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-card--accent {
  background: linear-gradient(155deg, rgba(187, 24, 1, 0.45) 0%, rgba(20, 20, 20, 0.65) 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-card-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-card-value {
  margin: 0 0 8px;
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.hero-card-unit {
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  margin-left: 0.08em;
}

.hero-card-note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

.hero-card-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob--a,
  .hero-blob--b,
  .hero-blob--c {
    animation: none;
  }

  .hero-title-gradient {
    animation: none;
    background-position: 40% center;
  }
}

.trust-bar {
  background: #0e0e0e;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-thumb {
  position: relative;
  height: 0;
  padding-bottom: 52%;
  margin: 0 0 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.trust-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-item.is-visible:hover .trust-thumb img {
  transform: scale(1.06);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 32px 0;
  align-items: start;
}

.trust-item {
  min-width: 0;
  border-radius: 18px;
  padding: 18px 16px 20px;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-item.is-visible:hover {
  transform: translate3d(0, -5px, 0);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.brands,
.services,
.industries,
.newsletter {
  background: var(--surface);
  color: var(--dark-text);
}

.services .section-heading a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services .section-heading a:hover {
  color: #7a1009;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-item {
  padding: 22px 22px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.services-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--dark-text);
}

.services-item span {
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.72);
}

.brands .partner-logo-cell {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.brands .partner-logo-cell.is-visible:hover {
  transform: translate3d(0, -6px, 0) scale(1.02);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.1);
  border-color: rgba(187, 24, 1, 0.22);
}

.brands .partner-logos img {
  filter: none;
  opacity: 1;
  max-height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.industry-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.industry-card.is-visible:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0 36px 64px rgba(0, 0, 0, 0.12);
  border-color: rgba(187, 24, 1, 0.18);
}

.industry-card-media {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: #1a1a1a;
}

.industry-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card.is-visible:hover .industry-card-img {
  transform: scale(1.09);
}

.industry-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    transparent 42%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.industry-number--media {
  position: absolute;
  left: 18px;
  bottom: 16px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
}

.industry-card-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
}

.industry-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.industry-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}

.split-feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #0f0f0f;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
}

.feature-image-wrap {
  position: relative;
  min-height: 360px;
  aspect-ratio: 5 / 6;
  max-height: 620px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.feature-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 58% 42%;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .feature-image-wrap {
    cursor: default;
  }

  .feature-image-wrap img {
    transition: none;
    will-change: auto;
  }
}

.image-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(187, 24, 1, 0.92);
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-copy a {
  color: #ff9a8c;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.feature-copy a:hover {
  color: #fff;
}

.built-heading {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  color: white;
}

.built-quote {
  margin: 0 0 22px;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.feature-copy .btn-primary {
  margin-top: 8px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.brands-banner {
  margin: 0 0 36px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.1);
  background: #eae6df;
}

figure.brands-banner {
  margin-inline: 0;
}

.brands-banner img {
  width: 100%;
  height: auto;
  max-height: min(380px, 42vw);
  display: block;
  object-fit: cover;
  object-position: center 40%;
}

.brands .partner-logos {
  margin-top: 0;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 20px;
  align-items: stretch;
}

.partner-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.partner-logos img {
  max-height: 38px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) brightness(1.45) contrast(1.02);
  opacity: 0.92;
}

.newsletter-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-copy {
  flex: 1 1 360px;
  min-width: 0;
}

.newsletter-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--dark-text);
}

.newsletter-copy p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1.02rem;
}

.newsletter-aside {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  min-width: 0;
}

.newsletter-visual {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}

.newsletter-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.newsletter-aside .newsletter-action {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}

.quote-cta {
  position: relative;
  overflow: clip;
  background: #1a0a08;
}

.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  transform: scale(1.04);
}

.quote-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(244, 68, 45, 0.92), rgba(100, 14, 10, 0.94)),
    rgba(187, 24, 1, 0.88);
  pointer-events: none;
}

.quote-shell {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.quote-shell > div:first-child {
  flex: 1 1 320px;
  min-width: 0;
}

.quote-shell p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.about-page .quote-actions .btn,
.brands-page .quote-actions .btn,
.newsletter-page .quote-actions .btn {
  min-width: 190px;
  border-radius: 0;
}

.site-footer {
  padding: 54px 0 64px;
  background: #090909;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  align-items: start;
}

.footer-grid > div {
  min-width: 0;
}

.footer-brand-col {
  min-width: 0;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-photo {
  margin-top: 22px;
  max-width: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.footer-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.site-footer h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a:hover {
  color: white;
}

.site-footer .footer-copy {
  color: rgba(255, 255, 255, 0.68);
  max-width: 340px;
}

.footer-block {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-hours {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-legal {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-attribution {
  margin-top: 14px !important;
  max-width: 52rem;
  line-height: 1.5;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer .footer-attribution a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .footer-attribution a:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1200px) {
  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1080px) {
  .split-grid,
  .footer-grid,
  .trust-items,
  .partner-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 36px;
  }

  .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-copy {
    max-width: 100%;
  }

  .split-grid,
  .hero-grid {
    align-items: start;
  }

  .quote-shell,
  .nav-shell {
    flex-direction: column;
    align-items: stretch;
  }

  .quote-shell .quote-actions {
    justify-content: flex-start;
  }

  .newsletter-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }

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

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

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .trust-items,
  .industry-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .feature-image-wrap {
    width: 100%;
  }

  .feature-image-wrap {
    aspect-ratio: 16 / 11;
    max-height: none;
  }

  .feature-image-wrap img {
    min-height: 260px;
    object-position: center 40%;
  }

  .quote-actions,
  .hero-actions {
    width: 100%;
  }

.quote-actions .btn,
.hero-actions .btn {
  flex: 1 1 180px;
}
}

.brands-page-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 24px;
  background:
    linear-gradient(180deg, #0b0b0b 0%, #121212 100%);
}

.brands-page-hero::before {
  content: "";
  position: absolute;
  top: 18px;
  right: clamp(18px, 3vw, 34px);
  width: clamp(300px, 33vw, 520px);
  height: calc(100% - 36px);
  background:
    linear-gradient(180deg, rgba(187, 24, 1, 0.92), rgba(187, 24, 1, 0.28)) right 0 top 0 / 6px 100% no-repeat,
    linear-gradient(270deg, rgba(187, 24, 1, 0.96) 0%, rgba(187, 24, 1, 0.62) 22%, rgba(187, 24, 1, 0.28) 52%, rgba(187, 24, 1, 0.1) 78%, rgba(187, 24, 1, 0) 100%) right 0 top 0 / 100% 6px no-repeat,
    linear-gradient(225deg, rgba(187, 24, 1, 0.32) 0%, rgba(187, 24, 1, 0.32) 12%, rgba(187, 24, 1, 0.25) 30%, rgba(187, 24, 1, 0.17) 52%, rgba(187, 24, 1, 0.09) 72%, rgba(187, 24, 1, 0.04) 88%, rgba(187, 24, 1, 0) 100%) right 0 top 0 / 112% 100% no-repeat,
    radial-gradient(circle, #0b0b0b 0 2px, rgba(187, 24, 1, 0.88) 2.5px 3.5px, transparent 3.5px) right 0 top 0 / 24px 24px no-repeat,
    radial-gradient(circle, #0b0b0b 0 2px, rgba(187, 24, 1, 0.88) 2.5px 3.5px, transparent 3.5px) right 0 bottom 0 / 24px 24px no-repeat;
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.42) 92%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.42) 92%, transparent 100%);
  opacity: 0.78;
  pointer-events: none;
}

.brands-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}

.brands-page-hero-shell {
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(24px, 4vw, 56px);
  position: relative;
  z-index: 1;
  text-align: left;
}

.brands-page-hero-shell h1 {
  margin: 0 0 10px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.brands-page-subhead {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  text-align: left;
}

.featured-brands {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: var(--dark-text);
}

.featured-brands-intro {
  max-width: 820px;
  margin: 0;
  color: rgba(17, 17, 17, 0.72) !important;
}

.featured-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.featured-brand-card {
  padding: 22px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.08);
}

.featured-brand-link {
  display: block;
  color: inherit;
  cursor: pointer;
}

.featured-brand-name {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.brands-page .section-heading h2,
.brands-page .quote-shell h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 229, 219, 0.92));
  transition: transform 180ms ease;
}

.brand-logo-wrap img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.featured-brand-link:hover .brand-logo-wrap img {
  transform: scale(1.16);
}

.brand-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(187, 24, 1, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-brand-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
}

.product-gallery {
  background:
    radial-gradient(circle at top left, rgba(220, 41, 18, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: var(--dark-text);
}

.product-gallery .section-heading p {
  color: rgba(17, 17, 17, 0.72);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}

.product-gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.product-gallery-card-large {
  grid-column: span 2;
  grid-row: span 1;
}

.product-gallery-card-wide {
  grid-column: span 2;
}

.product-gallery-card img {
  width: 100%;
  height: 230px;
  padding: 0;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  clip-path: inset(2px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-gallery-card-large img {
  height: 300px;
  object-fit: cover;
}

.product-gallery-card img[src*="Outlook-"] {
  object-fit: cover;
  transform: scale(1.035);
}

.product-gallery-card.is-visible:hover img[src*="Outlook-"] {
  transform: scale(1.095);
}

.product-gallery-card::after {
  content: none;
}

.product-gallery-card figcaption {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 18px 20px 20px;
  color: var(--dark-text);
  background: linear-gradient(180deg, #ffffff 0%, #f3eee6 100%);
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.product-gallery-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.product-gallery-card span {
  display: block;
  max-width: 30rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.94rem;
  line-height: 1.45;
}

.product-gallery-card.is-visible:hover img {
  transform: scale(1.06);
}

.brand-families {
  position: relative;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.72), rgba(12, 12, 12, 0.84)),
    url("assets/photo-of-a-warehouse-interior-2026-03-09-02-59-26-utc.jpg") center center / cover fixed no-repeat;
  color: var(--text);
}

.brand-families::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at top right, rgba(220, 41, 18, 0.18), transparent 30%);
  pointer-events: none;
}

.brand-families .container {
  position: relative;
  z-index: 1;
}

.brand-families .section-heading h2,
.brand-families .section-heading p {
  color: #ffffff;
}

.brand-family-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.brand-family-card {
  position: relative;
  padding: 26px 22px 24px 24px;
  border-radius: 14px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 6px solid var(--accent);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  color: var(--text);
}

.brand-family-card::before {
  content: none;
}

.brand-family-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ff8d7b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-family-card h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.brand-family-card ul,
.directory-column ul {
  margin: 0;
  padding-left: 18px;
}

.brand-family-card li,
.directory-column li {
  margin-bottom: 10px;
}

.brand-family-card li {
  color: rgba(255, 255, 255, 0.8);
}

.brand-family-item {
  list-style: disc;
}

.brand-family-entry {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.brand-family-link {
  color: inherit;
  transition: color 160ms ease;
}

.brand-family-link:hover {
  color: #ff8d7b;
}

.brand-family-item:hover .brand-family-link,
.brand-family-item:focus-within .brand-family-link {
  color: #ff8d7b;
}

.brand-family-detail {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.4;
  transition: max-height 180ms ease, margin-top 180ms ease;
}

.brand-family-entry:hover .brand-family-detail,
.brand-family-entry:focus-within .brand-family-detail {
  max-height: 72px;
  margin-top: 6px;
}

.brand-callout {
  background: var(--surface);
  color: var(--dark-text);
}

.brand-callout-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(20px, 4vw, 32px);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(220, 41, 18, 0.12), rgba(17, 17, 17, 0.06));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.brand-callout-shell h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.brand-directory {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: var(--dark-text);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.directory-column {
  padding: 24px 22px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
}

.directory-column h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.directory-column li {
  color: rgba(17, 17, 17, 0.76);
}

.directory-link {
  color: inherit;
  transition: color 160ms ease;
}

.directory-link:hover {
  color: var(--accent);
}

.brands-page .quote-cta {
  background: linear-gradient(180deg, #101010 0%, #171717 100%);
}

.brands-page .quote-cta::before {
  background: none;
}

.brands-page .quote-shell {
  padding: 24px clamp(20px, 4vw, 32px);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(220, 41, 18, 0.9), rgba(146, 19, 12, 0.95));
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.14);
}

.brands-page .quote-shell p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1080px) {
  .featured-brand-grid,
  .brand-family-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .brand-callout-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .featured-brand-grid,
  .brand-family-grid,
  .directory-grid {
    grid-template-columns: 1fr;
  }

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

  .product-gallery-card,
  .product-gallery-card-large,
  .product-gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .brands-page-hero {
    padding: 42px 0 26px;
  }

  .brands-page-hero-shell h1 {
    font-size: 2.7rem;
  }
}

.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 26px;
  background: linear-gradient(180deg, #0b0b0b 0%, #121212 100%);
}

.about-page-hero::before {
  content: "";
  position: absolute;
  top: 18px;
  right: clamp(18px, 3vw, 34px);
  width: clamp(360px, 38vw, 620px);
  height: calc(100% - 36px);
  background:
    linear-gradient(180deg, rgba(187, 24, 1, 0.92), rgba(187, 24, 1, 0.28)) right 0 top 0 / 6px 100% no-repeat,
    linear-gradient(270deg, rgba(187, 24, 1, 0.96) 0%, rgba(187, 24, 1, 0.62) 22%, rgba(187, 24, 1, 0.28) 52%, rgba(187, 24, 1, 0.1) 78%, rgba(187, 24, 1, 0) 100%) right 0 top 0 / 100% 6px no-repeat,
    linear-gradient(225deg, rgba(187, 24, 1, 0.32) 0%, rgba(187, 24, 1, 0.32) 12%, rgba(187, 24, 1, 0.25) 30%, rgba(187, 24, 1, 0.17) 52%, rgba(187, 24, 1, 0.09) 72%, rgba(187, 24, 1, 0.04) 88%, rgba(187, 24, 1, 0) 100%) right 0 top 0 / 118% 100% no-repeat,
    radial-gradient(circle, #0b0b0b 0 2px, rgba(187, 24, 1, 0.88) 2.5px 3.5px, transparent 3.5px) right 0 top 0 / 24px 24px no-repeat,
    radial-gradient(circle, #0b0b0b 0 2px, rgba(187, 24, 1, 0.88) 2.5px 3.5px, transparent 3.5px) right 0 bottom 0 / 24px 24px no-repeat;
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.42) 92%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.42) 92%, transparent 100%);
  opacity: 0.78;
  pointer-events: none;
}

.about-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.about-page-hero-shell {
  max-width: 860px;
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(24px, 4vw, 56px);
  position: relative;
  z-index: 1;
  text-align: left;
}

.about-page-hero-shell h1 {
  margin: 0 0 12px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-page-subhead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.03rem;
  text-align: left;
}

.about-story {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: var(--dark-text);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.about-story-copy h2,
.about-approach-copy h2,
.about-future-shell h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-story-copy p,
.about-service-card p,
.about-why-item,
.about-future-shell p {
  font-size: 1rem;
}

.about-story-copy p {
  margin: 0 0 14px;
  color: rgba(17, 17, 17, 0.74);
}

.about-story-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-story-image {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1.02 / 1;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.1);
}

.about-story-image img,
.about-approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-story-note {
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.96rem;
}

.about-offerings {
  background:
    radial-gradient(circle at top left, rgba(220, 41, 18, 0.12), transparent 24%),
    linear-gradient(180deg, #111111, #171717);
}

.about-dark-copy {
  color: rgba(255, 255, 255, 0.72) !important;
}

.about-offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-offerings-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 24px;
}

.about-offerings-carousel {
  --offerings-gap: 18px;
  --offerings-visible: 2;
}

.about-offerings-track {
  display: flex;
  gap: var(--offerings-gap);
  width: 100%;
  transition: transform 700ms ease;
  will-change: transform;
}

.about-offerings-slide {
  flex: 0 0 calc((100% - var(--offerings-gap)) / var(--offerings-visible));
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
  aspect-ratio: 16 / 10;
}

.about-offerings-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}

.about-offerings-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.24), transparent 8%, transparent 92%, rgba(17, 17, 17, 0.24));
}

.about-offerings-carousel.is-static .about-offerings-track {
  transform: translateX(0) !important;
}

.about-offerings-carousel.is-animating .about-offerings-slide img {
  transform: scale(1.01);
}

.about-offering-card {
  padding: 18px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.about-offering-card h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.about-offering-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.45;
}

.about-service {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: var(--dark-text);
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-service-card {
  padding: 24px 22px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.about-service-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-service-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.about-service-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
}

.about-approach {
  background: linear-gradient(180deg, #0d0d0d, #141414);
}

.about-approach-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.about-approach-media {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 1.02 / 1;
  box-shadow: var(--shadow);
}

.about-approach-copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
}

.about-why {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: var(--dark-text);
}

.about-why-shell {
  padding: 22px 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.about-why-heading {
  max-width: 480px;
  margin-bottom: 18px;
}

.about-why-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.about-why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: start;
}

.about-why-feature {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #141414, #1a1a1a);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-why-feature-image {
  overflow: hidden;
  aspect-ratio: 1.08 / 1;
}

.about-why-feature-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-why-feature-copy {
  padding: 20px 20px 22px;
}

.about-why-kicker {
  margin: 0 0 10px;
  color: #ff8d7b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-why-feature-copy h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.about-why-feature-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.about-why-list {
  display: grid;
  gap: 12px;
}

.about-why-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

.about-why-thumb {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}

.about-why-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-why-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.25;
}

.about-why-copy span {
  display: block;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.92rem;
  line-height: 1.42;
}

.about-why-row:hover,
.about-why-row:focus-visible {
  background: #f2ebe2;
  border-color: rgba(187, 24, 1, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  outline: none;
}

.about-why-row.is-active {
  background: #f2ebe2;
  border-color: rgba(187, 24, 1, 0.28);
  box-shadow: inset 3px 0 0 #bb1801;
}

.about-future {
  background: linear-gradient(180deg, #101010 0%, #171717 100%);
}

.about-future-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding: 18px clamp(18px, 3vw, 26px);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220, 41, 18, 0.92), rgba(138, 19, 12, 0.96));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.about-future-shell > div:first-child {
  flex: 1 1 360px;
}

.about-future-shell p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.about-future .eyebrow {
  margin-bottom: 10px;
}

.about-future-shell h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

@media (max-width: 1080px) {
  .about-story-grid,
  .about-offerings-grid,
  .about-approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-offerings-carousel {
    --offerings-visible: 1;
  }
}

@media (max-width: 820px) {
  .about-story-grid,
  .about-approach-grid {
    grid-template-columns: 1fr;
  }

  .about-future-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .about-offerings-grid {
    grid-template-columns: 1fr;
  }

  .about-page-hero {
    padding: 42px 0 28px;
  }

  .about-page-hero-shell h1 {
    font-size: 2.8rem;
  }

  .about-why-shell {
    padding: 22px 20px;
  }

  .about-why-layout {
    grid-template-columns: 1fr;
  }

  .about-why-row {
    grid-template-columns: 88px 1fr;
  }
}

.footer-staging {
  padding: 56px 0 26px;
  background: #0a0a0a;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.footer-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-text,
.footer-contact-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.footer-contact-link {
  display: inline-block;
  margin: 0;
}

.footer-staging-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-staging-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 700;
  margin: 0;
}

.footer-socials a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 1080px) {
  .footer-contact-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .footer-staging-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-page .site-header,
.brands-page .site-header,
.about-page .site-header,
.newsletter-page .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-top: 4px solid #bb1801;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: none;
}

.home-page .nav-shell,
.brands-page .nav-shell,
.about-page .nav-shell,
.newsletter-page .nav-shell {
  width: 100%;
  max-width: 100%;
  min-height: 110px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 28px 14px 36px;
}

.home-page .brand,
.brands-page .brand,
.about-page .brand,
.newsletter-page .brand {
  justify-self: start;
}

.home-page .brand-mark-img,
.brands-page .brand-mark-img,
.about-page .brand-mark-img,
.newsletter-page .brand-mark-img {
  width: clamp(220px, 18vw, 290px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}

.home-page .brand:hover .brand-mark-img,
.brands-page .brand:hover .brand-mark-img,
.about-page .brand:hover .brand-mark-img,
.newsletter-page .brand:hover .brand-mark-img,
.home-page .brand:focus-visible .brand-mark-img,
.brands-page .brand:focus-visible .brand-mark-img,
.about-page .brand:focus-visible .brand-mark-img,
.newsletter-page .brand:focus-visible .brand-mark-img {
  transform: scale(1.18);
}

.home-page .brand-text,
.brands-page .brand-text,
.about-page .brand-text,
.newsletter-page .brand-text {
  display: none;
}

.home-page .site-nav,
.brands-page .site-nav,
.about-page .site-nav,
.newsletter-page .site-nav {
  justify-self: center;
  gap: 0;
  color: #222222;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-page .site-nav a,
.brands-page .site-nav a,
.about-page .site-nav a,
.newsletter-page .site-nav a {
  padding: 0 16px 12px;
  margin: 0;
}

.home-page .site-nav a + a,
.brands-page .site-nav a + a,
.about-page .site-nav a + a,
.newsletter-page .site-nav a + a {
  border-left: 1px solid rgba(17, 17, 17, 0.24);
}

.home-page .site-nav a::after,
.brands-page .site-nav a::after,
.about-page .site-nav a::after,
.newsletter-page .site-nav a::after {
  left: 16px;
  width: calc(100% - 32px);
  height: 3px;
  border-radius: 0;
  background: #c13a1d;
}

.home-page .site-nav a:hover,
.brands-page .site-nav a:hover,
.about-page .site-nav a:hover,
.newsletter-page .site-nav a:hover {
  color: #111111;
}

.home-page .site-nav a[aria-current="page"]::after,
.brands-page .site-nav a[aria-current="page"]::after,
.about-page .site-nav a[aria-current="page"]::after,
.newsletter-page .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.home-page .nav-cta,
.brands-page .nav-cta,
.about-page .nav-cta,
.newsletter-page .nav-cta {
  align-self: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 0;
  border: 0;
  background: #bb1801;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.home-page .nav-cta:hover,
.brands-page .nav-cta:hover,
.about-page .nav-cta:hover,
.newsletter-page .nav-cta:hover {
  background: #951300;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.home-page .footer-staging,
.brands-page .footer-staging,
.about-page .footer-staging,
.newsletter-page .footer-staging {
  padding: 0;
  background: #050505;
}

.home-page .footer-contact-row,
.brands-page .footer-contact-row,
.about-page .footer-contact-row,
.newsletter-page .footer-contact-row {
  width: min(100%, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #bb1801;
  background-image: linear-gradient(180deg, #cc1d05 0%, #a01401 100%);
  padding: 52px 0 56px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-page .footer-contact-card,
.brands-page .footer-contact-card,
.about-page .footer-contact-card,
.newsletter-page .footer-contact-card {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.home-page .footer-contact-card:last-child,
.brands-page .footer-contact-card:last-child,
.about-page .footer-contact-card:last-child,
.newsletter-page .footer-contact-card:last-child {
  border-right: 0;
}

.home-page .footer-contact-icon,
.brands-page .footer-contact-icon,
.about-page .footer-contact-icon,
.newsletter-page .footer-contact-icon {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.home-page .footer-contact-icon svg,
.brands-page .footer-contact-icon svg,
.about-page .footer-contact-icon svg,
.newsletter-page .footer-contact-icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.home-page .footer-contact-text,
.home-page .footer-contact-link,
.brands-page .footer-contact-text,
.brands-page .footer-contact-link,
.about-page .footer-contact-text,
.about-page .footer-contact-link,
.newsletter-page .footer-contact-text,
.newsletter-page .footer-contact-link {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.home-page .footer-contact-link:hover,
.brands-page .footer-contact-link:hover,
.about-page .footer-contact-link:hover,
.newsletter-page .footer-contact-link:hover {
  color: #ffe6e1;
  text-decoration: underline;
}

.home-page .footer-staging-bottom,
.brands-page .footer-staging-bottom,
.about-page .footer-staging-bottom,
.newsletter-page .footer-staging-bottom {
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
  padding: 34px 0 24px;
  border-top: 0;
  background: #050505;
}

.home-page .footer-socials,
.brands-page .footer-socials,
.about-page .footer-socials,
.newsletter-page .footer-socials {
  gap: 18px;
}

.home-page .footer-socials a,
.brands-page .footer-socials a,
.about-page .footer-socials a,
.newsletter-page .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.home-page .footer-socials a svg,
.brands-page .footer-socials a svg,
.about-page .footer-socials a svg,
.newsletter-page .footer-socials a svg {
  display: block;
  width: 22px;
  height: 22px;
}

.home-page .social-ebay,
.brands-page .social-ebay,
.about-page .social-ebay,
.newsletter-page .social-ebay {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.home-page .social-ebay span:nth-child(1),
.brands-page .social-ebay span:nth-child(1),
.about-page .social-ebay span:nth-child(1),
.newsletter-page .social-ebay span:nth-child(1) {
  color: #e53238;
}

.home-page .social-ebay span:nth-child(2),
.brands-page .social-ebay span:nth-child(2),
.about-page .social-ebay span:nth-child(2),
.newsletter-page .social-ebay span:nth-child(2) {
  color: #0064d2;
}

.home-page .social-ebay span:nth-child(3),
.brands-page .social-ebay span:nth-child(3),
.about-page .social-ebay span:nth-child(3),
.newsletter-page .social-ebay span:nth-child(3) {
  color: #f5af02;
}

.home-page .social-ebay span:nth-child(4),
.brands-page .social-ebay span:nth-child(4),
.about-page .social-ebay span:nth-child(4),
.newsletter-page .social-ebay span:nth-child(4) {
  color: #86b817;
}

.home-page .footer-socials a:hover,
.brands-page .footer-socials a:hover,
.about-page .footer-socials a:hover,
.newsletter-page .footer-socials a:hover {
  color: #ffffff;
  border: 0;
}

.home-page .footer-staging-bottom p,
.brands-page .footer-staging-bottom p,
.about-page .footer-staging-bottom p,
.newsletter-page .footer-staging-bottom p {
  color: #4f5563;
  font-size: 0.9rem;
  text-align: center;
}

.newsletter-page-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 28px;
  background: linear-gradient(180deg, #0b0b0b 0%, #121212 100%);
}

.newsletter-page-hero::before {
  content: "";
  position: absolute;
  top: 18px;
  right: clamp(18px, 3vw, 34px);
  width: clamp(360px, 38vw, 620px);
  height: calc(100% - 36px);
  background:
    linear-gradient(180deg, rgba(187, 24, 1, 0.92), rgba(187, 24, 1, 0.28)) right 0 top 0 / 6px 100% no-repeat,
    linear-gradient(270deg, rgba(187, 24, 1, 0.96) 0%, rgba(187, 24, 1, 0.62) 22%, rgba(187, 24, 1, 0.28) 52%, rgba(187, 24, 1, 0.1) 78%, rgba(187, 24, 1, 0) 100%) right 0 top 0 / 100% 6px no-repeat,
    linear-gradient(225deg, rgba(187, 24, 1, 0.3) 0%, rgba(187, 24, 1, 0.3) 12%, rgba(187, 24, 1, 0.24) 30%, rgba(187, 24, 1, 0.16) 52%, rgba(187, 24, 1, 0.08) 72%, rgba(187, 24, 1, 0.03) 88%, rgba(187, 24, 1, 0) 100%) right 0 top 0 / 118% 100% no-repeat,
    radial-gradient(circle, #0b0b0b 0 2px, rgba(187, 24, 1, 0.88) 2.5px 3.5px, transparent 3.5px) right 0 top 0 / 24px 24px no-repeat,
    radial-gradient(circle, #0b0b0b 0 2px, rgba(187, 24, 1, 0.88) 2.5px 3.5px, transparent 3.5px) right 0 bottom 0 / 24px 24px no-repeat;
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.42) 92%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.42) 92%, transparent 100%);
  opacity: 0.78;
  pointer-events: none;
}

.newsletter-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.newsletter-page-hero-shell {
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(24px, 4vw, 56px);
  position: relative;
  z-index: 1;
  text-align: left;
}

.newsletter-page-hero-shell h1 {
  margin: 0 0 10px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.newsletter-page-subhead {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.wp-home-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 50vw, 700px);
  display: grid;
  align-items: center;
  background: #000000;
}

.wp-home-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.wp-home-hero-track {
  position: absolute;
  inset: 0;
  width: 200%;
  display: flex;
  animation: wp-home-hero-slide 14s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.wp-home-hero-slide {
  flex: 0 0 50%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.wp-home-hero-slide-a {
  background-image: url("assets/Gemini_Generated_Image_qhow4qqhow4qqhow%20(1).png");
}

.wp-home-hero-slide-b {
  background-image: url("assets/ChatGPT-Image-Mar-19-2026-10_23_38-AM-1.png");
}

@keyframes wp-home-hero-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }

  42% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-50%, 0, 0);
  }

  92% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.wp-home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.92) 24%, rgba(0, 0, 0, 0.78) 48%, rgba(0, 0, 0, 0.4) 76%, rgba(0, 0, 0, 0.12) 100%),
    radial-gradient(ellipse at 0% 50%, rgba(0, 0, 0, 0.55), transparent 55%),
    radial-gradient(circle at 84% 78%, rgba(0, 0, 0, 0.2), transparent 36%);
  pointer-events: none;
  animation: wp-home-glow 9s ease-in-out infinite alternate;
}

.wp-home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: #bb1801;
}

@keyframes wp-home-glow {
  from {
    opacity: 0.55;
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  to {
    opacity: 0.92;
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

.wp-home-hero-shell {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 105px) 0 clamp(118px, 14vw, 170px);
}

.wp-home-hero-copy {
  max-width: 760px;
  animation: wp-home-rise 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wp-home-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.wp-home-kicker {
  margin: 0 0 16px;
  color: #ff8d7b;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wp-home-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  color: #ffffff;
  text-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
}

.wp-home-hero p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.wp-home-badge {
  display: block;
  width: clamp(96px, 12vw, 150px);
  height: auto;
  margin-top: 26px;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.48));
}

@keyframes wp-home-badge-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(1deg);
  }
}

.wp-home-logo-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 2;
  overflow: hidden;
  padding: 10px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -22px 45px rgba(0, 0, 0, 0.18);
}

.wp-home-logo-marquee::before,
.wp-home-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 180px);
  pointer-events: none;
}

.wp-home-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 10%, rgba(255, 255, 255, 0));
}

.wp-home-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 10%, rgba(255, 255, 255, 0));
}

.wp-home-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(34px, 5vw, 76px);
  padding-inline: clamp(28px, 4vw, 56px);
  animation: wp-home-logo-scroll 32s linear infinite;
}

.wp-home-logo-track img {
  width: auto;
  max-width: 170px;
  height: 56px;
  object-fit: contain;
  opacity: 1;
}

@keyframes wp-home-logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.wp-home-pillars {
  background: #ffffff;
  color: var(--dark-text);
  padding: 58px 0 52px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.wp-home-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  background-color: transparent;
}

.wp-home-pillars > .container {
  position: relative;
  z-index: 1;
}

.wp-home-pillars:has(.wp-home-pillar:nth-child(1):hover)::before {
  opacity: 1;
  background-image: repeating-linear-gradient(90deg, rgba(187, 24, 1, 0.16) 0 1px, transparent 1px 36px);
  background-size: 36px 100%;
  animation: wp-home-bg-scan 2.6s linear infinite;
}

.wp-home-pillars:has(.wp-home-pillar:nth-child(2):hover)::before {
  opacity: 1;
  background-image: radial-gradient(circle at 50% 50%, rgba(187, 24, 1, 0.18), transparent 22%);
  animation: wp-home-bg-pulse 2.6s ease-in-out infinite;
}

.wp-home-pillars:has(.wp-home-pillar:nth-child(3):hover)::before {
  opacity: 1;
  background-image: repeating-linear-gradient(45deg, rgba(187, 24, 1, 0.14) 0 14px, transparent 14px 36px);
  background-size: 72px 72px;
  animation: wp-home-bg-stripes 1.8s linear infinite;
}

@keyframes wp-home-bg-scan {
  to {
    background-position: 36px 0;
  }
}

@keyframes wp-home-bg-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

@keyframes wp-home-bg-stripes {
  to {
    background-position: 72px 0;
  }
}

@property --pillar-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.wp-home-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
}

.wp-home-pillar {
  position: relative;
  overflow: hidden;
  padding: 28px 24px 30px;
  border: 2px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.wp-home-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    #bb1801 0deg var(--pillar-angle),
    transparent var(--pillar-angle) 360deg
  );
  opacity: 0;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.wp-home-pillar.is-visible:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 34px 60px rgba(0, 0, 0, 0.12);
}

.wp-home-pillar.is-visible:hover::before {
  opacity: 1;
  animation: wp-home-border-draw 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes wp-home-border-draw {
  from {
    --pillar-angle: 0deg;
  }

  to {
    --pillar-angle: 360deg;
  }
}

.wp-home-pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(220, 41, 18, 0.16), rgba(187, 24, 1, 0.04)),
    #ffffff;
  color: #bb1801;
  box-shadow: inset 0 0 0 1px rgba(187, 24, 1, 0.14);
}

.wp-home-pillar-icon svg {
  width: 26px;
  height: 26px;
}

.wp-home-pillar h2 {
  margin: 0 0 10px;
  color: #111111;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.03em;
}

.wp-home-pillar p {
  max-width: 245px;
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.95rem;
}

.wp-home-built {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 13vw, 170px) 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.54)),
    url("assets/Gemini_Generated_Image_qhow4qqhow4qqhow (1).png") center center / cover no-repeat,
    #111111;
  color: #ffffff;
  text-align: center;
}

.wp-home-built-shell {
  max-width: 920px;
}

.wp-home-built h2 {
  margin: 0 auto;
  max-width: 860px;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.wp-home-industries {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(62px, 8vw, 96px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: #111111;
}

.wp-home-industries::before,
.wp-home-industries::after {
  content: "";
  position: absolute;
  inset: -20% -20%;
  z-index: 0;
  pointer-events: none;
}

.wp-home-industries::before {
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.07) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
  background-position: 0 0, 0 0;
  animation: wp-industries-grid-scroll 22s linear infinite;
  opacity: 0.85;
}

.wp-home-industries::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 17, 17, 0.08) 0 2px, transparent 2.5px) 0 0 / 110px 110px,
    radial-gradient(circle at 50% 50%, rgba(17, 17, 17, 0.05) 0 1.5px, transparent 2px) 55px 55px / 110px 110px;
  animation: wp-industries-dots-drift 28s ease-in-out infinite alternate;
  opacity: 0.9;
}

.wp-home-industries > .container {
  position: relative;
  z-index: 1;
}

@keyframes wp-industries-grid-scroll {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 56px 56px, -56px 56px;
  }
}

@keyframes wp-industries-dots-drift {
  0% {
    transform: translate3d(-2%, -1%, 0);
    opacity: 0.7;
  }

  50% {
    transform: translate3d(1.5%, 1.5%, 0);
    opacity: 1;
  }

  100% {
    transform: translate3d(-1%, 1%, 0);
    opacity: 0.8;
  }
}

.wp-home-industry-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 18px);
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wp-home-industry-list a {
  --industry-hover-bg: #bb1801;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 24px 18px;
  overflow: hidden;
  border: 1px solid #000000;
  border-radius: 20px;
  background: #111111;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  text-align: center;
  color: #ffffff;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.wp-home-industry-list a:nth-child(1) {
  --industry-hover-bg:
    radial-gradient(circle at 26% 62%, rgba(255, 255, 255, 0.32) 0 14px, transparent 15px 22px, rgba(255, 255, 255, 0.16) 23px 26px, transparent 27px),
    radial-gradient(circle at 26% 62%, rgba(0, 0, 0, 0.18) 0 5px, transparent 6px),
    radial-gradient(circle at 74% 62%, rgba(255, 255, 255, 0.32) 0 14px, transparent 15px 22px, rgba(255, 255, 255, 0.16) 23px 26px, transparent 27px),
    radial-gradient(circle at 74% 62%, rgba(0, 0, 0, 0.18) 0 5px, transparent 6px),
    linear-gradient(180deg, transparent 0 78%, rgba(0, 0, 0, 0.22) 80% 82%, transparent 84%),
    #bb1801;
}

.wp-home-industry-list a:nth-child(2) {
  --industry-hover-bg:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 9px, rgba(255, 255, 255, 0.24) 9px 10px, transparent 10px 19px, rgba(255, 255, 255, 0.16) 19px 20px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.32) 0 6px, transparent 7px),
    #bb1801;
}

.wp-home-industry-list a:nth-child(3) {
  --industry-hover-bg:
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.32) 49% 51%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.32) 49% 51%, transparent 51%),
    radial-gradient(circle at 50% 50%, transparent 0 28px, rgba(255, 255, 255, 0.32) 28px 30px, transparent 30px 42px, rgba(255, 255, 255, 0.2) 42px 44px, transparent 44px),
    #bb1801;
}

.wp-home-industry-list a:nth-child(4) {
  --industry-hover-bg:
    linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.32) 31%, rgba(255, 255, 255, 0.55) 33%, rgba(255, 255, 255, 0.32) 35%, transparent 36%),
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.85) 0 1.6px, transparent 2.2px),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.85) 0 1.4px, transparent 2px),
    radial-gradient(circle at 70% 78%, rgba(255, 255, 255, 0.85) 0 1.8px, transparent 2.4px),
    radial-gradient(circle at 32% 80%, rgba(255, 255, 255, 0.7) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 88% 60%, rgba(255, 255, 255, 0.78) 0 1.4px, transparent 2px),
    #bb1801;
}

.wp-home-industry-list a:nth-child(5) {
  --industry-hover-bg:
    linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.4) 44% 56%, transparent 56%),
    radial-gradient(circle at 26% 28%, rgba(255, 255, 255, 0.5) 0 7px, transparent 8px),
    radial-gradient(circle at 26% 28%, rgba(0, 0, 0, 0.28) 0 2.5px, transparent 3px),
    radial-gradient(circle at 74% 72%, rgba(255, 255, 255, 0.5) 0 7px, transparent 8px),
    radial-gradient(circle at 74% 72%, rgba(0, 0, 0, 0.28) 0 2.5px, transparent 3px),
    #bb1801;
}

.wp-home-industry-list.is-visible a:hover {
  transform: translateY(-8px);
  color: #ffffff;
  background: var(--industry-hover-bg);
  border-color: #bb1801;
}

.home-product-carousel-section {
  padding: 44px 0 52px;
  background: linear-gradient(180deg, #0a0a0a 0%, #161616 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-product-carousel-section .section-heading {
  margin-bottom: 24px;
}

.home-product-carousel-section .section-heading h2 {
  color: #ffffff;
}

.home-product-carousel-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.home-product-carousel-section .eyebrow-dark {
  color: #ff8d7b;
}

.home-product-carousel {
  position: relative;
  margin-top: 22px;
}

.home-product-viewport {
  overflow: hidden;
  border-radius: 22px;
}

.home-product-track {
  display: flex;
  gap: 16px;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-product-slide {
  flex: 0 0 calc((100% - 48px) / 4);
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.home-product-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
}

.home-product-media {
  background: #ffffff;
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-product-slide figcaption {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--dark-text);
}

.home-product-slide figcaption strong {
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.home-product-slide figcaption span {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.62);
}

.home-product-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.home-product-arrow:hover {
  background: #bb1801;
  color: #ffffff;
}

.home-product-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.home-product-arrow svg {
  width: 22px;
  height: 22px;
}

.home-product-prev {
  left: -10px;
}

.home-product-next {
  right: -10px;
}

.home-product-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.home-product-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.home-product-dots button.is-active {
  background: #bb1801;
  transform: scale(1.25);
}

.home-product-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .home-product-slide {
    flex: 0 0 calc((100% - 32px) / 3);
  }
}

@media (max-width: 820px) {
  .home-product-slide {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 680px) {
  .home-product-slide {
    flex: 0 0 100%;
  }

  .home-product-prev {
    left: 4px;
  }

  .home-product-next {
    right: 4px;
  }

  .home-product-arrow {
    width: 44px;
    height: 44px;
  }
}

.newsletter-featured {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: var(--dark-text);
}

.newsletter-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: stretch;
}

.newsletter-feature-media {
  overflow: hidden;
  border-radius: 14px;
}

.newsletter-feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.newsletter-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
}

.newsletter-feature-copy .eyebrow {
  color: #ff8d7b;
}

.newsletter-feature-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.newsletter-feature-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.newsletter-posts {
  background: linear-gradient(180deg, #111111, #171717);
  color: #ffffff;
}

.newsletter-posts .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.newsletter-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.newsletter-post-card {
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.newsletter-post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.newsletter-post-body {
  padding: 18px 18px 20px;
}

.newsletter-post-meta {
  display: inline-block;
  margin-bottom: 10px;
  color: #ff8d7b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-post-body h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.newsletter-post-body p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
}

.newsletter-post-link {
  color: #ffffff;
  font-weight: 700;
}

.newsletter-post-link:hover {
  color: #ff8d7b;
}

.newsletter-page .quote-shell {
  padding: 24px clamp(20px, 4vw, 32px);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(220, 41, 18, 0.9), rgba(146, 19, 12, 0.95));
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.14);
}

.newsletter-page .quote-shell p {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1080px) {
  .home-page .nav-shell,
  .brands-page .nav-shell,
  .about-page .nav-shell,
  .newsletter-page .nav-shell {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 18px 0;
  }

  .home-page .site-nav,
  .brands-page .site-nav,
  .about-page .site-nav,
  .newsletter-page .site-nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .home-page .footer-contact-row,
  .brands-page .footer-contact-row,
  .about-page .footer-contact-row,
  .newsletter-page .footer-contact-row {
    grid-template-columns: 1fr;
  }

  .home-page .footer-contact-card,
  .brands-page .footer-contact-card,
  .about-page .footer-contact-card,
  .newsletter-page .footer-contact-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    padding: 22px 24px;
  }

  .home-page .footer-contact-card:last-child,
  .brands-page .footer-contact-card:last-child,
  .about-page .footer-contact-card:last-child,
  .newsletter-page .footer-contact-card:last-child {
    border-bottom: 0;
  }

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

  .wp-home-industry-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-page .site-nav a,
  .brands-page .site-nav a,
  .about-page .site-nav a,
  .newsletter-page .site-nav a {
    padding: 0 14px 10px;
  }

  .home-page .nav-cta,
  .brands-page .nav-cta,
  .about-page .nav-cta,
  .newsletter-page .nav-cta {
    width: 100%;
    justify-content: center;
  }

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

  .wp-home-pillar-grid {
    grid-template-columns: 1fr;
  }

  .wp-home-pillar {
    border-right: 2px solid rgba(17, 17, 17, 0.08);
    border-bottom: 2px solid rgba(17, 17, 17, 0.12);
  }

  .wp-home-pillar:last-child {
    border-bottom: 0;
  }

  .wp-home-hero-shell {
    padding-bottom: 140px;
  }

  .wp-home-logo-track {
    gap: 34px;
    animation-duration: 24s;
  }

  .wp-home-logo-track img {
    max-width: 120px;
    height: 34px;
  }

  .wp-home-industry-list {
    grid-template-columns: 1fr;
  }

  .wp-home-industry-list a {
    min-height: 88px;
  }

  .newsletter-page-hero-shell h1 {
    font-size: 2.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wp-home-hero-overlay,
  .wp-home-hero-copy,
  .wp-home-badge,
  .wp-home-logo-track,
  .wp-home-industries::before,
  .wp-home-industries::after {
    animation: none;
  }

  .wp-home-hero-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .wp-home-pillar,
  .wp-home-industry-list a {
    transition: none;
  }
}
