:root {
  --green: #0f3d2e;
  --green-2: #1f6b4c;
  --gold: #c6a15b;
  --ink: #16211c;
  --muted: #6d7772;
  --line: #e7ebe8;
  --paper: #f7f5ef;
  --white: #fff;
  --shadow: 0 18px 50px rgba(18, 33, 27, .12);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15,61,46,.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}
.brand img { width: 132px; max-height: 58px; object-fit: contain; }
.brand span { font-size: 20px; letter-spacing: 0; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
}
.primary-nav a {
  position: relative;
  padding: 26px 0;
}
.primary-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.primary-nav a:hover:after { transform: scaleX(1); }
.header-phone {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--green);
  border-radius: 6px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}
.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 820px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero picture img { object-fit: cover; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,35,28,.78), rgba(9,35,28,.35) 45%, rgba(9,35,28,.08));
}
.hero-content {
  position: relative;
  color: #fff;
  padding-top: 50px;
}
.eyebrow, .section-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.05;
  letter-spacing: 0;
}
.hero p {
  max-width: 680px;
  margin: 0 0 34px;
  font-size: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--gold); color: #fff; }
.btn.ghost { color: #fff; border: 1px solid rgba(255,255,255,.7); margin-left: 10px; }
.quick-nav {
  margin-top: -52px;
  position: relative;
  z-index: 4;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.quick-grid a {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}
.quick-grid a:last-child { border-right: 0; }
.quick-grid strong { display: block; font-size: 20px; }
.quick-grid span { color: var(--muted); font-size: 13px; }
.section { padding: 96px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}
.section-head h2, .section-copy h2, .contact-panel h2 {
  margin: 8px 0 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
}
.section-head p, .section-copy p, .contact-panel p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.05fr 1fr; }
.about-media img,
.case-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stats b {
  display: block;
  padding: 18px;
  background: var(--paper);
  border-radius: var(--radius);
  font-size: 14px;
}
.stats span { display: block; font-size: 30px; color: var(--green); }
.products { background: var(--paper); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(10,33,27,.08);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f4f4f4;
}
.product-card div { padding: 22px; }
.product-card h3 { margin: 0 0 8px; font-size: 21px; }
.product-card p { color: var(--muted); margin: 0 0 14px; font-size: 14px; }
.product-card a { color: var(--green); font-weight: 800; }
.strength {
  background: linear-gradient(135deg, #102f25, #0f3d2e 55%, #214537);
  color: #fff;
}
.section-head.light p { color: rgba(255,255,255,.72); }
.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.strength-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.strength-grid span { color: var(--gold); font-weight: 900; font-size: 34px; }
.strength-grid h3 { font-size: 23px; margin: 48px 0 10px; }
.strength-grid p { color: rgba(255,255,255,.75); }
.news-grid, .content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-card, .archive-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.news-card time, .archive-card time { color: var(--gold); font-weight: 800; }
.news-card h3, .archive-card h2 { line-height: 1.35; }
.news-card p, .archive-card p { color: var(--muted); }
.contact { background: var(--paper); }
.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 52px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-actions { display: grid; gap: 14px; justify-items: start; }
.site-footer {
  background: #0a211b;
  color: rgba(255,255,255,.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 58px 0;
}
.footer-grid h3, .footer-grid h4 { color: #fff; margin-top: 0; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  font-size: 14px;
}
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.page-hero {
  padding: 110px 0 80px;
  color: #fff;
  background: linear-gradient(135deg, rgba(9,35,28,.88), rgba(9,35,28,.55)), url("../images/mlj-02.jpg") center/cover;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); margin: 12px 0; }
.page-content {
  max-width: 880px;
  font-size: 17px;
}
.page-content img.featured-image {
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 1024px) {
  .header-phone { display: none; }
  .primary-nav { gap: 18px; }
  .product-grid, .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid, .content-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1200px); }
  .header-inner { min-height: 68px; }
  .brand img { width: 108px; }
  .brand span { font-size: 18px; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    display: grid;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .25s ease;
    margin-left: 0;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a { padding: 14px 24px; border-top: 1px solid var(--line); }
  .primary-nav a:after { display: none; }
  .hero { min-height: 620px; }
  .hero p { font-size: 17px; }
  .quick-grid, .split, .split.reverse, .contact-panel, .footer-grid {
    grid-template-columns: 1fr;
  }
  .quick-grid a { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px; }
  .section { padding: 68px 0; }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 44px; }
  .btn.ghost { margin-left: 0; margin-top: 10px; }
  .hero-actions { display: grid; justify-items: start; }
  .product-grid, .strength-grid, .news-grid, .content-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 28px; }
  .back-top { right: 14px; bottom: 14px; }
}


