:root {
  --ink: #181a19;
  --ink-soft: #343735;
  --paper: #f4f1ea;
  --paper-deep: #e8e1d5;
  --surface: #fffdf8;
  --muted: #676a66;
  --line: rgba(24, 26, 25, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #a54b2a;
  --accent-dark: #7d321a;
  --moss: #687063;
  --success: #1f6845;
  --error: #a12d2d;
  --max: 1240px;
  --header: 76px;
  --shadow: 0 26px 70px rgba(30, 25, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e8a17e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: 172px;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
}

.brand-header .brand-logo {
  mix-blend-mode: multiply;
}

.brand-country {
  display: block;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.89rem;
  font-weight: 650;
}

.main-nav a:not(.button) {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a[aria-current="page"],
.main-nav a:not(.button):hover {
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1.05rem;
  line-height: 1;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  color: #fff;
  background: var(--ink);
}

.button-light {
  border-color: #fff;
  color: var(--ink);
  background: #fff;
}

.button-light:hover {
  border-color: var(--paper-deep);
  background: var(--paper-deep);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero {
  overflow: hidden;
  padding: 70px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: stretch;
  gap: 56px;
}

.hero-copy {
  align-self: center;
  padding: 36px 0 54px;
}

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

h1,
h2,
.display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 6.5vw, 6.8rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.5vw, 4.75rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background: #cbb2a2;
}

.hero-media > img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center top;
}

.hero-media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 24%;
  content: "";
  background: linear-gradient(to top, rgba(24, 26, 25, 0.68), transparent);
  pointer-events: none;
}

.media-stamp {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  max-width: 250px;
  color: #fff;
  text-align: right;
}

.media-stamp strong,
.media-stamp span {
  display: block;
}

.media-stamp strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.media-stamp span {
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-rail {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.fact {
  min-height: 142px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.fact:first-child {
  border-left: 1px solid var(--line);
}

.fact-value {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.fact-label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 82px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-head > * {
  min-width: 0;
}

.section-head h2 {
  overflow-wrap: anywhere;
}

.section-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.decision-item {
  min-height: 260px;
  padding: 30px 34px 36px 0;
  border-right: 1px solid var(--line);
}

.decision-item + .decision-item {
  padding-left: 34px;
}

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

.index-no {
  display: block;
  margin-bottom: 70px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.decision-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  background: #c6ad9e;
}

.product-card img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms ease;
}

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

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

.product-stack .product-card {
  min-height: 316px;
}

.product-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 70px 24px 22px;
  color: #fff;
  background: linear-gradient(to top, rgba(16, 17, 16, 0.78), transparent);
}

.product-label strong {
  font-size: 1.05rem;
}

.product-label span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ink-section {
  color: #fff;
  background: var(--ink);
}

.ink-section .eyebrow {
  color: #e39b79;
}

.ink-section .section-head p,
.ink-section .muted {
  color: rgba(255, 255, 255, 0.64);
}

.process-list {
  border-top: 1px solid var(--line-light);
}

.process-row {
  display: grid;
  grid-template-columns: 90px minmax(180px, 0.45fr) minmax(0, 1fr) 220px;
  align-items: center;
  gap: 34px;
  min-height: 154px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-row .index-no {
  margin: 0;
  color: #e39b79;
}

.process-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.process-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.process-thumb {
  overflow: hidden;
  height: 108px;
  background: #696a66;
}

.process-thumb img {
  width: 100%;
  height: 122%;
  object-fit: cover;
  object-position: center top;
}

.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.control-intro {
  position: sticky;
  top: calc(var(--header) + 30px);
  align-self: start;
}

.control-list {
  border-top: 1px solid var(--line);
}

.control-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.control-item span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.control-item p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.tech-card {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  min-width: 0;
  min-height: 250px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.tech-card figure {
  overflow: hidden;
  margin: 0;
  background: #d8c0ae;
}

.tech-card img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center top;
}

.tech-copy {
  min-width: 0;
  align-self: center;
  padding: 28px;
}

.tech-copy h3,
.tech-copy p {
  overflow-wrap: anywhere;
}

.tech-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding: 72px;
  color: #fff;
  background: var(--accent-dark);
}

.cta-panel h2 {
  max-width: 850px;
  margin-bottom: 16px;
}

.cta-panel p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 840px;
  padding: 0 0 28px;
  color: var(--muted);
}

.site-footer {
  padding: 68px 0 28px;
  color: #fff;
  background: #111312;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.65fr;
  gap: 60px;
  padding-bottom: 56px;
}

.brand-footer {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.brand-footer .brand-logo {
  width: 190px;
  filter: invert(1);
  mix-blend-mode: screen;
}

.brand-footer .brand-country {
  padding-left: 0;
  border-left: 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-copy,
.footer-nav a,
.footer-meta {
  color: rgba(255, 255, 255, 0.58);
}

.footer-copy {
  max-width: 470px;
  margin: 22px 0 0;
}

.footer-heading {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

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

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

.footer-meta {
  margin: 0;
  font-size: 0.74rem;
}

.preview-flag {
  color: #f1bc9e;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.74rem;
}

.legal-links a:hover {
  color: #fff;
}

/* Inner pages */
.page-hero {
  padding: 84px 0 72px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  font-size: clamp(3.35rem, 6vw, 6.2rem);
}

.page-hero-media {
  overflow: hidden;
  height: 520px;
  background: #d4c8ba;
}

.page-hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center top;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.76rem;
}

.breadcrumb span::before {
  margin-right: 8px;
  content: "/";
}

.stage-list {
  counter-reset: stage;
  border-top: 1px solid var(--ink);
}

.stage {
  display: grid;
  grid-template-columns: 88px minmax(200px, 0.42fr) minmax(0, 1fr);
  gap: 40px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: stage;
}

.stage::before {
  content: "0" counter(stage);
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.stage h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.stage p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.evidence-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
}

.evidence-media {
  min-height: 580px;
}

.evidence-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evidence-copy {
  align-self: stretch;
  padding: 70px;
  color: #fff;
  background: var(--ink);
}

.evidence-copy .eyebrow {
  color: #e39b79;
}

.evidence-list {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line-light);
}

.evidence-list div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
}

.evidence-list strong,
.evidence-list span {
  display: block;
}

.evidence-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
}

/* Inquiry */
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 70px;
  align-items: start;
}

.inquiry-aside {
  position: sticky;
  top: calc(var(--header) + 28px);
  grid-row: 1 / span 2;
}

.form-template-note {
  grid-column: 2;
}

.brief-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.brief-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.brief-list li::before {
  content: "—";
  color: var(--accent);
}

