:root {
  --green-900: #244b1b;
  --green-800: #2f6123;
  --green-700: #356d27;
  --green-100: #edf5e8;
  --leaf: #6f8f42;
  --ink: #171b1d;
  --muted: #667066;
  --line: #e7e8e3;
  --paper: #ffffff;
  --soft: #f7f8f4;
  --warm: #f0ebe2;
  --shadow: 0 18px 50px rgba(35, 52, 30, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.is-missing {
  opacity: 0;
}

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

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

.topbar {
  background: var(--green-900);
  color: #fff;
  font-size: 13px;
}

.topbar-inner,
.header-inner,
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-inner {
  min-height: 38px;
}

.topbar-contact,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-contact {
  row-gap: 6px;
}

.contact-separator {
  margin-inline: 6px;
}

.language-switcher a {
  opacity: 0.76;
}

.language-switcher a.is-active {
  opacity: 1;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
}

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

.header-brand {
  gap: 0;
}

.header-brand .brand-copy {
  display: grid;
  gap: 3px;
  align-items: start;
}

.header-brand .brand-logo {
  width: 150px;
  max-width: 28vw;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 3px solid var(--green-700);
  border-radius: 50%;
  color: var(--green-700);
  font-weight: 800;
  font-size: 13px;
}

.brand strong {
  display: block;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.35vw, 20px);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a {
  position: relative;
  padding: 30px 0;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--green-700);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-search-row {
  display: flex;
  justify-content: center;
  padding: 0 0 16px;
}

.site-search {
  display: flex;
  align-items: center;
  width: min(100%, 540px);
  border: 1px solid #dce5d6;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(36, 75, 27, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-search:focus-within {
  border-color: #a9c39c;
  box-shadow: 0 14px 30px rgba(36, 75, 27, 0.12);
}

.site-search input {
  min-width: 0;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 0;
  font: inherit;
  font-size: 13px;
  outline: 0;
}

.site-search button {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid #e3ebdf;
  background: #f3f8ef;
  color: var(--green-900);
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.quote-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.quote-button,
.button-primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 12px 24px rgba(36, 75, 27, 0.18);
}

.quote-button:hover,
.button-primary:hover {
  background: var(--green-900);
  transform: translateY(-1px);
}

.button-outline {
  border-color: #9aa394;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.button-light {
  background: #fff;
  color: var(--green-900);
}

.button-small {
  min-height: 38px;
  padding-inline: 18px;
}

.flash {
  margin-top: 18px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 700;
}

.flash-success {
  border-color: #c9dfbd;
  color: var(--green-900);
  background: var(--green-100);
}

.flash-error {
  border-color: #e5b7b7;
  color: #8a2424;
  background: #fff0f0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255, 255, 255, 0.12) 72%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, #fff);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0 0 0 38%;
  background: linear-gradient(135deg, var(--warm), #dbe7d0);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.82) 18%, rgba(255, 255, 255, 0.08) 55%);
  content: "";
}

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

.hero-copy {
  width: min(560px, 100%);
  padding-block: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text {
  width: min(520px, 100%);
  color: #28302a;
  font-size: 17px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 54px;
}

.stat-item {
  position: relative;
  padding-left: 18px;
  border-left: 2px solid var(--green-700);
}

.stat-item strong,
.stat-item span,
.stat-item small {
  display: block;
}

.stat-item strong {
  color: var(--green-900);
  font-size: 18px;
}

.stat-item span {
  font-weight: 800;
}

.stat-item small {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

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

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

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.category-card,
.product-card,
.news-card,
.form-panel,
.contact-panel,
.info-panel,
.account-exhibition-panel,
.process-step,
.quote-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(24, 34, 20, 0.07);
}

.category-card a {
  display: grid;
  gap: 16px;
  padding: 0 0 18px;
  text-align: center;
}

.category-card strong {
  padding-inline: 12px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card span:last-child {
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.image-frame {
  position: relative;
  display: block;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--warm), var(--green-100));
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-card .image-frame {
  aspect-ratio: 1 / 0.92;
}

.image-frame img {
  transition: transform 0.35s ease;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
}

.feature-item {
  text-align: center;
}

.feature-item p {
  color: var(--muted);
  font-size: 14px;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 2px solid var(--green-700);
  border-radius: 50%;
  color: var(--green-800);
  font-weight: 800;
}

.split-band {
  background: linear-gradient(180deg, #fff, #fbfaf5);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px 56px;
  align-items: center;
}

.split-copy p {
  color: var(--muted);
}

.mosaic,
.factory-stack,
.factory-gallery {
  display: grid;
  gap: 12px;
}

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

.mosaic img,
.factory-stack img,
.factory-gallery img,
.page-hero-photo img,
.detail-photo img {
  min-height: 210px;
  border-radius: var(--radius);
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.factory-stack {
  grid-template-columns: 1.2fr 1fr;
}

.factory-stack img:first-child {
  grid-row: span 2;
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 26px;
  overflow-x: auto;
  padding: 6px 2px 22px;
  scroll-snap-type: x mandatory;
}

.product-rail .product-card {
  scroll-snap-align: start;
}

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

.product-body {
  padding: 18px;
  text-align: center;
}

.product-body h3 {
  margin-bottom: 6px;
}

.product-body p {
  color: var(--muted);
  font-size: 14px;
}

.product-body a {
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.quote-cart-add-form {
  display: flex;
  justify-content: center;
}

.quote-cart-icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #c8d8bf;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  cursor: pointer;
  transition: 0.2s ease;
}

.quote-cart-icon-button:hover,
.quote-cart-detail-button:hover {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-1px);
}

.quote-cart-icon-button svg,
.quote-cart-detail-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-cart-detail-button {
  gap: 8px;
}

.access-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding-inline: 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 800;
}

.product-more {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 34px;
}

.product-more-message {
  width: min(100%, 620px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  text-align: center;
}

.product-more-message p {
  margin-bottom: 14px;
  color: var(--muted);
}

.document-box {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.document-box h3 {
  margin-bottom: 10px;
}

.document-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--green-800);
  font-weight: 800;
}

.document-link + .document-link {
  margin-top: 10px;
}

.document-link span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.keyword-capsule-box {
  margin-top: 24px;
}

.keyword-capsule-box > span {
  display: block;
  margin-bottom: 10px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.keyword-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-capsules a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #c8d8bf;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 13px;
  font-weight: 800;
}

.quote-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.quote-cart-list {
  display: grid;
  gap: 18px;
}

.quote-confirmation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid #c9dfbd;
  border-radius: var(--radius);
  background: var(--green-100);
}

.quote-confirmation p {
  margin: 0;
  color: var(--green-900);
}

.quote-confirmation strong {
  display: inline-block;
  margin-left: 6px;
}

.quote-cart-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 34, 20, 0.07);
}

.quote-cart-photo {
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-100);
}

.quote-cart-copy h2 {
  margin-bottom: 2px;
  font-size: 22px;
}

.quote-cart-copy p {
  margin-top: 0;
  color: var(--muted);
}

.quote-cart-copy label,
.quote-cart-message {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quote-cart-copy textarea,
.quote-cart-copy input,
.quote-cart-message textarea {
  width: 100%;
}

.quote-cart-copy input {
  max-width: 180px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quote-cart-copy textarea,
.quote-cart-message textarea {
  resize: vertical;
}

.quote-cart-remove {
  border: 0;
  background: transparent;
  color: #8a2424;
  cursor: pointer;
  font-weight: 800;
}

.quote-cart-message {
  margin-top: 22px;
}

.quote-cart-clear {
  margin-top: 16px;
}

.quote-cart-side {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.quote-cart-side p {
  color: var(--muted);
}

.quote-cart-side .quote-sign-button {
  color: #fff;
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(36, 75, 27, 0.96), rgba(47, 97, 35, 0.82)), url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.bottom-cta-inner {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 28px;
  align-items: center;
}

.bottom-cta h2,
.bottom-cta p {
  margin: 0;
}

.bottom-cta .button-light {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.bottom-cta .button-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-footer {
  background: #fbfaf5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1.1fr;
  gap: 54px;
  padding: 66px 0;
}

.footer-grid h3 {
  margin-bottom: 20px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li + li {
  margin-top: 10px;
}

.footer-grid a,
.contact-list,
.contact-list li {
  color: #3d453d;
  font-size: 14px;
}

.footer-contact-stack {
  display: grid;
  gap: 0;
}

.footer-contact-block strong,
.footer-contact-block a,
.footer-contact-block span {
  display: block;
}

.footer-contact-block strong {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0;
}

.footer-contact-block a + a {
  margin-top: 0;
}

.footer-about p {
  margin-top: 22px;
  color: var(--muted);
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom-inner {
  min-height: 58px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal-links a:hover {
  color: var(--green-800);
}

.page-hero {
  padding: 74px 0;
  background: linear-gradient(135deg, #fff 0%, #f2f6ee 100%);
}

.compact-hero {
  padding: 76px 0 66px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 60px;
  align-items: center;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.about-stats-hero {
  position: relative;
  overflow: hidden;
  padding: 126px 0 74px;
}

.about-stats-hero-inner {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-sedex-mark {
  position: absolute;
  top: 26px;
  left: max(20px, calc(50% - 430px));
  width: clamp(160px, 16vw, 190px);
  margin: 0;
}

.about-sedex-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.about-hero-stats-card {
  width: min(100%, 860px);
  min-height: 156px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  justify-items: center;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(24, 34, 20, 0.08);
  text-align: center;
  overflow: hidden;
}

.about-hero-stats-card > div {
  min-width: 0;
  width: 100%;
}

.about-hero-stats-card strong,
.about-hero-stats-card span {
  display: block;
}

.about-hero-stats-card strong {
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1;
  white-space: nowrap;
}

.about-hero-stats-card span {
  color: #050505;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.22;
}

.page-hero-photo {
  min-height: 330px;
}

.product-search {
  width: min(100%, 720px);
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 auto 16px;
  padding: 7px;
  border: 1px solid #dfe6d9;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(36, 75, 27, 0.08);
}

.product-search label {
  min-width: 0;
  flex: 1 1 auto;
}

.product-search label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.product-search input {
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  outline: 0;
}

.product-search .button {
  width: auto;
  min-height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: none;
}

.keyword-filter-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.keyword-filter-row a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.keyword-filter-row a:hover,
.keyword-filter-row a.is-active {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-800);
}

.detail-grid,
.content-grid,
.contact-grid,
.quote-layout,
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.about-content-single {
  max-width: 960px;
}

.about-content-single article {
  max-width: 900px;
}

.about-editorial-section {
  background: #fff;
}

.about-editorial {
  display: grid;
  gap: clamp(30px, 5vw, 58px);
}

.about-editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: center;
}

.about-editorial-cover,
.about-editorial-tile {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-100);
  box-shadow: 0 18px 38px rgba(24, 34, 20, 0.08);
}

.about-editorial-cover img,
.about-editorial-tile img,
.about-image-placeholder {
  width: 100%;
  aspect-ratio: var(--about-image-ratio, 4 / 3);
}

.about-editorial-cover img,
.about-editorial-tile img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed #b8c5ae;
  background:
    linear-gradient(135deg, rgba(237, 245, 232, 0.96), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(36, 75, 27, 0.06) 18px 36px);
  color: var(--green-900);
  font-weight: 800;
}

.about-editorial-cover {
  max-height: 460px;
}

.about-editorial-main {
  max-width: 640px;
}

.about-editorial-main h2,
.about-editorial-vision h2 {
  margin-bottom: 18px;
  color: var(--ink);
}

.about-editorial-main p:not(.eyebrow),
.about-editorial-vision p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.about-editorial-main {
  display: grid;
  gap: 18px;
}

.about-editorial-image-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
}

.about-editorial-tile {
  min-height: 240px;
}

.about-editorial-vision {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(26px, 4vw, 42px) 0 0;
  border-top: 1px solid #dfe8d8;
}

.about-editorial-vision div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 40px);
}

.about-editorial-vision p:first-child {
  color: var(--green-900);
  font-weight: 700;
}

.about-editorial-image-row .about-editorial-tile:nth-child(2) {
  transform: translateY(18px);
}

.about-profile-section {
  padding-top: clamp(48px, 7vw, 78px);
  background: linear-gradient(180deg, #fff 0%, #fbfaf5 100%);
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.about-profile-copy {
  max-width: 620px;
}

.about-profile-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
}

.about-profile-copy p:not(.eyebrow),
.about-story-copy p,
.about-showroom-copy p,
.about-section-lead p,
.about-collection-card p,
.about-process-step p {
  color: var(--muted);
}

.about-profile-copy p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.78;
}

.about-profile-media {
  position: relative;
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  min-height: auto;
}

.about-profile-sedex {
  width: min(360px, 58%);
  margin: 0;
}

.about-profile-sedex img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-profile-main-image,
.about-profile-small-image,
.about-story-image,
.about-showroom-image,
.about-collection-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-100);
  box-shadow: 0 20px 46px rgba(24, 34, 20, 0.1);
}

.about-profile-main-image {
  height: auto;
}

.about-profile-small-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 310px);
  aspect-ratio: 1.1 / 1;
  border: 8px solid #fff;
}

