:root {
  --ink: #15171a;
  --muted: #62676f;
  --line: #d9dde0;
  --paper: #f7f8f6;
  --white: #ffffff;
  --blue: #0a48b5;
  --blue-deep: #073173;
  --green: #294f49;
  --green-soft: #dfeae5;
  --copper: #965c54;
  --copper-light: #d7b7a7;
  --copper-soft: #f0dfd8;
  --charcoal: #171a1d;
  --shadow: 0 22px 70px rgba(21, 23, 26, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(10, 72, 181, 0.36);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 34px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(21, 23, 26, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(0, 18, 45, 0.18);
}

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

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(10, 72, 181, 0.16);
  box-shadow: 0 10px 22px rgba(10, 72, 181, 0.12);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-copy span {
  font-size: 12px;
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  min-width: 74px;
  padding: 8px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
}

.site-nav .nav-cta::after {
  display: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 2px;
  padding: 2px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switch a {
  min-width: 34px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  opacity: 0.74;
}

.language-switch a::after {
  display: none;
}

.language-switch a:hover,
.language-switch a[aria-current="page"] {
  opacity: 1;
}

.site-header:not(.is-scrolled):not(.is-open) .language-switch a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.site-header.is-scrolled .language-switch a[aria-current="page"],
.site-header.is-open .language-switch a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.section {
  padding: 108px 64px;
}

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

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-muted {
  background: #eef2ef;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 700;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-size: 38px;
  line-height: 1.18;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 154px 64px 64px;
  overflow: hidden;
  align-items: end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 11, 15, 0.58), rgba(8, 11, 15, 0.08) 38%, rgba(8, 11, 15, 0.2)),
    linear-gradient(90deg, rgba(10, 13, 16, 0.92), rgba(10, 13, 16, 0.7) 36%, rgba(10, 13, 16, 0.32) 70%, rgba(10, 13, 16, 0.1)),
    url("assets/factory-exterior.webp") right center / auto 100% no-repeat,
    linear-gradient(135deg, #101315, #223d39);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-deep);
}

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

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

.button-secondary {
  border-color: rgba(21, 23, 26, 0.18);
  background: var(--white);
  color: var(--green);
}

.button-secondary:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 850px);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 84px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 124px;
  padding: 26px;
  background: rgba(18, 20, 22, 0.38);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.hero-panel p {
  margin: 0;
  font-size: 14px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--white);
}

.strip-item {
  display: grid;
  min-height: 168px;
  align-content: center;
  gap: 14px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

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

.strip-item span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
}

.strip-item p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.92fr);
}

#fabrics.split.reverse {
  grid-template-columns: minmax(480px, 0.95fr) minmax(0, 0.75fr);
}

.split.reverse .section-copy {
  order: 2;
}

.section-copy {
  max-width: 680px;
}

.section-copy p {
  font-size: 17px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.brand-row span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.brand-stories {
  background:
    linear-gradient(135deg, rgba(18, 23, 26, 0.98), rgba(31, 43, 45, 0.94)),
    #171a1d;
  color: var(--white);
}

.brand-stories .section-head {
  width: min(100%, 980px);
  margin-right: auto;
  margin-left: auto;
}

.brand-stories .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.brand-stories .section-head .eyebrow {
  color: var(--copper-soft);
}

.brand-story-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.brand-story-card {
  position: relative;
  display: grid;
  grid-column: span 6;
  align-content: start;
  min-height: 520px;
  gap: 18px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.brand-story-card::before {
  position: absolute;
  top: 0;
  right: 38px;
  left: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-soft), rgba(10, 72, 181, 0.62), rgba(223, 234, 229, 0.72));
  content: "";
}

.story-ziyina {
  grid-column: 1 / -1;
  min-height: 360px;
}

.story-index {
  color: rgba(255, 255, 255, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 0.9;
}

.story-label {
  margin: 0;
  color: var(--copper-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-story-card h3 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.12;
}

.brand-story-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.82;
}

.story-ziyina p {
  max-width: 980px;
}

.brand-traits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0;
}

.brand-traits span {
  display: grid;
  min-height: 112px;
  align-content: space-between;
  gap: 14px;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
}

