:root {
  --color-primary: #1f1f1c;
  --color-ink: #242421;
  --color-background: #f7f5f0;
  --color-surface: #fffdfa;
  --color-panel: #ebe5da;
  --color-accent: #9a7651;
  --color-moss: #586857;
  --color-rust: #9b5f43;
  --color-muted: #74716b;
  --color-border: #ded8cc;
  --max: 1280px;
  --wide: 1440px;
  --gutter: clamp(20px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-ink);
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px var(--gutter);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(247, 245, 240, 0.96);
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
}

.brand strong,
.brand small {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-switcher {
  position: relative;
  margin-left: auto;
  margin-right: 18px;
}

.language-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.language-picker {
  position: relative;
}

.language-picker-toggle {
  min-width: 66px;
  height: 34px;
  padding: 0 28px 0 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.language-picker-toggle::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.language-picker-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 100%;
  padding: 4px;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  background: #dedede;
  box-shadow: 0 10px 24px rgba(24, 20, 16, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.language-picker.open .language-picker-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-picker-option {
  min-height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #77736e;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.language-picker-option:hover,
.language-picker-option:focus-visible {
  background: #f2eee8;
  color: var(--color-rust);
  outline: none;
}

.language-picker-option.selected {
  background: rgba(255, 255, 255, 0.58);
  color: #282520;
}

.site-header.scrolled .language-picker-toggle,
.site-header.menu-active .language-picker-toggle {
  background: var(--color-surface);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.main-nav .nav-home {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.main-nav .nav-home::after {
  display: none;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 900;
}

.nav-cta,
.button-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-media {
  background-image: url("assets/17比8背景图.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f5f0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.74) 0%, rgba(20, 18, 15, 0.4) 42%, rgba(20, 18, 15, 0.08) 82%),
    linear-gradient(180deg, transparent 62%, rgba(247, 245, 240, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - var(--gutter) * 2));
  margin-left: var(--gutter);
  padding-top: 80px;
}

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

.hero .eyebrow {
  color: #e4c49f;
}

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

h1,
h2 {
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 52px);
}

h3 {
  margin-bottom: 10px;
  line-height: 1.22;
  font-size: 20px;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-addresses {
  display: grid;
  gap: 8px;
  max-width: 690px;
  margin: -12px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.hero-addresses a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hero-addresses a:hover {
  color: #fff;
  text-decoration-color: currentColor;
}

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

.button-primary span,
.text-link span,
.product-card span {
  transition: transform 160ms ease;
}

.button-primary:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.hero-proof div,
.hero-proof-link {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(31, 31, 28, 0.22);
}

.hero-proof-link {
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-proof-link:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(31, 31, 28, 0.48);
  transform: translateY(-2px);
}

.hero-proof strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-entry {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-entry a {
  min-height: 92px;
  padding: 18px;
  background: rgba(31, 31, 28, 0.76);
  backdrop-filter: blur(14px);
}

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

.hero-entry span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: clamp(70px, 8vw, 124px) var(--gutter);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 17px;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
}

.filter.active,
.filter:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--wide);
  margin: 0 auto;
}

.homepage-collections .product-card:not([data-title="Cashmere Crewneck Sweater"]):not([data-title="80s Superfine Merino Wool Cardigan"]):not([data-title="Striped Wool Blend Polo Knit Sweater"]):not([data-title="Cotton Blend Colorblock Pleated Knit Dress"]):not([data-title="Wool Blend Shawl"]) {
  display: none;
}

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

.collections-page {
  padding: 132px var(--gutter) clamp(70px, 8vw, 124px);
}

.collection-page-intro,
.collection-section {
  max-width: var(--wide);
  margin: 0 auto;
}

.collection-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.55fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
  margin-bottom: 52px;
}

.collection-page-intro p:not(.eyebrow) {
  max-width: 650px;
  color: var(--color-muted);
  font-size: 18px;
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.collection-tabs a {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  font-weight: 800;
}

.collection-tabs a:hover,
.collection-tabs a:first-child {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.collection-section {
  scroll-margin-top: 104px;
  padding: 44px 0 62px;
  border-top: 1px solid var(--color-border);
}

.collection-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.collection-section-header h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.collection-section-header p {
  margin: 0;
  color: var(--color-muted);
}

.collection-page-cta {
  max-width: var(--wide);
  margin: 10px auto 0;
  padding: 34px;
  border: 1px solid var(--color-border);
  background: var(--color-panel);
}

.collection-page-cta p {
  max-width: 660px;
  color: var(--color-muted);
}

.page-header {
  background: rgba(247, 245, 240, 0.96);
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.product-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: contain;
  background: #f4f0e8;
}

.product-meta {
  min-height: 144px;
  padding: 18px;
}

.product-meta span,
.craft-card span,
.accessory-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-rust);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta p,
.craft-card p,
.accessory-card p,
.factory-copy p,
.factory-points span {
  color: var(--color-muted);
}

.craftsmanship {
  background: #eeece6;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.craft-card {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.craft-card img {
  aspect-ratio: 1;
  object-fit: cover;
}

.craft-card div {
  padding: 22px;
}

.accessory-grid,
.factory-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.accessory-card {
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.accessory-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.accessory-feature img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f4f0e8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--color-accent);
  font-weight: 900;
}

.customization {
  background: var(--color-primary);
  color: #fff;
}

.customization .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.custom-scroll {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  justify-content: center;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.custom-card {
  width: 300px;
}

.custom-card img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
}

.custom-card h3 {
  margin-top: 14px;
  color: #fff;
  font-size: 18px;
}

.section-action {
  margin-top: 28px;
  text-align: center;
}

.factory-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.factory {
  background-color: #55463a;
  background-image:
    linear-gradient(90deg, rgba(32, 25, 20, 0.42) 0%, rgba(32, 25, 20, 0.12) 52%, rgba(32, 25, 20, 0.22) 100%),
    url("assets/factory-natural-fibres-landscape.png");
  background-position: center;
  background-size: cover;
}

.factory-copy {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 253, 250, 0.72);
  backdrop-filter: blur(7px);
  box-shadow: 0 20px 44px rgba(25, 18, 12, 0.2);
}

.factory-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 250, 0.5);
  border: 1px solid rgba(255, 253, 250, 0.5);
}

.factory-points div {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 253, 250, 0.62);
  backdrop-filter: blur(6px);
}

.factory-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-moss);
}

