/* ===== SanJun — Design Tokens ===== */
:root {
  --bg: #F7F4EE;
  --bg-alt: #EFEBE2;
  --card: #FFFFFF;
  --ink: #1B1A18;
  --ink-2: #5A5750;
  --ink-3: #96938B;
  --gold: #A9813C;
  --gold-soft: #C6A15B;
  --gold-deep: #8C6A2E;
  --line: #E6E1D7;
  --line-strong: #D8D2C6;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 40px rgba(27, 26, 24, 0.06);
  --shadow-lg: 0 24px 70px rgba(27, 26, 24, 0.12);
  --font-sans: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all .2s ease;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(169,129,60,.3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--bg-alt); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ===== Top contact bar ===== */
.top-bar { background: var(--gold); color: #fff; font-size: 13.5px; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; gap: 16px; }
.top-bar-contacts { display: flex; gap: 24px; min-width: 0; }
.top-bar-link { display: inline-flex; align-items: center; gap: 7px; color: #fff; white-space: nowrap; transition: opacity .2s; }
.top-bar-link:hover { opacity: .78; }
.top-bar-link svg { width: 15px; height: 15px; flex: none; }

.lang-drop { position: relative; flex: none; }
.lang-drop-btn {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.34); color: #fff; font-size: 13.5px; font-weight: 600;
  padding: 6px 13px; border-radius: 999px; cursor: pointer; transition: background .2s;
}
.lang-drop-btn:hover { background: rgba(255,255,255,.26); }
.lang-drop-btn svg { width: 15px; height: 15px; }
.lang-drop-btn .caret { width: 13px; height: 13px; transition: transform .2s; }
.lang-drop.open .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 196px;
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-lg); padding: 6px;
  list-style: none; margin: 0; max-height: 380px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .18s ease;
  z-index: 60;
}
.lang-drop.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li { padding: 8px 14px; border-radius: 8px; cursor: pointer; font-size: 14px; transition: background .15s; }
.lang-menu li:hover { background: var(--bg-alt); color: var(--gold-deep); }
.lang-menu .lang-sep { height: 1px; background: var(--line); margin: 5px 8px; padding: 0; cursor: default; }
.lang-menu .lang-sep:hover { background: var(--line); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,238,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { color: var(--gold); display: flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 19px; letter-spacing: .5px; }
.brand-text small { font-size: 11px; color: var(--ink-3); letter-spacing: .4px; }

.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: 15px; color: var(--ink-2); font-weight: 500; transition: color .2s; }
.main-nav a:hover { color: var(--gold-deep); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 5px; background: transparent; border: none;
  font-size: 14px; font-weight: 600; cursor: pointer; color: var(--ink-2); padding: 4px 2px;
}
.lang-opt { transition: color .2s; }
.lang-opt.active { color: var(--gold-deep); }
.lang-sep { color: var(--line-strong); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Nav dropdown ===== */
.nav-item { position: relative; }
.nav-item.has-drop > a::after { content: "▾"; font-size: 11px; margin-left: 5px; color: var(--ink-3); }
.nav-drop {
  position: absolute; top: calc(100% + 12px); left: -18px; min-width: 264px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .2s ease; z-index: 55;
}
.nav-item.has-drop:hover .nav-drop,
.nav-item.has-drop:focus-within .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 14px; color: var(--ink-2); font-weight: 500; }
.nav-drop a:hover { background: var(--bg-alt); color: var(--gold-deep); }
.nav-drop .drop-all { color: var(--gold-deep); font-weight: 600; border-top: 1px solid var(--line); margin-top: 4px; padding-top: 11px; }