.brand-traits strong {
  color: var(--copper-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1;
}

.brand-traits small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.image-frame {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame.tall {
  min-height: 560px;
}

.image-frame img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.fabric-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(190px, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 560px;
}

.fabric-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.fabric-tile-large {
  grid-row: span 2;
  min-height: 560px;
}

.fabric-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}

.fabric-tile:hover img {
  transform: scale(1.025);
}

.fabric-tile::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(12, 15, 17, 0.02), rgba(12, 15, 17, 0.78)),
    linear-gradient(90deg, rgba(12, 15, 17, 0.36), rgba(12, 15, 17, 0.02) 58%);
  content: "";
}

.fabric-tile div {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
}

.fabric-tile span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--copper-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.fabric-tile h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.18;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.section-head {
  width: min(100%, 780px);
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-head p {
  font-size: 17px;
}

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

.product-card {
  display: grid;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(21, 23, 26, 0.08);
}

.product-card img {
  height: 230px;
  object-fit: cover;
}

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

.product-card span,
.news-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card p,
.news-card p {
  margin: 0;
}

.lookbook {
  position: relative;
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

.lookbook-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.lookbook-track::-webkit-scrollbar {
  display: none;
}

.lookbook-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  flex: 0 0 100%;
  height: clamp(620px, 60vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: var(--radius);
  background: #f4f1eb;
  box-shadow: 0 32px 90px rgba(21, 23, 26, 0.14);
  scroll-snap-align: start;
}

.lookbook-slide.is-wide {
  grid-template-columns: 1fr;
}

.lookbook-media {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #f5f3ef;
}

.lookbook-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lookbook-slide.is-contained .lookbook-media img {
  object-fit: contain;
  object-position: center bottom;
}

.lookbook-copy {
  position: relative;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: clamp(30px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 241, 235, 0.96)),
    #f4f1eb;
  border-left: 1px solid rgba(21, 23, 26, 0.08);
}

.lookbook-slide.is-wide .lookbook-copy {
  position: absolute;
  left: clamp(24px, 4vw, 58px);
  bottom: clamp(10px, 1.6vw, 22px);
  max-width: 460px;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-left: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(21, 23, 26, 0.12);
  backdrop-filter: blur(18px);
}

.lookbook-slide.is-wide .lookbook-copy h3 {
  font-size: clamp(26px, 2.7vw, 38px);
}

.lookbook-slide.is-wide .lookbook-copy p {
  max-width: 390px;
  font-size: 14px;
  line-height: 1.55;
}

.lookbook-slide.is-wide .lookbook-tags {
  gap: 8px 14px;
}

.lookbook-slide.is-wide .lookbook-tags span {
  font-size: 11px;
}

.lookbook-copy > span {
  display: inline-flex;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lookbook-copy h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.08;
}

.lookbook-copy p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.lookbook-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.lookbook-tags span {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.lookbook-controls {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 0 2px;
}

.lookbook-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.lookbook-controls button:hover {
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-1px);
}

.lookbook-controls button:disabled {
  cursor: default;
  opacity: 0.4;
  transform: none;
}

.lookbook-controls button span {
  margin-top: -2px;
  font-size: 31px;
  line-height: 1;
}

.lookbook-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(21, 23, 26, 0.14);
}

.lookbook-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0.1429);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.lookbook-count {
  min-width: 58px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.product-catalog {
  background: var(--white);
}

.catalog-panel {
  display: grid;
  gap: 24px;
}

.catalog-disclosure {
  display: grid;
  gap: 22px;
}

.catalog-disclosure summary {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.catalog-disclosure summary::-webkit-details-marker {
  display: none;
}

.catalog-disclosure summary:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.catalog-disclosure .summary-close {
  display: none;
}

.catalog-disclosure:not([open]) .catalog-panel {
  display: none;
}

.catalog-disclosure[open] .summary-open {
  display: none;
}

.catalog-disclosure[open] .summary-close {
  display: inline;
}

.catalog-disclosure[open] .catalog-panel {
  animation: revealCatalog 220ms ease;
}

@keyframes revealCatalog {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-filters {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f7f4;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.filter-group > span {
  min-width: 92px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.filter-group button {
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid rgba(21, 23, 26, 0.13);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.filter-group button:hover,
.filter-group button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.catalog-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.catalog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(21, 23, 26, 0.08);
}

.catalog-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: #f6f0e9;
}

.catalog-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.catalog-card h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.catalog-code {
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.gallery-page {
  background: var(--white);
}

.gallery-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  padding: 170px 52px 74px;
}

.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(12, 15, 18, 0.88), rgba(12, 15, 18, 0.56) 52%, rgba(12, 15, 18, 0.22)), url("assets/showroom-wide.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.gallery-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 780px;
  gap: 20px;
}

.gallery-hero-content h1 {
  max-width: 720px;
}

.gallery-hero-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.gallery-auth {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(21, 23, 26, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(223, 234, 229, 0.82), rgba(255, 255, 255, 0.95)),
    var(--white);
  box-shadow: var(--shadow);
}

.gallery-auth h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 36px);
}

.gallery-auth p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.gallery-auth-form {
  display: grid;
  gap: 12px;
}

.gallery-auth-form label {
  color: var(--ink);
  font-weight: 800;
}

.gallery-auth-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.gallery-auth-row input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(21, 23, 26, 0.14);
  border-radius: 999px;
  background: var(--white);
  padding: 0 18px;
  color: var(--ink);
}