.footer-bottom .icp-link{color:rgba(255,255,255,.86);margin-left:12px;white-space:nowrap;}
.footer-bottom .icp-link:hover{color:#c6a15b;}
@media(max-width:560px){.footer-bottom .icp-link{display:block;margin-left:0;margin-top:6px;}}

.hero.hero-image-only {
  min-height: clamp(420px, 56.2vw, 760px);
  background: #8b0000;
}
.hero.hero-image-only .hero-shade,
.hero.hero-image-only .hero-content {
  display: none;
}
.hero.hero-image-only picture img {
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 820px) {
  .hero.hero-image-only {
    min-height: 58vw;
  }
}
@media (max-width: 560px) {
  .hero.hero-image-only {
    min-height: 72vw;
  }
  .hero.hero-image-only picture img {
    object-position: center center;
  }
}


/* SEO architecture refresh 2026-07-09 */
:root { --brand-red:#b40808; --brand-red-dark:#760505; --stone:#f4f1ea; --charcoal:#202020; }
.top-strip { background: var(--brand-red-dark); color:#fff; font-size:13px; }
.top-strip-inner { min-height:34px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.site-header { background: rgba(255,255,255,.97); }
.brand { color: var(--brand-red); }
.primary-nav { gap: 22px; }
.primary-nav a { font-weight:700; }
.primary-nav a:after { background: var(--brand-red); }
.header-phone { border-color: var(--brand-red); color: var(--brand-red); border-radius:4px; }
.seo-hero .hero-shade { background: linear-gradient(90deg, rgba(70,0,0,.18), rgba(70,0,0,.05)); }
.hero-image-only .hero-content { display:block; opacity:0; pointer-events:none; height:1px; overflow:hidden; }
.mlj-quick { margin-top: 0; background:#fff; }
.quick-grid { border-radius:0; box-shadow:0 12px 34px rgba(90,0,0,.12); }
.quick-grid a { border-top:4px solid transparent; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.quick-grid a:hover { color:var(--brand-red); border-top-color:var(--brand-red); background:#fff8f7; }
.section-kicker, .eyebrow, .text-link, .product-card a { color: var(--brand-red); }
.text-link { display:inline-flex; margin-top:18px; font-weight:800; }
.btn.primary { background: var(--brand-red); color:#fff; }
.btn.ghost.dark { color:var(--brand-red); border-color:rgba(180,8,8,.45); margin-left:0; }
.products { background: var(--stone); }
.product-card, .case-card, .news-card { border:1px solid rgba(180,8,8,.08); }
.mlj-strength { background: linear-gradient(135deg, #5b0505, #9a0707 58%, #2b2220); }
.case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.case-card { background:#fff; overflow:hidden; box-shadow:0 10px 28px rgba(10,33,27,.08); }
.case-card img { width:100%; aspect-ratio: 4 / 3; object-fit:cover; }
.case-card div { padding:22px; }
.case-card h3 { margin:0 0 8px; font-size:21px; }
.case-card p { margin:0; color:var(--muted); }
.join-band { background:#fff; }
.footer-grid { grid-template-columns: 1.3fr .8fr .8fr 1fr; }
.footer-seo { margin-top:12px; color:rgba(255,255,255,.7); }
.page-content h2 { color:var(--brand-red); margin-top:34px; }
.page-content a { color:var(--brand-red); font-weight:700; }
@media (max-width: 900px) {
  .top-strip-inner { justify-content:center; flex-wrap:wrap; padding:6px 0; }
  .primary-nav a { padding: 12px 0; }
  .hero { min-height: 52vh; }
  .quick-grid, .product-grid, .strength-grid, .case-grid, .news-grid, .footer-grid { grid-template-columns:1fr; }
  .split, .split.reverse { grid-template-columns:1fr; gap:30px; }
  .footer-grid { gap:26px; }
}


/* Mobile responsive hardening 2026-07-09 */
html, body { max-width: 100%; overflow-x: hidden; }
@media (max-width: 820px) {
  .top-strip { font-size: 12px; }
  .top-strip-inner { min-height: 34px; padding: 5px 0; line-height: 1.35; }
  .header-inner { min-height: 62px; gap: 12px; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .brand img { width: 92px; max-height: 42px; }
  .brand span { font-size: 17px; overflow: hidden; text-overflow: ellipsis; }
  .nav-toggle { flex: 0 0 42px; margin-left: 8px; }
  .primary-nav {
    top: 96px;
    z-index: 70;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    box-shadow: 0 14px 34px rgba(0,0,0,.14);
  }
  .primary-nav a { padding: 14px 22px; font-size: 16px; }
  .hero.hero-image-only {
    min-height: 56.25vw;
    height: auto;
    background: #970606;
  }
  .hero.hero-image-only picture img {
    object-fit: contain;
    object-position: center center;
    background: #970606;
  }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-grid a { padding: 18px 16px; min-height: 86px; }
  .quick-grid strong { font-size: 17px; }
  .quick-grid span { font-size: 12px; }
  .section { padding: 54px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2, .section-copy h2, .contact-panel h2 { font-size: 28px; }
  .section-head p, .section-copy p, .contact-panel p { font-size: 15px; }
  .stats { gap: 10px; }
  .stats b { padding: 14px; }
  .product-card div, .case-card div, .news-card { padding: 18px; }
  .strength-grid article { min-height: auto; padding: 22px; }
  .strength-grid h3 { margin: 18px 0 8px; font-size: 20px; }
  .strength-grid span { font-size: 26px; }
  .contact-panel { padding: 24px; gap: 22px; }
  .contact-actions, .contact-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; padding: 38px 0; gap: 22px; }
  .page-hero { padding: 78px 0 52px; }
  .page-content { font-size: 16px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1200px); }
  .top-strip { display: none; }
  .header-inner { min-height: 60px; }
  .primary-nav { top: 60px; max-height: calc(100dvh - 60px); }
  .brand img { width: 84px; }
  .brand span { font-size: 16px; }
  .hero.hero-image-only { min-height: 56.25vw; }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-grid a { padding: 15px 12px; min-height: 76px; }
  .quick-grid strong { font-size: 16px; }
  .section { padding: 46px 0; }
  .section-head h2, .section-copy h2, .contact-panel h2 { font-size: 25px; }
  .product-card h3, .case-card h3 { font-size: 19px; }
  .btn { width: 100%; min-height: 42px; padding: 9px 16px; }
  .hero-actions { width: 100%; }
  .back-top { display: none; }
}
@media (max-width: 360px) {
  .brand span { font-size: 15px; }
  .quick-grid { grid-template-columns: 1fr; }
}


/* Join page landing layout 2026-07-09 */
body.page-id-39 .page-content { max-width: 1180px; }
.join-page { display: grid; gap: 56px; }
.join-hero-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  background: linear-gradient(135deg, #7a0505, #bd0909 58%, #2b1714);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.join-eyebrow { display:inline-block; color:#ffd8a0; font-size:13px; font-weight:900; letter-spacing:0; }
.join-hero-copy h2, .join-intro h2, .join-cta-panel h2 { margin:10px 0 16px; line-height:1.16; }
.join-hero-copy h2 { font-size: clamp(34px, 5vw, 58px); color:#fff; }
.join-hero-copy p { color:rgba(255,255,255,.84); font-size:17px; }
.join-hero-image img { width:100%; aspect-ratio: 4 / 3; object-fit:cover; border-radius:8px; box-shadow:0 18px 50px rgba(0,0,0,.24); }
.join-hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:26px; }
.join-hero-actions a, .join-cta-panel a { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:10px 22px; background:#fff; color:#a00707; border-radius:4px; font-weight:900; }
.join-hero-actions a + a { background:transparent; color:#fff; border:1px solid rgba(255,255,255,.72); }
.join-intro { display:grid; grid-template-columns:.95fr 1.05fr; gap:34px; align-items:center; }
.join-intro img { width:100%; aspect-ratio: 16 / 10; object-fit:cover; border-radius:8px; box-shadow:0 12px 34px rgba(0,0,0,.12); }
.join-intro p { color:var(--muted); }
.join-advantages { display:grid; grid-template-columns:repeat(4, minmax(0, 1fr)); gap:20px; }
.join-advantages article { background:#fff; border:1px solid rgba(180,8,8,.12); border-radius:8px; overflow:hidden; box-shadow:0 10px 28px rgba(90,0,0,.08); }
.join-advantages article img { width:100%; aspect-ratio: 4 / 3; object-fit:cover; background:#f4f1ea; }
.join-advantages article div { padding:20px; }
.join-advantages b { display:inline-flex; color:#b40808; font-size:24px; line-height:1; margin-bottom:14px; }
.join-advantages h3 { margin:0 0 10px; font-size:20px; line-height:1.25; color:#202020; }
.join-advantages p { margin:0; color:#666; font-size:14px; line-height:1.75; }
.join-support-band { display:grid; grid-template-columns:repeat(4, 1fr); background:#fff7f5; border:1px solid rgba(180,8,8,.12); border-radius:8px; overflow:hidden; }
.join-support-band div { padding:24px; border-right:1px solid rgba(180,8,8,.12); }
.join-support-band div:last-child { border-right:0; }
.join-support-band span { display:block; color:#8a0808; font-weight:800; }
.join-support-band strong { display:block; margin-top:6px; font-size:24px; color:#202020; }
.join-cta-panel { text-align:center; padding:44px 28px; background:#202020; color:#fff; border-radius:8px; }
.join-cta-panel h2 { color:#fff; }
.join-cta-panel p { max-width:760px; margin:0 auto 24px; color:rgba(255,255,255,.75); }
@media (max-width: 980px) {
  .join-hero-panel, .join-intro { grid-template-columns:1fr; }
  .join-advantages { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  body.page-id-39 .page-content { max-width:100%; }
  .join-page { gap:36px; }
  .join-hero-panel { padding:24px; }
  .join-hero-copy h2 { font-size:32px; }
  .join-hero-actions, .join-hero-actions a, .join-cta-panel a { width:100%; }
  .join-advantages, .join-support-band { grid-template-columns:1fr; }
  .join-support-band div { border-right:0; border-bottom:1px solid rgba(180,8,8,.12); padding:20px; }
  .join-support-band div:last-child { border-bottom:0; }
  .join-support-band strong { font-size:21px; }
  .join-cta-panel { padding:34px 22px; }
}


/* About page brand layout 2026-07-09 */
body.page-id-38 .page-content { max-width:1180px; }
.about-brand-page { display:grid; gap:52px; }
.about-brand-hero {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
  padding:42px;
  color:#fff;
  background:linear-gradient(135deg, #7a0505, #ba0808 55%, #2d1d19);
  border-radius:8px;
  overflow:hidden;
}
.about-brand-hero h2 { margin:10px 0 18px; color:#fff; font-size:clamp(34px, 5vw, 56px); line-height:1.16; }
.about-brand-hero p { color:rgba(255,255,255,.86); font-size:17px; }
.about-brand-hero img, .split-about img { width:100%; aspect-ratio:4 / 3; object-fit:cover; border-radius:8px; box-shadow:0 18px 50px rgba(0,0,0,.18); }
.about-eyebrow { display:inline-block; color:#b40808; font-size:13px; font-weight:900; letter-spacing:0; }
.about-brand-hero .about-eyebrow, .about-dark-panel .about-eyebrow { color:#ffd8a0; }
.about-honor-grid { display:grid; grid-template-columns:repeat(4, minmax(0, 1fr)); gap:18px; }
.about-honor-grid article { padding:24px; border:1px solid rgba(180,8,8,.14); border-radius:8px; background:#fff7f5; }
.about-honor-grid strong { display:block; color:#9b0707; font-size:20px; line-height:1.3; }
.about-honor-grid span { display:block; margin-top:10px; color:#666; }
.about-section { padding:0; }
.split-about { display:grid; grid-template-columns:1fr 1fr; gap:42px; align-items:center; }
.split-about.reverse { grid-template-columns:1fr 1fr; }
.about-section h2 { margin:10px 0 18px; color:#202020; font-size:clamp(28px, 4vw, 42px); line-height:1.2; }
.about-section p { color:#5f6662; font-size:16px; line-height:1.9; }
.about-dark-panel { padding:42px; color:#fff; background:linear-gradient(135deg, #202020, #680606); border-radius:8px; }
.about-dark-panel h2 { color:#fff; }
.about-dark-panel p { color:rgba(255,255,255,.82); }
.about-product-tags { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.about-product-tags span { display:inline-flex; padding:9px 14px; color:#fff; border:1px solid rgba(255,255,255,.28); border-radius:999px; background:rgba(255,255,255,.08); font-weight:800; }
.quality-panel { display:grid; grid-template-columns:1.1fr .9fr; gap:34px; align-items:center; padding:38px; background:#fff7f5; border:1px solid rgba(180,8,8,.12); border-radius:8px; }
.quality-list { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:14px; }
.quality-list span { display:grid; place-items:center; min-height:74px; padding:12px; background:#fff; border-radius:8px; color:#a00707; font-weight:900; box-shadow:0 8px 20px rgba(90,0,0,.06); }
.about-vision-panel { text-align:center; padding:46px 28px; background:#202020; color:#fff; border-radius:8px; }
.about-vision-panel h2 { max-width:820px; margin:0 auto 18px; color:#fff; font-size:clamp(28px, 4vw, 42px); line-height:1.2; }
.about-vision-panel p { max-width:850px; margin:0 auto 26px; color:rgba(255,255,255,.78); line-height:1.9; }
.about-vision-panel a { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:10px 22px; background:#b40808; color:#fff; border-radius:4px; font-weight:900; }
@media (max-width: 980px) {
  .about-brand-hero, .split-about, .split-about.reverse, .quality-panel { grid-template-columns:1fr; }
  .about-honor-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  body.page-id-38 .page-content { max-width:100%; }
  .about-brand-page { gap:36px; }
  .about-brand-hero, .about-dark-panel, .quality-panel { padding:24px; }
  .about-brand-hero h2 { font-size:32px; }
  .about-section h2, .about-vision-panel h2 { font-size:26px; }
  .about-honor-grid, .quality-list { grid-template-columns:1fr; }
  .about-product-tags span { width:100%; justify-content:center; }
  .about-vision-panel { padding:34px 22px; }
  .about-vision-panel a { width:100%; }
}


/* Product center visual layout 2026-07-09 */
.product-archive-hero { background: linear-gradient(135deg, rgba(84, 0, 0, .9), rgba(180, 8, 8, .72)), url("../images/mlj-02.jpg") center/cover; }
.product-archive-page { background:#f7f5ef; }
.product-archive-intro { display:flex; justify-content:space-between; align-items:end; gap:26px; margin-bottom:34px; }
.product-archive-intro h2 { margin:8px 0 10px; font-size:clamp(30px,4vw,48px); }
.product-archive-intro p { max-width:760px; color:#666; margin:0; }
.product-archive-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.product-archive-card { background:#fff; border:1px solid rgba(180,8,8,.1); border-radius:8px; overflow:hidden; box-shadow:0 12px 30px rgba(80,0,0,.08); }
.product-archive-media { position:relative; display:block; background:#f4f1ea; }
.product-archive-media img { width:100%; aspect-ratio:4 / 3; object-fit:cover; transition:transform .3s ease; }
.product-archive-card:hover .product-archive-media img { transform:scale(1.04); }
.product-archive-media span { position:absolute; left:14px; bottom:14px; padding:6px 10px; color:#fff; background:rgba(180,8,8,.92); border-radius:4px; font-size:13px; font-weight:900; }
.product-archive-body { padding:22px; }
.product-archive-body h2 { margin:0 0 10px; font-size:23px; }
.product-archive-body p { min-height:74px; margin:0 0 18px; color:#666; }
.product-card-actions { display:flex; gap:10px; flex-wrap:wrap; }
.product-card-actions a { display:inline-flex; min-height:38px; align-items:center; justify-content:center; padding:8px 14px; border-radius:4px; font-weight:900; }
.product-card-actions a:first-child { color:#fff; background:#b40808; }
.product-card-actions a:last-child { color:#b40808; background:#fff7f5; }
.product-service-strip { display:grid; grid-template-columns:repeat(4,1fr); margin-top:34px; background:#202020; color:#fff; border-radius:8px; overflow:hidden; }
.product-service-strip div { padding:22px; border-right:1px solid rgba(255,255,255,.12); }
.product-service-strip div:last-child { border-right:0; }
.product-service-strip strong { display:block; font-size:20px; }
.product-service-strip span { color:rgba(255,255,255,.72); }
.product-detail-hero { padding:90px 0 72px; background:linear-gradient(135deg,#fff7f5,#f7f5ef); }
.product-detail-hero-inner { display:grid; grid-template-columns:1fr .92fr; gap:48px; align-items:center; }
.product-detail-hero h1 { margin:10px 0 16px; font-size:clamp(38px,6vw,68px); line-height:1.08; color:#202020; }
.product-detail-hero p { max-width:680px; color:#666; font-size:18px; }
.product-detail-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top:26px; }
.product-detail-image { position:relative; }
.product-detail-image img { width:100%; aspect-ratio:4 / 3; object-fit:cover; border-radius:8px; box-shadow:0 18px 50px rgba(90,0,0,.14); background:#fff; }
.product-detail-image span { position:absolute; left:18px; bottom:18px; padding:8px 12px; color:#fff; background:#b40808; border-radius:4px; font-weight:900; }
.product-detail-layout { display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:34px; align-items:start; }
.product-detail-main { background:#fff; padding:34px; border-radius:8px; border:1px solid rgba(180,8,8,.1); }
.product-detail-main h2 { color:#b40808; }
.product-detail-main p { color:#5f6662; line-height:1.9; }
.product-detail-side { display:grid; gap:18px; position:sticky; top:104px; }
.product-side-card, .product-side-cta { background:#fff; padding:24px; border-radius:8px; border:1px solid rgba(180,8,8,.1); box-shadow:0 10px 28px rgba(90,0,0,.06); }
.product-side-card h3 { margin:0 0 14px; color:#202020; }
.product-side-card span { display:inline-flex; margin:0 8px 8px 0; padding:7px 10px; color:#b40808; background:#fff7f5; border-radius:999px; font-weight:800; }
.product-side-card p { margin:10px 0; color:#666; }
.product-side-cta { background:#202020; color:#fff; }
.product-side-cta p { color:rgba(255,255,255,.72); }
.product-side-cta a { display:flex; align-items:center; justify-content:center; min-height:42px; color:#fff; background:#b40808; border-radius:4px; font-weight:900; }
@media (max-width: 980px) {
  .product-archive-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .product-detail-hero-inner, .product-detail-layout { grid-template-columns:1fr; }
  .product-detail-side { position:static; }
}
@media (max-width: 620px) {
  .product-archive-intro { display:grid; align-items:start; }
  .product-archive-intro .btn { width:100%; }
  .product-archive-grid, .product-service-strip { grid-template-columns:1fr; }
  .product-service-strip div { border-right:0; border-bottom:1px solid rgba(255,255,255,.12); }
  .product-service-strip div:last-child { border-bottom:0; }
  .product-archive-body p { min-height:0; }
  .product-detail-hero { padding:62px 0 46px; }
  .product-detail-actions, .product-detail-actions .btn { width:100%; }
  .product-detail-main, .product-side-card, .product-side-cta { padding:22px; }
}


/* Home product grid balance 2026-07-09 */
.home .products .product-grid,
.front-page .products .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home .products .product-card img,
.front-page .products .product-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 16px;
  background: #fff;
}
@media (max-width: 1024px) {
  .home .products .product-grid,
  .front-page .products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .home .products .product-grid,
  .front-page .products .product-grid {
    grid-template-columns: 1fr;
  }
}
