:root {
  --ink: #111312;
  --charcoal: #1b1f1d;
  --graphite: #2a2f2c;
  --metal: #7b817a;
  --olive: #485b3f;
  --ranger: #607052;
  --sand: #c5ad82;
  --bone: #f3efe6;
  --paper: #faf8f1;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(17, 19, 18, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 15, 14, 0.88), rgba(13, 15, 14, 0.2));
  transition: background 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background: rgba(17, 19, 18, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 173, 130, 0.7);
  background: rgba(72, 91, 63, 0.72);
  color: var(--sand);
  font-weight: 800;
}

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

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 14px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(197, 173, 130, 0.58);
  background: rgba(197, 173, 130, 0.1);
  color: #fff !important;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.language-select select {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.language-select option {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-bg {
  background-image: url("../assets/images/haixiao-hero-production-workshop.png");
  background-size: cover;
  background-position: 58% center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.96) 0%, rgba(8, 10, 9, 0.84) 32%, rgba(8, 10, 9, 0.34) 70%, rgba(8, 10, 9, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 10, 9, 0.15), rgba(8, 10, 9, 0.72));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 136px 0 70px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 18px 0 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  width: min(720px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2.2vw, 22px);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--sand);
  color: #151713;
  border-color: var(--sand);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin-top: 58px;
  border: 1px solid var(--line);
  background: rgba(14, 16, 15, 0.62);
  backdrop-filter: blur(14px);
}

.hero-metrics div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 24px;
}

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

.language-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.52fr) minmax(0, 1fr);
  gap: 18px;
  width: min(980px, 100%);
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(197, 173, 130, 0.26);
  background: rgba(17, 19, 18, 0.66);
  backdrop-filter: blur(14px);
}

.language-strip-copy span,
.language-strip-copy strong,
.language-strip-copy small {
  display: block;
}

.language-strip-copy span {
  color: var(--sand);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.language-strip-copy strong {
  margin-top: 4px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.language-strip-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.45;
}

.language-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.language-chip {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
}

.language-chip:hover,
.language-chip.is-active {
  border-color: rgba(197, 173, 130, 0.66);
  background: rgba(197, 173, 130, 0.13);
  color: #fff;
}

.language-chip strong {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(197, 173, 130, 0.18);
  color: var(--sand);
  font-size: 11px;
}

.language-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.intro-band,
.process-section {
  background: var(--charcoal);
  color: #fff;
}

.intro-grid,
.manufacturing-grid,
.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.intro-grid p,
.section-head p,
.about-copy p,
.contact-copy p {
  color: rgba(17, 19, 18, 0.68);
  font-size: 17px;
}

.intro-band p,
.manufacturing p {
  color: rgba(255, 255, 255, 0.7);
}

.section-head {
  width: min(780px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

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

.section-head.compact {
  margin-bottom: 32px;
}

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

.materials-section {
  background:
    linear-gradient(180deg, rgba(22, 25, 23, 0.98) 0%, rgba(17, 19, 18, 0.98) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 10px, transparent 10px 20px);
}

.materials-section .section-head p,
.materials-section .section-kicker,
.materials-section h2 {
  color: #fff;
}

.materials-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

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

.materials-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

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

.swatch-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(17, 19, 18, 0.65);
}

.swatch-chip {
  width: 100%;
  height: 34px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.swatch-card strong {
  color: #fff;
  font-size: 12px;
}

.materials-metrics {
  display: grid;
  gap: 10px;
}

.materials-metric {
  padding: 12px 14px;
  border-left: 2px solid var(--sand);
  background: rgba(17, 19, 18, 0.72);
}

.materials-metric strong,
.materials-metric span {
  display: block;
}

.materials-metric strong {
  color: #fff;
  font-size: 16px;
}

.materials-metric span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

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

.materials-card {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.materials-card h3 {
  margin-top: 18px;
  color: #fff;
}

.materials-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.feature-card,
.scene-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fffdfa;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-code {
  color: var(--olive);
  font-weight: 800;
  font-size: 14px;
}

.feature-card p,
.scene-grid p {
  margin: 0;
  color: rgba(17, 19, 18, 0.64);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  counter-increment: step;
  position: relative;
  min-height: 112px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.process-list li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 18px;
  color: var(--sand);
  font-weight: 800;
}

.process-list span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.scene-grid article {
  background:
    linear-gradient(145deg, rgba(72, 91, 63, 0.08), rgba(197, 173, 130, 0.08)),
    #fffdfa;
}

.product-systems {
  background:
    linear-gradient(180deg, rgba(244, 240, 231, 0.92), rgba(255, 253, 250, 1)),
    repeating-linear-gradient(90deg, rgba(17, 19, 18, 0.03) 0 1px, transparent 1px 72px);
}

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

.product-system-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(17, 19, 18, 0.16);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 0 18px 46px rgba(31, 34, 30, 0.1);
}

.product-system-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #20241f;
}

.product-system-card > :not(.product-system-image) {
  margin-right: 24px;
  margin-left: 24px;
}

.product-system-card > :last-child {
  margin-bottom: 24px;
}

.product-system-top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.product-system-top span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(72, 91, 63, 0.35);
  color: var(--olive);
  font-weight: 900;
}

.product-system-card h3 {
  margin: 0;
  font-size: 21px;
}

.product-system-card p {
  margin: 0;
  color: rgba(17, 19, 18, 0.66);
}

.product-tags {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 19, 18, 0.1);
}