.gallery-auth-row input:focus {
  border-color: var(--green);
}

.gallery-auth-message {
  min-height: 24px;
  font-size: 14px;
}

.full-gallery .filter-group > span {
  min-width: 132px;
}

.gallery-toolbar {
  display: block;
}

.gallery-footer {
  display: flex;
  justify-content: flex-end;
}

.gallery-pagination {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.gallery-pagination button {
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid rgba(21, 23, 26, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.gallery-pagination button:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.gallery-pagination button:disabled {
  cursor: default;
  opacity: 0.42;
}

.gallery-pagination button:disabled:hover {
  border-color: rgba(21, 23, 26, 0.14);
  background: var(--white);
  color: var(--ink);
}

.gallery-pagination span {
  min-width: 72px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.gallery-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 30px;
  border: 1px dashed rgba(21, 23, 26, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.showroom {
  background: var(--white);
}

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

.feature-photo {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.showroom-hero {
  grid-column: span 7;
  min-height: 540px;
}

.showroom-feature {
  grid-column: span 5;
  min-height: 540px;
}

.showroom-detail {
  grid-column: span 4;
}

.showroom-wide-card {
  grid-column: span 6;
  min-height: 340px;
}

.feature-photo.large {
  grid-row: span 2;
  min-height: 680px;
}

.feature-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-photo:hover img {
  transform: scale(1.025);
}

.feature-photo::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(12, 15, 17, 0.02), rgba(12, 15, 17, 0.76)),
    linear-gradient(90deg, rgba(12, 15, 17, 0.34), rgba(12, 15, 17, 0.02) 58%);
  content: "";
}

.feature-photo div {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: var(--white);
}

.feature-photo span,
.workshop-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--copper-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-photo h3 {
  margin-bottom: 0;
  color: var(--white);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: -14px 0 34px;
  padding: 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(217, 221, 224, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 246, 0.88)),
    linear-gradient(90deg, rgba(41, 79, 73, 0.08), rgba(150, 92, 84, 0.08));
  box-shadow: 0 24px 70px rgba(21, 23, 26, 0.08);
}

.process-flow::before {
  position: absolute;
  top: 51px;
  right: 64px;
  left: 64px;
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 79, 73, 0.18), rgba(150, 92, 84, 0.32));
  content: "";
}

.process-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 0 12px;
}

.process-flow article:not(:last-child)::after {
  position: absolute;
  top: 17px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(150, 92, 84, 0.55);
  border-right: 1px solid rgba(150, 92, 84, 0.55);
  transform: rotate(45deg);
  content: "";
}

.process-flow span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(41, 79, 73, 0.22);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(21, 23, 26, 0.08);
}

.process-flow div {
  display: grid;
  gap: 4px;
}

.process-flow strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

.process-flow small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

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

.process-grid article {
  min-height: 280px;
  padding: 34px;
  background: var(--white);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--copper);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.workshop-gallery {
  padding-top: 100px;
}

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

