:root {
  --ink: #13231d;
  --muted: #5d6a63;
  --soft: #f6f3ec;
  --paper: #fffdf8;
  --green: #164332;
  --green-2: #235f46;
  --gold: #c29a58;
  --line: rgba(19, 35, 29, 0.13);
  --shadow: 0 24px 70px rgba(19, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

.inner-page {
  background:
    linear-gradient(180deg, rgba(246, 243, 236, 0.74), rgba(255, 253, 248, 1) 360px),
    var(--paper);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 36px rgba(19, 35, 29, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-wrap {
  border-color: rgba(194, 154, 88, 0.72);
  background: rgba(255, 253, 248, 0.08);
}

.logo-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transform: translateY(2px);
}

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

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

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.72;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  opacity: 1;
}

.header-cta {
  min-width: max-content;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(20px, 7vw, 96px) 72px;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-mobile-img,
.mobile-title {
  display: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 19, 0.88) 0%, rgba(9, 32, 25, 0.68) 38%, rgba(9, 32, 25, 0.1) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.16));
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 52%, rgba(194, 154, 88, 0.22), transparent 31%);
  animation: breathe 7s ease-in-out infinite;
}

.hero-content {
  width: min(720px, 100%);
  min-width: 0;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
}

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

.button.primary {
  color: #13231d;
  background: var(--gold);
  box-shadow: 0 16px 38px rgba(194, 154, 88, 0.28);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.trust-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.section-pad {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stat {
  min-height: 176px;
  padding: 42px 26px;
  background: var(--paper);
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1;
}

.stat strong::after {
  content: "+";
  color: var(--gold);
  font-size: 0.55em;
}

.stat span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head p:not(.eyebrow),
.capability-copy p,
.factory-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

.product-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 24px 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 42px rgba(19, 35, 29, 0.06);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.hidden {
  display: none !important;
}

.product-card p {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card span {
  color: var(--muted);
  line-height: 1.62;
}

.product-visual {
  width: min(100%, 280px);
  aspect-ratio: 1 / 1;
  height: auto;
  margin-inline: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  background: #f6f3ec;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(19, 35, 29, 0.08);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

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

.capabilities {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  background: var(--soft);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 44px;
  height: 1px;
  margin: 12px 0 0 12px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.text-link:hover::after {
  width: 70px;
}

.process {
  display: grid;
  gap: 14px;
}

.process div,
.quality-panel {
  padding: 26px;
  border: 1px solid rgba(19, 35, 29, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.process span {
  color: var(--gold);
  font-weight: 800;
}

.process strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 19px;
}

.process p,
.quality-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.quality {
  background:
    linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(19, 35, 29, 0.05) 92px 93px);
}

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

.quality-panel {
  min-height: 230px;
  background: #fff;
}

.quality-panel h3 {
  margin-bottom: 42px;
}

.factory {
  background: var(--green);
  color: #fff;
}

.factory-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  max-width: 1180px;
  margin: auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    rgba(255, 255, 255, 0.04);
}

.factory-card p {
  color: rgba(255, 255, 255, 0.72);
}

.factory-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.factory-list li {
  display: flex;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.factory-list span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.factory-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.factory-gallery img,
.exhibition-grid img,
.texture-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-gallery img {
  min-height: 260px;
  border-radius: 8px;
  filter: saturate(0.9) contrast(1.02);
}

.exhibition {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.exhibition .section-head {
  margin-bottom: 0;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.exhibition-grid figure,
.texture-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(19, 35, 29, 0.07);
}

.exhibition-grid figure:first-child {
  min-height: 250px;
}

.exhibition-grid figure:last-child {
  min-height: 250px;
}

.texture-section {
  background: var(--soft);
}

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

.texture-grid figure {
  display: grid;
}

.texture-grid img {
  aspect-ratio: 1 / 1;
}

.texture-grid figcaption {
  padding: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 780px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-line,
.qr-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 154px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    var(--green);
  box-shadow: 0 18px 48px rgba(19, 35, 29, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-line:hover,
.qr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(19, 35, 29, 0.2);
}

.contact-line span,
.qr-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-line strong,
.qr-card strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.qr-image {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  padding: 8px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(19, 35, 29, 0.1);
}

.qr-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-placeholder {
  border: 1px dashed rgba(19, 35, 29, 0.22);
  background:
    linear-gradient(135deg, rgba(194, 154, 88, 0.08), rgba(22, 67, 50, 0.06)),
    var(--paper);
}

.qr-placeholder span {
  color: rgba(22, 67, 50, 0.58);
  font-size: 12px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(19, 35, 29, 0.08);
}

.contact-details div:last-child {
  grid-column: 1 / -1;
}

.contact-details div {
  display: grid;
  gap: 5px;
}

.contact-details span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.contact-details p {
  color: var(--muted);
  font-weight: 600;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(194, 154, 88, 0.08), transparent 115px),
    #fff;
  box-shadow: var(--shadow);
}

.form-intro {
  display: grid;
  gap: 7px;
  padding-bottom: 2px;
}

.form-intro span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-intro h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.08;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(19, 35, 29, 0.16);
  border-radius: 6px;
  padding: 14px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(194, 154, 88, 0.38);
  border-color: var(--gold);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-content {
  display: grid;
  justify-items: end;
  gap: 12px;
  max-width: 760px;
}

.footer-content p {
  margin: 0;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.footer-brand {
  color: var(--ink);
}

.page-hero {
  padding: 154px clamp(20px, 7vw, 96px) clamp(56px, 8vw, 92px);
  background:
    linear-gradient(135deg, rgba(22, 67, 50, 0.96), rgba(35, 95, 70, 0.86)),
    var(--green);
  color: #fff;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 76px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.68;
}

.page-section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 6vw, 86px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

.feature-grid,
.process-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.feature-grid article,
.process-page article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(19, 35, 29, 0.07);
}

.feature-grid span,
.process-page span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid p,
.process-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.product-page-grid {
  padding-top: clamp(62px, 8vw, 104px);
}

.narrow-button {
  width: fit-content;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--green);
  color: #fff;
}

.cta-band h2 {
  margin: 0;
  max-width: 760px;
}

.contact-page-section {
  padding-top: clamp(62px, 8vw, 104px);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 154px 24px clamp(72px, 9vw, 118px);
}

.legal-page h1 {
  color: var(--green);
  font-size: clamp(40px, 6vw, 68px);
}

.legal-page h2 {
  margin-top: 38px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: clamp(22px, 3vw, 30px);
}

.legal-page p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.legal-page a {
  color: var(--green);
  font-weight: 800;
}

.legal-updated,
.legal-note {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes breathe {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    margin-left: auto;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .nav.open {
    position: absolute;
    inset: 76px 18px auto;
    display: grid;
    gap: 0;
    width: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav.open a {
    padding: 14px;
  }

  .stats,
  .product-grid,
  .quality-grid,
  .capabilities,
  .factory-card,
  .factory-gallery,
  .contact,
  .feature-grid,
  .process-page,
  .exhibition-grid,
  .texture-grid,
  .split-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 100vh;
    padding: 112px 20px 54px;
  }

  .hero-desktop-img,
  .desktop-title {
    display: none;
  }

  .hero-mobile-img,
  .mobile-title {
    display: block;
  }

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

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 24, 19, 0.94) 0%, rgba(9, 32, 25, 0.82) 55%, rgba(9, 32, 25, 0.42) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.2));
  }

  .hero-content {
    width: calc(100vw - 40px) !important;
    max-width: 350px !important;
  }

  .hero-actions,
  .hero-copy,
  .trust-strip {
    width: calc(100vw - 40px);
    max-width: 350px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.2vw, 42px);
    line-height: 0.98;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

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

  .trust-strip span {
    min-width: 0;
    padding-inline: 8px;
    text-align: center;
  }

  .product-visual {
    width: min(100%, 300px);
  }

  .quality-grid,
  .capabilities,
  .factory-card,
  .contact,
  .feature-grid,
  .process-page,
  .split-section,
  footer {
    grid-template-columns: 1fr;
  }

  .stats,
  .product-grid,
  .factory-gallery,
  .exhibition,
  .exhibition-grid,
  .texture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .section-pad,
  .page-section {
    padding-block: 54px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head p:not(.eyebrow),
  .capability-copy p,
  .factory-card p,
  .contact-copy p {
    font-size: 15px;
    line-height: 1.58;
  }

  .product-card {
    min-height: 0;
    padding: 12px;
  }

  .product-card p {
    margin-bottom: 5px;
    font-size: 10px;
    line-height: 1.25;
  }

  .product-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.16;
  }

  .product-card span {
    display: block;
    font-size: 13px;
    line-height: 1.45;
  }

  .product-visual {
    width: min(100%, 138px);
    margin-bottom: 14px;
  }

  .factory-card {
    padding: 22px;
  }

  .factory-list {
    gap: 12px;
  }

  .factory-list li {
    font-size: 14px;
  }

  .factory-gallery {
    margin-top: 4px;
  }

  .factory-gallery img {
    min-height: 132px;
  }

  .factory-gallery img:first-child {
    grid-column: 1 / -1;
    min-height: 170px;
  }

  .exhibition {
    align-items: start;
  }

  .exhibition .section-head,
  .exhibition-grid {
    grid-column: 1 / -1;
  }

  .exhibition-grid figure:first-child,
  .exhibition-grid figure:last-child {
    min-height: 176px;
  }

  .texture-grid figcaption {
    padding: 10px;
    font-size: 11px;
  }

  .contact-methods {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-line {
    grid-column: 1 / -1;
  }

  .contact-line,
  .qr-card {
    min-height: 138px;
    padding: 14px;
  }

  .page-hero {
    padding: 118px 20px 58px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .cta-band {
    display: grid;
  }

  .narrow-button {
    width: 100%;
  }

  .footer-content {
    justify-items: start;
  }

  .footer-content p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .stats {
    display: grid;
  }

  .stat {
    min-height: 118px;
    padding: 28px 18px;
  }

  footer {
    display: grid;
  }
}

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