.about-profile-main-image img,
.about-profile-small-image img,
.about-story-image img,
.about-showroom-image img,
.about-collection-image img,
.about-profile-main-image .about-image-placeholder,
.about-profile-small-image .about-image-placeholder,
.about-story-image .about-image-placeholder,
.about-showroom-image .about-image-placeholder,
.about-collection-image .about-image-placeholder {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: var(--about-image-ratio, 4 / 3);
  object-fit: contain;
}

.about-fact-band {
  background: #fff;
}

.about-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid #dfe8d8;
}

.about-fact-item {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid #dfe8d8;
}

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

.about-fact-item strong,
.about-fact-item span {
  display: block;
}

.about-fact-item strong {
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.about-fact-item span {
  color: var(--muted);
  line-height: 1.45;
}

.about-story-section {
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.about-story-copy {
  min-width: 0;
  order: 2;
}

.about-story-copy h2,
.about-showroom-copy h2,
.about-section-lead h2 {
  margin-bottom: 16px;
}

.about-story-copy p,
.about-showroom-copy p,
.about-section-lead p {
  font-size: 16px;
  line-height: 1.78;
}

.about-strength-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-strength-list div {
  padding: 14px 16px;
  border-left: 3px solid var(--green-700);
  background: var(--soft);
  color: #344038;
  font-weight: 700;
}

.about-story-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  order: 1;
}

.about-story-image {
  min-height: 0;
}

.about-story-image:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 0;
}

