:root {
  --ink: #2a2022;
  --muted: #716164;
  --line: #eadfdc;
  --paper: #fffaf7;
  --soft: #f7efea;
  --field: #ffffff;
  --brand: #8f0e28;
  --brand-dark: #65091c;
  --brand-soft: #f5e3e6;
  --accent: #bf8a2e;
  --gold-soft: #f7ead0;
  --charcoal: #21191b;
  --shadow: 0 18px 50px rgba(76, 12, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(255, 250, 247, 0.94);
  border-bottom: 1px solid rgba(143, 14, 40, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(132px, 15vw, 190px);
  height: auto;
}

nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  padding: 7vw 5vw 5vw;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(48, 9, 20, 0.84) 0%, rgba(83, 13, 30, 0.62) 48%, rgba(143, 14, 40, 0.12) 100%),
    url("assets/sourcing-hero.png") center / cover no-repeat;
  filter: saturate(0.9) contrast(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18vh;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-copy {
  width: 100%;
  max-width: 840px;
  min-width: 0;
  color: #ffffff;
  padding-bottom: min(7vh, 72px);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c875;
}

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

h1 {
  width: 100%;
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.55rem);
  line-height: 0.99;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  width: 100%;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  overflow-wrap: break-word;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #21170c;
}

.button.primary:hover {
  background: #d4a24e;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 780px;
  margin: 46px 0 0;
}

.proof-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.proof-grid dt {
  font-size: 1.34rem;
  font-weight: 900;
}

.proof-grid dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

section:not(.hero) {
  padding: 92px 5vw;
}

section[id] {
  scroll-margin-top: 88px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) 1fr;
  gap: 6vw;
}

.intro-copy {
  max-width: 980px;
}

.intro p,
.categories p,
.quote-copy p,
.retail-fit p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

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

.service-card {
  min-height: 300px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(76, 12, 26, 0.06);
}

.service-card.featured {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.service-card p {
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 8px;
  font-weight: 900;
}

.featured .service-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.retail-fit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.48fr);
  gap: 5vw;
  align-items: start;
  background: var(--charcoal);
  color: #ffffff;
}

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

.retail-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.retail-panel h3 {
  margin-bottom: 18px;
}

.retail-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.categories {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 5vw;
  align-items: start;
  background: var(--soft);
}

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

.category-grid article {
  min-height: 142px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-weight: 900;
}

.category-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.step {
  position: relative;
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(380px, 0.88fr);
  gap: 5vw;
  background: #ffffff;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 32px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.contact-strip span {
  color: var(--ink);
  font-weight: 900;
}

.contact-strip a {
  color: var(--brand);
  font-weight: 850;
}

.brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: #412d31;
  font-size: 0.9rem;
  font-weight: 850;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  background: var(--field);
  border: 1px solid #dfd0cc;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(191, 138, 46, 0.35);
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

.brief-form button {
  grid-column: 1 / -1;
  width: 100%;
  border: 0;
  font: inherit;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 5vw;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.78);
}

footer p {
  margin: 0;
}

footer a {
  color: #f2c875;
  font-weight: 850;
}

@media (max-width: 1100px) {
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .categories,
  .quote,
  .intro,
  .retail-fit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 126px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 68px);
    padding: 92px 20px 30px;
  }

  .hero-copy {
    width: min(100%, 350px);
    max-width: 350px;
  }

  .hero .eyebrow {
    width: 100%;
    max-width: 100%;
    font-size: 0.7rem;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  section:not(.hero) {
    padding: 68px 20px;
  }

  .proof-grid,
  .service-grid,
  .timeline,
  .category-grid,
  .brief-form {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    max-width: 100%;
  }

  .section-heading {
    display: block;
  }

  .brief-form {
    padding: 18px;
  }

  footer {
    display: block;
  }

  footer a {
    display: inline-block;
    margin-top: 16px;
  }
}