.inquiry-form {
  grid-column: 2;
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.production-contact-panel h2 {
  max-width: 16ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
}

.production-contact-panel .privacy-note {
  max-width: 64ch;
  margin-top: 28px;
}

.form-section + .form-section {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.form-section-title {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.form-required-note {
  margin: -14px 0 22px;
  color: var(--muted);
  font-size: 0.75rem;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  font-size: 0.78rem;
  font-weight: 750;
}

.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(24, 26, 25, 0.28);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-dark);
  outline: 2px solid rgba(165, 75, 42, 0.18);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 24px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent-dark);
}

.checkbox-field label {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.form-status {
  display: none;
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--success);
  color: var(--success);
  background: rgba(31, 104, 69, 0.08);
}

.form-status.is-visible {
  display: block;
}

.privacy-note {
  color: var(--muted);
  font-size: 0.72rem;
}

.brief-output {
  margin-top: 42px;
  padding: 34px;
  border-top: 3px solid var(--accent);
  background: var(--paper);
}

.brief-output[hidden] {
  display: none;
}

.brief-output h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 500;
}

.brief-output > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.82rem;
}

.brief-output dl {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.brief-output dl > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.brief-output dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-output dd {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.brief-send-panel {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(1.1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--line);
}

.brief-send-panel h4 {
  margin: 0 0 0.45rem;
  font: 700 1rem/1.35 var(--sans);
}

.brief-send-panel > p {
  max-width: 68ch;
  margin: 0 0 1rem;
  color: var(--muted);
}

.brief-send-panel .text-link {
  appearance: none;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.copy-status {
  min-height: 1.5em;
  margin: 18px 0 0;
  color: var(--success);
  font-size: 0.76rem;
}

.no-js-form-note {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.no-js-form-note h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.no-js-form-note p {
  color: var(--muted);
}

html:not(.js) .inquiry-form {
  display: none;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header));
  place-items: center;
  padding: 70px 24px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 1;
}

@media (max-width: 1040px) {
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 32px;
  }

  .hero-media {
    min-height: 590px;
  }

  .main-nav {
    gap: 18px;
  }

  .process-row {
    grid-template-columns: 62px 0.55fr 1fr;
  }

  .process-thumb {
    display: none;
  }

  .tech-card {
    grid-template-columns: 150px 1fr;
  }

  .cta-panel {
    padding: 54px;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .menu-toggle {
    display: block;
  }

  .brand-logo {
    width: 150px;
  }

  .brand-header .brand-country {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a:not(.button) {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .button {
    margin-top: 14px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-grid,
  .page-hero-grid,
  .section-head,
  .control-grid,
  .evidence-split,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 16px;
  }

  .hero-media {
    min-height: 580px;
  }

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

  .fact:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section,
  .section-tight {
    padding: 78px 0;
  }

  .section-head {
    align-items: start;
    gap: 16px;
  }

  .decision-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .decision-item,
  .decision-item + .decision-item {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .index-no {
    margin-bottom: 30px;
  }

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

  .product-card,
  .product-stack .product-card {
    min-height: 520px;
  }

  .product-stack {
    grid-template-rows: auto;
  }

  .control-intro,
  .inquiry-aside {
    position: static;
  }

  .inquiry-aside {
    grid-row: auto;
  }

  .inquiry-form,
  .form-template-note {
    grid-column: 1;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .page-hero-media {
    height: 470px;
  }

  .evidence-media {
    min-height: 480px;
  }

  .inquiry-layout {
    gap: 42px;
  }
}

@media (max-width: 560px) {
  h1,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero-actions,
  .section-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 460px;
  }

  .fact {
    min-height: 122px;
    padding: 24px 16px;
  }

  .fact-value {
    font-size: 2rem;
  }

  .product-card,
  .product-stack .product-card {
    min-height: 390px;
  }

  .process-row {
    grid-template-columns: 45px 1fr;
    align-items: start;
    gap: 18px;
  }

  .process-row p {
    grid-column: 2;
  }

  .tech-card {
    grid-template-columns: 1fr;
  }

  .tech-card figure {
    height: 230px;
  }

  .cta-panel,
  .evidence-copy,
  .inquiry-form {
    padding: 32px 24px;
  }

  .brief-output {
    padding: 28px 22px;
  }

  .brief-output dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-grid,
  .footer-bottom,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .page-hero {
    padding-top: 50px;
  }

  .page-hero-media,
  .evidence-media {
    height: 390px;
    min-height: 0;
  }

  .stage {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .stage p {
    grid-column: 2;
  }
}

/* Expanded craft, yarn, video and direct-contact modules */
.craft-grid,
.yarn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  border: 1px solid var(--line);
  background: var(--line);
}

.craft-grid article,
.yarn-grid article {
  min-width: 0;
  padding: 30px;
  background: var(--surface);
}

.craft-grid span,
.yarn-grid span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.craft-grid h3,
.yarn-grid h3 {
  margin: 12px 0 10px;
}

.craft-grid p,
.yarn-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.yarn-section {
  background: var(--paper-deep);
}

.yarn-grid article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
}

.yarn-grid article span {
  margin-top: auto;
  padding-top: 28px;
}

.production-video-section {
  background: var(--surface);
}

.production-video-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f1110;
}

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

.youtube-embed-shell {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  background: #0f1110;
}

.youtube-embed-shell > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  object-fit: cover;
}

.youtube-embed-shell::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.18), rgba(8, 10, 9, 0.78));
  content: "";
}

.youtube-consent {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(620px, calc(100% - 48px));
  justify-items: center;
  gap: 16px;
  color: #fff;
  text-align: center;
}

.video-source-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.youtube-load-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(17, 19, 18, 0.82);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.youtube-load-button:hover,
.youtube-load-button:focus-visible {
  color: var(--ink);
  background: #fff;
}

.youtube-consent p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.6;
}

.youtube-embed-shell iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-noscript {
  position: relative;
  z-index: 3;
  width: min(620px, calc(100% - 48px));
  margin: 0;
  color: #fff;
  text-align: center;
}

.youtube-noscript a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.video-feature figure {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin: 0;
  background: var(--ink);
}

.video-feature figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(0, 0, 0, 0.22));
  content: "";
}

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

.video-feature > div {
  align-self: center;
  padding: 44px;
}

.video-feature > div p:not(.eyebrow) {
  color: var(--muted);
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 19, 18, 0.72);
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
}

.video-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--line);
}