.product-tags strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(72, 91, 63, 0.16);
  border-radius: 4px;
  background: rgba(72, 91, 63, 0.08);
  color: rgba(17, 19, 18, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.manufacturing,
.quality {
  background: #151816;
  color: #fff;
}

.capability-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.capability-panel div {
  min-height: 142px;
  padding: 26px;
  background: #20241f;
}

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

.capability-panel strong {
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}

.capability-panel span {
  color: rgba(255, 255, 255, 0.64);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--sand);
  font-weight: 800;
  border-bottom: 1px solid rgba(197, 173, 130, 0.5);
}

.factory-gallery {
  background:
    linear-gradient(180deg, rgba(72, 91, 63, 0.08), rgba(17, 19, 18, 0)),
    #f4f0e7;
}

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

.factory-card {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 18, 0.14);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 0 22px 52px rgba(31, 34, 30, 0.12);
}

.factory-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #20241f;
}

.factory-card-body {
  padding: clamp(20px, 3vw, 28px);
}

.factory-card-body p {
  margin-bottom: 0;
  color: rgba(17, 19, 18, 0.64);
}

.blog-section {
  background: #fffdfa;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 18, 0.14);
  border-radius: var(--radius);
  background: #f8f5ee;
  box-shadow: 0 18px 42px rgba(31, 34, 30, 0.08);
}

.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #20241f;
}

.blog-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.blog-card h3,
.blog-card p {
  margin: 0;
}

.blog-card p {
  color: rgba(17, 19, 18, 0.68);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card details {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 19, 18, 0.1);
}

.blog-card summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.blog-card details p {
  margin-top: 12px;
}

.quality .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

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

.quality-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.quality-item span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--sand);
}

.about {
  background:
    linear-gradient(90deg, rgba(72, 91, 63, 0.11), rgba(255, 255, 255, 0)),
    var(--paper);
}

.about-copy p:first-child {
  margin-top: 0;
}

.contact-section {
  background: #d5c6aa;
}

.contact-copy {
  position: sticky;
  top: 100px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  padding: 8px 12px;
  border: 1px solid rgba(17, 19, 18, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.32);
  font-size: 13px;
  font-weight: 700;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 0 24px 60px rgba(55, 48, 35, 0.2);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(17, 19, 18, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 19, 18, 0.15);
  border-radius: 4px;
  padding: 11px 12px;
  background: #f8f5ed;
  color: var(--ink);
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(72, 91, 63, 0.13);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(17, 19, 18, 0.55);
  font-size: 13px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(17, 19, 18, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.form-consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--olive);
}