.workshop-card {
  overflow: hidden;
  border: 1px solid rgba(21, 23, 26, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(21, 23, 26, 0.08);
}

.workshop-card img {
  height: 280px;
  object-fit: cover;
}

.workshop-card div {
  padding: 28px;
}

.workshop-card span {
  color: var(--copper);
}

.workshop-card p {
  margin-bottom: 0;
}

.capability {
  background:
    linear-gradient(rgba(23, 26, 29, 0.88), rgba(23, 26, 29, 0.88)),
    url("assets/factory-exterior.webp") center / cover;
}

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

.metric-card {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.metric-card strong {
  font-size: 42px;
  line-height: 1;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.72);
}

.distribution-network {
  display: grid;
  gap: 24px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.distribution-head {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.distribution-head p {
  margin: 0;
  color: var(--copper-light);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.distribution-head h3 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  text-align: right;
}

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

.distribution-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.distribution-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--copper-light);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.distribution-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
}

.distribution-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.quality-layout,
.market-grid,
.news-grid {
  display: grid;
  gap: 18px;
}

.quality-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quality-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.quality-awards {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quality-awards::after {
  content: none;
}

.quality-awards img {
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
}

.quality-awards figcaption {
  display: grid;
  gap: 6px;
  padding: 20px 24px 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.quality-awards span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quality-awards strong {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.32;
}

.quality-showcase .quality-layout {
  grid-template-columns: 1fr;
  gap: 16px;
}

.quality-showcase .quality-card {
  min-height: auto;
}

.quality-card,
.market-grid article,
.news-card {
  min-height: 220px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quality-card h3,
.market-grid h3,
.news-card h3 {
  color: var(--green);
}

.market-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-tracking {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.82fr);
  gap: 64px;
  align-items: start;
}

.tracking-copy {
  max-width: 660px;
}

.tracking-security-note {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(41, 79, 73, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 52px rgba(21, 23, 26, 0.06);
}

.tracking-security-note strong {
  color: var(--green);
  font-size: 15px;
}

.tracking-security-note span {
  color: var(--muted);
  font-size: 14px;
}

.tracking-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(41, 79, 73, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 246, 0.86)),
    var(--white);
  box-shadow: var(--shadow);
}

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

.tracking-form label {
  display: grid;
  gap: 8px;
}

.tracking-form span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.tracking-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  padding: 12px 14px;
}

.tracking-form input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(167, 100, 87, 0.16);
}

.tracking-form button {
  grid-column: 1 / -1;
  width: 100%;
}

.tracking-demo,
.tracking-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.tracking-message {
  min-height: 22px;
}

.tracking-message.is-error {
  color: #9f3428;
}

.tracking-result {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(41, 79, 73, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(41, 79, 73, 0.98), rgba(23, 26, 29, 0.98)),
    var(--green);
  color: var(--white);
}

.tracking-result[hidden] {
  display: none;
}

.tracking-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tracking-result-head span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracking-result-head strong {
  color: var(--copper-light);
  font-size: 16px;
}

.tracking-series {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

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

.tracking-progress div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.tracking-progress span {
  display: block;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
}

.tracking-progress small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracking-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.tracking-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--copper-light), #fff3de);
  transition: width 360ms ease;
}

.tracking-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tracking-step {
  position: relative;
  min-width: 0;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  text-align: center;
}

.tracking-step::before {
  content: "";
  position: absolute;
  top: 4px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.tracking-step.is-done,
.tracking-step.is-active {
  color: var(--white);
}

.tracking-step.is-done::before {
  border-color: var(--copper-light);
  background: var(--copper-light);
}

.tracking-step.is-active::before {
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.13);
}

.tracking-updated {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.72fr);
  gap: 64px;
  align-items: start;
  background:
    linear-gradient(110deg, rgba(23, 26, 29, 0.94), rgba(23, 26, 29, 0.78)),
    url("assets/contact-textile.webp") center / cover;
}

