:root {
  --brand: #889f76;
  --brand-dark: #6f875e;
  --ink: #37474f;
  --text: #526069;
  --muted: #8b979e;
  --line: #e4eaec;
  --soft: #f6f8f8;
  --white: #ffffff;
  --container: 1170px;
  --shadow: 0 14px 36px rgba(55, 71, 79, .09);
  --body-font: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  --body-size: 15px;
  --section-title-size: 25px;
  --page-title-size: 46px;
  --section-space: 74px;
  --card-columns: 3;
  --hero-height: 470px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--body-font);
  font-size: var(--body-size);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header { position: relative; z-index: 20; background: #fff; border-bottom: 1px solid rgba(228,234,236,.75); }
.nav-shell { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; flex: 0 1 auto; }
.brand img {
  width: auto; height: auto; max-width: var(--logo-max-width, 230px); max-height: var(--logo-max-height, 48px);
  object-fit: contain; object-position: left center;
}
.brand-name { color: var(--brand); font-size: 24px; font-weight: 600; letter-spacing: .12em; white-space: nowrap; }
.brand-fallback { color: var(--brand); font-size: 27px; font-weight: 700; letter-spacing: .12em; }
.main-nav { min-width: 0; flex: 1 1 auto; display: flex; align-items: stretch; justify-content: flex-end; gap: 3px; }
.nav-item { position: relative; }
.nav-link {
  min-height: 86px; padding: 0 18px; display: inline-flex; align-items: center; gap: 6px;
  color: #333; font-size: 15px; white-space: nowrap; position: relative;
}
.nav-link::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: 0; height: 2px; background: var(--brand); transform: scaleX(0); transition: transform .22s ease; }
.nav-item:hover > .nav-link, .nav-link.active { color: var(--brand); }
.nav-item:hover > .nav-link::after, .nav-link.active::after { transform: scaleX(1); }
.chevron { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s ease; }
.nav-item:hover .chevron { transform: rotate(180deg); }
.dropdown {
  position: absolute; left: 50%; top: calc(100% - 1px); min-width: 166px; padding: 8px 0;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: .2s ease;
}
.nav-item:hover > .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: block; padding: 9px 20px; color: #555; font-size: 14px; }
.dropdown a:hover { color: var(--brand); background: #f7f9f6; }
.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }
.platform-login-button {
  min-height: 42px; padding: 0 18px; border: 1px solid var(--brand); color: #fff; background: var(--brand);
  font-size: 14px; line-height: 1; white-space: nowrap; transition: background .18s ease, border-color .18s ease;
}
.platform-login-button:hover, .platform-login-button:focus-visible { background: var(--brand-dark); border-color: var(--brand-dark); }
.menu-button { display: none; align-items: center; gap: 7px; min-width: 70px; height: 40px; padding: 0 10px; border: 1px solid var(--brand); background: #fff; color: var(--brand-dark); }
.menu-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-label { font-size: 13px; }

/* Platform login */
.pf-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.pf-modal.open { display: block; }
.pf-mask { position: absolute; inset: 0; background: rgba(33, 42, 47, .58); backdrop-filter: blur(2px); }
.pf-box {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(640px, 92vw); max-height: 84vh;
  overflow: auto; background: #fff; border: 1px solid rgba(55, 71, 79, .1); border-radius: 18px; box-shadow: 0 24px 70px rgba(33, 42, 47, .3);
}
.pf-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.pf-head span { color: var(--ink); font-size: 17px; font-weight: 700; }
.pf-close { width: 32px; height: 32px; padding: 0; border: 0; border-radius: 9px; color: var(--ink); background: var(--soft); font-size: 20px; line-height: 1; }
.pf-close:hover, .pf-close:focus-visible { color: #fff; background: var(--brand); }
.pf-body { padding: 20px 22px 24px; }
.pf-empty { padding: 30px 0; color: var(--muted); text-align: center; }
.pf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pf-card {
  min-width: 0; display: flex; flex-direction: column; gap: 6px; padding: 16px; border: 1px solid var(--line); border-radius: 13px;
  background: #fff; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.pf-card:hover, .pf-card:focus-visible { border-color: var(--brand); box-shadow: 0 8px 22px rgba(111, 135, 94, .18); transform: translateY(-2px); }
.pf-cover { display: block; width: 100%; height: 84px; overflow: hidden; border-radius: 9px; background: #f3f5f4; }
.pf-cover img { width: 100%; height: 100%; object-fit: cover; }
.pf-cover-empty { display: grid; place-items: center; color: var(--brand); font-size: 15px; letter-spacing: .08em; }
.pf-name { color: var(--ink); font-size: 15px; font-weight: 700; }
.pf-url { min-width: 0; color: var(--muted); font-size: 11.5px; line-height: 1.55; overflow-wrap: anywhere; }
.pf-pager { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 22px 18px; border-top: 1px solid var(--line); }
.pf-pager:empty { display: none; }
.pf-pg-btn {
  min-width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink); background: #fff; font-size: 13px; transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.pf-pg-btn:hover, .pf-pg-btn:focus-visible { color: var(--brand); border-color: var(--brand); }
.pf-pg-btn.active { color: #fff; background: var(--brand); border-color: var(--brand); }
.pf-pg-btn.disabled { opacity: .4; pointer-events: none; }

/* Hero */
.home-hero { width: 100%; background: #f3f5f4; overflow: hidden; }
.home-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero { border-bottom: 1px solid var(--line); background: var(--soft); }
.page-hero-inner { min-height: 250px; display: grid; grid-template-columns: 1fr minmax(360px, 48%); align-items: stretch; }
.page-hero-copy { align-self: center; padding: 46px 58px 46px 0; }
.page-hero h1 { margin: 0 0 13px; color: var(--ink); font-size: clamp(31px, 4vw, var(--page-title-size)); font-weight: 400; letter-spacing: .05em; }
.page-hero p { margin: 0; color: var(--muted); font-size: 16px; max-width: 560px; }
.page-hero-media { min-height: 250px; overflow: hidden; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Shared sections */
.section { padding: var(--section-space) 0; }
.section-soft { background: var(--soft); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
.section-title { margin: 0; color: var(--ink); font-size: var(--section-title-size); font-weight: 400; letter-spacing: .05em; }
.section-title::after { content: ""; display: block; width: 38px; height: 2px; margin-top: 12px; background: var(--brand); }
.section-desc { margin: 8px 0 0; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-size: 14px; }
.text-link svg, .button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding: 0 22px; border: 1px solid var(--brand); color: var(--brand); background: #fff; transition: .2s ease; }
.button:hover { color: #fff; background: var(--brand); }
.button-solid { color: #fff; background: var(--brand); }
.button-solid:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

/* Tabs */
.tabs { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.tab-button { border: 0; background: transparent; color: #333; padding: 9px 20px; font-size: 14px; transition: .18s ease; }
.tab-button:hover, .tab-button.active { color: #fff; background: var(--brand); }

/* Cards and lists */
.card-grid { display: grid; grid-template-columns: repeat(var(--card-columns), 1fr); gap: 26px; }
.content-card { border: 1px solid var(--line); background: #fff; min-width: 0; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.content-card:hover { transform: translateY(-4px); border-color: #d6ded1; box-shadow: var(--shadow); }
.card-media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #f2f4f4; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.content-card:hover .card-media img { transform: scale(1.035); }
.card-body { padding: 21px 24px 24px; }
.card-kicker { margin-bottom: 8px; color: var(--brand); font-size: 12px; }
.card-title { margin: 0 0 10px; color: var(--ink); font-size: 18px; font-weight: 400; line-height: 1.55; }
.card-desc { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-grid-home .card-media { aspect-ratio: 16 / 10; }
.card-hidden { display: none !important; }
.list-stack { border-top: 1px solid var(--line); }
.list-row { display: grid; grid-template-columns: 126px minmax(0, 1fr) 28px; gap: 20px; align-items: center; min-height: 78px; border-bottom: 1px solid var(--line); transition: color .18s ease, padding .18s ease; }
.list-row:hover { color: var(--brand); padding-left: 8px; }
.list-date { color: var(--muted); font-size: 13px; }
.list-title { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.row-arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }

/* About home */
.about-home { padding: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 500px; background: var(--soft); }
.about-home-media { overflow: hidden; }
.about-home-media img { width: 100%; height: 100%; object-fit: cover; }
.about-home-copy { align-self: center; max-width: 610px; padding: 70px 68px; }
.about-home-copy p { color: #5f6d75; margin: 22px 0 30px; }

/* Home columns */
.home-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; }
.home-column-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.home-column h3 { margin: 0; color: var(--ink); font-size: 19px; font-weight: 400; }
.more-small { color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.mini-list { border-top: 1px solid var(--line); }
.mini-row { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.mini-row time { color: var(--muted); }
.mini-row span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.mini-row:hover span { color: var(--brand); }

/* Detail */
.breadcrumb { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.breadcrumb a:hover { color: var(--brand); }
.detail-shell { max-width: 920px; margin: 0 auto; padding: 64px 0 90px; }
.detail-head { text-align: center; margin-bottom: 38px; }
.detail-head h1 { color: var(--ink); font-size: clamp(28px, 4vw, 40px); font-weight: 400; line-height: 1.4; margin: 0 0 18px; }
.detail-meta { color: var(--muted); font-size: 13px; }
.detail-cover { margin-bottom: 38px; max-height: 580px; width: 100%; object-fit: cover; }
.rich-content { color: #4f5e66; font-size: 16px; line-height: 1.9; overflow-wrap: anywhere; }
.rich-content h2, .rich-content h3, .rich-content h4 { color: var(--ink); font-weight: 500; line-height: 1.45; margin: 1.8em 0 .7em; }
.rich-content p { margin: 0 0 1.15em; }
.rich-content img { max-width: 100% !important; height: auto !important; margin: 24px auto; }
.rich-content table { width: 100% !important; border-collapse: collapse; }
.rich-content td, .rich-content th { border: 1px solid var(--line); padding: 10px; }
.rich-content iframe, .rich-content video { max-width: 100%; }
.product-detail { max-width: 1050px; }
.product-intro { display: grid; grid-template-columns: 1.03fr .97fr; gap: 52px; align-items: center; margin-bottom: 62px; }
.product-intro img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--line); }
.product-intro h1 { color: var(--ink); font-size: 36px; font-weight: 400; line-height: 1.35; margin: 0 0 15px; }
.product-intro .model { color: var(--brand); margin-bottom: 16px; }
.product-intro .lead { color: #5f6d75; }
.spec-list { margin: 26px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.spec-list li { display: grid; grid-template-columns: 115px 1fr; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-list b { color: var(--ink); font-weight: 500; }

/* About/contact/honors */
.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: start; }
.prose-block h2 { color: var(--ink); font-size: 25px; font-weight: 400; margin: 0 0 18px; }
.timeline { margin-top: 35px; border-left: 1px solid var(--line); }
.timeline-item { position: relative; padding: 0 0 28px 32px; }
.timeline-item::before { content: ""; position: absolute; left: -5px; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--brand); }
.timeline-year { color: var(--brand); font-weight: 600; }
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.honor-card { border: 1px solid var(--line); background: #fff; padding: 12px; text-align: center; }
.honor-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: var(--soft); }
.honor-card h3 { color: var(--ink); font-size: 15px; font-weight: 400; margin: 14px 4px 4px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 55px; }
.contact-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-list li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list b { display: inline-block; width: 95px; color: var(--ink); font-weight: 500; }
.qr-card { padding: 32px; text-align: center; background: var(--soft); }
.qr-card img { width: min(260px, 100%); margin: 0 auto 16px; }

/* Empty/search/sitemap */
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-bottom: 34px; }
.search-field { width: min(310px, 100%); height: 42px; border: 1px solid var(--line); padding: 0 14px; color: var(--ink); outline: none; }
.search-field:focus { border-color: var(--brand); }
.empty-state { padding: 60px 20px; text-align: center; color: var(--muted); border: 1px solid var(--line); }
.sitemap-columns { columns: 3; column-gap: 45px; }
.sitemap-group { break-inside: avoid; margin-bottom: 30px; }
.sitemap-group h2 { color: var(--ink); font-size: 18px; font-weight: 400; border-bottom: 1px solid var(--line); padding-bottom: 9px; }
.sitemap-group a { display: block; padding: 5px 0; font-size: 14px; }
.sitemap-group a:hover { color: var(--brand); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #fff; padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 46px; }
.footer-brand img {
  display: inline-block; width: auto; height: auto; max-width: var(--logo-max-width, 230px); max-height: var(--logo-max-height, 48px);
  object-fit: contain; object-position: left center;
}
.footer-brand .brand-name { display: inline-block; vertical-align: 14px; margin-left: 8px; }
.footer-brand p { margin: 17px 0 0; color: var(--muted); font-size: 13px; }
.footer-col h4 { margin: 0 0 14px; color: var(--ink); font-size: 15px; font-weight: 400; }
.footer-col a, .footer-col span { display: block; padding: 4px 0; color: #7b878e; font-size: 13px; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 22px; color: #9aa4aa; font-size: 12px; }

/* Responsive */
@media (max-width: 1040px) {
  .nav-shell { gap: 12px; }
  .nav-link { padding-inline: 8px; font-size: 14px; }
  .platform-login-button { padding-inline: 12px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .honor-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--container)); }
  .nav-shell { min-height: 70px; }
  .brand { min-width: 0; }
  .brand img { width: auto; height: auto; max-width: min(var(--logo-max-width, 230px), 188px); max-height: min(var(--logo-max-height, 48px), 44px); }
  .brand-name { font-size: 20px; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav { position: absolute; left: 0; right: 0; top: 70px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; padding: 8px 16px 18px; }
  .main-nav.open { display: block; }
  .nav-link { min-height: 46px; width: 100%; padding: 0 5px; justify-content: space-between; border-bottom: 1px solid #f0f2f2; }
  .nav-link::after { display: none; }
  .dropdown { position: static; min-width: 0; padding: 0 0 7px 16px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-item.expanded .dropdown { display: block; }
  .nav-item:hover > .dropdown { transform: none; }
  .home-hero img { height: 300px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-copy { padding: 38px 0; }
  .page-hero-media { min-height: 220px; }
  .section { padding: 56px 0; }
  .section-head, .filter-bar { align-items: flex-start; flex-direction: column; }
  .tabs { width: 100%; justify-content: flex-start; }
  .tab-button { flex: 0 0 auto; padding-inline: 15px; }
  .about-home { grid-template-columns: 1fr; }
  .about-home-media { min-height: 330px; }
  .about-home-copy { max-width: none; padding: 52px 28px; }
  .home-columns { grid-template-columns: 1fr; gap: 38px; }
  .product-intro, .prose-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sitemap-columns { columns: 2; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .home-hero img { height: 230px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-media, .card-grid-home .card-media { aspect-ratio: 16 / 10; }
  .list-row { grid-template-columns: 85px minmax(0, 1fr) 20px; gap: 10px; }
  .honor-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .detail-shell { padding: 45px 0 65px; }
  .detail-head { text-align: left; }
  .product-intro { gap: 28px; }
  .product-intro h1 { font-size: 29px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .sitemap-columns { columns: 1; }
  .brand img { max-width: min(var(--logo-max-width, 230px), 140px); }
  .header-actions { gap: 7px; }
  .platform-login-button { min-height: 38px; padding-inline: 10px; font-size: 12px; }
  .menu-button { min-width: 62px; height: 38px; padding-inline: 8px; }
  .pf-box { width: min(94vw, 640px); max-height: 88vh; border-radius: 14px; }
  .pf-head { padding: 15px 16px; }
  .pf-body { padding: 16px; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-card { padding: 13px; }
  .pf-cover { height: 96px; }
}

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

/* Dynamic old-design candidate additions */
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 16px;
  color: #fff; background: var(--brand-dark); transition: top .15s ease;
}
.skip-link:focus { top: 12px; }
.loading-state { min-height: 55vh; display: grid; place-items: center; color: var(--muted); }
.data-warning { padding: 8px 16px; color: #735d28; background: #fff8dc; text-align: center; font-size: 13px; }
.eyebrow { margin: 0 0 8px; color: var(--brand); font-size: 11px; letter-spacing: .24em; }
.center-more { margin: 30px 0 0; text-align: center; }
.home-hero { position: relative; min-height: clamp(300px, 31vw, var(--hero-height)); }
.home-hero::after { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(20, 35, 34, .17); pointer-events: none; }
.home-hero:has(.home-hero-slide.active.hero-artwork) { background: #fff; }
.home-hero:has(.home-hero-slide.active.hero-artwork)::after { background: transparent; }
.home-hero-slides { position: absolute; inset: 0; }
.home-hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .55s ease, visibility .55s ease; }
.home-hero-slide.active { opacity: 1; visibility: visible; }
.home-hero-slide > img, .home-hero-slide > .media-placeholder { width: 100%; height: 100%; min-height: 0; }
.home-hero-slide.hero-artwork { background: #fff; }
.home-hero-slide.hero-artwork > img { object-fit: cover; background: #fff; }
.hero-caption {
  position: absolute; z-index: 2; left: max(24px, calc((100% - var(--container)) / 2)); bottom: 12%;
  width: min(720px, calc(100% - 48px)); padding: 20px 26px; color: #fff; background: rgba(35, 52, 51, .56);
  border-left: 3px solid var(--hero-accent, #a5b995);
}
.hero-caption:hover { color: #fff; background: rgba(35, 52, 51, .65); }
.home-hero-slide.hero-artwork .hero-caption { width: min(520px, calc(100% - 48px)); padding: 18px 22px; }
.home-hero-slide.hero-artwork .hero-caption h1 { font-size: clamp(22px, 2.2vw, 30px); }
.hero-caption span { font-size: 11px; letter-spacing: .3em; }
.hero-caption h1 { margin: 7px 0 0; font-size: clamp(24px, 2.7vw, 36px); font-weight: 400; line-height: 1.4; letter-spacing: .04em; word-break: keep-all; }
.hero-sub { margin: 8px 0 0; max-width: 650px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.88); }
.hero-arrow { position: absolute; z-index: 3; top: 50%; width: 42px; height: 42px; margin-top: -21px; display: grid; place-items: center; color: #fff; background: rgba(35,52,51,.42); border: 1px solid rgba(255,255,255,.42); opacity: .82; transition: opacity .2s ease, background .2s ease; }
.hero-arrow:hover, .hero-arrow:focus-visible { opacity: 1; background: rgba(35,52,51,.68); }
.hero-arrow svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero-prev { left: 18px; }
.hero-prev svg { transform: rotate(90deg); }
.hero-next { right: 18px; }
.hero-next svg { transform: rotate(-90deg); }
.hero-dots { position: absolute; z-index: 3; left: 50%; bottom: 16px; display: flex; gap: 9px; transform: translateX(-50%); }
.hero-dot { width: 22px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.55); transition: width .2s ease, background .2s ease; }
.hero-dot.active { width: 38px; background: #fff; }
.page-title-highlight { margin: 0 .08em; color: var(--brand); }
.page-title-highlight.highlight-green { color: #3e9b6e; }
.page-title-highlight.highlight-blue { color: #2a8aaa; }
.page-title-highlight.highlight-yellow { color: #ba7517; }
.page-title-highlight.highlight-orange { color: #d96742; }
.media-placeholder { width: 100%; height: 100%; min-height: 190px; display: grid; place-items: center; color: #9aa79a; background: #f1f4f1; letter-spacing: .24em; }
.card-media.image-failed img, .page-hero-media.image-failed img, .about-home-media.image-failed img, .home-hero-slide.image-failed img,
.detail-cover-wrap.image-failed img, .product-intro-media.image-failed img { visibility: hidden; }
.card-media.image-failed::after, .page-hero-media.image-failed::after, .about-home-media.image-failed::after,
.home-hero-slide.image-failed::after, .detail-cover-wrap.image-failed::after, .product-intro-media.image-failed::after {
  content: "LeSingle"; position: absolute; inset: 0; display: grid; place-items: center; color: #9aa79a; background: #f1f4f1; letter-spacing: .2em;
}
.card-media, .page-hero-media, .about-home-media, .detail-cover-wrap, .product-intro-media { position: relative; }
.detail-section-title { margin: 12px 0 28px; border-bottom: 1px solid var(--line); }
.detail-section-title h2 { display: inline-block; margin: 0 0 -1px; padding: 0 0 11px; color: var(--ink); border-bottom: 2px solid var(--brand); font-size: 21px; font-weight: 400; }
.culture-list { margin: 0; border-top: 1px solid var(--line); }
.culture-list > div { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.culture-list dt { color: var(--brand); }
.culture-list dd { margin: 0; color: var(--ink); }
.honor-card p { margin: 0 0 8px; color: var(--muted); font-size: 12px; }
.honor-card > img, .honor-card > .media-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; min-height: 0; background: var(--soft); }
.contact-list a:hover { color: var(--brand); }
.contact-mark { width: 210px; height: 210px; margin: 0 auto 16px; display: grid; place-items: center; color: var(--brand); border: 1px solid var(--line); letter-spacing: .18em; }
.qr-card h3 { margin: 8px 0 4px; color: var(--ink); font-weight: 400; }
.qr-card p { margin: 0; color: var(--muted); font-size: 13px; }
.jobs-list { border-top: 1px solid var(--line); }
.job-card { border-bottom: 1px solid var(--line); }
.job-toggle { width: 100%; min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 18px 6px; color: var(--ink); background: #fff; border: 0; text-align: left; }
.job-toggle strong { display: block; margin-bottom: 5px; font-size: 20px; font-weight: 400; }
.job-toggle small { color: var(--muted); }
.job-toggle > span:last-child { color: var(--brand); font-size: 25px; transition: transform .2s ease; }
.job-toggle[aria-expanded="true"] > span:last-child { transform: rotate(45deg); }
.job-body { padding: 8px 30px 36px; background: var(--soft); }
.job-body h3 { margin: 24px 0 10px; color: var(--ink); font-size: 17px; font-weight: 500; }

@media (max-width: 820px) {
  .hero-caption { left: 18px; bottom: 20px; width: calc(100% - 36px); padding: 17px 19px; }
  .home-hero-slide.hero-artwork .hero-caption { display: none; }
  .home-hero-slide.hero-artwork > img { object-fit: contain; }
  .home-hero { min-height: 300px; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 8px; }
  .page-hero .eyebrow { margin-top: 0; }
}

@media (max-width: 560px) {
  .home-hero { min-height: 230px; }
  .hero-caption h1 { font-size: 21px; }
  .hero-caption span { font-size: 9px; }
  .hero-sub { font-size: 12px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .page-hero-copy { padding: 30px 0; }
  .page-hero h1 { font-size: 30px; }
  .job-body { padding: 4px 18px 28px; }
  .culture-list > div { grid-template-columns: 60px minmax(0, 1fr); }
}