.form-consent a {
  color: var(--olive);
  font-weight: 800;
  border-bottom: 1px solid rgba(72, 91, 63, 0.35);
}

.site-footer {
  background: #fff;
  color: #141a1c;
  border-top: 1px solid rgba(15, 38, 23, 0.08);
}

.footer-accent {
  height: 10px;
  background: #0e4aa8;
}

.footer-shell {
  padding: 64px 0 48px;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  align-items: center;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #111719;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.social-mark {
  display: inline-grid;
  position: relative;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  color: #2f96ff;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
}

.social-mark-linkedin::before {
  content: "in";
  font-size: 37px;
  letter-spacing: 0;
}

.social-mark-facebook::before {
  content: "f";
  font-size: 52px;
  font-family: Arial, sans-serif;
}

.social-mark-youtube {
  width: 48px;
  min-width: 48px;
  height: 34px;
  color: #fff;
  background: #2f96ff;
  border-radius: 7px;
  font-size: 18px;
}

.social-mark-youtube::before {
  content: "▶";
  transform: translateX(1px);
}

.social-mark-instagram {
  border: 4px solid #2f96ff;
  border-radius: 12px;
  font-size: 0;
}

.social-mark-instagram::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 4px solid #2f96ff;
  border-radius: 50%;
}

.social-mark-instagram::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  margin: -18px -18px 0 0;
  border-radius: 50%;
  background: #2f96ff;
}

.social-mark-x::before {
  content: "X";
  font-size: 48px;
  font-weight: 500;
}

.social-mark-douyin::before {
  content: "♪";
  font-size: 54px;
}

.footer-rule {
  height: 1px;
  margin: 48px 0;
  background: rgba(20, 26, 28, 0.1);
}

.footer-home {
  margin-bottom: 62px;
  font-size: 20px;
  font-weight: 900;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 1.2fr;
  gap: 72px;
}

.footer-column h3 {
  margin: 0 0 34px;
  color: #12191c;
  font-size: 21px;
  font-weight: 900;
}

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

.footer-column li {
  color: #182023;
  font-size: 18px;
  line-height: 1.35;
}

.footer-search div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-search span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid #222b2f;
  border-radius: 999px;
  color: #172024;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 36px;
}

.footer-bottom p {
  margin: 0;
  color: #172024;
  font-size: 18px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.footer-legal a {
  color: #172024;
  font-size: 17px;
  line-height: 1.5;
}

.footer-legal a + a::before {
  content: "/";
  display: inline-block;
  margin: 0 16px;
  color: #172024;
}

.legal-page {
  min-height: 100vh;
  background: #151816;
  color: #f4f1ea;
}

.legal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 18, 17, 0.94);
}

.legal-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-nav nav a {
  color: rgba(244, 241, 234, 0.72);
  font-size: 13px;
}

.legal-main {
  padding: 80px 0 96px;
  background:
    linear-gradient(135deg, rgba(72, 91, 63, 0.22), rgba(16, 18, 17, 0) 36%),
    #151816;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 44px;
  align-items: start;
}

.legal-hero {
  position: sticky;
  top: 110px;
}

.legal-hero h1 {
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
}

.legal-hero p {
  margin: 0;
  max-width: 520px;
  color: rgba(244, 241, 234, 0.72);
  font-size: 17px;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-section {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.legal-section h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
}

.legal-section p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
}

.legal-cta {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding: 22px 0 0;
}

.legal-cta strong {
  color: #fff;
}

.launch-layout {
  display: grid;
  gap: 24px;
}

.launch-hero-panel {
  padding: 38px 0 14px;
}

.launch-hero-panel h1 {
  max-width: 900px;
  margin: 12px 0 16px;
  color: #fff;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.94;
}

.launch-hero-panel p {
  max-width: 760px;
  color: rgba(244, 241, 234, 0.72);
  font-size: 18px;
}

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