.about-showroom {
  display: grid;
  gap: clamp(30px, 5vw, 48px);
}

.about-showroom-copy {
  max-width: 760px;
}

.about-showroom-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 26px);
  align-items: start;
}

.about-showroom-image {
  min-height: 0;
}

.about-showroom-image:nth-child(2) {
  transform: none;
}

.about-collections-layout,
.about-process-layout {
  display: grid;
  gap: clamp(30px, 5vw, 52px);
}

.about-section-lead {
  max-width: 780px;
}

.about-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 30px);
}

.about-collection-card {
  min-width: 0;
}

.about-collection-image {
  aspect-ratio: var(--about-image-ratio, 4 / 3);
  margin-bottom: 18px;
}

.about-collection-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.about-collection-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.about-process-section {
  padding-top: 0;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #dfe8d8;
  border: 1px solid #dfe8d8;
}

.about-process-step {
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
}

.about-process-step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  font-weight: 800;
}

.about-process-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.about-process-step p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.detail-photo {
  min-height: 420px;
}

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

.info-panel,
.account-exhibition-panel,
.contact-panel,
.quote-side,
.form-panel {
  padding: 30px;
}

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

.info-panel strong,
.info-panel span {
  display: block;
}

.info-panel strong {
  color: var(--green-800);
  font-size: 28px;
}

