:root {
  --ink: #17332c;
  --ink-2: #10241f;
  --muted: #5d6b66;
  --line: #e1d8c3;
  --paper: #fbf5e8;
  --white: #ffffff;
  --gold: #c99a2e;
  --gold-2: #e2b64f;
  --orange-gold: #d6812f;
  --green: #1f5b49;
  --blue: #17314a;
  --soft: #fff4d9;
  --danger: #8a2d23;
  --shadow: 0 14px 34px rgba(22, 49, 42, .12);
  --deep-shadow: 0 24px 60px rgba(16, 36, 31, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, li, a, span, strong, small, button, input, textarea, select {
  overflow-wrap: anywhere;
}
img { display: block; max-width: 100%; height: auto; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: linear-gradient(90deg, #10241f, #3b2a16); color: #fff6df; font-size: 14px; }
.topbar .container { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; flex-wrap: wrap; }
.language a { color: #f6dfae; margin-left: 14px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,252,244,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav { display: flex; align-items: center; min-height: 76px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0; }
.brand-logo {
  width: min(300px, 31vw);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ink), #285f4e);
  color: #f7df9c;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.brand small { display: block; color: var(--muted); font-weight: 600; font-size: 12px; }
.menu {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-left: auto;
  color: #243f38;
  font-size: 15.5px;
  font-weight: 780;
  letter-spacing: .01em;
  white-space: nowrap;
}
.menu a {
  position: relative;
  padding: 8px 0;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: .18s ease;
}
.menu a:hover { color: var(--ink); }
.menu a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 750;
  font-size: 15.5px;
  letter-spacing: .01em;
  cursor: pointer;
  background: var(--white);
  transition: .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.primary { background: var(--ink); color: var(--white); }
.nav-actions .btn.primary {
  min-width: 104px;
  border-color: var(--ink);
}
.btn.gold { background: var(--gold); border-color: var(--gold); color: #1c1609; }
.mobile-toggle { display: none; }
.hero {
  min-height: 690px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 24%, rgba(226, 182, 79, .34), transparent 34%),
    linear-gradient(90deg, rgba(16, 36, 31, .96), rgba(62, 43, 20, .78), rgba(104, 64, 24, .28)),
    url("../assets/photos/modern-printing-workshop-depth-optimized.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.98));
  pointer-events: none;
}
.hero-inner { width: min(840px, 100%); padding: 92px 0 120px; position: relative; z-index: 1; }
.eyebrow { color: #f3d695; font-weight: 800; text-transform: uppercase; font-size: 13px; letter-spacing: .08em; }
h1, h2, h3 { line-height: 1.16; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); margin: 14px 0 22px; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 22px; }
.hero-tagline {
  display: inline-flex;
  max-width: 760px;
  margin: -4px 0 22px;
  padding: 8px 13px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.1);
  color: #f8e4b5;
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 850;
  line-height: 1.35;
}
.hero p { font-size: 19px; max-width: 680px; color: #eef5f1; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn:not(.gold) {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.58);
  color: var(--white);
}
.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-kicker span {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  color: #f6dfae;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 13px;
}
.hero-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  color: #cfe0d9;
  font-size: 14px;
  max-width: 660px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.hero-proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 36px; }
.proof { border: 1px solid rgba(255,255,255,.28); padding: 16px; border-radius: 8px; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); }
.proof strong { display: block; font-size: 18px; color: #ffe4a6; }
section { padding: 78px 0; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 32px; }
.section-head p { max-width: 560px; margin: 0; color: var(--muted); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar-grid {
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 18px;
  align-items: stretch;
}
.pillar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(23, 51, 44, .08);
}
.pillar-card.design-pillar {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pillar-media {
  overflow: hidden;
  background: #e8ece9;
}
.pillar-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: sepia(.18) saturate(1.14) contrast(1.04);
}
.design-pillar .pillar-media img {
  aspect-ratio: 5 / 4;
}
.pillar-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pillar-body span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 14px;
}
.pillar-body h3 {
  font-size: clamp(28px, 3vw, 40px);
}
.pillar-body p {
  color: var(--muted);
  margin: 16px 0 20px;
}
.design-pillar .pillar-body p { color: #d6e4de; }
.pillar-body ul {
  display: grid;
  gap: 9px;
  margin: 0 0 24px;
  padding-left: 18px;
  color: #40574f;
}
.design-pillar .pillar-body ul { color: #e7f0ec; }
.pillar-body .btn { margin-top: auto; align-self: start; }
.studio-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f6f1 100%);
}
.blueprint-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.blueprint-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  min-height: 230px;
  box-shadow: 0 12px 30px rgba(23, 51, 44, .06);
}
.blueprint-card span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 12px;
}
.blueprint-card p {
  color: var(--muted);
  margin: 12px 0 0;
}
.large-blueprint {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
}
.large-blueprint img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.large-blueprint div {
  padding: 28px;
}
.large-blueprint h3 {
  font-size: clamp(28px, 3vw, 42px);
}
.gift-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(226, 182, 79, .24), transparent 34%),
    linear-gradient(135deg, #10241f, #2e2112 64%, #4c2f12);
  color: var(--white);
}
.gift-section .section-head p { color: #d6e4de; }
.gift-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 22px;
}
.gift-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  filter: sepia(.25) saturate(1.18) contrast(1.04);
}
.gift-hero span,
.gift-card span {
  display: block;
  color: #f3d695;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 12px;
}
.gift-hero h3 {
  font-size: clamp(30px, 4vw, 48px);
}
.gift-hero p {
  color: #d6e4de;
  margin: 16px 0 22px;
  font-size: 17px;
}
.gift-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.gift-tags span {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  padding: 7px 10px;
  color: #f3d695;
  margin: 0;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.gift-card {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  padding: 22px;
  min-height: 260px;
}
.gift-card h3 { color: var(--white); }
.gift-card p {
  color: #d6e4de;
  margin: 12px 0 0;
  font-size: 15px;
}
.gift-checklist {
  display: grid;
  grid-template-columns: .9fr 1.1fr auto;
  gap: 22px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  padding: 24px;
}
.gift-checklist p { color: #d6e4de; margin: 10px 0 0; }
.gift-checklist ul {
  margin: 0;
  padding-left: 18px;
  color: #d6e4de;
}
.gift-checklist .btn { white-space: nowrap; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 24px;
  background: var(--soft);
}
.contact-panel p { color: var(--muted); }
.service-card, .article-card, .episode, .process-step, .quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}
.service-card {
  position: relative;
  box-shadow: 0 10px 30px rgba(23, 51, 44, .06);
  transition: .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--deep-shadow); border-color: rgba(181, 138, 58, .42); }
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.92) contrast(1.03); }
.service-card .body, .article-card .body, .episode .body, .quote-panel { padding: 22px; }
.service-card p, .article-card p, .episode p { color: var(--muted); margin: 10px 0 0; }
.service-index {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: .08em;
}
.card-details {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #4c625b;
  font-size: 13px;
}
.band { background: var(--paper); }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.split img { border-radius: 8px; width: 100%; aspect-ratio: 5 / 4; object-fit: cover; box-shadow: var(--shadow); }
.split img,
.article-card img,
.featured-article img,
.news-row img,
.large-blueprint img,
.service-card img {
  filter: sepia(.16) saturate(1.12) contrast(1.03);
}
.lead { color: var(--muted); font-size: 17px; margin: 18px 0 0; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: start; }
.check-list li::before { content: ""; width: 9px; height: 9px; background: var(--gold); border-radius: 50%; margin-top: 10px; flex: 0 0 auto; }
.process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; counter-reset: step; }
.process-step { padding: 18px; min-height: 150px; background: linear-gradient(180deg, #fff, #fbfbf7); }
.process-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); color: var(--gold); font-weight: 900; }
.process-step p { color: var(--muted); margin: 8px 0 0; font-size: 14px; }
.detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.detail-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfaf5);
  box-shadow: 0 12px 32px rgba(23, 51, 44, .06);
}
.detail-head { display: grid; gap: 4px; margin-bottom: 14px; }
.detail-head span { color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 900; font-size: 12px; }
.detail-head strong { font-size: 22px; }
.detail-card p { color: var(--muted); margin: 0 0 18px; }
.detail-card ul { margin: 0; padding-left: 18px; color: #435c54; }
.scenario-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.scenario {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.scenario span { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.scenario p { color: var(--muted); margin: 12px 0 0; }
.article-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.article-card { box-shadow: 0 10px 28px rgba(23, 51, 44, .06); }
.meta { color: var(--gold); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.news-operations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -6px 0 24px;
}
.operation-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  min-height: 158px;
}
.operation-step strong {
  display: block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.operation-step span {
  display: block;
  font-weight: 900;
  font-size: 18px;
}
.operation-step p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 14px;
}
.center-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.editorial-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--paper);
  min-height: 280px;
}
.editorial-panel p { color: var(--muted); margin: 16px 0 24px; }
.dark-panel {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.dark-panel p { color: #d4e2dc; }
.quote-section { background: var(--ink); color: var(--white); }
.quote-section .section-head p { color: #d7e5de; }
form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 6px; font-weight: 700; font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cad5d0;
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 116px; resize: vertical; }
.form-note { color: #d7e5de; font-size: 14px; }
.quote-panel { color: var(--ink); }
.quote-checks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.quote-checks span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 10px;
  color: #f2dfb3;
  font-weight: 800;
  font-size: 13px;
}
.wechat-box {
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  padding: 18px;
  max-width: 520px;
}
.wechat-box span {
  display: block;
  color: #f2dfb3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin-bottom: 8px;
}
.wechat-box strong {
  display: block;
  font-size: 20px;
}
.wechat-box p {
  color: #d7e5de;
  margin: 8px 0 0;
}
.site-footer { background: #10241f; color: #dce8e3; padding: 46px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.site-footer h3 { font-size: 17px; margin-bottom: 12px; }
.site-footer a { display: block; color: #c7d8d1; margin: 8px 0; }
.site-footer p { color: #b9ccc4; margin: 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 18px; color: #a9bdb5; font-size: 14px; }
.page-hero {
  padding: 84px 0 58px;
  background: var(--paper);
}
.page-hero p { max-width: 700px; color: var(--muted); font-size: 18px; }
.news-hero {
  background:
    linear-gradient(90deg, rgba(251,245,232,.97), rgba(251,245,232,.82)),
    url("../assets/photos/news-packaging-boxes.jpg") center / cover no-repeat;
}
.news-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.news-tabs span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: 999px;
  padding: 8px 12px;
  color: #36564e;
  font-weight: 800;
  font-size: 13px;
}
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.featured-article {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}
.featured-article img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.featured-article .body { padding: 34px; }
.featured-article p { color: var(--muted); font-size: 17px; margin: 16px 0 24px; }
.compact-head { margin: 12px 0 20px; align-items: center; }
.compact-head h2 { font-size: clamp(25px, 3vw, 34px); }
.news-list { display: grid; gap: 16px; }
.news-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.news-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}
.news-row p { color: var(--muted); margin: 8px 0 0; }
.news-sidebar { display: grid; gap: 18px; position: sticky; top: 100px; }
.sidebar-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}
.sidebar-block p { color: var(--muted); margin: 12px 0 18px; }
.dark-sidebar {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.dark-sidebar p { color: #d4e2dc; }
.topic-stack { display: grid; gap: 10px; }
.topic-pill {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.topic-pill span { color: var(--gold); font-weight: 900; font-size: 12px; }
.topic-pill strong { line-height: 1.35; }
.topic-pill small { color: var(--muted); line-height: 1.45; }
.track-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.track-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  min-height: 150px;
}
.track-card span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 10px;
}
.track-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.calendar-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
  min-height: 156px;
}
.calendar-month {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--ink);
  color: #f6dfae;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.calendar-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}
.calendar-card h3 {
  font-size: 18px;
  margin: 6px 0 8px;
}
.calendar-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.exhibition-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}
.exhibition-card h3 {
  font-size: 20px;
  margin: 8px 0 10px;
}
.exhibition-card p {
  color: var(--muted);
  margin: 0 0 14px;
}
.exhibition-card ul {
  margin: 0;
  padding-left: 18px;
  color: #435c54;
  font-size: 14px;
}
.content-list { display: grid; gap: 16px; }
.update-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); }
.update-table th, .update-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.update-table th { background: var(--soft); }
.status { display: inline-flex; padding: 4px 8px; border-radius: 999px; background: #e8f0ec; color: var(--green); font-size: 13px; font-weight: 800; }
.toast { padding: 12px 14px; border-radius: 8px; background: #e8f4ed; border: 1px solid #b8d4c5; color: var(--green); display: none; }
.toast.show { display: block; }
.admin-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}
.admin-sidebar, .admin-preview, .draft-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 51, 44, .06);
}
.admin-sidebar { padding: 22px; position: sticky; top: 100px; }
.admin-sidebar form { gap: 16px; }
.admin-preview { padding: 28px; min-height: 680px; }
.admin-note {
  color: var(--muted);
  margin: 16px 0 0;
  font-size: 13px;
}
.daily-desk {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
  margin-bottom: 20px;
}
.daily-queue {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.queue-card {
  display: grid;
  gap: 6px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 16px;
  cursor: pointer;
  font: inherit;
  min-height: 142px;
  transition: .18s ease;
}
.queue-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(181, 138, 58, .45);
}
.queue-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.queue-card strong { font-size: 17px; line-height: 1.34; }
.queue-card small { color: var(--muted); line-height: 1.45; }
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}
.draft-list { display: grid; gap: 14px; margin-top: 20px; }
.draft-card { padding: 18px; }
.draft-card h3 { font-size: 18px; }
.draft-card p { margin: 8px 0 0; color: var(--muted); }
.draft-output {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.draft-output article {
  max-width: 820px;
}
.draft-figure { margin: 18px 0 22px; }
.draft-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}
.draft-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
.draft-output h1 { font-size: clamp(32px, 4vw, 48px); color: var(--ink); }
.draft-output h2 { font-size: 26px; margin: 28px 0 12px; }
.draft-output p { color: #40574f; }
.draft-output ul { padding-left: 20px; color: #40574f; }
.approval-box {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #d4c08d;
  border-radius: 8px;
  background: #fff9e8;
  color: #5f4b16;
}
.admin-status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.admin-stat {
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}
.admin-stat strong { display: block; font-size: 24px; }
.site-registry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.site-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  display: grid;
  gap: 12px;
  min-height: 230px;
}
.site-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.site-card strong { font-size: 20px; line-height: 1.25; }
.site-card p { margin: 0; color: var(--ink); font-weight: 800; }
.site-card small { color: var(--muted); line-height: 1.5; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(23, 51, 44, .08);
  transition: .18s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--deep-shadow); }
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-card div { padding: 22px; display: grid; gap: 12px; }
.product-card span,
.archive-list span,
.faq-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-card h2,
.archive-list h2,
.faq-card h2 { font-size: 24px; }
.product-card p,
.archive-list p,
.faq-card p { color: var(--muted); margin: 0; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 28px;
  align-items: start;
}
.product-main,
.product-side {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 14px 34px rgba(23, 51, 44, .08);
}
.product-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 26px;
}
.product-main h2 { font-size: clamp(28px, 3vw, 40px); margin: 28px 0 14px; }
.product-main p { color: var(--muted); }
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.spec-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 14px;
}
.product-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}
.product-side h2 { font-size: 24px; }
.product-side ul { margin: 0; padding-left: 18px; color: var(--muted); }
.related-products {
  display: grid;
  gap: 10px;
}
.related-products a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--paper);
  font-weight: 800;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.spec-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.spec-table th,