.launch-summary-grid div,
.launch-url-panel,
.launch-locale-panel,
.launch-check,
.launch-next-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.launch-summary-grid div {
  padding: 18px;
}

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

.launch-summary-grid strong {
  color: #fff;
  font-size: 28px;
}

.launch-summary-grid span {
  color: rgba(244, 241, 234, 0.62);
  font-size: 13px;
}

.launch-url-panel,
.launch-locale-panel,
.launch-next-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.launch-url-panel h2,
.launch-locale-panel h2,
.launch-next-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}

.launch-url-panel a {
  overflow-wrap: anywhere;
  color: rgba(244, 241, 234, 0.76);
}

.launch-locale-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.launch-locale-badges span {
  border: 1px solid rgba(197, 173, 130, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(244, 241, 234, 0.78);
  font-size: 12px;
}

.launch-check {
  padding: 20px;
}

.launch-check span,
.launch-check strong,
.launch-check p {
  display: block;
}

.launch-check span {
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-check strong {
  margin: 8px 0;
  color: #fff;
  font-size: 18px;
}

.launch-check p {
  margin: 0;
  color: rgba(244, 241, 234, 0.64);
  font-size: 13px;
}

.launch-check.is-pending {
  border-color: rgba(197, 173, 130, 0.32);
}

.launch-next-panel ol {
  margin: 0;
  padding-left: 20px;
  color: rgba(244, 241, 234, 0.72);
}

.plain-page,
.admin-page {
  min-height: 100vh;
  background: #151816;
}

.plain-box {
  width: min(calc(100% - 40px), 560px);
  margin: 0 auto;
  padding: 120px 0;
  color: #fff;
}

.plain-box h1 {
  margin: 0 0 12px;
  font-size: 72px;
}

.plain-box p {
  color: rgba(255, 255, 255, 0.7);
}

.admin-shell {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  padding: 54px 0;
  color: #fff;
}

.admin-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.admin-top h1 {
  margin: 10px 0 8px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
}

.admin-top p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.admin-subtitle {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 20px;
}

.status-card {
  grid-column: 1 / -1;
}

.backup-card {
  grid-column: 1 / -1;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #20241f;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-card-head.compact-head {
  align-items: flex-start;
  padding: 0;
  border-bottom: 0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-inline-field {
  display: inline-grid;
  gap: 6px;
  min-width: 150px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.admin-inline-field select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 10px;
  background: #111312;
  color: #fff;
}

.admin-card-head h2 {
  margin: 0;
  font-size: 22px;
}

.json-editor {
  display: block;
  width: 100%;
  min-height: 660px;
  border: 0;
  padding: 18px;
  background: #111312;
  color: #f3efe6;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.55;
  resize: vertical;
  outline: none;
}

.compact-editor {
  min-height: 420px;
}

.structured-editor {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: #171a18;
}

.structured-group {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.structured-group h3 {
  margin-bottom: 16px;
  color: #fff;
}

.structured-grid {
  display: grid;
  gap: 14px;
}

.structured-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.structured-grid label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.structured-grid input,
.structured-grid textarea,
.structured-grid select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #111312;
  color: #f3efe6;
  outline: none;
}

.structured-grid textarea {
  resize: vertical;
  min-height: 108px;
}

.structured-grid input:focus,
.structured-grid textarea:focus,
.structured-grid select:focus {
  border-color: rgba(197, 173, 130, 0.68);
  box-shadow: 0 0 0 3px rgba(197, 173, 130, 0.12);
}

.admin-card-mini {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 18, 0.7);
}

.admin-card-mini h3 {
  margin-bottom: 16px;
}

.product-category-editor-list {
  display: grid;
  gap: 16px;
}

.product-category-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.product-category-editor-head h3 {
  margin: 0;
}

.media-upload-field input[type="file"] {
  padding: 10px;
}

.media-upload-button {
  align-self: end;
  min-height: 44px;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 18, 0.72);
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #111412;
}

.media-card-body {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.media-card-body strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.media-card-body span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.media-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-card .form-note {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.6);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.status-item {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 18px;
  background: #171a18;
}

.status-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.status-item strong {
  color: #fff;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.status-warnings {
  grid-column: 1 / -1;
  padding: 18px;
  background: rgba(197, 173, 130, 0.12);
}

.status-warnings span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-weight: 800;
}

.status-warnings ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.backup-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #171a18;
}

