:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #66706b;
  --paper: #f4f0e7;
  --paper-deep: #e7dfd1;
  --surface: #fffdf8;
  --forest: #173c35;
  --forest-deep: #0f2b26;
  --sage: #9bad96;
  --gold: #c59a5d;
  --gold-light: #e2c597;
  --line: rgba(23, 60, 53, 0.16);
  --white-line: rgba(255, 255, 255, 0.24);
  --shadow: 0 24px 80px rgba(13, 35, 30, 0.18);
  --display: Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 82px;
  --section-width: min(1320px, calc(100% - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

html[data-lang="zh"] body {
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 200;
  padding: 12px 18px;
  color: #fff;
  background: var(--forest-deep);
  border-radius: 2px;
}

.skip-link:focus {
  top: 16px;
}

.section-width {
  width: var(--section-width);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(24px, 4vw, 64px);
  color: #fff;
  border-bottom: 1px solid var(--white-line);
  transition: min-height 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 22, 18, 0.54), rgba(5, 22, 18, 0.08));
  content: "";
  transition: opacity 220ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  color: var(--ink);
  background: rgba(250, 247, 240, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(15, 43, 38, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

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

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  gap: clamp(20px, 2.4vw, 42px);
  justify-content: center;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.language-switch {
  display: inline-flex;
  align-items: center;
}

.language-switch button {
  padding: 6px 7px;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  opacity: 0.56;
}

.language-switch button[aria-pressed="true"] {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-inquiry {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--forest-deep);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled .header-inquiry {
  color: #fff;
  background: var(--forest);
}

.header-inquiry:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid currentColor;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 100px 32px 44px;
  color: #fff;
  background: var(--forest-deep);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu > a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--display);
  font-size: clamp(30px, 8vw, 50px);
  line-height: 1.1;
}

.mobile-language {
  margin-top: 24px;
}

.mobile-language button {
  font-size: 13px;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

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

.hero-media {
  background-image: url("assets/hero-showroom.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  transition: opacity 400ms ease, transform 8s ease;
}

.hero.is-active .hero-media {
  transform: scale(1.065);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 27, 23, 0.88) 0%, rgba(7, 27, 23, 0.56) 44%, rgba(7, 27, 23, 0.1) 72%),
    linear-gradient(180deg, rgba(7, 27, 23, 0.18) 55%, rgba(7, 27, 23, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 150px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8d6938;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(66px, 8.4vw, 138px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-wrap: balance;
  white-space: pre-line;
}

.hero-lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--forest-deep);
  background: var(--gold-light);
}

.button-primary:hover,
.button-gold:hover {
  background: #f0d5a7;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.button-light {
  color: var(--forest-deep);
  background: var(--surface);
}

.button-dark {
  color: #fff;
  background: var(--forest);
}

.button-gold {
  color: var(--forest-deep);
  background: var(--gold-light);
}

.hero-note {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 64px;
  z-index: 3;
  width: min(370px, 30vw);
  padding: 24px 26px;
  background: rgba(13, 43, 36, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.hero-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.14;
}

.hero-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.hero-controls {
  position: absolute;
  bottom: 72px;
  left: clamp(36px, 6vw, 110px);
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-controls > button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.hero-dots {
  display: flex;
  gap: 7px;
}

.hero-dots button {
  width: 22px;
  height: 2px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button[aria-current="true"] {
  width: 42px;
  background: #fff;
}

.scroll-cue {
  position: absolute;
  bottom: 76px;
  left: 50%;
  z-index: 4;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 35px;
  margin: 12px auto -56px;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.material-loop {
  overflow: hidden;
  color: #fff;
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.material-track {
  display: flex;
  gap: 26px;
  align-items: center;
  width: max-content;
  min-height: 66px;
  padding-right: 26px;
  animation: material-loop 32s linear infinite;
}

.material-track span {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.material-track i {
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
}

@keyframes material-loop {
  to { transform: translateX(-50%); }
}

.intro {
  display: grid;
  grid-template-columns: 0.75fr 1.55fr;
  gap: clamp(60px, 10vw, 160px);
  padding-block: clamp(100px, 13vw, 190px);
}

.section-kicker {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.section-kicker span {
  color: #9b7440;
  font-size: 11px;
  font-weight: 800;
}

.section-kicker p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-copy h2,
.section-heading h2,
.editorial-copy h2,
.process-heading h2,
.exhibition-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.intro-copy h2 {
  max-width: 820px;
  font-size: clamp(52px, 6vw, 94px);
}

.intro-copy > p {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.72;
}

.stats-band {
  color: #fff;
  background: var(--forest-deep);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid article {
  min-height: 210px;
  padding: 42px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid article:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fabrics,
.mills {
  padding-block: clamp(100px, 12vw, 180px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: clamp(52px, 6vw, 92px);
}

.section-heading-side {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.section-heading-side p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.fabric-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.78fr;
  gap: 18px;
}

.fabric-card {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.fabric-card-featured,
.fabric-card:first-child {
  min-height: 680px;
}

.fabric-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.fabric-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 20, 0.02) 45%, rgba(6, 24, 20, 0.86) 100%);
  content: "";
}

.fabric-card:hover img {
  transform: scale(1.045);
}

.fabric-card > div {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 28px;
}

.fabric-card > div > span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
}

.fabric-card h3 {
  margin: 9px 0 4px;
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 39px);
  font-weight: 500;
  line-height: 1.05;
}

.fabric-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  min-height: 850px;
  color: #fff;
  background: var(--forest);
}

.editorial-image {
  min-height: 720px;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.editorial-copy {
  align-self: center;
  max-width: 710px;
  padding: clamp(70px, 9vw, 140px);
}

.editorial-copy h2 {
  font-size: clamp(48px, 5.7vw, 84px);
}

.editorial-copy > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.editorial-copy ul {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.editorial-copy li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.mills {
  background: var(--paper);
}

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

.mill-card {
  display: grid;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.mill-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

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

.mill-card > div {
  padding: 28px;
}

.mill-card span {
  color: #9b7440;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mill-card h3 {
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.05;
}

.mill-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.process {
  padding-block: clamp(100px, 12vw, 170px);
  color: #fff;
  background:
    linear-gradient(rgba(12, 43, 36, 0.92), rgba(12, 43, 36, 0.96)),
    url("assets/fabric-showroom-rolls.webp") center / cover;
}

.process-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.process-heading h2 {
  max-width: 900px;
  font-size: clamp(50px, 6vw, 92px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article > span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 850;
}

.process-grid h3 {
  max-width: 300px;
  margin: 80px 0 18px;
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.05;
}

.process-grid p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.exhibition-callout {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  margin-block: clamp(90px, 12vw, 170px);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(23, 60, 53, 0.09);
}

.exhibition-image {
  min-height: 580px;
  overflow: hidden;
}

.exhibition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition-copy {
  align-self: center;
  padding: clamp(48px, 7vw, 100px);
}

.exhibition-copy h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.exhibition-copy > p:not(.eyebrow) {
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.contact::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(197, 154, 93, 0.24), transparent 30%),
    linear-gradient(115deg, transparent 60%, rgba(255, 255, 255, 0.035) 60%);
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(110px, 14vw, 210px);
}

.contact h2 {
  max-width: 1050px;
  font-size: clamp(58px, 8vw, 122px);
}

.contact-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.7;
}

.contact-secondary {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  min-height: 52px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #091e1a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 70px;
  padding-block: 72px;
}

.footer-brand {
  color: #fff;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}

.footer-brand span {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.26em;
}

.footer-main p {
  max-width: 380px;
  margin: 20px 0 0;
  font-size: 13px;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: 12px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.noscript {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 150;
  padding: 14px 20px;
  color: #fff;
  background: #8b331f;
  text-align: center;
}

.noscript a {
  text-decoration: underline;
}

.simple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
  padding: 0 clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.legal-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) 0;
}

.legal-content h1,
.not-found-page h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.legal-intro {
  max-width: 720px;
  margin: 30px 0 70px;
  color: var(--muted);
  font-size: 19px;
}

.legal-content section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.legal-content section p {
  margin: 0;
  color: var(--muted);
}

.legal-updated {
  margin-top: 44px;
  color: var(--muted);
  font-size: 12px;
}

.simple-footer {
  padding: 26px clamp(22px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.58);
  background: var(--forest-deep);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 30, 25, 0.91), rgba(8, 30, 25, 0.55)),
    url("assets/fabric-showroom-rolls.webp") center / cover;
}

.not-found-page main {
  align-self: center;
  width: min(850px, calc(100% - 40px));
  margin: 0 auto;
  padding-block: 80px;
}

.not-found-page main > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.not-found-code {
  display: block;
  margin-bottom: 50px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.loading-card {
  background: linear-gradient(90deg, #e9e3d7, #f6f2ea, #e9e3d7);
  background-size: 220% 100%;
  animation: loading 1.4s linear infinite;
}

@keyframes loading {
  to { background-position: -220% 0; }
}

/* Product library */
.catalog-page,
.detail-page {
  min-height: 100vh;
  background: var(--paper);
}

.catalog-hero {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.catalog-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 23, 0.91) 0%, rgba(7, 28, 23, 0.62) 46%, rgba(7, 28, 23, 0.22) 78%),
    linear-gradient(180deg, rgba(7, 28, 23, 0.08) 50%, rgba(7, 28, 23, 0.58));
  content: "";
}

.catalog-hero-media,
.catalog-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.catalog-hero-media img {
  object-fit: cover;
  object-position: center 44%;
}

.catalog-hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding-block: 190px 84px;
}

.catalog-hero-copy h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7.5vw, 116px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-wrap: balance;
}

.catalog-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.5vw, 20px);
}

.catalog-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-benefits li {
  padding: 10px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-benefits li:first-child {
  padding-left: 0;
  border-left: 0;
}

.catalog-shell {
  padding-block: clamp(90px, 10vw, 150px);
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: 54px;
}

.catalog-heading h2 {
  max-width: 840px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.catalog-heading > p {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.catalog-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(155px, 0.7fr)) auto;
  gap: 1px;
  padding: 1px;
  background: rgba(23, 60, 53, 0.18);
  border: 1px solid rgba(23, 60, 53, 0.12);
}

.catalog-filters label {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 15px 18px 16px;
  background: var(--surface);
}

.catalog-filters label > span {
  color: #8c744f;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-filters input,
.catalog-filters select {
  width: 100%;
  min-height: 30px;
  padding: 0 26px 0 0;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  font-size: 13px;
  text-overflow: ellipsis;
}

.catalog-filters input {
  padding-right: 0;
}

.catalog-filters label:focus-within {
  box-shadow: inset 0 -2px var(--gold);
}

.filter-reset {
  min-width: 88px;
  color: #fff;
  background: var(--forest);
  border: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-reset:hover {
  background: var(--forest-deep);
}

.catalog-result-bar {
  display: flex;
  justify-content: space-between;
  min-height: 74px;
  padding: 26px 2px 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-result-bar p {
  margin: 0;
}

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

.catalog-card {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.catalog-card:hover {
  box-shadow: 0 24px 65px rgba(18, 51, 44, 0.14);
  transform: translateY(-5px);
}

.catalog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8ddd5;
}

.catalog-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 22, 0.3), transparent 26%, transparent 68%, rgba(6, 27, 22, 0.34));
  content: "";
  pointer-events: none;
}

.catalog-card-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.catalog-card:hover .catalog-card-media > img {
  transform: scale(1.035);
}

.catalog-card-topline {
  position: absolute;
  inset: 16px 16px auto;
  z-index: 2;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.catalog-card-topline span:last-child {
  max-width: 62%;
  text-align: right;
}

.catalog-photo-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 9px;
  color: #fff;
  background: rgba(12, 43, 36, 0.78);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.catalog-card-body {
  padding: 23px 21px 21px;
}

.catalog-card h2 {
  min-height: 2.55em;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 1.6vw, 27px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.catalog-card h2 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-card dl {
  display: grid;
  gap: 0;
  margin: 22px 0;
  border-top: 1px solid var(--line);
}

.catalog-card dl > div {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.catalog-card dt {
  color: var(--muted);
}

.catalog-card dd {
  max-width: 65%;
  margin: 0;
  overflow: hidden;
  font-weight: 750;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--forest);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-load-row {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.catalog-empty {
  padding: 100px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.catalog-empty h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 500;
}

.catalog-empty > p:last-child {
  color: var(--muted);
}

/* Individual fabric pages */
.detail-page {
  padding-top: 70px;
}

.detail-breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 90px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-breadcrumb a:hover {
  color: var(--forest);
}

.detail-breadcrumb strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fabric-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: start;
  padding-bottom: clamp(100px, 12vw, 170px);
}

.detail-gallery {
  position: sticky;
  top: 96px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
}

.detail-gallery-stage {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 640px;
  overflow: hidden;
  background: #dce1d9;
}

.detail-gallery-stage > img {
  width: 100%;
  height: min(74vh, 840px);
  min-height: 640px;
  object-fit: cover;
}

.detail-gallery-stage > p {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(10, 36, 30, 0.82);
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.detail-gallery-rail {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: 10px;
  align-content: start;
  max-height: 74vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.detail-gallery-rail button {
  width: 86px;
  aspect-ratio: 1;
  padding: 3px;
  background: var(--surface);
  border: 1px solid transparent;
  opacity: 0.62;
}

.detail-gallery-rail button.is-active {
  border-color: var(--forest);
  opacity: 1;
}

.detail-gallery-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-summary {
  padding-top: 8px;
}

.detail-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
  color: #8c744f;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-kicker strong {
  color: var(--forest);
}

.detail-summary > h1 {
  margin: 34px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 72px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.detail-story {
  margin: 28px 0 36px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.detail-label {
  margin-bottom: 12px;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line);
}

.detail-spec-grid > div {
  min-width: 0;
  padding: 18px;
  background: var(--surface);
}

.detail-spec-grid dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-spec-grid dd {
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.1;
}

.detail-info-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.detail-info-section h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
}

.detail-info-section > p,
.detail-info-section li {
  color: var(--muted);
  font-size: 13px;
}

.detail-info-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  padding: 9px 12px;
  color: var(--forest);
  background: rgba(23, 60, 53, 0.07);
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 750;
}

.detail-table-wrap {
  overflow-x: auto;
}

.detail-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.detail-table-wrap th,
.detail-table-wrap td {
  padding: 12px 10px;
  border: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.detail-table-wrap th {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.detail-inquiry {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
  padding: 24px;
  color: #fff;
  background: var(--forest);
}

.detail-inquiry strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
}

.detail-inquiry p {
  max-width: 320px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.detail-inquiry .button {
  flex: 0 0 auto;
}

.related-fabrics {
  padding-bottom: clamp(100px, 12vw, 170px);
  border-top: 1px solid var(--line);
  padding-top: clamp(80px, 9vw, 130px);
}

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

.detail-loading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
}

.detail-loading > span,
.detail-loading i {
  display: block;
  background: linear-gradient(90deg, #ded8cc, #f7f3eb, #ded8cc);
  background-size: 220% 100%;
  animation: loading 1.4s linear infinite;
}

.detail-loading > span {
  min-height: 680px;
}

.detail-loading > div {
  display: grid;
  gap: 20px;
  align-content: start;
}

.detail-loading i {
  height: 48px;
}

.detail-loading i:nth-child(2) {
  height: 150px;
}

.detail-not-found {
  display: block;
  min-height: 620px;
  padding-block: 120px;
  text-align: center;
}

.detail-not-found > div {
  max-width: 700px;
  margin: 0 auto;
}

.detail-not-found h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.98;
}

.detail-not-found > div > p:not(.eyebrow) {
  margin: 28px auto;
  color: var(--muted);
}

@media (max-width: 1180px) {
  :root {
    --section-width: min(100% - 48px, 1120px);
  }

  .site-header {
    gap: 24px;
    padding-inline: 24px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-inquiry {
    display: none;
  }

  .hero-note {
    width: min(340px, 34vw);
  }

  .fabric-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .fabric-card:last-child {
    grid-column: 2;
  }

  .fabric-card:first-child {
    grid-row: span 2;
  }

  .fabric-card {
    min-height: 330px;
  }

  .fabric-card:first-child {
    min-height: 680px;
  }

  .editorial-copy {
    padding: 72px;
  }

  .catalog-filters {
    grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(150px, 0.7fr));
  }

  .catalog-filters label:nth-of-type(4) {
    grid-column: 1 / 3;
  }

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

  .fabric-detail-shell {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.85fr);
    gap: 40px;
  }

  .detail-gallery {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .detail-gallery-rail button {
    width: 66px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-active {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
  }

  .site-header.menu-active::before {
    opacity: 0;
  }

  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 27, 23, 0.87), rgba(7, 27, 23, 0.24)),
      linear-gradient(180deg, rgba(7, 27, 23, 0.18) 50%, rgba(7, 27, 23, 0.85));
  }

  .hero-content {
    align-self: start;
    padding-top: 190px;
  }

  .hero h1 {
    font-size: clamp(60px, 14vw, 106px);
  }

  .hero-note {
    right: 24px;
    bottom: 84px;
    width: min(410px, calc(100% - 48px));
  }

  .hero-controls {
    bottom: 40px;
    left: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .intro,
  .section-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid article:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .editorial-split,
  .exhibition-callout {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    min-height: 640px;
    max-height: 780px;
  }

  .mill-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 250px;
  }

  .process-grid h3 {
    margin-top: 52px;
  }

  .exhibition-image {
    min-height: 430px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .catalog-hero {
    min-height: 610px;
  }

  .catalog-hero-copy {
    padding-block: 160px 70px;
  }

  .catalog-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .catalog-filters label:nth-of-type(4) {
    grid-column: auto;
  }

  .filter-reset {
    grid-column: 1 / -1;
    min-height: 48px;
  }

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

  .fabric-detail-shell {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    position: static;
  }

  .detail-gallery-stage > img {
    height: min(96vw, 760px);
    min-height: 540px;
  }

  .detail-summary {
    padding-top: 20px;
  }

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

  .related-grid .catalog-card:last-child {
    display: none;
  }

  .detail-loading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --section-width: calc(100% - 32px);
  }

  .site-header {
    padding-inline: 16px;
  }

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

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

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-content {
    padding-top: 145px;
    padding-bottom: 250px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 80px);
    line-height: 0.88;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    margin-top: 28px;
  }

  .hero-note {
    right: 16px;
    bottom: 70px;
    left: 16px;
    width: auto;
    padding: 19px;
  }

  .catalog-hero {
    min-height: 570px;
  }

  .catalog-hero::after {
    background: linear-gradient(90deg, rgba(7, 28, 23, 0.9), rgba(7, 28, 23, 0.38)), linear-gradient(180deg, transparent 45%, rgba(7, 28, 23, 0.75));
  }

  .catalog-hero-copy {
    padding-block: 135px 52px;
  }

  .catalog-hero-copy h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .catalog-benefits {
    margin-top: 34px;
  }

  .catalog-benefits li {
    padding-inline: 11px;
    font-size: 8px;
  }

  .catalog-shell {
    padding-block: 74px 100px;
  }

  .catalog-heading {
    margin-bottom: 38px;
  }

  .catalog-heading h2 {
    font-size: 48px;
  }

  .catalog-filters {
    grid-template-columns: 1fr;
  }

  .catalog-filters label:nth-of-type(4),
  .filter-reset {
    grid-column: auto;
  }

  .catalog-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card-media {
    aspect-ratio: 5 / 5.8;
  }

  .catalog-result-bar {
    min-height: 60px;
    padding-block: 20px 14px;
  }

  .detail-page {
    padding-top: 70px;
  }

  .detail-breadcrumb {
    min-height: 70px;
  }

  .detail-gallery {
    display: flex;
    flex-direction: column;
  }

  .detail-gallery-stage {
    order: 1;
    min-height: 460px;
  }

  .detail-gallery-stage > img {
    height: 125vw;
    min-height: 460px;
  }

  .detail-gallery-rail {
    order: 2;
    display: flex;
    max-width: 100%;
    overflow-x: auto;
  }

  .detail-gallery-rail button {
    flex: 0 0 66px;
  }

  .detail-summary > h1 {
    font-size: 43px;
  }

  .detail-inquiry {
    display: grid;
  }

  .detail-inquiry .button {
    justify-content: center;
  }

  .related-grid .catalog-card:last-child {
    display: block;
  }

  .hero-note p {
    display: none;
  }

  .hero-controls {
    bottom: 24px;
    left: 16px;
  }

  .material-track {
    min-height: 56px;
  }

  .intro {
    padding-block: 88px;
  }

  .intro-copy h2,
  .section-heading h2,
  .process-heading h2 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .intro-copy > p {
    font-size: 16px;
  }

  .stats-grid article {
    min-height: 165px;
    padding: 28px 20px;
  }

  .stats-grid strong {
    font-size: 46px;
  }

  .stats-grid span {
    margin-top: 16px;
    font-size: 9px;
  }

  .fabrics,
  .mills {
    padding-block: 88px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .fabric-grid,
  .mill-grid {
    grid-template-columns: 1fr;
  }

  .fabric-card,
  .fabric-card:first-child,
  .fabric-card:last-child {
    grid-row: auto;
    grid-column: auto;
    min-height: 470px;
  }

  .fabric-card:first-child {
    min-height: 560px;
  }

  .editorial-image {
    min-height: 560px;
  }

  .editorial-copy {
    padding: 72px 22px;
  }

  .editorial-copy h2,
  .exhibition-copy h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .process-grid {
    margin-top: 54px;
  }

  .process-grid article {
    min-height: 230px;
    padding: 26px;
  }

  .exhibition-callout {
    width: 100%;
    margin-block: 0;
  }

  .exhibition-image {
    min-height: 340px;
  }

  .exhibition-copy {
    padding: 62px 22px 76px;
  }

  .contact h2 {
    font-size: clamp(55px, 16vw, 78px);
  }

  .contact-actions {
    display: grid;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .simple-header .brand-copy {
    display: none;
  }

  .legal-content section {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