.contact-copy {
  max-width: 650px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: var(--white);
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.qr-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.qr-card img {
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: var(--white);
  object-fit: contain;
}

.qr-card div {
  display: grid;
  gap: 2px;
}

.qr-card strong {
  font-size: 16px;
  line-height: 1.35;
}

.qr-card span {
  color: var(--muted);
  font-size: 12px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

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

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  outline: none;
  padding: 12px 14px;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(167, 100, 87, 0.22);
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 64px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 13px;
}

.icp-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.icp-link:hover {
  color: var(--green);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 1320px) {
  .site-header {
    padding-right: 26px;
    padding-left: 26px;
  }

  .brand {
    min-width: 210px;
  }

  .site-nav {
    gap: 10px;
    font-size: 13.5px;
  }

  .site-nav .nav-cta {
    min-width: 68px;
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding-right: 26px;
    padding-left: 26px;
  }

  .site-nav {
    gap: 10px;
  }

  .section,
  .hero {
    padding-right: 34px;
    padding-left: 34px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 33px;
  }

  .product-grid,
  .capability-grid,
  .distribution-grid,
  .market-grid,
  .workshop-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lookbook-slide {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    flex-basis: 100%;
    height: 620px;
  }

  .lookbook-media {
    height: 100%;
  }

  .process-flow {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .quality-awards img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .process-grid,
  .quality-layout,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-tracking {
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.86fr);
    gap: 36px;
  }

  .showroom-layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .showroom-hero,
  .showroom-feature,
  .showroom-detail,
  .showroom-wide-card {
    grid-column: span 3;
    min-height: 380px;
  }

  .showroom-hero,
  .showroom-feature {
    min-height: 460px;
  }
}

@media (max-width: 880px) {
  main section[id] {
    scroll-margin-top: 76px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 20px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand-copy strong {
    font-size: 15px;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle span + span {
    margin-top: -13px;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 68px);
    overflow: auto;
    padding: 18px 20px 28px;
    background: rgba(255, 255, 255, 0.995);
    color: var(--ink);
    box-shadow: 0 26px 42px rgba(21, 23, 26, 0.1);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }

  .language-switch {
    grid-column: 1 / -1;
    width: max-content;
    margin-top: 6px;
    margin-left: 0;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .language-switch a {
    padding: 8px 12px;
  }

  .site-nav .nav-cta {
    border-color: var(--green);
  }

  .section {
    padding: 68px 20px;
  }

  .hero {
    min-height: 720px;
    padding: 118px 20px 28px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(8, 11, 15, 0.5), rgba(8, 11, 15, 0.1) 32%, rgba(8, 11, 15, 0.38)),
      linear-gradient(90deg, rgba(10, 13, 16, 0.9), rgba(10, 13, 16, 0.52) 70%, rgba(10, 13, 16, 0.28)),
      url("assets/factory-exterior.webp") 60% center / auto 100% no-repeat,
      linear-gradient(135deg, #101315, #223d39);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    line-height: 1.2;
  }

  .section-head {
    width: 100%;
    margin-bottom: 30px;
  }

  .section-head.align-left {
    margin-bottom: 30px;
  }

  .hero-lead,
  .section-copy p,
  .section-head p {
    font-size: 16px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .hero-panel div {
    min-height: 102px;
  }

  #fabrics.split.reverse,
  .intro-strip,
  .split,
  .split.reverse,
  .fabric-gallery,
  .showroom-layout,
  .gallery-auth,
  .order-tracking,
  .contact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fabric-gallery {
    grid-template-rows: none;
    min-height: 0;
    gap: 12px;
  }

  .fabric-tile,
  .fabric-tile-large {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .split.reverse .section-copy {
    order: 0;
  }

  .section-copy {
    max-width: none;
  }

  .strip-item {
    min-height: 136px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 20px;
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .image-frame,
  .image-frame.tall {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .image-frame img {
    min-height: 0;
  }

  .feature-photo,
  .feature-photo.large {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .showroom-hero,
  .showroom-feature,
  .showroom-detail,
  .showroom-wide-card {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .showroom-hero,
  .showroom-feature {
    aspect-ratio: 4 / 3;
  }

  .showroom-detail,
  .showroom-wide-card {
    aspect-ratio: 3 / 2;
  }

  .feature-photo div {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .feature-photo h3 {
    font-size: 22px;
  }

  .gallery-hero {
    min-height: 460px;
    padding: 140px 24px 54px;
  }

  .gallery-hero-content p {
    font-size: 16px;
  }

  .gallery-footer {
    justify-content: stretch;
  }

  .product-grid,
  .process-grid,
  .capability-grid,
  .distribution-grid,
  .quality-layout,
  .market-grid,
  .news-grid,
  .workshop-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .catalog-card,
  .brand-story-card,
  .process-grid article,
  .quality-card,
  .market-grid article,
  .news-card,
  .workshop-card {
    min-height: auto;
  }

  .brand-story-layout {
    grid-template-columns: 1fr;
  }

  .quality-awards img {
    aspect-ratio: 4 / 3;
  }

  .quality-awards figcaption {
    padding: 18px 20px 20px;
  }

  .quality-awards strong {
    font-size: 17px;
  }

  .distribution-head {
    display: grid;
    gap: 10px;
  }

  .distribution-head h3 {
    text-align: left;
  }

  .brand-story-card,
  .story-ziyina {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 28px;
  }

  .brand-story-card p {
    line-height: 1.75;
  }

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

  .lookbook-track {
    gap: 16px;
    padding-bottom: 2px;
  }

  .lookbook-slide,
  .lookbook-slide.is-wide {
    grid-template-columns: 1fr;
    flex-basis: 100%;
    height: auto;
    min-height: auto;
  }

  .lookbook-media {
    height: auto;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .lookbook-slide.is-wide .lookbook-media {
    aspect-ratio: 16 / 10;
  }

  .lookbook-slide.is-wide .lookbook-copy {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    border-right: 0;
    border-left: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 241, 235, 0.96)),
      #f4f1eb;
    box-shadow: none;
    backdrop-filter: none;
  }

  .lookbook-copy {
    align-content: start;
    min-height: auto;
    padding: 24px;
  }

  .lookbook-copy h3 {
    font-size: 28px;
  }

  .lookbook-copy p {
    max-width: none;
  }

  .process-grid span {
    margin-bottom: 30px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
    padding: 22px;
  }

  .process-flow article:not(:last-child)::after {
    display: none;
  }

  .process-flow::before {
    display: block;
    top: 42px;
    bottom: 42px;
    left: 43px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(41, 79, 73, 0.16), rgba(150, 92, 84, 0.3));
  }

  .process-flow article {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    padding: 0;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .tracking-panel {
    padding: 20px;
  }

  .tracking-form,
  .tracking-progress,
  .tracking-steps {
    grid-template-columns: 1fr;
  }

  .tracking-step {
    padding-top: 0;
    padding-left: 24px;
    text-align: left;
  }

  .tracking-step::before {
    top: 8px;
    left: 0;
  }

  .contact-qr-grid {
    grid-template-columns: 1fr;
  }

  .qr-card img {
    width: min(100%, 260px);
    justify-self: center;
  }

  .site-footer {
    display: grid;
    padding: 28px 20px;
  }
}

@media (max-width: 520px) {
  .brand-copy span {
    display: block;
    font-size: 11px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 26px;
  }

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

  .gallery-auth-row {
    grid-template-columns: 1fr;
  }

  .site-header.is-open .site-nav {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .brand-story-card {
    padding: 24px;
  }

  .brand-story-card h3 {
    font-size: 26px;
  }

  .brand-story-card p {
    font-size: 15px;
  }

  .story-index {
    font-size: 44px;
  }

  .brand-traits {
    grid-template-columns: 1fr;
  }

  .brand-traits span {
    min-height: 82px;
  }

  .lookbook-slide,
  .lookbook-slide.is-wide {
    flex-basis: calc(100vw - 40px);
  }

  .lookbook-slide.is-wide .lookbook-media {
    aspect-ratio: 16 / 11;
  }

  .lookbook-copy {
    min-height: auto;
    gap: 14px;
    padding: 22px;
  }

  .lookbook-copy h3 {
    font-size: 25px;
  }

  .lookbook-tags span {
    min-height: 30px;
    font-size: 11px;
  }

  .lookbook-controls {
    grid-template-columns: auto minmax(80px, 1fr) auto auto;
    gap: 10px;
  }

  .lookbook-controls button {
    width: 42px;
    height: 42px;
  }

  .fabric-gallery {
    gap: 10px;
  }

  .fabric-tile,
  .fabric-tile-large {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .fabric-tile div {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .full-gallery .filter-group > span {
    width: 100%;
    min-width: 0;
  }

  .catalog-disclosure summary {
    width: 100%;
  }

  .gallery-pagination {
    width: 100%;
    justify-content: space-between;
  }

  .metric-card strong {
    font-size: 35px;
  }
}

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

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  h1 {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