.account-greeting {
  color: var(--green-900);
  font-weight: 700;
}

.account-exhibition-panel {
  display: grid;
  gap: 13px;
}

.account-exhibition-panel .eyebrow,
.account-exhibition-panel h2,
.account-exhibition-panel p {
  margin: 0;
}

.account-exhibition-panel h2 {
  font-size: 24px;
}

.account-exhibition-panel p {
  color: var(--muted);
}

.account-exhibition-panel strong {
  color: var(--green-900);
}

.account-exhibition-panel .button {
  width: fit-content;
  margin-top: 6px;
}

.account-exhibition-media {
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-100);
}

.account-request-stack {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.account-request-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.account-request-head h2,
.account-request-head p {
  margin: 0;
}

.account-request-table-wrap {
  overflow-x: auto;
}

.account-request-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.account-request-table th,
.account-request-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.account-request-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.request-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 800;
}

.request-view-link {
  color: var(--green-800);
  font-weight: 800;
}

.account-request-message {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.account-request-message p {
  margin: 8px 0 0;
  color: var(--muted);
}

.account-request-thumb,
.account-request-no-image {
  width: 92px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--green-100);
  object-fit: cover;
}

.account-request-no-image {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

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

.contact-panel h3 {
  margin-bottom: 6px;
  color: var(--green-800);
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-detail + .contact-detail {
  margin-top: 20px;
}

.contact-detail p {
  margin: 0;
  color: var(--ink);
}

.contact-detail p + p {
  margin-top: 4px;
}

.company-photo-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px dashed #b9c7b0;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(237, 245, 232, 0.92), rgba(240, 235, 226, 0.88)),
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(36, 75, 27, 0.05) 16px 32px);
  box-shadow: var(--shadow);
  color: var(--green-900);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  text-align: center;
}

