/* ============================================================
   何㺸 · 官网前台样式
   设计语言：黑白灰极简 · 衬线标题 · 暗金点缀 #A88A4F
   ============================================================ */

:root {
  --bg: #FAFAF7;
  --bg-alt: #F2F0EB;
  --ink: #1A1A1A;
  --ink-2: #6B6B6B;
  --line: #E5E2DA;
  --gold: #A88A4F;
  --gold-deep: #8C7239;
  --serif: "Noto Serif SC", "Source Han Serif SC", "STSong", "SimSun", Georgia, serif;
  --sans: "Inter", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --shadow: 0 2px 24px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 12px 48px rgba(26, 26, 26, 0.12);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.02em;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 900px; }
.muted { color: var(--ink-2); }

/* ---------- 顶栏 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: flex; flex-direction: column; line-height: 1.25; }
.brand-zh { font-family: var(--serif); font-size: 22px; letter-spacing: 0.12em; }
.brand-en { font-size: 11px; color: var(--ink-2); letter-spacing: 0.35em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: 15px; color: var(--ink-2); position: relative; padding: 4px 0; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 1px; background: var(--gold);
}
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: 7px 20px !important; font-size: 14px !important; letter-spacing: 0.08em;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* 抽屉（移动端） */
.drawer-mask { position: fixed; inset: 0; background: rgba(26,26,26,0.4); opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); z-index: 110; }
.drawer-mask.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: -84%; width: 80%; max-width: 340px; height: 100vh;
  background: var(--bg); z-index: 120; padding: 84px 32px 32px;
  transform: translateX(0); transition: right 0.45s var(--ease);
  box-shadow: var(--shadow-lg); overflow-y: auto;
}
.drawer.show { right: 0; }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a { font-family: var(--serif); font-size: 19px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.drawer-nav .nav-cta { border: 1px solid var(--gold); text-align: center; margin-top: 20px; border-bottom: 0; color: var(--gold); }
.drawer-nav .nav-cta:hover { background: var(--gold); color: #fff; }

/* ---------- Hero ---------- */
.hero { padding: 110px 0 90px; text-align: center; background: linear-gradient(180deg, #F2F0EB 0%, var(--bg) 100%); }
.hero-kicker { font-size: 12px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-title { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 8vw, 88px); letter-spacing: 0.18em; line-height: 1.15; }
.hero-sub { margin: 22px auto 36px; max-width: 560px; color: var(--ink-2); font-size: 17px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-block; padding: 13px 36px; font-size: 15px; letter-spacing: 0.1em;
  cursor: pointer; transition: all 0.35s var(--ease); border-radius: 2px; text-align: center;
}
.btn-primary { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-block { display: block; width: 100%; }
button.btn { font-family: inherit; }

/* ---------- 区块 ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 32px 0 0; }
.section-alt { background: var(--bg-alt); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 42px; }
.section-title { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 4vw, 36px); letter-spacing: 0.14em; }
.section-more { font-size: 14px; color: var(--ink-2); }
.section-more:hover { color: var(--gold); }

/* ---------- 页头 ---------- */
.page-head { padding: 64px 0 40px; background: var(--bg-alt); text-align: center; }
.page-head-plain { background: transparent; text-align: left; padding-bottom: 0; }
.page-title { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 5vw, 44px); letter-spacing: 0.16em; }
.page-sub { margin-top: 12px; color: var(--ink-2); font-size: 15px; letter-spacing: 0.06em; }

/* ---------- 面包屑 ---------- */
.breadcrumb { font-size: 13px; color: var(--ink-2); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- 作品网格 ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.work-card { display: block; }
.work-card-media {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-alt);
}
.work-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.work-card:hover .work-card-media img { transform: scale(1.04); }
.work-card-info { padding: 16px 4px 0; }
.work-card-title { font-family: var(--serif); font-weight: 400; font-size: 18px; letter-spacing: 0.06em; }
.work-card-meta { margin-top: 6px; font-size: 13px; color: var(--ink-2); display: flex; gap: 14px; }
.work-card-series { margin-top: 2px; font-size: 12px; color: var(--gold); letter-spacing: 0.08em; }

/* 占位 */
.ph { display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #EFEDE6, #EFEDE6 12px, #F4F2EC 12px, #F4F2EC 24px); }
.ph-title { font-family: var(--serif); color: #B9B3A6; letter-spacing: 0.2em; font-size: 15px; padding: 12px; text-align: center; }

/* ---------- 系列卡片 ---------- */
.series-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.series-card-media { aspect-ratio: 1; overflow: hidden; background: var(--bg-alt); position: relative; }
.series-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.series-card:hover .series-card-media img { transform: scale(1.05); }
.series-card-info { padding: 14px 4px 0; }
.series-card-info h3 { font-family: var(--serif); font-weight: 400; font-size: 19px; letter-spacing: 0.08em; }
.series-card-info .muted { font-size: 13px; margin-top: 2px; }

/* ---------- 新闻列表 ---------- */
.news-list { display: flex; flex-direction: column; }
.news-row {
  display: grid; grid-template-columns: 130px 1fr 30px; gap: 24px; align-items: center;
  padding: 28px 8px; border-bottom: 1px solid var(--line);
}
.news-row time { font-family: var(--serif); font-size: 14px; color: var(--ink-2); letter-spacing: 0.1em; }
.news-row h3 { font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: 0.04em; }
.news-row:hover h3 { color: var(--gold-deep); }
.news-row .muted { margin-top: 6px; font-size: 14px; }
.news-row-arrow { color: var(--line); font-size: 20px; transition: all 0.3s var(--ease); }
.news-row:hover .news-row-arrow { color: var(--gold); transform: translateX(4px); }

/* ---------- CTA 横带 ---------- */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 88px 24px; }
.cta-band h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 4vw, 36px); letter-spacing: 0.14em; }
.cta-band p { color: #B5B2AA; margin: 14px 0 32px; }
.cta-band .btn-ghost { border-color: #6f6d68; color: #EAE8E1; }
.cta-band .btn-ghost:hover { background: #EAE8E1; color: var(--ink); }

/* ---------- 筛选 ---------- */
.filter-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); padding: 7px 18px; font-size: 13.5px; color: var(--ink-2);
  transition: all 0.3s var(--ease); letter-spacing: 0.04em;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-tools { display: flex; gap: 12px; align-items: center; }
.select {
  border: 1px solid var(--line); background: #fff; padding: 9px 14px; font-size: 13.5px;
  color: var(--ink); font-family: inherit; cursor: pointer;
}
.search-box { display: flex; border: 1px solid var(--line); background: #fff; }
.search-box input { border: 0; outline: 0; padding: 9px 4px 9px 14px; font-size: 13.5px; width: 190px; font-family: inherit; background: transparent; }
.search-btn { border: 0; background: none; padding: 0 14px; cursor: pointer; color: var(--ink-2); font-size: 16px; }
.search-box:focus-within { border-color: var(--gold); }

/* ---------- 详情页 ---------- */
.detail-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: start; }
.detail-figure { background: var(--bg-alt); cursor: zoom-in; position: relative; }
.detail-figure img { width: 100%; }
.detail-figure.ph { aspect-ratio: 4/5; cursor: default; }
.detail-caption { text-align: center; font-size: 12px; color: #A9A599; padding: 10px; letter-spacing: 0.14em; }
.detail-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 14px; }
.thumb { border: 1px solid transparent; background: none; padding: 0; cursor: pointer; overflow: hidden; aspect-ratio: 1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--gold); }
.detail-title { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3.4vw, 32px); letter-spacing: 0.08em; line-height: 1.35; }
.detail-meta { margin: 26px 0; border-top: 1px solid var(--line); }
.detail-meta > div { display: flex; padding: 12px 2px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.detail-meta dt { width: 72px; color: var(--ink-2); flex-shrink: 0; letter-spacing: 0.1em; }
.detail-meta dd a:hover { color: var(--gold); }
.detail-price { font-family: var(--serif); font-size: 26px; color: var(--gold-deep); margin: 4px 0 22px; }
.detail-price-label { font-size: 14px; letter-spacing: 0.3em; color: var(--ink-2); margin: 4px 0 22px; }
.detail-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.detail-desc { border-top: 1px solid var(--line); padding-top: 24px; }

/* ---------- 艺术家页 ---------- */
.artist-layout { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: start; }
.artist-avatar { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-alt); }
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-facts { margin-top: 28px; }
.artist-facts > div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.artist-facts dt { font-size: 12.5px; color: var(--gold); letter-spacing: 0.24em; margin-bottom: 5px; }
.artist-facts dd { font-size: 14.5px; }

/* ---------- 正文排版 ---------- */
.prose { font-size: 16px; }
.prose.narrow { max-width: 760px; margin: 0 auto; }
.prose p { margin: 0 0 1.1em; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: 24px; letter-spacing: 0.1em; margin: 1.8em 0 0.9em; }
.prose h3 { font-family: var(--serif); font-weight: 400; font-size: 19px; margin: 1.5em 0 0.7em; }
.prose ul, .prose ol { margin: 0 0 1.1em 1.4em; }
.prose li { margin-bottom: 0.4em; }
.prose blockquote { border-left: 2px solid var(--gold); padding: 4px 0 4px 22px; color: var(--ink-2); margin: 1.4em 0; font-style: italic; }
.prose img { margin: 1.4em auto; box-shadow: var(--shadow); }
.prose a { color: var(--gold-deep); border-bottom: 1px solid rgba(168,138,79,0.4); }

/* ---------- 新闻详情 ---------- */
.detail-article-layout { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 56px; align-items: start; }
.article-title { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3.6vw, 34px); line-height: 1.4; letter-spacing: 0.04em; }
.article-meta { margin: 16px 0 34px; font-size: 13.5px; }
.article-body { border-top: 1px solid var(--line); padding-top: 32px; }
.article-adjacent { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.adj { border: 1px solid var(--line); padding: 16px 18px; font-size: 14px; transition: border-color 0.3s var(--ease); }
.adj:hover { border-color: var(--gold); }
.adj span { display: block; font-size: 12px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 6px; }
.adj.next { text-align: right; }
.side-title { font-family: var(--serif); font-weight: 400; font-size: 18px; letter-spacing: 0.14em; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.side-list a { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.side-list a:hover { color: var(--gold-deep); }
.side-list .muted { font-size: 12px; }

/* ---------- 联系 / 询价 ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact-facts { margin-top: 34px; }
.contact-facts > div { display: flex; padding: 14px 2px; border-bottom: 1px solid var(--line); }
.contact-facts dt { width: 96px; color: var(--ink-2); flex-shrink: 0; font-size: 13.5px; letter-spacing: 0.2em; }
.contact-facts dd a:hover { color: var(--gold); }
.contact-form-card { background: #fff; border: 1px solid var(--line); padding: 40px; box-shadow: var(--shadow); }
.form-title { font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: 0.12em; margin-bottom: 26px; }
.form-row { margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-label { display: block; font-size: 13.5px; letter-spacing: 0.12em; margin-bottom: 8px; color: var(--ink); }
.form-label em { color: #C0392B; font-style: normal; }
.input {
  width: 100%; border: 1px solid var(--line); background: var(--bg); padding: 11px 14px;
  font-size: 15px; font-family: inherit; color: var(--ink); transition: border-color 0.3s var(--ease);
}
.input:focus { outline: none; border-color: var(--gold); background: #fff; }
textarea.input { resize: vertical; min-height: 96px; }
.select-full { width: 100%; appearance: auto; }
.form-note { font-size: 12.5px; margin-top: 14px; text-align: center; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-success { text-align: center; padding: 30px 0; }
.form-success-icon {
  width: 56px; height: 56px; line-height: 56px; margin: 0 auto 20px; border-radius: 50%;
  background: #F0EBDF; color: var(--gold-deep); font-size: 24px;
}
.form-success h3 { font-family: var(--serif); font-weight: 400; letter-spacing: 0.1em; margin-bottom: 10px; }
.form-success .btn { margin-top: 22px; }

.inquiry-layout { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 60px; align-items: start; }
.inquiry-steps { display: flex; flex-direction: column; gap: 30px; position: sticky; top: 100px; }
.step-no { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: 0.2em; }
.step h4 { font-family: var(--serif); font-weight: 400; font-size: 18px; margin: 6px 0 4px; letter-spacing: 0.08em; }
.step p { font-size: 13.5px; }
.step { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }

/* ---------- 分页 ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.page-item {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); font-size: 14px; color: var(--ink-2); padding: 0 10px;
  transition: all 0.25s var(--ease);
}
a.page-item:hover { border-color: var(--gold); color: var(--gold); }
.page-item.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.page-item.disabled { opacity: 0.35; }

/* ---------- 空状态 / 错误页 ---------- */
.empty-state { text-align: center; padding: 80px 0; color: var(--ink-2); }
.empty-state p { font-family: var(--serif); font-size: 18px; letter-spacing: 0.1em; margin-bottom: 24px; }
.error-page { text-align: center; padding: 110px 0; }
.error-code { font-family: var(--serif); font-size: clamp(90px, 16vw, 150px); color: var(--line); line-height: 1; font-style: italic; }
.error-page h1 { font-family: var(--serif); font-weight: 400; font-size: 26px; letter-spacing: 0.14em; margin: 12px 0 10px; }
.error-page .hero-actions { margin-top: 30px; }

/* ---------- Flash ---------- */
.flash { max-width: 900px; margin: 20px auto 0; padding: 13px 22px; font-size: 14.5px; text-align: center; }
.flash-success { background: #EEF5EC; color: #2E6B2E; border: 1px solid #CDE3CC; }
.flash-error { background: #FBEEEE; color: #A93226; border: 1px solid #EFD2D0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(18, 17, 15, 0.94); z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.lightbox.show { opacity: 1; pointer-events: auto; }
.lightbox-body { max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-body img { max-width: 92vw; max-height: 82vh; object-fit: contain; }
.lightbox-body figcaption { color: #8D8A82; font-size: 13px; letter-spacing: 0.14em; padding: 14px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: none; border: 0; color: #EAE8E1; font-size: 34px;
  cursor: pointer; padding: 16px; line-height: 1; transition: color 0.25s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
.lightbox-close { top: 14px; right: 22px; }
.lightbox-prev { left: 8px; top: 50%; transform: translateY(-50%); font-size: 46px; }
.lightbox-next { right: 8px; top: 50%; transform: translateY(-50%); font-size: 46px; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--ink); color: #B5B2AA; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding: 64px 0 44px; }
.footer-brand .brand-zh { font-family: var(--serif); font-size: 24px; color: #EAE8E1; letter-spacing: 0.14em; }
.footer-brand .brand-en { font-size: 11px; letter-spacing: 0.35em; color: #7C7A73; margin-top: 4px; }
.footer-slogan { margin-top: 14px; font-size: 13.5px; }
.footer-col h4 { color: #EAE8E1; font-size: 14px; letter-spacing: 0.24em; font-weight: 400; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-text { font-size: 14px; line-height: 1.9; }
.footer-bottom {
  border-top: 1px solid #33322E; padding: 22px 0; display: flex; justify-content: space-between;
  font-size: 12.5px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .series-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .detail-article-layout { grid-template-columns: 1fr; }
  .article-side { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .inquiry-layout { grid-template-columns: 1fr; }
  .inquiry-steps { position: static; flex-direction: row; gap: 16px; }
  .inquiry-steps .step { flex: 1; border-bottom: 0; padding-bottom: 0; }
  .artist-layout { grid-template-columns: 1fr; gap: 40px; }
  .artist-avatar { max-width: 380px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
  .hero { padding: 72px 0 60px; }
  .hero-title { letter-spacing: 0.1em; }
  .work-grid { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .work-card-title { font-size: 15px; }
  .work-card-meta { flex-direction: column; gap: 1px; font-size: 12px; }
  .series-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-tools { justify-content: space-between; }
  .search-box { flex: 1; }
  .search-box input { width: 100%; }
  .news-row { grid-template-columns: 1fr; gap: 6px; padding: 22px 4px; }
  .news-row-arrow { display: none; }
  .detail-thumbs { grid-template-columns: repeat(4, 1fr); }
  .contact-form-card { padding: 26px 20px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .inquiry-steps { flex-wrap: wrap; }
  .detail-meta > div { font-size: 13.5px; }
  .pagination { gap: 6px; }
  .page-item { min-width: 36px; height: 36px; }
}