.video-link-grid a {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.video-link-grid a:last-child {
  border-right: 0;
}

.video-link-grid span {
  color: var(--muted);
  font-size: 0.8rem;
}

.form-preview-note {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.78rem;
}

.whatsapp-button {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  background: #1f6845;
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: #1f6845;
  box-shadow: 0 12px 32px rgba(17, 19, 18, 0.24);
  font-size: 0.78rem;
  font-weight: 750;
}

.whatsapp-float:hover {
  background: #174d34;
}

.whatsapp-float-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .craft-grid,
  .yarn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-feature {
    grid-template-columns: 1fr;
  }

  .video-feature figure {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .craft-grid,
  .yarn-grid,
  .video-link-grid {
    grid-template-columns: 1fr;
  }

  .craft-grid article,
  .yarn-grid article {
    min-height: 0;
    padding: 26px 22px;
  }

  .video-feature figure {
    min-height: 240px;
  }

  .video-feature > div {
    padding: 30px 24px;
  }

  .youtube-consent {
    width: calc(100% - 28px);
    gap: 10px;
  }

  .youtube-load-button {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 0.76rem;
  }

  .youtube-consent p {
    font-size: 0.67rem;
    line-height: 1.45;
  }

  .video-link-grid a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .video-link-grid a:last-child {
    border-bottom: 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 8px;
    border-radius: 50%;
  }

  .whatsapp-float > span:last-child {
    display: none;
  }
}

/* Homepage video, full craft coverage and yarn system */
.home-video-section {
  background: var(--surface);
}

.home-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.52fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.home-video-player {
  display: grid;
  min-width: 0;
  place-items: center;
  background: #111312;
}

.home-video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111312;
  object-fit: cover;
}

.home-video-transcript {
  align-self: center;
  padding: 38px;
}

.home-video-transcript ol {
  display: grid;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.home-video-transcript li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.home-video-transcript li > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.home-video-transcript li div {
  display: grid;
  gap: 2px;
}

.home-video-transcript small {
  color: var(--muted);
  font-size: 0.72rem;
}

.home-capability-block {
  margin-top: 86px;
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.home-capability-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 38px;
}

.home-capability-intro p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.home-craft-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.home-craft-grid article {
  min-width: 0;
  padding: 28px;
  background: var(--surface);
}

.home-craft-grid article > span,
.home-craft-visual div > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.home-craft-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.28rem;
}

.home-craft-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.home-craft-grid .home-craft-visual {
  display: grid;
  grid-row: 1 / span 2;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 0;
  background: var(--ink);
}

.home-craft-grid .home-craft-visual:nth-child(1) {
  grid-column: 1;
}

.home-craft-grid .home-craft-visual:nth-child(2) {
  grid-column: 2;
}

.home-craft-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.home-craft-visual div {
  padding: 24px;
  color: #fff;
}

.home-craft-visual div h3 {
  margin: 8px 0;
}

.home-craft-visual div p {
  color: rgba(255, 255, 255, 0.68);
}

.home-yarn-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  margin-top: 38px;
  padding: 48px;
  color: #fff;
  background: var(--ink);
}

.home-yarn-panel h3 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.1;
}

.home-yarn-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.home-yarn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.home-yarn-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 14px 18px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-yarn-grid span:nth-child(even) {
  border-right: 0;
}

@media (max-width: 1100px) {
  .home-video-layout,
  .home-capability-intro,
  .home-yarn-panel {
    grid-template-columns: 1fr;
  }

  .home-capability-intro,
  .home-yarn-panel {
    gap: 36px;
  }

  .home-craft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .home-craft-grid .home-craft-visual,
  .home-craft-grid .home-craft-visual:nth-child(1),
  .home-craft-grid .home-craft-visual:nth-child(2) {
    grid-row: auto;
    grid-column: auto;
  }

  .home-craft-visual img {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .home-video-transcript,
  .home-yarn-panel {
    padding: 28px 24px;
  }

  .home-capability-block {
    margin-top: 58px;
    padding-top: 56px;
  }

  .home-craft-grid,
  .home-yarn-grid {
    grid-template-columns: 1fr;
  }

  .home-craft-grid article {
    padding: 26px 22px;
  }

  .home-craft-visual img {
    height: 260px;
  }

  .home-yarn-grid span,
  .home-yarn-grid span:nth-child(even) {
    min-height: 62px;
    border-right: 0;
  }
}

/* P0 decision pages */
.decision-page .page-hero h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 5.5vw, 5.65rem);
}

.decision-page .page-hero-media img {
  height: 100%;
}

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

.route-card,
.spec-card,
.related-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.route-card .index-no,
.spec-card .index-no {
  margin-bottom: 56px;
}

.route-card h3,
.spec-card h3,
.related-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.route-card p,
.spec-card p,
.related-card p {
  color: var(--muted);
}

.route-card a,
.related-card a {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.78rem;
  font-weight: 800;
}

.route-card a::after,
.related-card a::after {
  margin-left: 8px;
  content: "→";
}

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

.spec-card {
  min-height: 275px;
}

.spec-card .index-no {
  margin-bottom: 42px;
}

.media-copy-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.92fr);
  align-items: stretch;
  gap: 0;
}

.media-copy-split > * {
  min-width: 0;
}

.media-copy-split > figure {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #d2c8bc;
}

.media-copy-split > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 82px);
  color: #fff;
  background: var(--ink);
}

.media-copy-panel .eyebrow {
  color: #e39b79;
}

.knowledge-market-access h2 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.media-copy-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.keyline-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.keyline-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.76);
}

.keyline-list li::before {
  color: #e39b79;
  content: "—";
}

.decision-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--ink);
}

.decision-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.decision-table th,
.decision-table td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.decision-table th {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-table td:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.decision-table td:not(:first-child) {
  color: var(--muted);
  font-size: 0.86rem;
}

.inline-note {
  margin: 30px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: var(--ink-soft);
}

.inline-note strong {
  color: var(--ink);
}

.metric-band {
  color: #fff;
  background: var(--ink);
}

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

.metric-band-grid > div {
  min-height: 180px;
  padding: 34px 28px;
  border-left: 1px solid var(--line-light);
}

.metric-band-grid > div:last-child {
  border-right: 1px solid var(--line-light);
}

.metric-band-grid strong,
.metric-band-grid span {
  display: block;
}

.metric-band-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1;
}

.metric-band-grid span {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 105px);
  align-items: start;
}

.faq-page-grid .tech-grid {
  grid-template-columns: 1fr;
}

.faq-page-nav {
  position: sticky;
  top: calc(var(--header) + 32px);
}