.company-photo {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.company-photo img {
  min-height: 430px;
}

.quote-login-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #d9e5d0;
  border-radius: 5px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.exhibition-section + .exhibition-section {
  margin-top: clamp(58px, 8vw, 92px);
}

.exhibition-section-heading {
  max-width: 760px;
  margin: 0 0 28px;
}

.exhibition-section-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.past-exhibition-carousel {
  position: relative;
  max-width: 1180px;
  margin-top: 28px;
}

.past-exhibition-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.past-exhibition-carousel-track {
  display: flex;
  transition: transform 500ms ease;
}

.past-exhibition-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 8.5;
  margin: 0;
  overflow: hidden;
  background-color: var(--green-900);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='130' viewBox='0 0 250 130'%3E%3Ctext x='20' y='82' transform='rotate(-24 20 82)' fill='%23fff' fill-opacity='.2' font-family='Arial,sans-serif' font-size='22' font-weight='700' letter-spacing='2'%3ENEWGARDEN%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
}

.past-exhibition-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.past-exhibition-slide figcaption {
  position: absolute;
  top: clamp(14px, 2vw, 24px);
  left: clamp(14px, 2vw, 24px);
  max-width: calc(100% - 92px);
  padding: 9px 14px;
  border-radius: 4px;
  color: #fff;
  background: rgba(5, 5, 5, 0.78);
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.past-exhibition-carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(5, 5, 5, 0.7);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.past-exhibition-carousel-button:hover,
.past-exhibition-carousel-button:focus-visible {
  background: var(--green-900);
  transform: translateY(-50%) scale(1.06);
}

.past-exhibition-carousel-button span {
  margin-top: -4px;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.past-exhibition-carousel-button.is-previous {
  left: 18px;
}

.past-exhibition-carousel-button.is-next {
  right: 18px;
}

.past-exhibition-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-top: 18px;
}

.past-exhibition-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b8c5ae;
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.past-exhibition-carousel-dots button[aria-current="true"] {
  width: 28px;
  border-radius: 999px;
  background: var(--green-800);
}

@media (prefers-reduced-motion: reduce) {
  .past-exhibition-carousel-track,
  .past-exhibition-carousel-button,
  .past-exhibition-carousel-dots button {
    transition: none;
  }
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 72px) clamp(34px, 5vw, 76px);
}

.exhibition-card {
  min-width: 0;
  text-align: center;
}

.exhibition-media {
  position: relative;
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--warm), var(--green-100));
}

.exhibition-media img {
  object-fit: cover;
}

.exhibition-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  border: 1px dashed #b8c5ae;
  background:
    linear-gradient(135deg, rgba(237, 245, 232, 0.96), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(36, 75, 27, 0.06) 18px 36px);
  color: var(--green-900);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.exhibition-detail-cover .exhibition-placeholder,
.exhibition-detail-image .exhibition-placeholder {
  min-height: 360px;
}