.setup-guide-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #171a18;
}

.smtp-diagnostics-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #171a18;
}

.launch-report-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #171a18;
}

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

.smtp-field {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 18, 0.7);
}

.smtp-field.is-pass {
  border-color: rgba(95, 140, 99, 0.58);
}

.smtp-field.is-fail {
  border-color: rgba(197, 173, 130, 0.58);
}

.smtp-field span,
.smtp-field p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.smtp-field code {
  overflow-wrap: anywhere;
  white-space: normal;
}

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

.setup-guide-block {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 18, 0.7);
}

.setup-guide-block h3 {
  margin: 0;
}

.setup-guide-list {
  display: grid;
  gap: 10px;
}

.setup-guide-item {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.setup-guide-item strong,
.setup-guide-item span {
  display: block;
}

.setup-guide-item strong {
  color: #fff;
}

.setup-guide-item span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.readiness-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: #171a18;
}

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

.readiness-summary-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.readiness-pill {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.readiness-pill span,
.readiness-pill strong {
  display: block;
}

.readiness-pill span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.readiness-pill strong {
  margin-top: 6px;
  color: #fff;
  font-size: 18px;
}

.readiness-grid {
  display: grid;
  gap: 12px;
}

.readiness-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.readiness-item.is-pass {
  border-color: rgba(96, 112, 82, 0.85);
  background: rgba(96, 112, 82, 0.14);
}

.readiness-item.is-fail {
  border-color: rgba(197, 173, 130, 0.72);
  background: rgba(197, 173, 130, 0.12);
}

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

.readiness-item strong {
  color: #fff;
  font-size: 16px;
}

.readiness-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.readiness-item code {
  display: block;
  margin-top: 10px;
  color: var(--sand);
  font-size: 12px;
  white-space: pre-wrap;
}

.readiness-commands {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 19, 18, 0.7);
}

.readiness-commands h3 {
  margin-bottom: 12px;
}

.command-list {
  display: grid;
  gap: 10px;
}

.command-list code {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #111312;
  color: #f3efe6;
  overflow-wrap: anywhere;
}

.backup-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.backup-panel input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px;
  background: #111312;
  color: #fff;
}

.inquiry-filters {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(160px, 1fr));
  gap: 12px;
  padding: 16px;
  background: #171a18;
}

.inquiry-filters label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-filters input,
.inquiry-filters select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #111312;
  color: #fff;
}

.inquiry-summary {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  padding: 0 16px 16px;
  background: #171a18;
}

.summary-pill {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

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

.summary-pill span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.summary-pill strong {
  margin-top: 6px;
  color: #fff;
  font-size: 18px;
}

.inquiry-list {
  display: grid;
  gap: 12px;
  max-height: 760px;
  overflow: auto;
  padding: 16px;
}

.inquiry-record {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.inquiry-record-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.inquiry-record-head span,
.inquiry-record dd,
.inquiry-record p {
  color: rgba(255, 255, 255, 0.68);
}

.lead-score-strip {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(197, 173, 130, 0.25);
  border-radius: 4px;
  background: rgba(197, 173, 130, 0.08);
  font-size: 12px;
}

.lead-score-strip strong {
  color: #fff;
}

.lead-score-strip span:last-child {
  min-width: 0;
  color: rgba(255, 255, 255, 0.66);
  overflow-wrap: anywhere;
}

.lead-priority {
  padding: 4px 8px;
  border-radius: 3px;
  color: #111312;
  background: var(--sand);
  font-weight: 900;
  letter-spacing: 0;
}

.lead-priority-hot {
  background: #f0c36a;
}

.lead-priority-warm {
  background: #95a985;
}

.lead-priority-standard {
  background: #8d9691;
}

.inquiry-record dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 6px 10px;
  margin: 0;
  font-size: 13px;
}

.inquiry-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.inquiry-toolbar label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-toolbar select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 10px;
  background: #111312;
  color: #fff;
}