.faq-page-nav nav {
  display: grid;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.faq-page-nav nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-group + .faq-group {
  margin-top: 64px;
}

.faq-group h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.related-card {
  min-height: 230px;
}

.related-card .eyebrow {
  margin-bottom: 28px;
}

/* Product family landing pages */
.product-family-index {
  background: var(--paper-deep);
}

.product-cluster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.product-cluster-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  transition: background 180ms ease, color 180ms ease;
}

.product-cluster-card:hover,
.product-cluster-card:focus-visible {
  color: #fff;
  background: var(--ink);
}

.product-cluster-card .index-no {
  margin-bottom: 46px;
}

.product-cluster-card .eyebrow {
  margin-bottom: 10px;
}

.product-cluster-card h3,
.product-option-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 500;
}

.product-cluster-card p:not(.eyebrow),
.product-option-card p {
  color: var(--muted);
}

.product-cluster-card:hover p,
.product-cluster-card:focus-visible p {
  color: rgba(255, 255, 255, 0.68);
}

.product-cluster-card strong {
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.76rem;
}

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

.product-option-card {
  min-height: 310px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.product-option-card > span {
  display: block;
  margin-bottom: 62px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.product-hero-development img {
  object-position: 62% center;
}

.product-family-page h1,
.product-family-page h2,
.product-family-page h3 {
  overflow-wrap: break-word;
  hyphens: auto;
}

.breadcrumb a + a::before {
  margin-right: 8px;
  content: "/";
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
    font-size: 0.82rem;
  }

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

  .media-copy-split {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  .route-grid,
  .related-grid,
  .media-copy-split,
  .faq-page-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .related-card {
    min-height: 0;
  }

  .media-copy-split > figure {
    min-height: 460px;
  }

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

  .metric-band-grid > div:nth-child(3),
  .metric-band-grid > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .faq-page-nav {
    position: static;
  }

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

  .product-cluster-card {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .spec-grid,
  .metric-band-grid {
    grid-template-columns: 1fr;
  }

  .route-card,
  .spec-card,
  .related-card {
    padding: 28px 24px;
  }

  .spec-card {
    min-height: 0;
  }

  .route-card .index-no,
  .spec-card .index-no {
    margin-bottom: 28px;
  }

  .media-copy-split > figure {
    min-height: 360px;
  }

  .media-copy-panel {
    padding: 46px 24px;
  }

  .metric-band-grid > div,
  .metric-band-grid > div:nth-child(3),
  .metric-band-grid > div:nth-child(4) {
    min-height: 0;
    border-top: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
  }

  .product-family-page .page-hero h1 {
    font-size: clamp(2.7rem, 12.5vw, 3.8rem);
  }

  .product-cluster-card,
  .product-option-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .product-cluster-card .index-no,
  .product-option-card > span {
    margin-bottom: 28px;
  }

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

/* Company, factory evidence and compliance */
.factory-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.factory-actions .button {
  margin: 0;
}

.evidence-link {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
}

.company-hero h1 {
  max-width: 780px;
  font-size: clamp(3.15rem, 5.5vw, 5.7rem);
}

.company-hero-media {
  position: relative;
  height: 500px;
}

.company-hero-media img {
  height: 100%;
  object-position: 52% center;
}

.company-hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(24, 26, 25, 0.78);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
}

.company-facts {
  color: #fff;
  background: var(--ink);
}

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

.company-fact-grid > div {
  min-height: 154px;
  padding: 30px 26px;
  border-left: 1px solid var(--line-light);
}

.company-fact-grid > div:last-child {
  border-right: 1px solid var(--line-light);
}

.company-fact-grid span,
.company-fact-grid small,
.company-fact-grid strong {
  display: block;
}

.company-fact-grid span {
  color: #e39b79;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-fact-grid strong {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.05;
}

.company-fact-grid small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.company-identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.company-identity-grid > div > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.identity-card {
  padding: 38px;
  border-top: 3px solid var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.identity-card dl {
  margin: 26px 0 0;
}

.identity-card dl > div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.identity-card dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.identity-card dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.factory-proof-section {
  background: #e7e0d7;
}

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

.factory-proof-card {
  grid-column: span 4;
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #cdc5ba;
}

.factory-proof-wide {
  grid-column: span 8;
}

.factory-proof-office {
  grid-column: span 8;
}

.factory-proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-proof-wide img {
  object-position: center;
}

.factory-proof-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 15px 17px;
  color: #fff;
  background: rgba(24, 26, 25, 0.82);
  backdrop-filter: blur(7px);
}

.factory-proof-card figcaption strong,
.factory-proof-card figcaption span {
  display: block;
}

.factory-proof-card figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.factory-proof-card figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
}

.quality-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.quality-step-grid li {
  min-height: 285px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-step-grid li:nth-child(3n + 1) {
  border-left: 1px solid var(--line);
}

.quality-step-grid span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.quality-step-grid h3 {
  margin: 54px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.quality-step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.compliance-copy h2 {
  max-width: 760px;
}

.compliance-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.65);
}

.standard-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.standard-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.compliance-copy .compliance-note {
  padding-left: 17px;
  border-left: 2px solid #e39b79;
  font-size: 0.74rem;
}

.document-check-card {
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
}

.document-check-card h3 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.document-check-card ol {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  counter-reset: check;
}

.document-check-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  counter-increment: check;
}

.document-check-card li::before {
  grid-row: 1 / span 2;
  color: var(--accent);
  content: "0" counter(check);
  font-family: Georgia, "Times New Roman", serif;
}

.document-check-card li strong,
.document-check-card li span {
  display: block;
}

.document-check-card li span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.documentation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}

.documentation-grid figure {
  margin: 0;
}

.documentation-grid figure img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.documentation-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.66rem;
}

.documentation-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.documentation-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.documentation-list li::before {
  color: var(--accent);
  content: "✓";
}

