:root {
  color-scheme: light;
  --bg: #f5f6f4;
  --ink: #171a1f;
  --muted: #64707d;
  --line: #d8ddd9;
  --paper: #ffffff;
  --forest: #1e5f4e;
  --forest-dark: #17483d;
  --brass: #bd8b2f;
  --brick: #9a3e2e;
  --charcoal: #27313a;
  --sage: #e9eee8;
  --warm: #f8f3eb;
  --shadow-soft: 0 18px 44px rgba(28, 39, 42, 0.1);
  --shadow-hover: 0 24px 56px rgba(28, 39, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8f9f6 0, var(--bg) 520px),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(28, 39, 42, 0.06);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.language-switch,
.hero-actions,
.form-footer,
.site-footer,
.admin-head {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(30, 95, 78, 0.22);
}

.nav {
  gap: 4px;
  min-width: 0;
}

.nav a {
  flex: 0 0 auto;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}

.nav a:hover {
  color: var(--ink);
  background: #eef1ed;
}

.language-switch {
  min-height: 38px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.language-switch button {
  min-width: 54px;
  border: 0;
  padding: 0 12px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.language-switch button.active {
  color: #fff;
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 18, 18, 0.88), rgba(16, 20, 20, 0.58) 48%, rgba(16, 20, 20, 0.12)),
    linear-gradient(0deg, rgba(16, 20, 20, 0.38), transparent 38%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100vw - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: 96px 0 130px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1;
  max-width: 820px;
}

h2 {
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 14px 28px rgba(30, 95, 78, 0.24);
}

.button.primary:hover {
  background: var(--forest-dark);
}

.button.light {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.secondary-button {
  color: var(--forest-dark);
  background: #eff5f2;
  border-color: #cbdcd4;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -74px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100vw - 40px));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.proof-strip div {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-top: 4px solid transparent;
}

.proof-strip div:nth-child(1) {
  border-top-color: var(--forest);
}

.proof-strip div:nth-child(2) {
  border-top-color: var(--brass);
}

.proof-strip div:nth-child(3) {
  border-top-color: var(--brick);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span,
.capability-list strong,
.capability-list span,
.service-grid strong,
.service-grid span,
.site-footer strong,
.site-footer span,
td span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-strip span,
.product-card p,
.product-card li,
.service-grid span,
.capability-list span,
dd,
.site-footer span,
td span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1160px, calc(100vw - 40px));
  margin: 96px auto;
}

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

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

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

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 39, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #c6d2cb;
  box-shadow: var(--shadow-hover);
}

.product-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-photo {
  transform: scale(1.035);
}

.product-body {
  padding: 22px;
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.tag-list span {
  padding: 6px 9px;
  color: var(--forest-dark);
  background: #e9f1ed;
  border: 1px solid #d7e5dd;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

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

.body-selection-grid article {
  min-height: 280px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 39, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.body-selection-grid article:hover,
.spec-grid article:hover,
.facility-grid article:hover,
.qc-grid article:hover,
.order-grid article:hover,
.advantage-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.shape-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.shape-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--forest-dark);
  background: #e9f1ed;
  border: 1px solid #d3e3da;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.body-selection-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.spec-grid,
.qc-grid {
  display: grid;
  gap: 14px;
}

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

.spec-grid article,
.qc-grid article,
.order-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28, 39, 42, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.spec-grid article {
  padding: 24px;
}

.spec-grid h3 {
  margin-bottom: 18px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.band {
  width: 100%;
  padding: 84px max(20px, calc((100vw - 1160px) / 2));
  background: linear-gradient(180deg, #edf1eb, #e5ebe5);
  border-block: 1px solid #dce4dc;
}

.about-section {
  margin-top: 72px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.about-copy,
.about-stats {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 39, 42, 0.05);
}

.about-copy {
  padding: 32px;
}

.about-copy p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
}

.about-stats div {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(30, 95, 78, 0.05), transparent);
}

.about-stats div:last-child {
  border-bottom: 0;
}

.about-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-dark);
  font-size: 28px;
}

.about-stats span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

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

.service-grid article,
.facility-grid article,
.order-grid article,
.qc-grid article,
.capability-list div,
.spec-panel,
.quote-guide,
.admin-login,
.admin-table {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28, 39, 42, 0.045);
}

.service-grid article {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.service-grid article:nth-child(5),
.service-grid article:nth-child(6) {
  background: #fbfcfa;
}

.service-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--forest);
}

.service-grid strong,
.facility-grid strong,
.order-grid strong {
  margin-bottom: 8px;
}

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

.facility-grid article {
  min-height: 180px;
  padding: 22px;
}

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