.inquiry-toolbar .btn {
  min-height: 38px;
  padding: 0 12px;
}

.inquiry-record dt {
  color: var(--sand);
  font-weight: 800;
}

.inquiry-record dd {
  margin: 0;
}

.inquiry-record dd a {
  color: var(--sand);
  border-bottom: 1px solid rgba(197, 173, 130, 0.55);
}

.inquiry-record p {
  margin: 12px 0 0;
}

.inquiry-note-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-note-field textarea {
  width: 100%;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #111312;
  color: #f3efe6;
  resize: vertical;
}

.inquiry-note-field textarea:focus {
  border-color: rgba(197, 173, 130, 0.68);
  box-shadow: 0 0 0 3px rgba(197, 173, 130, 0.12);
  outline: none;
}

.email-preview {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111312;
}

.email-preview[hidden] {
  display: none;
}

.email-preview strong,
.email-preview span {
  display: block;
}

.email-preview span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.email-preview pre {
  max-height: 360px;
  overflow: auto;
  margin: 0;
  white-space: pre-wrap;
  color: rgba(255, 255, 255, 0.82);
  font: 13px/1.6 Consolas, "Courier New", monospace;
}

body:not(.admin-page) {
  background: #ffffff;
  color: #151713;
}

body:not(.admin-page) .site-header {
  color: #151713;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(17, 19, 18, 0.08);
  box-shadow: 0 10px 34px rgba(31, 34, 30, 0.08);
}

body:not(.admin-page) .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 40px rgba(31, 34, 30, 0.12);
}

body:not(.admin-page) .brand small,
body:not(.admin-page) .site-nav a,
body:not(.admin-page) .language-select {
  color: rgba(17, 19, 18, 0.68);
}

body:not(.admin-page) .site-nav a:hover {
  color: var(--olive);
}

body:not(.admin-page) .brand-mark {
  background: rgba(72, 91, 63, 0.1);
  color: var(--olive);
}

body:not(.admin-page) .nav-cta {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff !important;
}

body:not(.admin-page) .language-select select,
body:not(.admin-page) .nav-toggle {
  background: #fff;
  border-color: rgba(17, 19, 18, 0.16);
  color: #151713;
}

body:not(.admin-page) .nav-toggle span {
  background: #151713;
}

body:not(.admin-page) .hero {
  color: #151713;
  background: #fff;
}

body:not(.admin-page) .hero-bg {
  opacity: 0.36;
  filter: saturate(0.92) contrast(0.98);
}

body:not(.admin-page) .hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), #fff 94%);
}

body:not(.admin-page) .hero p {
  color: rgba(17, 19, 18, 0.72);
}

body:not(.admin-page) .btn-secondary {
  background: #fff;
  border-color: rgba(17, 19, 18, 0.2);
  color: #151713;
}