.factory-summary {
  margin-top: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: rgba(74, 61, 49, 0.18);
  border-color: rgba(74, 61, 49, 0.2);
}

.factory-summary div {
  min-height: 0;
  padding: 14px 16px;
  background: rgba(255, 253, 250, 0.36);
}

.factory-summary strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.factory-summary span {
  font-size: 13px;
  line-height: 1.42;
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(180px, 1.15fr) repeat(2, minmax(128px, 0.85fr));
  gap: 8px;
  min-height: 640px;
}

.factory-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 250, 0.48);
  background: rgba(255, 253, 250, 0.16);
}

.factory-gallery-main {
  grid-column: 1 / -1;
}

.factory-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.factory-gallery figure:hover img {
  transform: scale(1.035);
}

.factory-sustainability {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.factory-sustainability h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.factory-sustainability p:last-child {
  margin-bottom: 0;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  padding: clamp(72px, 9vw, 132px) var(--gutter);
  background: var(--color-primary);
  color: #fff;
}

.quote-section > * {
  max-width: 620px;
}

.quote-copy {
  justify-self: end;
}

.quote-copy p:not(.eyebrow),
.quote-copy address {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
}

.quote-copy address {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  padding: 26px;
  background: #fff;
  color: var(--color-ink);
}

.rfq-form label {
  display: grid;
  gap: 7px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff;
  color: var(--color-ink);
}

.rfq-form textarea {
  resize: vertical;
}

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

.privacy-notice-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-notice-consent input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-rust);
}