@media (max-width: 900px) {
  .company-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-fact-grid > div:nth-child(3) {
    border-top: 1px solid var(--line-light);
  }

  .company-fact-grid > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
  }

  .company-identity-grid,
  .compliance-grid,
  .documentation-grid {
    grid-template-columns: 1fr;
  }

  .factory-proof-card,
  .factory-proof-wide,
  .factory-proof-office {
    grid-column: span 6;
  }

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

  .quality-step-grid li:nth-child(3n + 1) {
    border-left: 0;
  }

  .quality-step-grid li:nth-child(2n + 1) {
    border-left: 1px solid var(--line);
  }

  .documentation-grid figure img {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .factory-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .company-hero-media {
    height: 360px;
  }

  .company-fact-grid {
    grid-template-columns: 1fr;
  }

  .company-fact-grid > div,
  .company-fact-grid > div:nth-child(3),
  .company-fact-grid > div:nth-child(4) {
    min-height: 0;
    border-top: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
  }

  .identity-card,
  .document-check-card {
    padding: 30px 24px;
  }

  .factory-proof-card,
  .factory-proof-wide,
  .factory-proof-office {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .factory-proof-wide,
  .factory-proof-office {
    min-height: 350px;
  }

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

  .quality-step-grid li,
  .quality-step-grid li:nth-child(3n + 1),
  .quality-step-grid li:nth-child(2n + 1) {
    min-height: 0;
    border-left: 1px solid var(--line);
  }

  .quality-step-grid h3 {
    margin-top: 28px;
  }
}

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

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

/* Homepage — factory B2B synthesis */
.utility-bar {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
  font-size: inherit;
}

.utility-inner a {
  color: #f0b598;
  font-weight: 700;
}

.home-page .site-header {
  background: rgba(255, 253, 248, 0.96);
}

.home-page .header-inner {
  min-height: var(--header);
}

.home-page .main-nav a:not(.button) {
  font-size: 0.78rem;
}

.home-hero {
  padding: 42px 0 0;
  background: var(--surface);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.84fr);
  min-height: 620px;
  align-items: stretch;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px 70px 0;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 5.25vw, 5.4rem);
}

.home-hero-lede {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.13rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-capabilities span {
  padding-right: 18px;
}

.hero-capabilities span + span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.home-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  margin: 0;
  background: #bea08e;
}

.home-hero-media img {
  width: 100%;
  height: 113%;
  object-fit: cover;
  object-position: center top;
}

.home-hero-media::after,
.catalog-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32%;
  content: "";
  background: linear-gradient(to top, rgba(17, 18, 17, 0.76), transparent);
  pointer-events: none;
}

.home-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.home-hero-media figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.home-hero-media figcaption span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-facts {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
  background: var(--ink);
}

.hero-facts > div {
  min-height: 118px;
  padding: 25px 28px;
  border-right: 1px solid var(--line-light);
}

.hero-facts > div:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-facts span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-section {
  padding: 104px 0;
}

.home-section-heading {
  margin-bottom: 48px;
}

.home-section-heading h2,
.factory-copy h2,
.tech-showcase-copy h2,
.faq-layout h2,
.home-inquiry-inner h2 {
  font-size: clamp(2.55rem, 4.3vw, 4.65rem);
}

.centered-heading {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading p:last-child {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
}

.heading-with-action {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  align-items: end;
  gap: 70px;
}

.heading-with-action > p {
  margin-bottom: 0;
  color: var(--muted);
}

.home-services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.service-card:first-child {
  padding-left: 0;
}

.service-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-index,
.benefit-grid article > span,
.process-card > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.service-card h3 {
  margin-top: 58px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 750;
}

.service-card a:hover {
  color: var(--accent);
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 14px;
}

.catalog-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #c5a999;
}

.catalog-card-large {
  grid-row: span 2;
  grid-column: span 2;
}

.catalog-card img {
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: center top;
  transition: transform 450ms ease;
}

.catalog-card:hover img {
  transform: scale(1.018);
}

.catalog-card figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: #fff;
}

.catalog-card figcaption strong,
.catalog-card figcaption span {
  display: block;
}

.catalog-card figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.catalog-card figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-route-links a {
  padding: 11px 15px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.76rem;
  font-weight: 750;
}

.product-route-links a:hover,
.product-route-links a:focus-visible {
  color: #fff;
  background: var(--ink);
}

/* Exhibitions and company story expansion */
.source-photo-frame {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 38px;
  background: var(--paper-deep);
}

.source-photo-frame img {
  width: min(100%, 400px);
  height: auto;
  border: 12px solid var(--surface);
  box-shadow: var(--shadow);
}

.source-photo-frame figcaption {
  max-width: 400px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.68rem;
}

.exhibition-hero-media img {
  object-position: center center;
}

.exhibition-photo-section {
  background: var(--surface);
}

.exhibition-photo-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: stretch;
}

.exhibition-editorial-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

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

.exhibition-editorial-photo figcaption,
.yarn-feature-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 15px;
  color: #fff;
  font-size: 0.72rem;
  background: rgba(24, 26, 25, 0.82);
}

