:root {
  color-scheme: light;
  --black: #111111;
  --ink: #1f1f1f;
  --muted: #65615a;
  --line: #e5dccb;
  --paper: #fbf7ee;
  --white: #ffffff;
  --gold: #d6a100;
  --gold-dark: #a77b00;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

h1 {
  font-size: clamp(3rem, 6.8vw, 6.7rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 24px;
}

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

h3 {
  font-size: 1.08rem;
  letter-spacing: 0;
  margin-bottom: 0;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.site-shell {
  min-height: 100vh;
}

.nav {
  align-items: center;
  background: rgba(251, 247, 238, 0.96);
  border-bottom: 1px solid rgba(229, 220, 203, 0.9);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--black);
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  padding: 0;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--black);
  border-radius: 4px;
  color: var(--gold);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  letter-spacing: 0;
  width: 36px;
}

.nav nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
}

.nav nav button,
.site-footer button {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 6px 0;
}

.nav nav button.active,
.nav nav button:hover,
.site-footer button:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.48)),
    url("../public/warehouse-hero.png") center / cover;
  display: flex;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  padding: clamp(86px, 12vw, 142px) clamp(18px, 5vw, 76px);
  position: relative;
}

.hero-content {
  max-width: 920px;
  position: relative;
  z-index: 1;
}

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

.hero h1,
.hero p {
  color: var(--white);
}

.hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 820px;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
}

.button.primary {
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--black);
}

.button.secondary.dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.page,
.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 76px);
}

.section.compact {
  padding-inline: 0;
  padding-bottom: 0;
}

.section-heading,
.page-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.page-heading p,
.content-panel p {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

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

.info-card,
.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.05);
  min-height: 130px;
  padding: 26px;
}

.info-card span,
.category-card span {
  align-items: center;
  background: rgba(214, 161, 0, 0.14);
  border-radius: 5px;
  color: var(--gold-dark);
  display: inline-flex;
  height: 40px;
  justify-content: center;
  margin-bottom: 22px;
  width: 40px;
}

.black-section {
  background: var(--black);
}

.black-section h2 {
  color: var(--white);
}

.dark-card {
  background: #1c1c1c;
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-card h3 {
  color: var(--white);
}

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

.process-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 170px;
  padding: 24px;
}

.process-list span {
  align-items: center;
  background: var(--black);
  border-radius: 50%;
  color: var(--gold);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 22px;
  width: 42px;
}

.process-list p {
  color: var(--black);
  font-weight: 800;
  margin: 0;
}

.cta-section {
  background: var(--gold);
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 76px);
  text-align: center;
}

.cta-section h2,
.cta-section p {
  color: var(--black);
}

.cta-section p {
  font-size: 1.12rem;
  margin-inline: auto;
  max-width: 720px;
}

.cta-section .button {
  background: var(--black);
  color: var(--gold);
  margin-top: 18px;
}

.content-panel,
.business-info,
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.05);
  margin-bottom: 34px;
  max-width: 980px;
  padding: clamp(24px, 4vw, 40px);
}

.clean-list,
.policy-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.catalog-cta {
  margin: 34px 0 38px;
}

.form-panel {
  display: grid;
  gap: 16px;
}

.form-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 4px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  background: #fffdf8;
  border: 1px solid #cfc2a8;
  border-radius: 4px;
  min-height: 48px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(214, 161, 0, 0.18);
  outline: none;
}

.success-message {
  background: rgba(214, 161, 0, 0.14);
  border-left: 4px solid var(--gold);
  color: var(--black);
  margin: 0;
  padding: 14px;
}

.contact-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
}

.business-info a {
  color: var(--black);
}

.policy-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  max-width: 980px;
  padding: clamp(24px, 4vw, 40px) clamp(34px, 5vw, 54px);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
  padding: 48px clamp(18px, 5vw, 76px);
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a,
.site-footer button {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  line-height: 1.65;
  margin: 0 0 8px;
  text-align: left;
}

.site-footer button:hover {
  color: var(--gold);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72) !important;
  grid-column: 1 / -1;
  margin-top: 8px !important;
  padding-top: 20px;
}

@media (max-width: 980px) {
  .card-grid,
  .category-grid,
  .process-list,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    position: sticky;
  }

  .nav nav {
    justify-content: flex-start;
  }

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

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .card-grid,
  .category-grid,
  .process-list,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

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