.privacy-notice-link {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-notice {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(25, 22, 18, 0.56);
}

.privacy-notice-panel {
  width: min(100%, 540px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.privacy-notice-panel h2 {
  margin-bottom: 14px;
}

.privacy-notice-panel > p:not(.eyebrow) {
  color: var(--color-muted);
}

.privacy-notice-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--color-rust);
}

.privacy-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.marketing-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(460px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(44, 42, 37, 0.22);
  background: #fbfaf7;
  box-shadow: 0 12px 34px rgba(25, 24, 21, 0.2);
  color: #34312b;
  font-size: 0.9rem;
  line-height: 1.5;
}

.marketing-consent p { margin: 0; }
.marketing-consent div { display: flex; justify-content: flex-end; gap: 10px; margin-top: 14px; }
.marketing-consent .secondary { padding: 0.65rem 0.9rem; border: 1px solid #9b815f; background: transparent; color: #6d5a42; }
@media (max-width: 520px) { .marketing-consent div { justify-content: stretch; } .marketing-consent button { flex: 1; } }

.form-status {
  color: var(--color-muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.product-dialog {
  width: min(980px, calc(100vw - 32px));
  border: 1px solid var(--color-border);
  padding: 0;
  background: var(--color-surface);
  color: var(--color-ink);
}

.product-dialog::backdrop {
  background: rgba(20, 18, 15, 0.66);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
}

.dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  padding: 28px;
  align-items: center;
}

.dialog-grid img {
  max-height: 74vh;
  object-fit: contain;
  background: #f4f0e8;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  padding: 44px var(--gutter);
  border-top: 1px solid var(--color-border);
}

.site-footer p,
.site-footer small {
  color: var(--color-muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.footer-filing {
  display: grid;
  gap: 12px;
}

.filing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filing-links a:hover {
  color: var(--color-ink);
}

.article-index,
.article-page {
  min-height: 100vh;
  padding: clamp(80px, 10vw, 132px) var(--gutter);
}

.article-index-inner,
.article-copy {
  width: min(100%, 860px);
  margin: 0 auto;
}

.article-index-copy {
  max-width: 620px;
  margin-bottom: 42px;
  color: var(--color-muted);
  font-size: 18px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 900;
}

.article-back::before {
  margin-right: 8px;
  content: "←";
}

.article-list {
  display: grid;
  gap: 20px;
}

.article-index-action {
  margin-top: 28px;
}

.article-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.article-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.article-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.article-card-meta {
  margin-bottom: 8px;
  color: var(--color-rust);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.article-card p:not(.article-card-meta) {
  margin-bottom: 14px;
  color: var(--color-muted);
}

.article-card span {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 900;
}

.article-copy {
  width: min(100%, 720px);
}

.article-copy h1 {
  max-width: 650px;
}

.article-copy h2 {
  margin: 46px 0 14px;
  font-size: clamp(25px, 3vw, 34px);
}

.article-copy p {
  margin-bottom: 18px;
  color: #4f4c46;
  font-size: 17px;
}

.article-copy .article-lead {
  margin-bottom: 34px;
  color: var(--color-ink);
  font-size: 21px;
  line-height: 1.55;
}

.article-copy a:not(.article-back) {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-copy .article-cta {
  margin-top: 34px;
}

.article-copy .article-cta .button {
  color: #fff;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #24745a;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.facebook-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.facebook-float:hover,
.facebook-float:focus-visible {
  background: #0f63cf;
  color: #fff;
}

.legal-entity {
  display: block;
  margin-top: 6px;
}

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

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

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-entry,
  .custom-scroll {
    justify-content: start;
    overflow-x: auto;
  }
}

@media (max-width: 960px) {
  .craft-grid,
  .accessory-grid,
  .factory-layout,
  .quote-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .accessory-feature,
  .collection-page-intro,
  .dialog-grid {
    grid-template-columns: 1fr;
  }

  .collection-tabs {
    justify-content: flex-start;
  }

  .quote-copy {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .language-switcher {
    margin-right: 12px;
  }

  .main-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px var(--gutter) 28px;
    background: rgba(247, 245, 240, 0.98);
    color: var(--color-ink);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

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

  .nav-cta {
    margin-top: 14px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20, 18, 15, 0.18) 0%, rgba(20, 18, 15, 0.78) 58%, rgba(247, 245, 240, 0.95) 100%);
  }

  .hero-content {
    margin: 0;
    width: 100%;
    padding: 118px var(--gutter) 190px;
  }

  .hero-entry {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    left: 20px;
    right: 20px;
    bottom: 18px;
  }

  .hero-proof,
  .rfq-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

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

  .brand strong {
    font-size: 14px;
  }

  .language-picker-toggle {
    min-width: 58px;
    height: 32px;
    padding-left: 8px;
    font-size: 11px;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-content {
    padding-bottom: 210px;
  }

  .article-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .collections-page {
    padding-top: 106px;
  }

  .collection-section-header {
    display: block;
  }

  .collection-section-header p {
    margin-top: 8px;
  }
}

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

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