body:not(.admin-page) .hero-metrics,
body:not(.admin-page) .language-strip {
  border-color: rgba(17, 19, 18, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(31, 34, 30, 0.12);
}

body:not(.admin-page) .hero-metrics div {
  border-color: rgba(17, 19, 18, 0.1);
}

body:not(.admin-page) .hero-metrics strong,
body:not(.admin-page) .language-strip-copy strong {
  color: #151713;
}

body:not(.admin-page) .hero-metrics span,
body:not(.admin-page) .language-strip-copy small {
  color: rgba(17, 19, 18, 0.62);
}

body:not(.admin-page) .language-chip {
  border-color: rgba(17, 19, 18, 0.12);
  background: rgba(72, 91, 63, 0.05);
  color: rgba(17, 19, 18, 0.72);
}

body:not(.admin-page) .language-chip:hover,
body:not(.admin-page) .language-chip.is-active {
  background: rgba(197, 173, 130, 0.18);
  color: #151713;
}

body:not(.admin-page) .intro-band,
body:not(.admin-page) .process-section,
body:not(.admin-page) .materials-section,
body:not(.admin-page) .manufacturing,
body:not(.admin-page) .quality,
body:not(.admin-page).legal-page {
  background:
    linear-gradient(180deg, rgba(244, 247, 243, 0.9), #fff),
    #fff;
  color: #151713;
}

body:not(.admin-page) .materials-section .section-head p,
body:not(.admin-page) .materials-section .section-kicker,
body:not(.admin-page) .materials-section h2,
body:not(.admin-page) .intro-band p,
body:not(.admin-page) .manufacturing p,
body:not(.admin-page) .quality .section-head p {
  color: rgba(17, 19, 18, 0.7);
}

body:not(.admin-page) .materials-section {
  padding-top: clamp(56px, 7vw, 84px);
}

body:not(.admin-page) .materials-section .section-head {
  margin-bottom: 30px;
}

body:not(.admin-page) .materials-section h2 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
}

body:not(.admin-page) .materials-section .section-head p {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(16px, 1.7vw, 20px);
}

body:not(.admin-page) .materials-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 2.6fr);
  align-items: stretch;
  gap: 18px;
}

body:not(.admin-page) .materials-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

body:not(.admin-page) .materials-panel,
body:not(.admin-page) .materials-card,
body:not(.admin-page) .process-list li,
body:not(.admin-page) .capability-panel div,
body:not(.admin-page) .quality-item,
body:not(.admin-page) .legal-section,
body:not(.admin-page) .launch-summary-grid div,
body:not(.admin-page) .launch-url-panel,
body:not(.admin-page) .launch-locale-panel,
body:not(.admin-page) .launch-check,
body:not(.admin-page) .launch-next-panel {
  border-color: rgba(17, 19, 18, 0.12);
  background: #fff;
  color: #151713;
  box-shadow: 0 18px 44px rgba(31, 34, 30, 0.08);
}

body:not(.admin-page) .materials-panel {
  padding: 20px;
}

body:not(.admin-page) .materials-card {
  min-height: 0;
  padding: clamp(20px, 2.2vw, 28px);
}

body:not(.admin-page) .materials-card h3 {
  margin-top: 18px;
  font-size: clamp(19px, 1.9vw, 25px);
}

body:not(.admin-page) .materials-card p {
  max-width: 520px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.55;
}

body:not(.admin-page) .swatch-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body:not(.admin-page) .swatch-chip {
  height: 40px;
}

body:not(.admin-page) .materials-metric {
  padding: 16px 18px;
}

body:not(.admin-page) .swatch-card,
body:not(.admin-page) .materials-metric {
  border-color: rgba(17, 19, 18, 0.1);
  background: rgba(72, 91, 63, 0.06);
}

body:not(.admin-page) .materials-card h3,
body:not(.admin-page) .materials-metric strong,
body:not(.admin-page) .swatch-card strong,
body:not(.admin-page) .capability-panel strong,
body:not(.admin-page) .launch-hero-panel h1,
body:not(.admin-page) .legal-hero h1,
body:not(.admin-page) .legal-section h2,
body:not(.admin-page) .legal-cta strong,
body:not(.admin-page) .launch-summary-grid strong {
  color: #151713;
}

body:not(.admin-page) .materials-card p,
body:not(.admin-page) .materials-metric span,
body:not(.admin-page) .capability-panel span,
body:not(.admin-page) .quality-item,
body:not(.admin-page) .process-list span,
body:not(.admin-page) .legal-hero p,
body:not(.admin-page) .legal-section p,
body:not(.admin-page) .launch-hero-panel p,
body:not(.admin-page) .launch-summary-grid span {
  color: rgba(17, 19, 18, 0.68);
}

body:not(.admin-page) .capability-panel {
  background: rgba(17, 19, 18, 0.1);
  border-color: rgba(17, 19, 18, 0.1);
  box-shadow: 0 18px 44px rgba(31, 34, 30, 0.1);
}