.facility-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.factory-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.video-copy {
  padding: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.video-copy p,
.video-copy li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.video-copy ul {
  margin-top: 18px;
}

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

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

.qc-grid article {
  min-height: 170px;
  padding: 22px;
}

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

.qc-grid strong {
  margin-bottom: 8px;
}

.qc-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.order-grid article {
  min-height: 210px;
  padding: 22px;
}

.order-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.order-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  margin-top: 14px;
  padding: 22px;
}

.order-note strong {
  color: var(--forest-dark);
}

.order-note span {
  color: var(--muted);
  line-height: 1.6;
}

.factory-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.gallery-main,
.gallery-stack img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(28, 39, 42, 0.08);
}

.gallery-main {
  height: 520px;
}

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

.gallery-stack img {
  height: 251px;
}

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

.advantage-grid article {
  min-height: 260px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.advantage-grid article::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  background: var(--brass);
}

.advantage-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--brass);
  font-size: 14px;
  font-weight: 900;
}

.advantage-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.advantage-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.capability-list {
  display: grid;
  gap: 12px;
}

.capability-list div {
  padding: 20px;
}

.capability-list strong {
  margin-bottom: 6px;
}

.spec-panel {
  padding: 24px;
  background: var(--warm);
}

dl,
dd {
  margin: 0;
}

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

dt {
  margin-bottom: 4px;
  font-weight: 850;
}

.inquiry-section {
  margin-bottom: 56px;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

.inquiry-form {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

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

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

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30, 95, 78, 0.14);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 850;
}

.product-choice-field {
  grid-column: 1 / -1;
}

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

.product-choice {
  position: relative;
  display: grid;
  gap: 0;
  overflow: hidden;
  min-height: 190px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(28, 39, 42, 0.08);
}

.product-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.product-choice img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-choice span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.product-choice:has(input:checked) {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30, 95, 78, 0.16);
}

.product-choice:has(input:checked)::after {
  content: "Selected";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 9px;
  color: #fff;
  background: var(--forest);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.message-label {
  margin-top: 16px;
}

.form-footer {
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.form-footer p {
  margin: 0;
  color: var(--forest-dark);
  font-weight: 800;
}

.quote-guide {
  padding: 24px;
  background: var(--warm);
}

.quote-guide ul {
  margin-bottom: 22px;
}

.quote-guide li {
  color: var(--muted);
  line-height: 1.5;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.contact-card span {
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--charcoal), #17231f);
}

.site-footer a {
  color: #fff;
  font-weight: 850;
}

.admin-page {
  background: #eef0ed;
}

.admin-shell {
  width: min(1500px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.admin-head {
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-head h1 {
  font-size: 38px;
  line-height: 1.1;
}

.admin-actions,
.admin-filters,
.quick-links,
.action-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.admin-summary div {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(28, 39, 42, 0.045);
}

.admin-summary strong,
.admin-summary span {
  display: block;
}

.admin-summary strong {
  margin-bottom: 6px;
  color: var(--forest-dark);
  font-size: 26px;
}

.admin-summary span {
  color: var(--muted);
}

.admin-filters {
  margin-bottom: 14px;
}

.admin-filters a,
.quick-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 11px;
  color: var(--forest-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.admin-filters a.active {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.admin-login {
  max-width: 420px;
  padding: 24px;
}

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

.admin-table {
  overflow-x: auto;
}

.follow-form {
  display: grid;
  min-width: 280px;
  gap: 10px;
}

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

.follow-form textarea {
  min-height: 88px;
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: #fff;
  background: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.status-new {
  background: var(--forest);
}

.status-contacted {
  background: #255eaa;
}

.status-quoted {
  background: var(--brass);
}

.status-sample-sent {
  background: #6b4ea0;
}

.status-order-won {
  background: #16805d;
}

.status-no-fit {
  background: #8b4b42;
}

.action-stack {
  min-width: 160px;
  flex-direction: column;
}

.action-stack span {
  color: var(--muted);
  font-size: 13px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

td p {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.empty {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .language-switch {
    width: 118px;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background: rgba(15, 17, 18, 0.62);
  }

  .hero-overlay {
    margin-left: 20px;
    padding-top: 72px;
  }

  .proof-strip,
  .product-grid,
  .body-selection-grid,
  .spec-grid,
  .split,
  .about-layout,
  .service-grid,
  .facility-grid,
  .order-grid,
  .qc-grid,
  .order-note,
  .admin-summary,
  .factory-layout,
  .video-layout,
  .gallery-layout,
  .advantage-grid,
  .inquiry-layout,
  .field-grid,
  .product-choice-grid {
    grid-template-columns: 1fr;
  }

  .section-head-row {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    margin: 64px auto;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .gallery-main,
  .gallery-stack img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .form-footer,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}