.spec-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { background: var(--soft); color: var(--ink); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.faq-card,
.archive-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  display: grid;
  gap: 12px;
}
.archive-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 960px) {
  .mobile-toggle { display: inline-flex; }
  .menu { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--white); padding: 18px 20px; border-bottom: 1px solid var(--line); flex-direction: column; align-items: start; }
  .menu.open { display: flex; }
  .nav-actions .btn:not(.mobile-toggle) { display: none; }
  .nav { position: relative; }
  .brand-logo { width: min(260px, 48vw); }
  h1 { font-size: clamp(36px, 8vw, 58px); }
  h2 { font-size: clamp(28px, 5.6vw, 40px); }
  .hero-proof, .grid-4, .grid-3, .process, .footer-grid, .detail-grid, .scenario-grid, .news-operations, .daily-queue, .track-grid, .calendar-grid, .exhibition-grid, .pillar-grid, .blueprint-grid, .gift-grid, .site-registry, .product-grid, .faq-grid, .archive-list { grid-template-columns: repeat(2, 1fr); }
  .split, .grid-2, .admin-shell, .news-layout, .featured-article, .gift-hero, .gift-checklist, .product-detail { grid-template-columns: 1fr; }
  .admin-sidebar, .news-sidebar, .product-side { position: static; }
  .pillar-card { min-height: auto; }
  .large-blueprint { grid-row: auto; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar .container, .section-head, .hero-actions { align-items: start; flex-direction: column; }
  .topbar { font-size: 12px; }
  .language a { margin-left: 0; margin-right: 12px; }
  .nav { min-height: 68px; gap: 10px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 54px 0 72px; }
  .hero p, .page-hero p { font-size: 16px; }
  .hero-tagline { font-size: 17px; }
  h1 { font-size: clamp(34px, 11vw, 46px); }
  h2 { font-size: clamp(26px, 8vw, 34px); }
  h3 { font-size: 20px; }
  .btn { width: 100%; min-height: 44px; }
  .hero-kicker span { font-size: 12px; }
  .hero-note { font-size: 13px; }
  .proof, .gift-card, .detail-card, .scenario-card, .operation-step, .site-card { min-height: auto; }
  .hero-proof, .grid-4, .grid-3, .process, .footer-grid, .form-grid, .detail-grid, .scenario-grid, .news-operations, .daily-queue, .news-row, .track-grid, .calendar-grid, .exhibition-grid, .pillar-grid, .blueprint-grid, .gift-grid, .site-registry, .product-grid, .faq-grid, .archive-list { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .brand-logo { width: min(220px, 58vw); max-height: 54px; }
  .pillar-body, .quote-panel, .editorial-panel, .product-main, .product-side { padding: 22px; }
  .spec-list { grid-template-columns: 1fr; }
  .featured-article img { min-height: 240px; }
}