.exhibition-action {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px 12px;
  color: #fff;
  background: #050505;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

a.exhibition-action {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.exhibition-copy {
  padding-top: 18px;
}

.exhibition-copy h2 {
  margin-bottom: 2px;
  font-size: 23px;
  line-height: 1.12;
  text-transform: uppercase;
}

.exhibition-copy p {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.exhibition-schedule {
  margin-top: 18px;
}

.exhibition-detail-hero {
  background: linear-gradient(135deg, #fff 0%, #f2f6ee 100%);
}

.exhibition-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.exhibition-detail-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.exhibition-detail-cover {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-100);
  box-shadow: var(--shadow);
}

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

.exhibition-detail-meta {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.exhibition-detail-meta div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.exhibition-detail-meta span,
.exhibition-detail-meta strong {
  display: block;
}

.exhibition-detail-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.exhibition-detail-meta strong {
  margin-top: 4px;
  color: var(--ink);
}

.exhibition-detail-content {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.exhibition-detail-side {
  position: sticky;
  top: 108px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 34, 20, 0.07);
}

.exhibition-detail-side h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.exhibition-detail-side .button {
  margin-top: 22px;
}

.exhibition-detail-article {
  min-width: 0;
}

.exhibition-detail-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-100);
  box-shadow: var(--shadow);
}

.exhibition-detail-image.is-gallery {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.exhibition-detail-image.is-gallery img {
  height: clamp(220px, 24vw, 360px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.exhibition-detail-text {
  max-width: 820px;
  margin-top: 30px;
}

.exhibition-detail-text p {
  color: var(--muted);
  font-size: 17px;
}

.empty-state {
  max-width: 680px;
  margin-inline: auto;
  padding: 46px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.empty-state p {
  color: var(--muted);
}

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

.process-step {
  padding: 28px;
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--green-800);
  font-weight: 800;
}

.simple-split {
  grid-template-columns: 0.9fr 1.1fr;
}

.factory-intro-grid {
  align-items: center;
}

.factory-intro-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
}

.factory-intro-copy p {
  color: var(--muted);
}

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

.factory-gallery {
  grid-template-columns: 1.2fr 1fr 1fr;
}

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

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

.factory-cover {
  overflow: hidden;
  padding: clamp(58px, 8vw, 92px) 0 clamp(44px, 7vw, 74px);
  background:
    linear-gradient(130deg, rgba(247, 248, 244, 0.94) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(237, 245, 232, 0.84) 100%);
}

.factory-cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.factory-cover-copy {
  max-width: 640px;
}

.factory-cover-copy h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(40px, 5.6vw, 70px);
  line-height: 1;
}

.factory-cover-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #394139;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.78;
}

.factory-cover-media {
  position: relative;
  min-height: clamp(430px, 48vw, 640px);
}

.factory-cover-image,
.factory-cover-thumbs figure,
.factory-story-image,
.factory-story-secondary,
.factory-detail-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-100);
  box-shadow: 0 24px 54px rgba(24, 34, 20, 0.12);
}

.factory-cover-image {
  height: clamp(380px, 44vw, 600px);
}

.factory-cover-thumbs {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: -28px;
  width: min(56%, 390px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.factory-cover-thumbs figure {
  position: relative;
  aspect-ratio: 1.15 / 1;
  border: 6px solid #fff;
}

.factory-cover-thumbs figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  border-radius: 5px;
  color: #fff;
  background: rgba(23, 27, 29, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.factory-stat-band {
  padding-block: clamp(34px, 5vw, 56px);
  background: #fff;
}

.factory-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid #dfe8d8;
}

.factory-stat-item {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid #dfe8d8;
}

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

.factory-stat-item strong,
.factory-stat-item span {
  display: block;
}

.factory-stat-item strong {
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1;
}

.factory-stat-item span {
  color: var(--muted);
  font-size: 15px;
}

.factory-process-section {
  background: #fff;
}

.factory-process-head {
  max-width: 760px;
  margin-bottom: clamp(38px, 6vw, 72px);
  text-align: center;
}

.factory-process-head h2 {
  margin-bottom: 14px;
}

.factory-process-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.factory-story-stack {
  display: grid;
  gap: clamp(58px, 8vw, 104px);
}

.factory-story {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.factory-story.is-reversed {
  grid-template-columns: minmax(0, 1.26fr) minmax(0, 0.74fr);
}

.factory-story.is-reversed .factory-story-copy {
  order: 2;
}

.factory-story.is-reversed .factory-story-media {
  order: 1;
}

.factory-story-copy {
  min-width: 0;
}

.factory-story-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.factory-story-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.3vw, 42px);
}

.factory-story-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.factory-story-media {
  position: relative;
  min-width: 0;
}

.factory-story-image {
  height: clamp(320px, 38vw, 510px);
}

.factory-story-media.has-secondary {
  padding-bottom: clamp(72px, 10vw, 116px);
}

.factory-story-secondary {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 0;
  width: min(48%, 330px);
  aspect-ratio: 1.18 / 1;
  border: 8px solid #fff;
}

.factory-story.is-reversed .factory-story-secondary {
  right: auto;
  left: clamp(18px, 4vw, 54px);
}

.factory-detail-section {
  background: linear-gradient(180deg, #fbfaf5, #fff);
}

.factory-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.factory-detail-copy {
  position: sticky;
  top: 126px;
}

.factory-detail-copy h2 {
  margin-bottom: 16px;
}

.factory-detail-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
}

.factory-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 38px);
  align-items: start;
}