/* ===== Hero Carousel ===== */
.hero-carousel { position: relative; }
.carousel {
  position: relative; height: min(78vh, 640px); min-height: 480px;
  overflow: hidden; background: #14120F;
}
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease; pointer-events: none;
}
.slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,18,15,.78) 0%, rgba(20,18,15,.48) 46%, rgba(20,18,15,.12) 100%);
}
.slide-content {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(1200px, 92%); z-index: 2;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  color: #fff;
}
.slide-content .eyebrow { color: #EBC884; }
.slide-title { font-size: clamp(30px, 4.5vw, 52px); line-height: 1.12; margin: 0 0 20px; letter-spacing: -.5px; font-weight: 700; max-width: 680px; }
.slide-sub { font-size: 17px; color: rgba(255,255,255,.88); max-width: 560px; margin: 0 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-content .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.slide-content .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); transition: background .2s;
}
.carousel-arrow:hover { background: rgba(255,255,255,.26); }
.carousel-arrow.prev { left: 22px; }
.carousel-arrow.next { right: 22px; }

.carousel-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 999px; border: none; background: rgba(255,255,255,.42); cursor: pointer; padding: 0; transition: all .3s; }
.dot.is-active { background: #fff; width: 26px; }

/* ===== Stats ===== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-value { display: block; font-size: 32px; font-weight: 700; color: var(--gold-deep); }
.stat-label { font-size: 13px; color: var(--ink-3); }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; letter-spacing: -.3px; }
.section-sub { color: var(--ink-2); margin: 0; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px;
}

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; color: var(--gold-deep); margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-media {
  border-radius: 12px; overflow: hidden; margin-bottom: 20px;
  aspect-ratio: 3 / 2; background: var(--bg-alt);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card h3 { font-size: 18px; margin: 0 0 10px; }
.card p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.card-plain { box-shadow: none; }
.card-plain:hover { box-shadow: var(--shadow); }

/* Category + Featured grids */
.cat-grid, .feat-grid { grid-template-columns: repeat(3, 1fr); }
.cat-card .card-media { margin-bottom: 18px; }
.cat-more { margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--gold-deep); }
.cat-card:hover .cat-more { text-decoration: underline; }
.feat-card { padding: 18px; }
.feat-card .card-media { margin-bottom: 14px; aspect-ratio: 4 / 3; }
.feat-card h3 { font-size: 16px; margin: 0; }

/* ===== Video ===== */
.video-frame { max-width: 900px; margin: 0 auto; }
.video-inner {
  position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg); background: #14120F;
}
.video-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0;
  cursor: pointer; background: #14120F;
}
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; border-radius: 50%;
  background: rgba(169,129,60,.94); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(0,0,0,.34); transition: transform .2s;
}
.play-btn svg { margin-left: 4px; }
.video-poster:hover .play-btn { transform: scale(1.08); }
.video-caption { text-align: center; color: var(--ink-3); font-size: 14px; margin: 18px 0 0; }

/* ===== Process ===== */
.process-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; }
.process-step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px; display: flex; flex-direction: column; gap: 10px; transition: border-color .2s, transform .2s;
}
.process-step:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.process-media { width: 100%; aspect-ratio: 16 / 10; border-radius: 10px; overflow: hidden; background: var(--bg-alt); }
.process-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.process-step:hover .process-media img { transform: scale(1.05); }
.step-num { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.process-step h3 { font-size: 15.5px; margin: 0; }

/* ===== Quality ===== */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; text-align: center; }
.badge-tag { display: inline-block; font-size: 19px; font-weight: 700; color: var(--gold-deep); letter-spacing: .3px; margin-bottom: 8px; }
.badge p { margin: 0; color: var(--ink-3); font-size: 14px; }

