:root {
  --ink: #151816;
  --muted: #646b65;
  --line: rgba(21, 24, 22, 0.14);
  --paper: #f7f4ef;
  --white: #ffffff;
  --forest: #15352c;
  --sage: #8d9a83;
  --brass: #b89458;
  --clay: #b86f52;
  --charcoal: #111714;
  --shadow: 0 24px 70px rgba(24, 28, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 13, 12, 0.86), rgba(8, 13, 12, 0.18) 72%, rgba(8, 13, 12, 0)),
    linear-gradient(90deg, rgba(8, 13, 12, 0.72), rgba(8, 13, 12, 0.08) 48%, rgba(8, 13, 12, 0));
  backdrop-filter: blur(2px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 148, 88, 0.78);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(7, 12, 10, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.22);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

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

.brand strong {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.02;
  font-weight: 720;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1;
  font-weight: 520;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 14px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a:hover {
  color: var(--white);
}

.language-switcher {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-width: 174px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(10, 16, 14, 0.26);
  backdrop-filter: blur(14px);
}

.lang-btn {
  min-width: 56px;
  height: 38px;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.lang-btn.is-active {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 13, 0.88) 0%, rgba(8, 15, 13, 0.72) 35%, rgba(8, 15, 13, 0.2) 72%),
    linear-gradient(0deg, rgba(8, 15, 13, 0.72), rgba(8, 15, 13, 0.08) 56%);
}

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 170px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 0.96;
  font-weight: 500;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.7vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-weight: 720;
}

.button-primary {
  border-color: var(--brass);
  color: var(--ink);
  background: var(--brass);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.metrics div {
  min-height: 104px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

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

.metrics strong {
  font-size: 25px;
  color: var(--white);
}

.metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 4vw, 56px);
}

.intro-section,
.video-section,
.supply-section,
.featured-section,
.packaging-section,
.product-section,
.platform-section,
.capabilities-section,
.contact-section {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.7vw, 66px);
  line-height: 1.02;
  font-weight: 500;
}

.intro-grid p,
.platform-copy p,
.supply-copy p,
.featured-content p,
.packaging-lead,
.packaging-flow p,
.capability-panel p,
.product-card p {
  color: var(--muted);
  font-size: 16px;
}

.video-section {
  padding-top: 0;
}

.supply-film {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(21, 24, 22, 0.18);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.supply-film-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--charcoal);
  filter: saturate(0.95) contrast(1.08);
}

.supply-film-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 12, 10, 0.08), rgba(9, 12, 10, 0.34)),
    linear-gradient(90deg, rgba(9, 12, 10, 0.58), rgba(9, 12, 10, 0.05) 52%, rgba(9, 12, 10, 0.22));
}

.supply-film-label {
  position: absolute;
  left: clamp(18px, 3vw, 38px);
  bottom: clamp(24px, 4vw, 44px);
  max-width: min(420px, calc(100% - 120px));
  color: var(--white);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.supply-film-label span {
  display: block;
  margin-bottom: 8px;
  color: var(--brass);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.supply-film-label strong {
  display: block;
  font-size: clamp(18px, 2.4vw, 34px);
  line-height: 1.08;
  font-weight: 680;
}

.supply-film-toggle {
  position: absolute;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(16px, 2.6vw, 28px);
  min-width: 76px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(12, 16, 14, 0.52);
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.supply-film-timeline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.22);
}

.supply-film-timeline span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brass);
}

.supply-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: stretch;
  padding-top: 0;
}

.supply-visual {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 53, 44, 0.08), rgba(21, 53, 44, 0.86)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=82") center / cover;
  box-shadow: var(--shadow);
}

.supply-visual span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
}

.supply-visual small {
  display: block;
  max-width: 260px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.supply-copy {
  align-self: center;
}

.supply-copy h2 {
  margin-bottom: 22px;
}

.supply-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.supply-points span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 18px;
  border-left: 3px solid var(--brass);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 720;
}

