:root {
  --ink: #11131b;
  --muted: #62646d;
  --soft: #f5f1eb;
  --paper: #fbf8f3;
  --white: #ffffff;
  --line: rgba(17, 19, 27, .12);
  --gold: #b79562;
  --rose: #a46d88;
  --charcoal: #17181d;
  --shadow: 0 26px 70px rgba(17, 19, 27, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(1320px, calc(100% - 48px)); margin: 0 auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  letter-spacing: .34em;
  font-weight: 800;
  line-height: 1;
  min-width: 170px;
}
.logo small { font-size: 10px; letter-spacing: .52em; color: var(--muted); margin-top: 6px; }
.nav { display: flex; align-items: center; gap: 34px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.nav a { opacity: .78; }
.nav a:hover { opacity: 1; color: var(--rose); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.language { font-size: 12px; letter-spacing: .08em; color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 52px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--rose); border-color: var(--rose); }
.btn-soft { border-color: rgba(17,19,27,.25); background: rgba(255,255,255,.35); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, #f8f5ef 0%, #f7f3ec 48%, #e8e1d8 100%);
  min-height: 680px;
}
.hero-stage { position: relative; min-height: 680px; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 680px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 86px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .45em;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}
h1, h2, h3 { margin: 0; line-height: 1.02; }
h1 {
  font-size: clamp(48px, 6.2vw, 92px);
  max-width: 760px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero-subtitle { max-width: 530px; margin: 28px 0 0; font-size: 18px; color: #32333a; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0;
  margin: 46px 0 42px;
  max-width: 780px;
}
.proof-item {
  min-height: 72px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-icon { font-size: 24px; margin-bottom: 8px; color: var(--gold); }
.proof-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.proof-text { font-size: 12px; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 680px;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,245,239,.15), rgba(16,17,22,.18));
}
.hero-signature {
  position: absolute;
  right: 10%;
  top: 42%;
  z-index: 2;
  color: #fff;
  max-width: 260px;
  text-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.hero-signature b { font-family: Georgia, serif; font-size: 50px; font-weight: 400; display: block; line-height: .8; }
.hero-signature span { letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.hero-signature p { font-size: 14px; margin: 18px 0 0; color: rgba(255,255,255,.86); }
.hero-nav {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}
.hero-dot {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(17,19,27,.22);
  cursor: pointer;
}
.hero-dot.is-active { background: var(--rose); }
.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 26px;
}
.hero-arrow:hover { background: #fff; }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

.section { padding: 96px 0; }
.section-tight { padding: 70px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  margin-bottom: 42px;
}
.section-kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .25em; font-size: 13px; font-weight: 800; margin-bottom: 12px; }
.section-title { font-size: clamp(34px, 4vw, 58px); letter-spacing: .02em; max-width: 740px; }
.section-copy { max-width: 550px; color: var(--muted); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #ddd;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform .55s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.64)); }
.category-card span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.panel-pad { padding: 46px; }
.check-list { display: grid; gap: 14px; margin: 26px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; color: #282a31; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 900; }
.factory-image-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #ddd; }
.factory-image-main img { width: 100%; height: auto; }
.factory-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; margin-top: 20px; }
.factory-grid img { height: 260px; width: 100%; object-fit: cover; border-radius: 18px; }
.factory-grid .stack { display: grid; gap: 18px; }
.factory-grid .stack img { height: 121px; }

.dark-band {
  background: radial-gradient(circle at 15% 20%, rgba(183,149,98,.22), transparent 32%), #11131b;
  color: #fff;
}
.metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.metric { text-align: center; padding: 34px 18px; border-right: 1px solid rgba(255,255,255,.14); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--gold); font-size: clamp(30px, 3vw, 48px); line-height: 1; }
.metric span { display: block; margin-top: 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card { padding: 34px; background: #fff; border: 1px solid var(--line); min-height: 250px; }
.process-num { color: var(--gold); font-size: 14px; font-weight: 900; letter-spacing: .18em; margin-bottom: 34px; }
.process-card h3 { font-size: 22px; margin-bottom: 14px; }
.process-card p { color: var(--muted); margin: 0; }

.capability-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cap-card { position: relative; overflow: hidden; min-height: 360px; background: var(--charcoal); color: #fff; }
.cap-card img { width: 100%; height: 100%; object-fit: cover; opacity: .74; transition: transform .5s ease; }
.cap-card:hover img { transform: scale(1.04); }
.cap-card div { position: absolute; left: 34px; right: 34px; bottom: 32px; z-index: 2; }
.cap-card:after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 28%, rgba(0,0,0,.72)); }
.cap-card h3 { font-size: 30px; margin-bottom: 8px; }
.cap-card p { margin:0; color: rgba(255,255,255,.78); max-width: 520px; }

.rfq {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #484b55; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(17,19,27,.16);
  background: #fff;
  padding: 15px 16px;
  outline: none;
  border-radius: 0;
}
textarea { min-height: 126px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(183,149,98,.12); }

.contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  max-width: 610px;
}
.contact-strip a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid rgba(17,19,27,.12);
  background: rgba(255,255,255,.64);
}
.contact-strip span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 900;
}
.contact-strip strong {
  font-size: 16px;
  color: var(--ink);
}

.footer { padding: 42px 0; background: #0e0f13; color: rgba(255,255,255,.72); }
.footer-inner { display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.footer .logo { color: #fff; }

.float-actions {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: grid;
  box-shadow: var(--shadow);
}
.float-actions a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.3);
  font-weight: 900;
}
.float-actions a:hover { background: var(--rose); }

@media (max-width: 1100px) {
  .nav { display: none; }
  .hero-grid, .split, .rfq { grid-template-columns: 1fr; }
  .hero, .hero-stage, .hero-grid, .hero-media { min-height: auto; }
  .hero-copy { padding: 70px 0 42px; }
  .hero-media { height: 520px; }
  .category-grid, .process-grid, .metrics { grid-template-columns: repeat(2, 1fr); }
  .capability-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1320px); }
  .header { height: 70px; }
  .header-inner { height: 70px; }
  .logo { min-width: auto; font-size: 14px; letter-spacing: .25em; }
  .logo small { font-size: 8px; }
  .language, .header .btn { display: none; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 18px; }
  .proof-item { border-right: 0; padding: 0; }
  .hero-cta .btn { width: 100%; }
  .contact-strip { grid-template-columns: 1fr; }
  .hero-arrow { display: none; }
  .hero-signature { display: none; }
  .hero-media { height: 420px; }
  .section { padding: 66px 0; }
  .section-head { display: block; }
  .category-grid, .process-grid, .metrics, .form, .factory-grid { grid-template-columns: 1fr; }
  .category-card { height: 360px; }
  .metric { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .panel-pad { padding: 28px; }
  .float-actions { right: 12px; }
  .float-actions a { width: 46px; height: 46px; }
  .footer-inner { display: grid; }
}

/* Mobile correction v3: never shrink the desktop carousel into the page flow. */
@media (max-width: 1100px) {
  .hero {
    min-height: 0;
    overflow: hidden;
  }
  .hero-stage {
    min-height: 0;
  }
  .hero-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    display: none;
    pointer-events: none;
  }
  .hero-slide.is-active {
    display: block;
    pointer-events: auto;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-copy {
    order: 2;
  }
  .hero-media {
    order: 1;
    width: 100%;
    min-height: 0;
    height: 520px;
  }
}

@media (max-width: 720px) {
  body {
    background: #fbf8f3;
  }
  .header {
    height: 68px;
  }
  .header-inner {
    height: 68px;
    gap: 10px;
  }
  .logo {
    font-size: 13px;
    letter-spacing: .22em;
    max-width: 210px;
  }
  .logo small {
    margin-top: 7px;
    letter-spacing: .42em;
  }
  .header-actions {
    margin-left: auto;
  }
  .header .btn {
    display: inline-flex;
    height: 38px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: .07em;
  }
  .language { display: none; }

  .hero {
    background: #f7f2eb;
    border-bottom: 1px solid rgba(17,19,27,.08);
  }
  .hero-media {
    height: 390px;
    margin: 0;
    background: #ddd;
  }
  .hero-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero-media:after {
    background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.18));
  }
  .hero-copy {
    padding: 34px 0 58px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: .32em;
    margin-bottom: 12px;
  }
  h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.02;
    letter-spacing: .035em;
    max-width: 100%;
    word-break: normal;
  }
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.65;
    margin-top: 18px;
    max-width: 100%;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 26px;
  }
  .proof-item {
    min-height: 0;
    padding: 16px;
    border: 1px solid rgba(17,19,27,.10);
    background: rgba(255,255,255,.55);
  }
  .proof-icon {
    margin-bottom: 7px;
    font-size: 18px;
  }
  .proof-title {
    font-size: 11px;
  }
  .proof-text {
    font-size: 11px;
  }
  .hero-cta {
    gap: 12px;
  }
  .hero-cta .btn {
    width: 100%;
    height: 50px;
  }
  .hero-nav {
    bottom: 18px;
  }
  .hero-dot {
    width: 26px;
    height: 3px;
  }

  .section {
    padding: 58px 0;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .section-kicker {
    font-size: 11px;
    letter-spacing: .22em;
  }
  .section-title {
    font-size: 32px;
    line-height: 1.08;
  }
  .section-copy {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .category-card {
    height: 260px;
    border-radius: 18px;
  }
  .category-card span {
    left: 16px;
    bottom: 16px;
    font-size: 11px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .metric {
    padding: 24px 10px;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .metric strong {
    font-size: 32px;
  }
  .metric span {
    font-size: 10px;
  }
  .factory-grid img,
  .factory-grid .stack img {
    height: 220px;
  }
  .cap-card {
    min-height: 300px;
    border-radius: 18px;
  }
  .cap-card div {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
  .cap-card h3 {
    font-size: 25px;
  }
  .process-card {
    min-height: 0;
    padding: 28px;
    border-radius: 18px;
  }
  .rfq {
    gap: 24px;
  }
  .float-actions {
    top: auto;
    bottom: 18px;
    right: 14px;
    transform: none;
  }
  .float-actions a {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 430px) {
  .container { width: min(100% - 24px, 1320px); }
  .logo { font-size: 12px; letter-spacing: .18em; }
  .logo small { font-size: 7px; letter-spacing: .34em; }
  .header .btn { height: 36px; padding: 0 12px; font-size: 9px; }
  .hero-media { height: 360px; }
  h1 { font-size: 40px; }
  .hero-proof { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { height: 300px; }
  .metrics { grid-template-columns: 1fr; }
}

/* Final mobile polish */
@media (max-width: 430px) {
  .hero-proof { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 390px) {
  .logo { max-width: 180px; }
  .header .btn { padding: 0 10px; }
}

/* Desktop hero refinement: keep the headline premium, not oversized or overlapping the visual. */
@media (min-width: 1101px) {
  h1 {
    font-size: clamp(56px, 5vw, 78px);
    max-width: 660px;
    letter-spacing: .045em;
  }
  .hero-signature { display: none; }
}
@media (min-width: 1101px) {
  .hero-arrow.prev { left: 50%; }
}

/* Multi-product structure update */
.page-hero {
  padding: 110px 0 70px;
  background: radial-gradient(circle at 15% 20%, rgba(183,149,98,.18), transparent 30%), #f7f2eb;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(46px, 6vw, 84px);
  max-width: 920px;
  line-height: .98;
  text-transform: uppercase;
  letter-spacing: .045em;
}
.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}
.collection-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.collection-nav a {
  border: 1px solid rgba(17,19,27,.14);
  background: rgba(255,255,255,.68);
  padding: 10px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}
.collection-nav a:hover { background: var(--ink); color: #fff; }
.category-grid-expanded { grid-template-columns: repeat(3, 1fr); }
.catalog-cta {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.catalog-cta h3 { font-size: 30px; margin: 0 0 8px; }
.catalog-cta p { margin: 0; color: var(--muted); max-width: 760px; }
.catalog-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-showcase-grid-wide { grid-template-columns: repeat(3, 1fr); }
.product-card { overflow: hidden; background: #fff; border: 1px solid var(--line); }
.product-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  object-position: top center;
  background: #f1f1f1;
}
.product-card-body { padding: 22px 22px 24px; }
.product-card-body h3 { font-size: 24px; margin-bottom: 8px; }
.product-card-body p { margin: 0; color: var(--muted); }
.product-note { margin-top: 10px !important; font-size: 14px; }
.product-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: rgba(164,109,136,.10);
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
@media (max-width: 1100px) {
  .category-grid-expanded { grid-template-columns: repeat(2, 1fr); }
  .product-showcase-grid, .product-showcase-grid-wide { grid-template-columns: repeat(2, 1fr); }
  .catalog-cta { display: grid; }
}
@media (max-width: 720px) {
  .page-hero { padding: 72px 0 42px; }
  .page-hero h1 { font-size: 38px; }
  .page-hero p { font-size: 16px; }
  .category-grid-expanded { grid-template-columns: repeat(2, 1fr); }
  .product-showcase-grid, .product-showcase-grid-wide { grid-template-columns: 1fr; }
  .product-card img { aspect-ratio: 1.22 / 1; }
  .catalog-cta h3 { font-size: 24px; }
}
@media (max-width: 430px) {
  .category-grid-expanded { grid-template-columns: 1fr; }
}

/* SEO content and trust page additions */
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.article-body { font-size: 17px; line-height: 1.78; }
.article-body section + section { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.article-body h2 { font-size: 30px; margin-bottom: 12px; letter-spacing: .01em; }
.article-body p { color: #3b3d45; margin: 0; }
.side-panel { display: grid; gap: 14px; position: sticky; top: 104px; }
.side-panel a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 700; }
.guide-grid, .trust-link-grid, .faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.guide-card, .faq-item { padding: 28px; }
.guide-card h3, .faq-item h3, .trust-link-grid h3 { font-size: 23px; line-height: 1.16; margin-bottom: 12px; }
.guide-card p, .faq-item p, .trust-link-grid p { color: var(--muted); margin: 0; }
.guide-cta { margin-top: 40px; padding: 30px; background: var(--paper); border: 1px solid var(--line); }
.guide-cta h2 { margin-bottom: 10px; }
.guide-cta .btn { margin-top: 22px; }
.trust-image { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.factory-page-grid { grid-template-columns: repeat(3, 1fr); margin: 0 0 28px; }
.factory-page-grid img { height: 310px; }
.trust-process { margin-top: 28px; }
@media (max-width: 1100px) {
  .content-layout { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .guide-grid, .trust-link-grid, .faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .factory-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .guide-grid, .trust-link-grid, .faq-grid { grid-template-columns: 1fr; }
  .article-body h2 { font-size: 24px; }
  .factory-page-grid img { height: 240px; }
}

/* SEO / GEO content additions: tables, FAQ cards and guide blocks */
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 24px; border: 1px solid var(--line); background: #fff; }
.data-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 15px; }
.data-table th { text-align: left; background: #f7f2eb; color: var(--ink); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.data-table th, .data-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table td { color: #3b3d45; }
.data-table a { color: var(--gold); font-weight: 800; }
.faq-grid, .guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.faq-item, .guide-card { padding: 28px; }
.faq-item h3, .guide-card h3 { font-size: 22px; line-height: 1.2; margin-bottom: 12px; }
.faq-item p, .guide-card p { color: var(--muted); margin: 0; }
.geo-table-section .section-title, .home-answer-section .section-title { max-width: 900px; }
@media (max-width: 1100px) { .faq-grid, .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 720px) { .faq-grid, .guide-grid { grid-template-columns: 1fr; } .data-table { min-width: 680px; font-size: 14px; } .data-table th, .data-table td { padding: 13px 14px; } }