.exhibition-ledger {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.exhibition-event {
  grid-column: span 2;
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.exhibition-event-featured {
  grid-column: span 4;
  background: var(--paper-deep);
}

.event-year {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.exhibition-event .eyebrow {
  margin-bottom: 9px;
}

.exhibition-event h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
}

.exhibition-event p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.meeting-prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.meeting-prep-grid > div > p:not(.eyebrow) {
  color: var(--muted);
}

.meeting-prep-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.meeting-prep-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.meeting-prep-list li::before {
  color: var(--accent);
  content: "—";
}

.company-story-section {
  background: var(--paper-deep);
}

.company-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
  list-style: none;
}

.company-timeline li {
  min-height: 290px;
  padding: 32px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.company-timeline li > span,
.team-function-grid article > span {
  display: block;
  margin-bottom: 50px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.company-timeline h3,
.team-function-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.company-timeline p,
.team-function-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.team-function-grid article {
  min-height: 300px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.team-function-grid strong {
  display: block;
  min-height: 38px;
  margin: -7px 0 18px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-status-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.company-source-photo {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 44px;
  background: var(--paper-deep);
}

.company-source-photo img {
  width: min(100%, 400px);
  height: auto;
  border: 12px solid var(--surface);
  box-shadow: var(--shadow);
}

.company-source-photo-wide {
  padding: 0;
}

.company-source-photo-wide img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  box-shadow: none;
}

.service-media-section {
  background: var(--paper-deep);
}

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

.service-media-sequence-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.production-photo-process {
  background: var(--paper-deep);
}

.service-media-sequence figure {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  margin: 0;
  background: #c9c2b8;
}

.service-media-sequence img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media-sequence figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(24, 26, 25, 0.84);
}

.service-media-sequence figcaption span,
.service-media-sequence figcaption strong {
  display: block;
}

.service-media-sequence figcaption span {
  color: #e39b79;
  font-family: Georgia, "Times New Roman", serif;
}

.service-media-sequence figcaption strong {
  margin-top: 5px;
  font-size: 0.76rem;
}

.yarn-feature-photo {
  position: relative;
  min-height: 480px;
  margin: 0 0 26px;
  overflow: hidden;
  background: #c9c2b8;
}

.yarn-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customization-scope-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.customization-scope-grid article {
  min-height: 300px;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.customization-scope-grid article > span {
  display: block;
  margin-bottom: 52px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
}

.customization-scope-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
  font-weight: 500;
}

.customization-scope-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .exhibition-photo-pair {
    grid-template-columns: 1fr;
  }

  .exhibition-editorial-photo {
    min-height: 420px;
  }

  .exhibition-event,
  .exhibition-event-featured {
    grid-column: span 3;
  }

  .meeting-prep-grid {
    grid-template-columns: 1fr;
  }

  .company-timeline,
  .team-function-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-media-sequence,
  .customization-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .source-photo-frame {
    min-height: 0;
    padding: 28px 20px;
  }

  .exhibition-editorial-photo,
  .yarn-feature-photo {
    min-height: 300px;
  }

  .exhibition-ledger {
    grid-template-columns: 1fr;
  }

  .exhibition-event,
  .exhibition-event-featured {
    grid-column: 1;
    min-height: 0;
    padding: 28px 24px;
  }

  .event-year {
    margin-bottom: 28px;
  }

  .company-timeline,
  .team-function-grid {
    grid-template-columns: 1fr;
  }

  .company-timeline li,
  .team-function-grid article {
    min-height: 0;
    padding: 28px 24px;
  }

  .company-timeline li > span,
  .team-function-grid article > span {
    margin-bottom: 28px;
  }

  .company-source-photo {
    min-height: 0;
    padding: 30px 20px;
  }

  .company-source-photo-wide {
    padding: 0;
  }

  .service-media-sequence,
  .customization-scope-grid {
    grid-template-columns: 1fr;
  }

  .service-media-sequence figure {
    min-height: 380px;
  }

  .customization-scope-grid article {
    min-height: 0;
    padding: 28px 24px;
  }

  .customization-scope-grid article > span {
    margin-bottom: 28px;
  }
}

.factory-section {
  background: var(--paper-deep);
}

.factory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: stretch;
  overflow: hidden;
}

.factory-grid > * {
  min-width: 0;
}

.factory-media,
.factory-copy {
  min-width: 0;
}

.factory-media {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  margin: 0;
  background: #c3beb5;
}

.factory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(24, 26, 25, 0.84);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-copy {
  padding: 68px 70px;
  background: var(--surface);
}

.factory-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.factory-list {
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.factory-list li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 650;
}

.factory-list li::before {
  position: absolute;
  left: 0;
  color: var(--accent);
  content: "—";
}

.process-section {
  color: #fff;
  background: var(--ink);
}

.light-heading .eyebrow {
  color: #e39b79;
}

.light-heading .button {
  justify-self: end;
}

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

.process-card {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.process-card figure {
  overflow: hidden;
  height: 210px;
  margin: 0 0 24px;
  background: #62645f;
}

.process-card img {
  width: 100%;
  height: 122%;
  object-fit: cover;
  object-position: center top;
}

.process-card h3 {
  margin: 12px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.quality-section {
  background: var(--paper);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.benefit-grid article {
  min-height: 270px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.benefit-grid article:first-child {
  padding-left: 0;
}

.benefit-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-grid h3 {
  margin-top: 52px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.tech-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(220px, 0.55fr));
  margin-top: 100px;
  background: var(--surface);
}

.tech-showcase-copy {
  align-self: center;
  padding: 52px;
}

.tech-showcase-copy p:not(.eyebrow) {
  color: var(--muted);
}

.tech-showcase figure {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  margin: 0;
}

.tech-showcase figure img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center top;
}

.tech-showcase figure figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(24, 26, 25, 0.82);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-faq {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 90px;
}

.faq-layout > div:first-child {
  position: sticky;
  top: calc(var(--header) + 30px);
}

.faq-layout > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}

.home-inquiry-band {
  padding: 90px 0;
  color: #fff;
  background: var(--accent-dark);
}

.home-inquiry-band .eyebrow {
  color: #f4b796;
}

.home-inquiry-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.home-inquiry-inner h2 {
  max-width: 800px;
}

.home-inquiry-inner p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1040px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  }

  .home-hero-copy {
    padding-right: 45px;
  }

  .home-hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.4rem);
  }

  .catalog-grid {
    grid-template-rows: repeat(2, 260px);
  }

  .factory-copy {
    padding: 52px 46px;
  }

  .process-card figure {
    height: 170px;
  }

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

@media (max-width: 820px) {
  .utility-inner {
    min-height: 30px;
  }

  .utility-inner p {
    overflow: hidden;
    max-width: 68%;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .home-page .main-nav {
    top: calc(100% + 1px);
  }

  .home-hero {
    padding-top: 0;
  }

  .home-hero-grid,
  .heading-with-action,
  .factory-grid,
  .faq-layout,
  .home-inquiry-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .factory-media,
  .factory-copy {
    min-width: 0;
  }

  .home-hero-copy {
    padding: 62px 0 48px;
  }

  .home-hero h1 {
    font-size: clamp(3.25rem, 10.8vw, 5rem);
  }

  .home-hero-media {
    min-height: 620px;
  }

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

  .hero-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:first-child,
  .service-card:last-child {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-card h3 {
    margin-top: 25px;
  }

  .service-card a {
    margin-top: 18px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 500px repeat(2, 280px);
  }

  .catalog-card-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .factory-media {
    min-height: 480px;
  }

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

  .process-card figure {
    height: 230px;
  }

  .benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .benefit-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:first-child,
  .benefit-grid article:last-child {
    padding: 30px 28px;
  }

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

  .tech-showcase-copy {
    grid-column: 1 / -1;
  }

  .faq-layout {
    gap: 50px;
  }

  .faq-layout > div:first-child {
    position: static;
  }
}

@media (max-width: 560px) {
  .utility-inner {
    justify-content: center;
  }

  .utility-inner p {
    display: none;
  }

  .home-page .site-header {
    --header: 68px;
  }

  .home-section {
    padding: 76px 0;
  }

  .home-hero-copy {
    padding-top: 48px;
  }

  .home-hero h1 {
    font-size: clamp(2.9rem, 13.2vw, 4rem);
  }

  .home-hero-lede {
    font-size: 1rem;
  }

  .home-hero .hero-actions {
    gap: 12px;
  }

  .home-hero .text-link {
    justify-content: center;
  }

  .hero-capabilities {
    display: grid;
    gap: 7px;
  }

  .hero-capabilities span,
  .hero-capabilities span + span {
    padding: 0;
    border: 0;
  }

  .home-hero-media {
    min-height: 450px;
  }

  .home-hero-media figcaption {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }

  .hero-facts > div {
    min-height: 112px;
    padding: 22px 15px;
  }

  .hero-facts strong {
    font-size: 1.65rem;
  }

  .home-section-heading h2,
  .factory-copy h2,
  .tech-showcase-copy h2,
  .faq-layout h2,
  .home-inquiry-inner h2 {
    font-size: clamp(2.35rem, 10.8vw, 3.45rem);
  }

  .catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .catalog-card,
  .catalog-card-large {
    grid-column: auto;
    height: 410px;
  }

  .factory-media {
    min-height: 360px;
  }

  .factory-copy {
    padding: 38px 24px;
  }

  .light-heading .button {
    justify-self: stretch;
  }

  .process-card-grid,
  .benefit-grid,
  .tech-showcase {
    grid-template-columns: 1fr;
  }

  .process-card figure {
    height: 240px;
  }

  .benefit-grid article,
  .benefit-grid article:first-child,
  .benefit-grid article:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .benefit-grid h3 {
    margin-top: 26px;
  }

  .tech-showcase-copy {
    grid-column: auto;
    padding: 36px 24px;
  }

  .tech-showcase figure {
    min-height: 350px;
  }

  .home-inquiry-band {
    padding: 70px 0;
  }
}

/* Company-page containment overrides after homepage responsive rules */
.company-page .page-hero-grid > *,
.company-identity-grid > *,
.compliance-grid > *,
.documentation-grid > * {
  min-width: 0;
}

@media (max-width: 560px) {
  .company-page h1,
  .company-page p,
  .company-page dd {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .company-hero h1 {
    overflow-wrap: normal;
    word-break: normal;
    font-size: clamp(2.25rem, 10vw, 2.75rem);
    hyphens: auto;
  }

  .company-page h2 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .company-page .hero-actions .button {
    max-width: 100%;
  }

  .compliance-copy,
  .standard-list {
    max-width: 100%;
  }
}

/* Homepage factory panorama banner — current KnitSeek direction */
.home-page .home-hero {
  padding-top: 0;
}

.home-banner {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #d8dbdc;
}

.home-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(20, 22, 22, 0.25) 0%, rgba(20, 22, 22, 0.05) 54%, transparent 78%);
  pointer-events: none;
}

.home-banner-media {
  position: absolute;
  inset: 0;
  display: block;
}

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

.home-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  align-items: center;
}

