@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #FBFAF8;
  --surface: #FFFFFF;
  --dark: #12100E;
  --dark-alt: #1A1815;
  --brand: #B8973E;
  --brand-light: #D4B870;
  --brand-glow: rgba(184, 151, 62, 0.12);
  --text: #1A1815;
  --text-secondary: #75706B;
  --text-on-dark: #F2EFEA;
  --text-on-dark-muted: #A8A29B;
  --border: #E8E3DD;
  --border-dark: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.1);
  --radius: 0;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ── Animations ── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header ── */

.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: 16px clamp(20px, 4vw, 60px);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(17, 16, 14, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(17, 16, 14, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.brand-mark {
  display: grid;
  width: 40px; height: 40px;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong, .brand small { display: block; line-height: 1.15; }
.brand strong { color: rgba(255,255,255,0.92); }
.brand small { margin-top: 2px; color: rgba(255,255,255,0.48); font-size: 0.72rem; font-weight: 500; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 36px);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.56);
  transition: color 0.25s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand);
  transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.site-nav a:hover { color: rgba(255, 255, 255, 0.92); }
.site-nav a:hover::after { width: 100%; }

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

.lang-toggle, .quote-link, .primary-button, .secondary-button, .menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  transition: all 0.25s;
}

.lang-toggle {
  min-width: 80px;
  padding: 0 32px 0 12px;
  color: rgba(255,255,255,0.56);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.56) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.56) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 18px,
    calc(100% - 11px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.lang-toggle:hover { border-color: var(--brand); color: rgba(255,255,255,0.92); }

.quote-link, .primary-button {
  padding: 0 24px;
  color: var(--dark);
  background: var(--brand);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.quote-link:hover, .primary-button:hover {
  background: #C9A54E;
}

.secondary-button {
  padding: 0 24px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.secondary-button:hover {
  border-color: var(--text);
}

.menu-button {
  display: none;
  width: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
}

.menu-button span {
  position: absolute;
  width: 18px; height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 0;
  transition: transform 0.3s 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 ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--dark);
}

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

.hero-media {
  left: 0;
  background-image: url("./assets/hero-fashion.jpg");
  background-position: center 30%;
  background-size: cover;
  animation: fadeIn 1.2s ease;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 16, 14, 0.94) 0%, rgba(18, 16, 14, 0.8) 35%, rgba(18, 16, 14, 0.2) 62%, rgba(18, 16, 14, 0.45) 100%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.32fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 130px 0 64px;
  color: var(--text-on-dark);
}

.hero-copy-block { min-width: 0; max-width: 600px; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.05; }

h1 {
  max-width: 600px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 5.5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  word-break: normal;
  color: var(--text-on-dark);
}

.hero-copy {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.6;
}

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

.hero .primary-button {
  color: var(--dark);
  background: var(--brand-light);
  font-weight: 650;
}

.hero .primary-button:hover { background: var(--brand); color: #fff; }

.hero .secondary-button {
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero .secondary-button:hover {
  border-color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.06);
}

.sourcing-brief {
  align-self: end;
  margin-top: 100px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.sourcing-brief dl { display: grid; gap: 0; margin: 0; }
.sourcing-brief dl div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sourcing-brief dt {
  color: var(--brand-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sourcing-brief dd {
  margin: 8px 0 0;
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ── Trust Strip ── */

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

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px 16px;
  color: var(--text-on-dark-muted);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s;
}

.trust-strip span:last-child { border-right: 0; }
.trust-strip span:hover { color: var(--brand-light); }

/* ── Sections ── */

.section {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading.compact {
  display: block;
  max-width: 680px;
  margin-bottom: 56px;
}

.section-heading h2,
.capability-content h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-heading .eyebrow {
  color: var(--brand);
  margin-bottom: 12px;
}

/* ── Solutions Grid ── */

.solution-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.solution-link-grid a {
  min-height: 220px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background: var(--surface);
  border: 0;
  transition: background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.solution-link-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.solution-link-grid a:hover::before { opacity: 1; }

.solution-link-grid a strong,
.solution-link-grid a span {
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.solution-link-grid a strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--text);
}

.solution-link-grid a:hover strong { color: var(--text-on-dark); }

.solution-link-grid a span {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 90%;
}

.solution-link-grid a:hover span { color: var(--text-on-dark-muted); }

/* ── Intro ── */

.intro-section {
  padding-bottom: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── Film ── */

.film-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.film-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.45rem, 4.3vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}

.film-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.65;
}

.film-frame {
  position: relative;
  border: 0;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
}

.film-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.film-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ── Products ── */

.products-section {
  width: 100%;
  max-width: none;
  padding: 120px clamp(24px, 5vw, 72px);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-section .section-heading {
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.sample-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1240px, 100%);
  margin: 0 auto 64px;
}

.sample-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 480px;
  background: var(--dark);
  border: 0;
  cursor: pointer;
}

.sample-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sample-gallery figure:hover img {
  transform: scale(1.04);
}

.sample-gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(18, 16, 14, 0.95) 0%, rgba(18, 16, 14, 0) 100%);
}

.sample-gallery span, .sample-gallery strong { display: block; }
.sample-gallery span {
  color: var(--brand-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sample-gallery strong {
  margin-top: 8px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 500;
}

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

.product-card { background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.product-card img {
  width: 100%;
  aspect-ratio: 3 / 4.25;
  object-fit: cover;
  background: #F3F2EF;
  transition: transform 0.5s ease;
}

.product-card:hover img { transform: scale(1.03); }

.product-card div { padding: 20px 0 0; }

.product-category {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  color: var(--brand);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3, .quality-grid h3, .case-list h3, .timeline h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.product-card p, .quality-grid p, .case-list p, .timeline p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

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

.product-specs strong { color: var(--text); font-weight: 600; }

.product-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 40px;
  color: var(--text-secondary);
  background: #F8F7F5;
  border: 1px solid var(--border);
  text-align: center;
}

.product-card.is-real-sample img { background: #F2F0ED; }

/* ── Capabilities ── */

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}

.capability-media img {
  width: 100%;
  height: min(640px, 65vh);
  min-height: 440px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.timeline { display: grid; gap: 8px; margin-top: 36px; }
.timeline div {
  position: relative;
  padding: 24px 0 24px 76px;
  border-top: 1px solid var(--border);
  transition: border-color 0.3s;
}

.timeline div:hover { border-top-color: var(--brand); }

.timeline span {
  position: absolute;
  top: 22px; left: 0;
  display: grid;
  width: 48px; height: 48px;
  place-items: center;
  color: var(--brand);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.timeline div:hover span {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ── Quality ── */

.quality-section {
  width: 100%;
  max-width: none;
  padding: 120px clamp(24px, 5vw, 72px);
  background: var(--dark);
  color: var(--text-on-dark);
}

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

.quality-section .section-heading h2 { color: var(--text-on-dark); }
.quality-section .eyebrow { color: var(--brand-light); }

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

.quality-grid article {
  min-height: 260px;
  padding: 40px 36px;
  background: transparent;
  border-right: 1px solid var(--border-dark);
  border-radius: 0;
  transition: background 0.3s;
}

.quality-grid article:last-child { border-right: 0; }
.quality-grid article:hover { background: rgba(255, 255, 255, 0.03); }

.quality-grid h3 { color: var(--text-on-dark); }
.quality-grid p { color: var(--text-on-dark-muted); }

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--brand-light);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Cases ── */

.cases-section {
  padding-bottom: 80px;
}

.case-list {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.case-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(200px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 32px;
  background: var(--surface);
  border-bottom: 0;
  transition: background 0.3s;
}

.case-list article:hover { background: #FBF9F6; }

.case-list strong {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-list h3 { font-weight: 600; margin: 0; }
.case-list p { margin: 0; }

/* ── Contact ── */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 140px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
}

.contact-details a {
  transition: color 0.25s;
  padding: 2px 0;
}

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

.rfq-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-md);
}

.rfq-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
}

.rfq-form input, .rfq-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  font-size: 0.94rem;
}

.rfq-form input:focus, .rfq-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
}

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

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-note { margin: 0; color: var(--text-secondary); font-size: 0.88rem; }
.form-note.is-error { color: #D9434E; }
.form-note.is-success { color: #3D8B5E; font-weight: 600; }

/* ── Footer ── */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 4vw, 60px);
  color: var(--text-on-dark-muted);
  background: var(--dark);
  font-size: 0.88rem;
}

.site-footer strong { color: var(--text-on-dark); font-weight: 600; }
.site-footer p { margin: 6px 0 0; font-size: 0.84rem; }
.site-footer a { color: var(--brand-light); font-weight: 600; transition: color 0.25s; }
.site-footer a:hover { color: var(--text-on-dark); }

/* ── RTL ── */

:root[dir="rtl"] .site-nav,
:root[dir="rtl"] .hero-copy,
:root[dir="rtl"] .section-heading,
:root[dir="rtl"] .intro-grid,
:root[dir="rtl"] .capability-content,
:root[dir="rtl"] .case-list,
:root[dir="rtl"] .contact-copy,
:root[dir="rtl"] .rfq-form,
:root[dir="rtl"] .site-footer { text-align: right; }

:root[dir="rtl"] .timeline div { padding: 24px 76px 24px 0; }
:root[dir="rtl"] .timeline span { right: 0; left: auto; }
:root[dir="rtl"] .site-nav a::after { left: auto; right: 0; }

/* ── Responsive ── */

@media (max-width: 1080px) {
  .solution-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(17, 16, 14, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
  }

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

  .quote-link { display: none; }
  .menu-button { display: inline-flex; }

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

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sample-gallery { grid-template-columns: 1fr; }
  .sample-gallery figure { min-height: 0; }

  .quality-grid { grid-template-columns: 1fr; }
  .quality-grid article { border-right: 0; border-bottom: 1px solid var(--border-dark); }
  .quality-grid article:last-child { border-bottom: 0; }

  .hero-media { left: 0; opacity: 0.85; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 16, 14, 0.94), rgba(18, 16, 14, 0.82));
  }

  .sourcing-brief { width: min(560px, 100%); margin-top: 20px; }
  .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; }

  .section { padding: 88px 0; }
  .products-section, .quality-section { padding: 88px clamp(20px, 4vw, 48px); }
}

@media (max-width: 680px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 14px 16px;
  }

  .brand { grid-column: 1; min-width: 0; }
  .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; }

  .header-actions { grid-column: 3; min-width: 0; }

  .lang-toggle {
    min-width: 68px;
    min-height: 38px;
    padding: 0 26px 0 10px;
    background-position:
      calc(100% - 14px) 16px,
      calc(100% - 9px) 16px;
  }

  .hero { min-height: auto; }
  .hero-content { width: calc(100% - 32px); padding: 120px 0 48px; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.13em; }
  h1 { max-width: 340px; font-size: clamp(2.3rem, 10vw, 2.85rem); word-break: break-word; }
  .hero-copy, .hero-actions { max-width: 340px; }

  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip span {
    min-height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
  }

  .section { width: calc(100% - 32px); padding: 68px 0; }
  .products-section, .quality-section { padding: 68px 16px; }
  .products-section .section-heading { display: block; }
  .product-grid { grid-template-columns: 1fr; }
  .solution-link-grid { grid-template-columns: 1fr; }
  .solution-link-grid a { min-height: 160px; }

  .film-section { padding-top: 8px; }
  .film-frame::before { inset: 12px; }
  .rfq-form { padding: 24px; }
  .site-footer { display: grid; }
}

@media (max-width: 400px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .secondary-button { width: 100%; }
}
