:root {
  --ink: #18171a;
  --muted: #6d6971;
  --line: #e5e0dc;
  --panel: #f7f5f2;
  --white: #ffffff;
  --brand: #8f2746;
  --brand-dark: #5d1a30;
  --accent: #b9925e;
  --steel: #303038;
  --charcoal: #151518;
  --shadow: 0 24px 60px rgba(24, 23, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 60px);
  color: var(--white);
  background: rgba(8, 20, 34, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(20, 32, 51, 0.12);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.88;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 190px;
}

.language-control,
.quote-link,
.primary-button,
.secondary-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
}

.language-control {
  gap: 8px;
  min-width: 148px;
  padding: 0 10px 0 12px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.language-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 900;
}

.language-control select {
  width: 100%;
  min-width: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  font-weight: 750;
}

.language-control option {
  color: var(--ink);
}

.site-header.is-scrolled .language-control,
.site-header.is-open .language-control {
  border-color: var(--line);
  background: var(--panel);
}

.quote-link,
.primary-button {
  padding: 0 20px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 22px rgba(13, 107, 114, 0.22);
}

.quote-link:hover,
.primary-button:hover {
  background: var(--brand-dark);
}

.secondary-button {
  padding: 0 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.menu-button {
  display: none;
  width: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-open .menu-button span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-button span:nth-child(3) {
  transform: rotate(-45deg);
}

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

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

.hero-media {
  background-image: url("./assets/hero-fashion.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video:not([src]) {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 14, 17, 0.86) 0%, rgba(31, 22, 26, 0.58) 46%, rgba(31, 22, 26, 0.12) 100%),
    linear-gradient(0deg, rgba(14, 14, 17, 0.78) 0%, rgba(14, 14, 17, 0.08) 50%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6.5vw, 5.85rem);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 14px;
  color: var(--steel);
  border-right: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 750;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
}

.section-heading h2,
.capability-content h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.products-section {
  width: 100%;
  max-width: none;
  padding: 102px clamp(20px, 4vw, 60px);
  background:
    linear-gradient(180deg, #fff 0%, var(--panel) 100%);
}

.products-section .section-heading {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 23, 26, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(24, 23, 26, 0.13);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card div {
  padding: 24px;
}

.product-category {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
  color: var(--brand-dark);
  background: #f3e4e9;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-card h3,
.quality-grid h3,
.case-list h3,
.timeline h3 {
  font-size: 1.18rem;
}

.product-card p,
.quality-grid p,
.case-list p,
.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.product-specs {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-specs li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-specs strong {
  color: var(--steel);
}

.product-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.capability-media img {
  width: 100%;
  height: min(680px, 70vh);
  min-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.timeline div {
  position: relative;
  padding: 22px 0 22px 68px;
  border-top: 1px solid var(--line);
}

.timeline span {
  position: absolute;
  top: 22px;
  left: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--steel);
  border-radius: 8px;
  font-weight: 850;
}

.quality-section {
  width: 100%;
  max-width: none;
  padding: 96px clamp(20px, 4vw, 60px);
  background: var(--charcoal);
  color: var(--white);
}

.quality-section .section-heading,
.quality-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

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

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

.quality-grid article {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.quality-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  color: #221722;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

.case-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(200px, 0.62fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.case-list article:last-child {
  border-bottom: 0;
}

.case-list strong {
  color: var(--brand);
}

.case-list p {
  margin: 0;
}

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

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--steel);
  font-weight: 750;
}

.contact-details a:hover {
  color: var(--brand);
}

.rfq-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(20, 32, 51, 0.1);
}

.rfq-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 750;
}

.rfq-form input,
.rfq-form textarea {
  width: 100%;
  border: 1px solid #cbd5df;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.rfq-form input:focus,
.rfq-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(13, 107, 114, 0.14);
}

.rfq-form textarea {
  resize: vertical;
}

.rfq-form .primary-button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 60px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 750;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 20px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(20, 32, 51, 0.12);
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .quote-link {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-header.is-scrolled .menu-button,
  .site-header.is-open .menu-button {
    border-color: var(--line);
    background: var(--panel);
  }

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

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

  .capability-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .case-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-list p {
    margin-top: 0;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    min-width: 0;
  }

  .language-control {
    min-width: 120px;
    min-height: 40px;
    padding: 0 8px;
  }

  .language-icon {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 128px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-metrics div {
    padding: 15px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip span {
    min-height: 66px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .products-section,
  .quality-section {
    padding: 68px 16px;
  }

  .rfq-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}