.factory-detail-card {
  min-width: 0;
}

.factory-detail-card:nth-child(2) {
  padding-top: clamp(48px, 6vw, 86px);
}

.factory-detail-card figure {
  aspect-ratio: 1 / 1.08;
}

.factory-detail-card:nth-child(1) figure {
  aspect-ratio: 1 / 1.16;
}

.factory-detail-card:nth-child(2) figure {
  aspect-ratio: 1 / 1.06;
}

.factory-detail-card h3 {
  margin: 18px 0 7px;
  font-size: 20px;
}

.factory-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.factory-cta-strip {
  padding-block: clamp(48px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(36, 75, 27, 0.96), rgba(36, 75, 27, 0.82)),
    url("../../images/factory/factory06.webp") center / cover;
}

.factory-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.factory-cta-strip .eyebrow,
.factory-cta-strip h2,
.factory-cta-strip p {
  margin: 0;
}

.factory-cta-strip .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.factory-cta-strip p {
  color: rgba(255, 255, 255, 0.86);
}

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

.news-card {
  padding: 30px;
}

.news-card time {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 800;
}

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

.news-card a {
  color: var(--green-800);
  font-weight: 800;
}

.form-panel {
  display: grid;
  gap: 16px;
}

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

.form-panel label {
  display: grid;
  gap: 7px;
  color: #323832;
  font-size: 14px;
  font-weight: 700;
}

.form-panel input,
.form-panel textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #d9ddd4;
  border-radius: 5px;
  font: inherit;
}

.form-panel textarea {
  resize: vertical;
}

.contact-panel p,
.quote-side p {
  color: var(--muted);
}