/* ===== CTA ===== */
.cta { background: linear-gradient(135deg, #8C6A2E, #A9813C 50%, #B58A3F); color: #fff; }
.cta-inner { text-align: center; padding: 84px 0; max-width: 720px; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 14px; }
.cta-inner p { font-size: 17px; opacity: .92; margin: 0 0 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: #14120F; color: #E9E5DC; padding: 64px 0 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 360px; }
.brand-light .brand-mark { color: var(--gold-soft); }
.brand-light small { color: #8f8a7f; }
.footer-tag { color: #8f8a7f; font-size: 14.5px; margin: 18px 0 0; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #b8b2a6; margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { color: #c9c4b8; font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom p { color: #7c786f; font-size: 13px; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .badges { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .carousel-arrow { width: 40px; height: 40px; }
  .carousel-arrow.prev { left: 12px; }
  .carousel-arrow.next { right: 12px; }
}
@media (max-width: 640px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px 4%; gap: 14px; }
  .main-nav.open { display: flex; }
  .nav-burger { display: flex; }
  .header-actions .btn-sm { display: none; }
  .cards-grid, .process-grid, .badges, .cat-grid, .feat-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .carousel { min-height: 420px; }
  .carousel-arrow { display: none; }
  .top-bar-inner { height: 38px; }
  .top-bar-contacts { gap: 14px; }
  .top-bar-contacts .top-bar-link:nth-child(2) { display: none; }
  .top-bar-link span { font-size: 12.5px; }
  .nav-item.has-drop > a::after { display: none; }
  .nav-drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-left: 2px solid var(--line); border-radius: 0; margin: 6px 0 0 8px;
    padding: 0 0 0 12px; min-width: 0; }
  .nav-drop a { padding: 8px 0; }
  .nav-drop .drop-all { border-top: none; margin-top: 0; padding-top: 8px; }
}

/* ===== Bilingual toggle (blog / article pages) ===== */
.lang-zh { display: none; }
html.lang-zh .lang-en { display: none; }
html.lang-zh .lang-zh { display: block; }
html.lang-zh .lang-zh.inline,
.lang-zh.inline { display: inline; }
html.lang-zh .lang-en.inline { display: none; }

.main-nav a.is-current { color: var(--gold-deep); font-weight: 600; }

/* ===== Page hero (blog index) ===== */
.page-hero {
  background: linear-gradient(135deg, #14120F 0%, #2A241A 55%, #3A2F1D 100%);
  color: #fff; padding: 84px 0 72px; text-align: center;
}
.page-hero .eyebrow { color: #EBC884; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 48px); margin: 0 0 16px; letter-spacing: -.5px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto; font-size: 17px; }

/* ===== Blog cards ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.blog-card {
  display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.blog-card .card-media { margin: 0; border-radius: 0; aspect-ratio: 16 / 10; }
.blog-card .blog-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .5px; }
.blog-meta .cat { color: var(--gold-deep); font-weight: 700; }
.blog-card h2 { font-size: 19px; line-height: 1.35; margin: 0; }
.blog-card h2 a { transition: color .2s; }
.blog-card h2 a:hover { color: var(--gold-deep); }
.blog-card p { color: var(--ink-2); font-size: 14.5px; margin: 0; flex: 1; }
.blog-read { font-size: 14px; font-weight: 600; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 6px; }
.blog-read:hover { color: var(--gold); }

/* ===== Article page ===== */
.post-hero {
  background: linear-gradient(135deg, #14120F 0%, #2A241A 55%, #3A2F1D 100%);
  color: #fff; padding: 56px 0 48px;
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 26px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: #EBC884; }
.breadcrumb a:hover { text-decoration: underline; }
.post-hero h1 { font-size: clamp(26px, 4vw, 44px); line-height: 1.18; margin: 0 0 18px; letter-spacing: -.5px; max-width: 820px; }
.post-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.78); }
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }

.post-body { max-width: 760px; margin: 0 auto; padding: 56px 0 32px; font-size: 17px; line-height: 1.85; color: var(--ink); }
.post-body h2 { font-size: 26px; margin: 44px 0 16px; letter-spacing: -.2px; }
.post-body h3 { font-size: 20px; margin: 32px 0 12px; }
.post-body p { margin: 0 0 20px; color: var(--ink-2); }
.post-body ul, .post-body ol { margin: 0 0 22px; padding-left: 24px; color: var(--ink-2); }
.post-body li { margin-bottom: 10px; }
.post-body strong { color: var(--ink); }
.post-body a { color: var(--gold-deep); text-decoration: underline; }
.post-body a:hover { color: var(--gold); }
.post-body .lead { font-size: 19px; color: var(--ink); }
.post-body blockquote {
  margin: 28px 0; padding: 20px 24px; border-left: 3px solid var(--gold);
  background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink);
}
.post-body blockquote p { margin: 0; color: var(--ink-2); font-style: italic; }

/* ===== Related posts ===== */
.related { background: var(--bg-alt); padding: 72px 0; }
.related h2 { text-align: center; margin: 0 0 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: transform .2s, box-shadow .2s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-card .cat { font-size: 12.5px; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .5px; }
.related-card h3 { font-size: 16.5px; margin: 10px 0 0; line-height: 1.4; }
.related-card h3 a:hover { color: var(--gold-deep); }

/* ===== Article CTA ===== */
.post-cta { max-width: 760px; margin: 0 auto 80px; }
.post-cta .cta-inner { padding: 56px 0; }

@media (max-width: 960px) {
  .blog-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid, .related-grid { grid-template-columns: 1fr; }
  .post-body { padding: 40px 0 24px; font-size: 16px; }
}

/* ===== Contact / Quote form ===== */
.contact-wrap {
  display: grid; grid-template-columns: 360px 1fr; gap: 32px; align-items: start;
}
.contact-aside { display: flex; flex-direction: column; gap: 26px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; color: var(--gold-deep);
}
.ci-icon svg { width: 22px; height: 22px; }
.contact-item h4 { margin: 0 0 4px; font-size: 15px; }
.contact-item a, .contact-item p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.contact-item a:hover { color: var(--gold-deep); }

.contact-form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(169,129,60,.14);
  background: #fff;
}
.form-note { margin: 18px 0; font-size: 13px; color: var(--ink-3); }
.btn-block { width: 100%; }
.form-status {
  margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: 14.5px;
}
.form-status.is-success { background: #EEF6EE; color: #2E6B34; border: 1px solid #CFE6CF; }
.form-status.is-error { background: #FBEFEF; color: #A33; border: 1px solid #ECC8C8; }
.hp-field { display: none !important; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-aside { flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .contact-item { flex: 1 1 240px; }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
}

/* ===== Products pages ===== */
.breadcrumb { padding: 20px 0 0; font-size: 13.5px; color: var(--ink-3); }
.breadcrumb .container { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .sep { color: var(--line-strong); }
.breadcrumb .current { color: var(--gold-deep); font-weight: 600; }

.cat-hero {
  background: linear-gradient(135deg, #14120F 0%, #2A241A 55%, #3A2F1D 100%);
  color: #fff; padding: 64px 0; text-align: left;
}
.cat-hero .eyebrow { color: #EBC884; }
.cat-hero h1 { font-size: clamp(30px, 4vw, 46px); margin: 0 0 16px; letter-spacing: -.5px; max-width: 820px; }
.cat-hero p { color: rgba(255,255,255,.85); max-width: 740px; font-size: 17px; margin: 0; }

.prod-section { padding: 72px 0; }
.prod-section-head h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 10px; }
.prod-section-head p { color: var(--ink-2); margin: 0 0 36px; max-width: 760px; }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prod-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-media { aspect-ratio: 4 / 3; background: var(--bg-alt); overflow: hidden; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.prod-body h3 { font-size: 16.5px; margin: 0; line-height: 1.4; }
.prod-body p { font-size: 14px; color: var(--ink-2); margin: 0; flex: 1; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.prod-tag { font-size: 12px; color: var(--gold-deep); background: var(--bg-alt); border: 1px solid var(--line); padding: 3px 10px; border-radius: 999px; }
.prod-link { font-size: 14px; font-weight: 600; color: var(--gold-deep); }

.spec-table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--bg-alt); font-weight: 600; color: var(--ink); width: 36%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table td { color: var(--ink-2); }

.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.app-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; }
.app-item h4 { margin: 0 0 8px; font-size: 15.5px; }
.app-item p { margin: 0; font-size: 14px; color: var(--ink-2); }

.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; transition: transform .2s, box-shadow .2s; display: block; }
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.rel-card h4 { margin: 0 0 6px; font-size: 15.5px; color: var(--ink); }
.rel-card p { margin: 0; font-size: 13.5px; color: var(--ink-3); }

@media (max-width: 960px) {
  .prod-grid, .app-grid, .rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .prod-grid, .app-grid, .rel-grid { grid-template-columns: 1fr; }
  .spec-table th { width: 44%; }
}