.logistics-network {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.logistics-network p {
  margin-bottom: 16px;
}

.logistics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logistics-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 8px 22px rgba(24, 28, 26, 0.05);
}

.featured-section {
  padding-top: clamp(72px, 8vw, 110px);
}

.featured-heading {
  margin-bottom: 34px;
}

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

.featured-card {
  min-height: 560px;
  display: grid;
  grid-template-rows: 245px 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.featured-image {
  position: relative;
  min-height: 245px;
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.02);
}

.featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 23, 20, 0.02), rgba(17, 23, 20, 0.18));
}

.velvet-hangers {
  background-image: url("https://images.unsplash.com/photo-1520006403909-838d6b92c22e?auto=format&fit=crop&w=1200&q=82");
}

.wooden-hangers {
  background-image: url("https://images.unsplash.com/photo-1558769132-cb1aea458c5e?auto=format&fit=crop&w=900&q=82");
}

.step-stool {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=82");
}

.picture-frames {
  background-image: url("https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&w=900&q=82");
}

.featured-content {
  padding: 26px 24px 18px;
}

.featured-content span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.featured-content h3 {
  min-height: 72px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.4vw, 34px);
  line-height: 1.06;
  font-weight: 500;
}

.featured-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  color: var(--forest);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.packaging-section {
  padding-top: 0;
}

.packaging-heading {
  margin-bottom: 18px;
}

.packaging-lead {
  max-width: 760px;
  margin: 0 0 28px auto;
}

.packaging-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.packaging-flow article {
  min-height: 310px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.packaging-step {
  display: block;
  margin-bottom: 78px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 760;
}

.packaging-flow h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.packaging-flow p {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.product-card {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.26)),
    var(--paper);
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 82px;
  border: 1px solid var(--line);
  color: var(--brass);
  font-weight: 760;
}

.product-card h3,
.capability-panel h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  border-block: 1px solid var(--line);
}

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

.platform-stack {
  display: grid;
  gap: 16px;
}

.platform-list span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(24, 28, 26, 0.05);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 760;
}

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

.sales-strength article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(21, 24, 22, 0.16);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    var(--forest);
  box-shadow: var(--shadow);
}

.sales-strength article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    #55372d;
}

.sales-strength span {
  display: block;
  margin-bottom: 46px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.sales-strength h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.04;
}

.sales-strength p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.capability-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
}

.capability-panel {
  min-height: 250px;
  padding: 30px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.capability-panel:nth-child(2) {
  margin-top: 48px;
  background: #26392f;
}

.capability-panel:nth-child(3) {
  background: #55372d;
}

.capability-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.contact-card a {
  color: var(--forest);
  font-weight: 720;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.7);
  background: #101713;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .intro-grid,
  .supply-section,
  .section-heading,
  .platform-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .featured-card {
    min-height: 520px;
  }

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

  .capability-panel:nth-child(2) {
    margin-top: 0;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .language-switcher {
    min-width: 144px;
  }

  .lang-btn {
    min-width: 46px;
    height: 36px;
    font-size: 12px;
  }

  .hero {
    min-height: 880px;
  }

  .hero-content {
    padding-top: 130px;
  }

  h1 {
    font-size: 43px;
  }

  .metrics,
  .featured-grid,
  .product-grid,
  .platform-list,
  .sales-strength,
  .capability-layout {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .featured-card-large {
    grid-column: auto;
    min-height: 500px;
  }

  .packaging-flow {
    grid-template-columns: 1fr;
  }

  .packaging-flow article {
    min-height: 240px;
  }

  .packaging-step {
    margin-bottom: 42px;
  }

  .supply-film-label {
    max-width: calc(100% - 104px);
  }

  .supply-film-toggle {
    min-width: 64px;
    height: 34px;
  }

  .product-card {
    min-height: 260px;
  }

  .supply-visual {
    min-height: 340px;
  }

  .product-icon {
    margin-bottom: 42px;
  }

  .site-footer {
    display: grid;
  }
}