.mini-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.mini-feature + .mini-feature {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.mini-feature .line-icon {
  margin: 0;
}

@media (max-width: 1280px) {
  .quote-button {
    display: none;
  }
}

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

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

  .bottom-cta-inner,
  .factory-cta-inner {
    grid-template-columns: 1fr;
    padding-block: 32px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 34px rgba(0, 0, 0, 0.08);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero {
    background: #fff;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 290px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), #fff);
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    padding: 36px 0 56px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-stats,
  .split-grid,
  .detail-grid,
  .content-grid,
  .contact-grid,
  .quote-layout,
  .quote-cart-layout,
  .account-grid,
  .form-grid,
  .page-hero-grid,
  .about-editorial-intro,
  .about-editorial-vision,
  .about-editorial-vision div,
  .about-profile,
  .about-story-grid,
  .exhibition-detail-grid,
  .exhibition-detail-content,
  .factory-cover-grid,
  .factory-detail-layout,
  .factory-reflow,
  .factory-hero-layout,
  .factory-story,
  .factory-story.is-reversed,
  .simple-split {
    grid-template-columns: 1fr;
  }

  .about-editorial-image-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .factory-reflow-copy {
    max-width: none;
  }

  .factory-cover-media {
    min-height: auto;
  }

  .factory-cover-image {
    height: clamp(330px, 58vw, 500px);
  }

  .factory-cover-thumbs {
    position: relative;
    right: auto;
    bottom: auto;
    width: 78%;
    margin: -42px 0 0 auto;
  }

  .factory-detail-copy {
    position: static;
  }

  .about-editorial-image-row .about-editorial-tile:nth-child(2) {
    transform: none;
  }

  .about-profile-media {
    min-height: auto;
  }

  .about-profile-main-image {
    height: auto;
  }

  .about-profile-small-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(72%, 320px);
    margin: -54px 0 0 auto;
  }

  .category-grid,
  .feature-grid,
  .process-grid,
  .news-grid,
  .about-fact-grid,
  .about-story-gallery,
  .about-collection-grid,
  .about-process-grid,
  .factory-gallery,
  .factory-capability-grid,
  .factory-detail-gallery,
  .exhibition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-showroom-image:nth-child(2) {
    transform: none;
  }

  .page-hero {
    padding: 54px 0;
  }

  .exhibition-detail-side {
    position: static;
  }

  .factory-story.is-reversed .factory-story-copy,
  .factory-story.is-reversed .factory-story-media {
    order: initial;
  }
}

@media (max-width: 620px) {
  .past-exhibition-slide {
    aspect-ratio: 4 / 3;
  }

  .past-exhibition-carousel-button {
    width: 38px;
    height: 38px;
  }

  .past-exhibition-carousel-button.is-previous {
    left: 10px;
  }

  .past-exhibition-carousel-button.is-next {
    right: 10px;
  }

  .past-exhibition-carousel-button span {
    font-size: 34px;
  }

  .about-stats-hero {
    padding: 44px 0 58px;
  }

  .about-sedex-mark {
    position: relative;
    top: auto;
    left: auto;
    width: min(180px, 60vw);
    margin: 0 auto 18px;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-contact {
    justify-content: center;
  }

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

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

  .header-brand .brand-logo {
    width: 120px;
  }

  .hero-actions,
  .account-request-head,
  .quote-confirmation,
  .product-search {
    align-items: stretch;
    flex-direction: column;
  }

  .product-search {
    border-radius: var(--radius);
    padding: 10px;
  }

  .product-search .button {
    width: 100%;
  }

  .keyword-filter-row {
    justify-content: flex-start;
  }

  .button,
  .quote-button {
    width: 100%;
  }

  .hero-stats,
  .about-hero-stats-card,
  .about-editorial-image-row,
  .about-editorial-vision,
  .about-editorial-vision div,
  .about-fact-grid,
  .about-story-gallery,
  .about-showroom-strip,
  .about-collection-grid,
  .about-process-grid,
  .category-grid,
  .feature-grid,
  .product-grid,
  .process-grid,
  .news-grid,
  .footer-grid,
  .factory-reflow-gallery,
  .factory-gallery,
  .factory-capability-grid,
  .factory-stat-grid,
  .factory-cover-thumbs,
  .factory-detail-gallery,
  .exhibition-grid,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .factory-cover {
    padding-top: 44px;
  }

  .factory-cover-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .factory-cover-thumbs {
    width: 100%;
    margin-top: 14px;
  }

  .factory-cover-thumbs figure {
    aspect-ratio: 1.5 / 1;
  }

  .factory-stat-grid {
    border-bottom: 0;
  }

  .factory-stat-item,
  .about-fact-item {
    border-right: 0;
    border-bottom: 1px solid #dfe8d8;
  }

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

  .about-profile-section {
    padding-top: 44px;
  }

  .about-profile-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .about-profile-small-image {
    width: 100%;
    margin-top: 14px;
    border-width: 0;
    aspect-ratio: 1.45 / 1;
  }

  .about-story-image,
  .about-story-image:first-child,
  .about-showroom-image {
    min-height: 0;
  }

  .factory-reflow-hero-image,
  .factory-hero-image,
  .factory-story-image {
    height: 260px;
    min-height: 260px;
  }

  .factory-story-media.has-secondary {
    padding-bottom: 0;
  }

  .factory-story-secondary {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
    border-width: 0;
    aspect-ratio: 1.5 / 1;
  }

  .factory-detail-card:nth-child(2) {
    padding-top: 0;
  }

  .factory-detail-card figure,
  .factory-detail-card:nth-child(1) figure,
  .factory-detail-card:nth-child(2) figure {
    aspect-ratio: 1.35 / 1;
  }

  .factory-reflow-gallery figure {
    min-height: 260px;
  }

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

  .factory-stack {
    grid-template-columns: 1fr;
  }

  .bottom-cta-inner {
    text-align: left;
  }

  .quote-cart-item {
    grid-template-columns: 1fr;
  }

  .quote-cart-remove {
    justify-self: start;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 16px;
  }
}