body:not(.admin-page) .factory-gallery,
body:not(.admin-page) .product-systems,
body:not(.admin-page) .about,
body:not(.admin-page) .contact-section {
  background:
    linear-gradient(180deg, #fff, rgba(244, 247, 243, 0.92)),
    #fff;
}

body:not(.admin-page) .contact-points span,
body:not(.admin-page) .inquiry-form,
body:not(.admin-page) .factory-card,
body:not(.admin-page) .product-system-card,
body:not(.admin-page) .feature-card,
body:not(.admin-page) .scene-grid article {
  background: #fff;
}

body:not(.admin-page) .site-footer {
  background: #fff;
  color: #151713;
  border-top: 1px solid rgba(17, 19, 18, 0.1);
}

body:not(.admin-page) .site-footer,
body:not(.admin-page) .legal-nav nav a {
  color: rgba(17, 19, 18, 0.62);
}

body:not(.admin-page) .legal-header {
  background: #fff;
  border-bottom: 1px solid rgba(17, 19, 18, 0.1);
}

body:not(.admin-page) .legal-main {
  background: #fff;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(17, 19, 18, 0.98);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body:not(.admin-page) .site-nav {
    border-color: rgba(17, 19, 18, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(31, 34, 30, 0.14);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px;
  }

  .language-select {
    padding: 12px;
    justify-content: space-between;
  }

  .language-strip {
    grid-template-columns: 1fr;
  }

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

  .nav-cta {
    text-align: center;
  }

  .advantage-grid,
  .materials-grid,
  .scene-grid,
  .product-system-grid,
  .blog-grid,
  .factory-gallery-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .intro-grid,
  .materials-layout,
  .manufacturing-grid,
  .about-grid,
  .contact-grid,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    padding: 44px 0 36px;
  }

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

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 32px;
  }

  .footer-home {
    margin-bottom: 40px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

  body:not(.admin-page) .materials-layout,
  body:not(.admin-page) .materials-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .legal-hero {
    position: static;
  }

  .legal-cta {
    grid-column: auto;
  }

  .launch-summary-grid,
  .launch-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-top,
  .admin-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .structured-grid.two-col {
    grid-template-columns: 1fr;
  }

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

  .setup-guide-grid {
    grid-template-columns: 1fr;
  }

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

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

  .inquiry-filters {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .status-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    height: 68px;
    padding: 0 14px;
  }

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

  .hero {
    min-height: 100vh;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-inner {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .language-strip {
    padding: 12px;
  }

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

  .footer-accent {
    height: 7px;
  }

  .footer-socials,
  .footer-columns {
    grid-template-columns: 1fr;
  }

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

  .footer-rule {
    margin: 34px 0;
  }

  .footer-column h3 {
    margin-bottom: 18px;
    font-size: 19px;
  }

  .footer-column li,
  .footer-bottom p,
  .footer-legal a {
    font-size: 15px;
  }

  .footer-search span {
    min-height: 38px;
    padding: 8px 15px;
    font-size: 14px;
  }

  .language-chip {
    min-height: 40px;
  }

  .hero-metrics,
  .advantage-grid,
  .materials-grid,
  .scene-grid,
  .product-system-grid,
  .blog-grid,
  .factory-gallery-grid,
  .capability-panel,
  .quality-grid,
  .inquiry-form,
  .readiness-summary,
  .inquiry-summary,
  .setup-guide-grid {
    grid-template-columns: 1fr;
  }

  .media-library-grid {
    grid-template-columns: 1fr;
  }

  .smtp-fields-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

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

  .feature-card,
  .materials-card,
  .scene-grid article {
    min-height: auto;
  }

  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .legal-nav nav {
    justify-content: flex-start;
  }

  .legal-main {
    padding: 52px 0 68px;
  }

  .legal-hero h1 {
    font-size: 38px;
  }

  .legal-section {
    padding: 20px;
  }

  .legal-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-summary-grid,
  .launch-check-grid {
    grid-template-columns: 1fr;
  }
}
