:root {
  color-scheme: light;
  --ink: #15171a;
  --muted: #5f6670;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #ded8cc;
  --teal: #037d83;
  --teal-dark: #005a62;
  --red: #d03b2f;
  --gold: #f2b84b;
  --charcoal: #202225;
  --shadow: 0 24px 80px rgba(25, 24, 20, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 7px;
  background: #ffffff;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 40px;
  height: 40px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid currentColor;
  border-radius: 7px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 7px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px clamp(22px, 5vw, 72px) 80px;
  color: #ffffff;
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 8, 0.78) 0%, rgba(10, 10, 8, 0.58) 38%, rgba(10, 10, 8, 0.08) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.06) 55%, rgba(0, 0, 0, 0.44) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 10vw, 8.6rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-copy {
  width: min(610px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: #ffffff;
}

.button-primary:hover {
  background: #b93329;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: #ffffff;
}

.stats-band div {
  padding: 26px clamp(22px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-size: 1.12rem;
}

.stats-band span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.section,
.process,
.split-section {
  padding: clamp(64px, 9vw, 126px) clamp(22px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.process-copy p:last-child,
.split-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.category-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.category-card span {
  align-self: flex-start;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.category-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.electronics {
  background: linear-gradient(140deg, #152226, #037d83);
}

.collectibles {
  background: linear-gradient(140deg, #2a1f1c, #d03b2f);
}

.fashion {
  background: linear-gradient(140deg, #202225, #6f6a5e);
}

.home {
  background: linear-gradient(140deg, #273029, #b37c21);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 84px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 5px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfc7bb;
  border-radius: 7px;
  padding: 12px 13px;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(3, 125, 131, 0.18);
  border-color: var(--teal);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(22px, 5vw, 72px);
  background: var(--charcoal);
  color: #ffffff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span,
.footer-links {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(251, 250, 247, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 7px;
  }

  .site-nav a:hover {
    background: #f0ece4;
  }

  .nav-cta {
    border-color: var(--teal);
    color: var(--teal-dark);
  }

  .section-heading,
  .process,
  .split-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 108px 20px 56px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 10, 8, 0.82) 0%, rgba(10, 10, 8, 0.55) 58%, rgba(10, 10, 8, 0.16) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0.54) 100%);
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5.2rem);
  }

  .button {
    width: 100%;
  }

  .stats-band,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .category-card {
    min-height: 230px;
  }

  .steps li {
    padding-right: 18px;
  }

  .site-footer {
    display: grid;
  }
}