.home-banner .home-hero-copy {
  width: min(650px, 56%);
  margin: 52px 0;
  padding: 52px 54px 50px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 22px 60px rgba(18, 20, 19, 0.18);
  backdrop-filter: blur(7px);
}

.home-banner .home-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 4.7vw, 4.95rem);
}

.home-banner .home-hero-lede {
  font-size: 1.02rem;
  line-height: 1.65;
}

.banner-standards {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  width: min(530px, 46vw);
  padding: 13px 15px 11px;
  border: 1px solid rgba(24, 26, 25, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 34px rgba(18, 20, 19, 0.16);
  backdrop-filter: blur(7px);
}

.banner-standards > p {
  margin: 0 0 9px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.banner-standard-logos {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.35fr 0.95fr 0.9fr;
  align-items: stretch;
  gap: 6px;
}

.banner-standard-logos > span {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 5px 6px;
  border: 1px solid rgba(24, 26, 25, 0.13);
  background: #fff;
  font-size: 0.74rem;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
}

.banner-standard-logos small {
  display: block;
  font-size: 0.43rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

.banner-standard-logos .standard-grs {
  gap: 5px;
  color: #14745c;
}

.banner-standard-logos .standard-grs strong {
  font-size: 1.1rem;
}

.banner-standard-logos .standard-bsci {
  flex-direction: column;
  color: #168047;
}

.banner-standard-logos .standard-bsci strong {
  font-size: 1.05rem;
}

.banner-standard-logos .standard-oeko {
  color: #168662;
  font-size: 0.66rem;
}

.banner-standard-logos .standard-rws {
  flex-direction: column;
  color: #173965;
}

.banner-standard-logos .standard-rws strong {
  font-size: 1.05rem;
}

.banner-standard-logos .standard-wrap {
  color: #155784;
  font-size: 0.88rem;
}

.banner-standards > small {
  display: block;
  margin-top: 7px;
  color: #545854;
  font-size: 0.56rem;
  line-height: 1.25;
}

.home-banner + .hero-facts {
  margin-top: 0;
}

@media (max-width: 1240px) {
  .banner-standards {
    width: min(400px, 33vw);
  }
}

@media (max-width: 1040px) {
  .home-banner .home-hero-copy {
    width: min(610px, 61%);
    padding: 46px;
  }

  .home-banner .home-hero-copy h1 {
    font-size: clamp(3rem, 5.5vw, 4.3rem);
  }

  .banner-standards {
    width: min(400px, 33vw);
  }

  .banner-standard-logos {
    grid-template-columns: repeat(5, 1fr);
  }

  .banner-standard-logos small {
    display: none;
  }
}

@media (max-width: 820px) {
  .home-banner {
    min-height: 0;
    overflow: visible;
    background: var(--surface);
  }

  .home-banner::after {
    display: none;
  }

  .home-banner-media {
    position: relative;
    height: clamp(220px, 38vw, 310px);
  }

  .home-banner-media img {
    object-position: center top;
  }

  .home-banner-inner {
    min-height: 0;
  }

  .home-banner .home-hero-copy {
    width: 100%;
    margin: 0;
    padding: 54px 0 48px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .banner-standards {
    top: calc(clamp(220px, 38vw, 310px) - 91px);
    right: 24px;
    bottom: auto;
    width: min(520px, calc(100% - 48px));
  }
}

@media (max-width: 560px) {
  .home-banner-media {
    height: 190px;
  }

  .banner-standards {
    top: 113px;
    right: 14px;
    width: calc(100% - 28px);
    padding: 9px 10px 8px;
  }

  .banner-standards > p {
    margin-bottom: 6px;
    font-size: 0.55rem;
  }

  .banner-standard-logos {
    gap: 4px;
  }

  .banner-standard-logos > span {
    min-height: 32px;
    padding: 3px;
    font-size: 0.58rem;
  }

  .banner-standard-logos .standard-grs strong,
  .banner-standard-logos .standard-bsci strong,
  .banner-standard-logos .standard-rws strong {
    font-size: 0.72rem;
  }

  .banner-standard-logos .standard-oeko {
    font-size: 0.46rem;
  }

  .banner-standard-logos .standard-wrap {
    font-size: 0.62rem;
  }

  .banner-standards > small {
    margin-top: 5px;
    font-size: 0.46rem;
  }

  .home-banner .home-hero-copy {
    padding-top: 54px;
  }

  .home-banner .home-hero-copy h1 {
    font-size: clamp(2.7rem, 12.2vw, 3.55rem);
  }
}

/* Buyer guides */
.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.guide-meta span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.guide-meta span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.guide-body {
  min-width: 0;
}

.article-byline {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 18px;
  margin-bottom: 72px;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.article-byline strong {
  color: var(--ink);
}

.article-example {
  display: grid;
  gap: 0;
  margin: 32px 0 24px;
  border-top: 1px solid var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-example p {
  margin: 0;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.article-example strong {
  color: var(--ink);
}

.article-numbered-checklist {
  counter-reset: article-step;
}

.article-numbered-checklist li {
  counter-increment: article-step;
}

.article-numbered-checklist li::before {
  content: counter(article-step, decimal-leading-zero);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-hero-grid > *,
.decision-page .page-hero-grid > div {
  min-width: 0;
}

.decision-page h1,
.guide-section h2,
.decision-page .cta-panel h2,
.breadcrumb {
  overflow-wrap: break-word;
  hyphens: auto;
}

.decision-page .cta-panel > div {
  min-width: 0;
}

.guide-section + .guide-section {
  margin-top: 82px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.guide-section h2 {
  max-width: 800px;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
}

.guide-section > p {
  max-width: 780px;
  color: var(--muted);
}

.guide-checklist {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.guide-checklist li {
  display: grid;
  grid-template-columns: 42px minmax(170px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.guide-checklist li::before {
  color: var(--accent);
  content: "□";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.guide-checklist strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.guide-checklist span {
  color: var(--muted);
  font-size: 0.86rem;
}

.guide-answer {
  margin: 28px 0 0;
  padding: 30px;
  border-top: 3px solid var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.guide-answer strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.guide-answer p {
  margin: 0;
  color: var(--muted);
}

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

.warning-list article {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.warning-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.warning-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 820px) {
  .article-byline {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 54px;
  }

  .guide-section + .guide-section {
    margin-top: 62px;
    padding-top: 54px;
  }

  .guide-checklist li {
    grid-template-columns: 34px 1fr;
  }

  .guide-checklist span {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .guide-meta {
    display: grid;
    gap: 7px;
  }

  .guide-checklist li {
    gap: 10px 14px;
  }

  .warning-list {
    grid-template-columns: 1fr;
  }

  .guide-answer {
    padding: 24px;
  }
}

@media (max-width: 820px) {
  html:not(.js) .site-header {
    position: static;
  }

  html:not(.js) .header-inner {
    flex-wrap: wrap;
  }

  html:not(.js) .menu-toggle {
    display: none;
  }

html:not(.js) .main-nav {
    position: static;
    display: grid;
    width: 100%;
    padding: 0 0 18px;
    border-bottom: 0;
  }

}

.certificate-source-section {
  background: #f1eee7;
}

.certificate-source-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.certificate-source-card {
  margin: 0;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.certificate-source-card > a {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  padding: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28, 31, 30, 0.1);
}

.certificate-source-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificate-source-card figcaption {
  display: grid;
  gap: 7px;
  padding-top: 13px;
}

.certificate-source-card figcaption small {
  color: var(--muted);
  line-height: 1.55;
}

.evidence-status {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
}

.status-open {
  color: #72520c;
  background: #f5e9c7;
}

.status-expired,
.status-mismatch {
  color: #772f2a;
  background: #f4d9d4;
}

.contact-disclosure {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.contact-disclosure dl {
  margin: 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-disclosure dl > div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.contact-disclosure dl > div:last-child {
  border-bottom: 0;
}

.contact-disclosure dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-disclosure dd {
  margin: 0;
}

.direct-contact {
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.direct-contact h3 {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .certificate-source-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .certificate-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .certificate-source-grid {
    grid-template-columns: 1fr;
  }

  .contact-disclosure dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Legal review pages */
.legal-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #f7f3eb 0%, #eee7dc 100%);
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: end;
}

.legal-page .legal-hero h1 {
  max-width: 900px;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.legal-draft-banner,
.legal-open-field {
  padding: 26px;
  border-top: 4px solid #a4482a;
  background: #fff8eb;
  box-shadow: var(--shadow);
}

.legal-draft-banner strong,
.legal-open-field strong {
  color: #7b2f1d;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.legal-draft-banner p,
.legal-open-field p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-content-section {
  background: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 120px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.legal-sidebar nav {
  display: grid;
  margin: 16px 0 24px;
}

.legal-sidebar nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-sidebar nav a:hover {
  color: var(--accent);
}

.legal-fact-card {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 40px);
  border-left: 4px solid var(--accent);
  background: var(--surface);
}

.legal-fact-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.legal-chinese-name {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.legal-address,
.legal-fact-card address {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  font-style: normal;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.legal-definition-list {
  margin: 30px 0 0;
  border-top: 1px solid var(--ink);
}

.legal-definition-list > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.legal-definition-list dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.legal-definition-list dd {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.legal-page em {
  color: #7b2f1d;
}

@media (max-width: 920px) {
  .legal-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 560px) {
  .legal-definition-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-draft-banner,
  .legal-open-field,
  .legal-sidebar {
    padding: 20px;
  }
}

/* Buyer project-brief utility */
.project-brief-tool {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  background: #fff;
}

.project-brief-tool pre {
  max-width: 100%;
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: 0.82rem/1.7 "Courier New", monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.template-actions .button {
  border: 0;
  cursor: pointer;
}

.form-template-note {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  color: var(--muted);
  line-height: 1.65;
}

.form-template-note strong {
  color: var(--ink);
}

.form-template-note a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 560px) {
  .template-actions .button {
    width: 100%;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  .brief-template-page .site-header,
  .brief-template-page .page-hero,
  .brief-template-page .faq-page-nav,
  .brief-template-page .article-byline,
  .brief-template-page .guide-body > :not(.project-brief-template-section),
  .brief-template-page .template-actions,
  .brief-template-page .copy-status,
  .brief-template-page .cta-panel,
  .brief-template-page .site-footer,
  .brief-template-page .whatsapp-float,
  .brief-template-page .skip-link {
    display: none !important;
  }

  .brief-template-page,
  .brief-template-page main,
  .brief-template-page .section,
  .brief-template-page .container,
  .brief-template-page .faq-page-grid,
  .brief-template-page .guide-body,
  .brief-template-page .project-brief-template-section,
  .brief-template-page .project-brief-tool {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    box-shadow: none;
  }

  .brief-template-page .project-brief-template-section > p:not(.eyebrow) {
    color: #222;
  }

  .brief-template-page .project-brief-tool pre {
    padding: 8mm 0 0;
    overflow: visible;
    border: 0;
    background: #fff;
    color: #111;
    font-size: 9pt;
    line-height: 1.45;
  }
}
