/* =========================================================
   鼎冠服装材料官网 style.css
   主色：鼎冠红 #C8102E | 深灰 #1F2430 | 点缀金 #D9A441
   ========================================================= */
:root {
  --red: #C8102E;
  --red-dark: #A00D25;
  --red-light: #FDECEF;
  --dark: #1F2430;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --bg: #F5F6F8;
  --gold: #D9A441;
  --white: #FFFFFF;
  --line: #E5E7EB;
  --shadow: 0 2px 12px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, .14);
  --radius: 8px;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ---------- 顶部工具条 ---------- */
.topbar {
  background: var(--dark);
  color: #D1D5DB;
  font-size: 13px;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px;
}
.topbar-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; gap: 2px; }
.lang-switch button {
  background: none; border: 0; color: #D1D5DB; cursor: pointer;
  font-size: 13px; padding: 2px 8px; border-radius: 3px;
}
.lang-switch button.active { background: var(--red); color: #fff; }
.topbar-tel { display: flex; align-items: center; gap: 6px; color: #fff; }
.topbar-tel svg { flex: none; }

/* ---------- Header ---------- */
.header {
  background: #fff;
  border-bottom: 3px solid var(--red);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .25s;
}
.header.scrolled { box-shadow: var(--shadow-lg); }
.header .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 92px; transition: height .25s;
}
.header.scrolled .container { height: 68px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 52px; height: 52px; flex: none; }
.header.scrolled .logo-mark { width: 42px; height: 42px; }
.logo-text b { display: block; font-size: 22px; letter-spacing: 2px; color: var(--dark); line-height: 1.2; }
.logo-text span { font-size: 11px; letter-spacing: 1.5px; color: var(--gray); text-transform: uppercase; }

.nav { display: flex; gap: 6px; }
.nav a {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 20px; border-radius: 4px; position: relative;
}
.nav a .zh { font-size: 16px; font-weight: 700; line-height: 1.3; }
.nav a .en { font-size: 11px; color: var(--gray-light); letter-spacing: 1px; }
.nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 3px; background: var(--red); transition: all .25s;
  transform: translateX(-50%);
}
.nav a:hover .zh, .nav a.active .zh { color: var(--red); }
.nav a:hover::after, .nav a.active::after { width: 60%; }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.burger span {
  display: block; width: 24px; height: 2px; background: var(--dark);
  margin: 5px auto; transition: .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero 轮播 ---------- */
.hero { position: relative; height: 540px; overflow: hidden; background: var(--dark); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,18,26,.72) 0%, rgba(15,18,26,.25) 60%, rgba(15,18,26,.1) 100%);
}
.hero-caption {
  position: relative; z-index: 2; max-width: var(--container);
  margin: 0 auto; padding: 0 20px; height: 100%;
  display: flex; flex-direction: column; justify-content: center; color: #fff;
}
.hero-caption h2 { font-size: 42px; line-height: 1.35; letter-spacing: 2px; text-shadow: 0 2px 8px rgba(0,0,0,.35); }
.hero-caption .sub { font-size: 16px; letter-spacing: 3px; margin: 14px 0 8px; color: #F3D1D6; text-transform: uppercase; }
.hero-caption p { max-width: 560px; color: #E5E7EB; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; }

.btn {
  display: inline-block; padding: 12px 32px; border-radius: 4px;
  font-size: 15px; cursor: pointer; border: 2px solid transparent; transition: .25s;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { border-color: rgba(255,255,255,.85); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-line { border-color: var(--red); color: var(--red); background: #fff; }
.btn-line:hover { background: var(--red); color: #fff; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.18); color: #fff; font-size: 22px; transition: .25s;
}
.hero-arrow:hover { background: var(--red); }
.hero-arrow.prev { left: 26px; }
.hero-arrow.next { right: 26px; }
.hero-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero-dots button {
  width: 12px; height: 12px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.5); transition: .25s;
}
.hero-dots button.active { background: var(--red); width: 30px; border-radius: 6px; }

/* ---------- 通用版块 ---------- */
.section { padding: 72px 0; }
.section-gray { background: var(--bg); }
.section-head { text-align: center; margin-bottom: 46px; }
.section-head h3 { font-size: 30px; letter-spacing: 2px; }
.section-head .en { display: block; color: var(--gray-light); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-top: 4px; }
.section-head .divider { width: 56px; height: 3px; background: var(--red); margin: 14px auto 0; border-radius: 2px; }

/* ---------- 产品卡片 ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: .3s; display: block;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-card .img-wrap { height: 180px; overflow: hidden; }
.prod-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prod-card:hover img { transform: scale(1.06); }
.prod-card .txt { padding: 16px 18px 20px; }
.prod-card .txt b { font-size: 16px; display: block; margin-bottom: 4px; }
.prod-card .txt span { font-size: 13px; color: var(--gray); display: block; line-height: 1.5; }
.section-more { text-align: center; margin-top: 36px; }

/* ---------- 关于摘要 ---------- */
.about-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.about-split .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-split h3 { font-size: 26px; margin-bottom: 6px; }
.about-split .en { color: var(--gray-light); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.about-split .divider { width: 48px; height: 3px; background: var(--red); margin: 16px 0; border-radius: 2px; }
.about-split p { color: var(--gray); margin-bottom: 14px; }
.about-stats { display: flex; gap: 40px; margin: 26px 0 30px; }
.about-stats b { font-size: 30px; color: var(--red); display: block; line-height: 1.2; }
.about-stats span { font-size: 13px; color: var(--gray); }

/* ---------- 核心优势 ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.adv-card {
  background: #fff; border-radius: var(--radius); padding: 34px 24px;
  text-align: center; box-shadow: var(--shadow); transition: .3s;
  border-top: 3px solid transparent;
}
.adv-card:hover { transform: translateY(-6px); border-top-color: var(--red); }
.adv-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--red-light); display: flex; align-items: center; justify-content: center;
  transition: .3s;
}
.adv-card:hover .adv-icon { background: var(--red); }
.adv-icon svg { stroke: var(--red); transition: .3s; }
.adv-card:hover .adv-icon svg { stroke: #fff; }
.adv-card b { font-size: 17px; display: block; margin-bottom: 2px; }
.adv-card .en { font-size: 11px; color: var(--gray-light); letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.adv-card p { font-size: 13px; color: var(--gray); }

/* ---------- 应用行业 ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.app-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #3A4152 100%);
  color: #fff; padding: 34px 26px; min-height: 130px; transition: .3s;
}
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.app-card b { font-size: 18px; display: block; }
.app-card .en { font-size: 12px; color: #C3C8D4; letter-spacing: 1px; text-transform: uppercase; }
.app-card .num {
  position: absolute; right: 18px; bottom: 6px; font-size: 52px; font-weight: 800;
  color: rgba(255, 255, 255, .08); line-height: 1;
}
.app-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red);
}

/* ---------- 新闻卡片 ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  background: #fff; border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); transition: .3s; display: flex; gap: 18px;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-date {
  flex: none; width: 62px; text-align: center; border-right: 1px solid var(--line); padding-right: 14px;
}
.news-date b { font-size: 28px; color: var(--red); display: block; line-height: 1.1; }
.news-date span { font-size: 12px; color: var(--gray); }
.news-card h4 { font-size: 15px; line-height: 1.5; margin-bottom: 8px; transition: .25s; }
.news-card:hover h4 { color: var(--red); }
.news-card p { font-size: 13px; color: var(--gray); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- CTA 通栏 ---------- */
.cta-band { background: linear-gradient(90deg, var(--red-dark), var(--red)); color: #fff; }
.cta-band .container {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 40px; padding-bottom: 40px;
}
.cta-band h3 { font-size: 24px; }
.cta-band .desc { color: #F3D1D6; font-size: 14px; margin-top: 4px; }
.cta-right { display: flex; align-items: center; gap: 22px; flex: none; }
.cta-tel { text-align: right; }
.cta-tel span { font-size: 12px; color: #F3D1D6; display: block; }
.cta-tel a { font-size: 30px; font-weight: 800; letter-spacing: 1px; color: #fff; }
.cta-band .btn { background: #fff; color: var(--red); font-weight: 700; }
.cta-band .btn:hover { background: var(--gold); color: #fff; }

/* ---------- 页脚 ---------- */
.footer { background: var(--dark); color: #B7BCC8; }
.footer-main {
  display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.4fr; gap: 36px;
  padding: 56px 0 44px;
}
.footer h5 { color: #fff; font-size: 16px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--red); }
.footer-brand .logo-text b { color: #fff; }
.footer-brand .logo-text span { color: #8A90A0; }
.footer-brand p { font-size: 13px; margin-top: 14px; line-height: 1.8; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; transition: .25s; }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-prods { display: flex; flex-wrap: wrap; gap: 8px 0; }
.footer-prods a { font-size: 13px; width: 50%; transition: .25s; }
.footer-prods a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 10px; font-size: 13px; margin-bottom: 12px; line-height: 1.6; }
.footer-contact svg { flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0; font-size: 12.5px; text-align: center; color: #8A90A0;
}
.footer-bottom a:hover { color: #fff; }
.footer-bottom .sep { margin: 0 10px; opacity: .5; }

/* ---------- 右侧浮动条 ---------- */
.float-bar { position: fixed; right: 14px; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; gap: 8px; }
.float-item { position: relative; }
.float-item > a, .float-item > button {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--red); color: #fff;
  border-radius: 6px; border: 0; cursor: pointer; transition: .25s; box-shadow: var(--shadow);
}
.float-item > a:hover, .float-item > button:hover { background: var(--dark); }
.float-item .panel {
  position: absolute; right: 56px; top: 0; background: #fff; color: var(--dark);
  padding: 10px 16px; border-radius: 6px; box-shadow: var(--shadow-lg);
  white-space: nowrap; font-size: 13px; opacity: 0; pointer-events: none;
  transform: translateX(8px); transition: .25s;
}
.float-item:hover .panel { opacity: 1; transform: translateX(0); pointer-events: auto; }
.float-item .panel b { color: var(--red); }
#backTop { display: none; }

/* ---------- 内页页头 ---------- */
.page-banner {
  background: linear-gradient(120deg, var(--dark) 0%, #35161d 55%, var(--red-dark) 100%);
  color: #fff; padding: 58px 0 46px; text-align: center;
}
.page-banner h2 { font-size: 32px; letter-spacing: 3px; }
.page-banner .en { color: #C3C8D4; letter-spacing: 3px; font-size: 13px; text-transform: uppercase; display: block; margin-top: 6px; }
.crumb { margin-top: 16px; font-size: 13px; color: #C3C8D4; }
.crumb a:hover { color: #fff; }

/* ---------- 产品页 ---------- */
.prod-nav {
  position: sticky; top: 92px; z-index: 60; background: #fff;
  border-bottom: 1px solid var(--line); box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.prod-nav .container { display: flex; gap: 8px; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
.prod-nav a {
  padding: 8px 18px; border-radius: 20px; font-size: 14px;
  background: var(--bg); color: var(--dark); transition: .25s;
}
.prod-nav a:hover { color: var(--red); }
.prod-nav a.active { background: var(--red); color: #fff; }

.prod-block { padding: 56px 0; border-bottom: 1px dashed var(--line); }
.prod-block:last-child { border-bottom: 0; }
.prod-block .inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.prod-block.rev .inner { grid-template-columns: 1.1fr 1fr; }
.prod-block.rev .img-col { order: 2; }
.img-col .frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative;
}
.img-col .frame::after {
  content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.55); border-radius: 4px; pointer-events: none;
}
.txt-col .cat-en { color: var(--gray-light); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.txt-col h3 { font-size: 26px; margin: 4px 0 14px; }
.txt-col h3::after { content: ""; display: block; width: 44px; height: 3px; background: var(--red); margin-top: 12px; border-radius: 2px; }
.txt-col .desc { color: var(--gray); margin-bottom: 16px; }
.feat-list li { display: flex; gap: 10px; margin-bottom: 10px; color: var(--dark); font-size: 14px; }
.feat-list li::before { content: "✓"; color: var(--red); font-weight: 800; flex: none; }
.txt-col .btn { margin-top: 18px; }

/* ---------- 关于页 ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 30px 22px; box-shadow: var(--shadow); text-align: center; }
.value-card .no { font-size: 34px; font-weight: 800; color: var(--red-light); transition: .3s; }
.value-card:hover .no { color: var(--red); }
.value-card b { display: block; font-size: 16px; margin: 6px 0 8px; }
.value-card p { font-size: 13px; color: var(--gray); }
.about-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.about-gallery .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-gallery .side { display: grid; gap: 18px; }

/* ---------- 新闻页 ---------- */
.news-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.news-tabs button {
  padding: 10px 30px; border-radius: 24px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; font-size: 15px; transition: .25s;
}
.news-tabs button.active { background: var(--red); border-color: var(--red); color: #fff; }
.news-list { max-width: 920px; margin: 0 auto; }
.news-row {
  display: flex; gap: 24px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px 30px; margin-bottom: 18px;
  cursor: pointer; transition: .3s; border-left: 4px solid transparent;
}
.news-row:hover { border-left-color: var(--red); transform: translateX(4px); }
.news-row .date { flex: none; text-align: center; width: 66px; }
.news-row .date b { font-size: 30px; color: var(--red); display: block; line-height: 1.1; }
.news-row .date span { font-size: 12px; color: var(--gray); }
.news-row h4 { font-size: 17px; margin-bottom: 8px; }
.news-row .summary { color: var(--gray); font-size: 13.5px; }
.news-detail {
  display: none; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
  color: var(--gray); font-size: 14px; white-space: pre-line;
}
.news-row.open .news-detail { display: block; }

/* ---------- 联系页 ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 48px; }
.contact-card {
  background: #fff; border-radius: var(--radius); padding: 30px 22px; text-align: center;
  box-shadow: var(--shadow); transition: .3s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-card .icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--red-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.contact-card .icon svg { stroke: var(--red); }
.contact-card b { display: block; margin-bottom: 6px; }
.contact-card p { color: var(--gray); font-size: 13.5px; line-height: 1.6; }
.contact-card a { color: var(--red); font-weight: 700; }

.contact-main { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: stretch; }
.map-box {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  min-height: 400px; background: var(--bg); position: relative;
}
.map-box iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }
.map-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: center; color: var(--gray); padding: 20px; text-align: center;
}
.map-fallback b { color: var(--dark); font-size: 17px; }

.msg-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; }
.msg-form h4 { font-size: 20px; margin-bottom: 4px; }
.msg-form .tip { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.form-tr { margin-bottom: 16px; }
.form-tr label { display: block; font-size: 13.5px; margin-bottom: 6px; }
.form-tr label i { color: var(--red); font-style: normal; }
.form-tr input, .form-tr textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 4px;
  padding: 11px 14px; font-size: 14px; font-family: inherit; transition: .25s; background: #fff;
}
.form-tr textarea { height: 110px; resize: vertical; }
.form-tr input:focus, .form-tr textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.1); }
.form-tr .err { color: var(--red); font-size: 12px; display: none; margin-top: 4px; }
.msg-form .btn { width: 100%; border: 0; font-size: 16px; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .prod-grid, .adv-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-split, .prod-block .inner, .prod-block.rev .inner, .contact-main { grid-template-columns: 1fr; }
  .prod-block.rev .img-col { order: 0; }
  .hero-caption h2 { font-size: 32px; }
}

@media (max-width: 768px) {
  .topbar .welcome { display: none; }
  .burger { display: block; }
  .nav {
    position: fixed; top: 0; right: -260px; width: 260px; height: 100vh;
    background: var(--dark); flex-direction: column; gap: 0; padding: 80px 0 20px;
    transition: right .3s; z-index: 200; box-shadow: var(--shadow-lg);
  }
  .nav.open { right: 0; }
  .nav a { padding: 14px 28px; align-items: flex-start; border-radius: 0; }
  .nav a .zh { color: #fff; }
  .nav a .en { color: #8A90A0; }
  .nav a::after { display: none; }
  .nav a.active { background: var(--red); }
  .nav-mask { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 150; display: none; }
  .nav-mask.show { display: block; }
  .hero { height: 420px; }
  .hero-caption h2 { font-size: 24px; }
  .hero-arrow { display: none; }
  .section { padding: 48px 0; }
  .section-head h3 { font-size: 24px; }
  .prod-grid, .adv-grid, .apps-grid, .news-grid, .value-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .cta-right { flex-direction: column; gap: 12px; }
  .cta-tel { text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 30px; }
  .about-stats { flex-wrap: wrap; gap: 22px; }
  .prod-nav { top: 68px; }
  .prod-nav .container { gap: 6px; }
  .prod-nav a { padding: 6px 12px; font-size: 13px; }
  .news-row { flex-direction: column; gap: 10px; }
  .news-row .date { display: flex; gap: 8px; align-items: baseline; width: auto; }
  .float-bar { display: none; }
  .contact-main { gap: 22px; }
  .msg-form { padding: 24px; }
}
