:root {
  --navy-950: #020C18;
  --navy-900: #06101F;
  --navy-800: #0B1521;
  --navy-700: #142235;
  --gold: #E1BB8C;
  --gold-deep: #C7A45F;
  --cream: #F4E8D7;
  --ink: #152033;
  --muted: #66707F;
  --soft: #F5F3F6;
  --white: #FFFFFF;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 12px 34px rgba(2, 12, 24, 0.12);
  --radius: 8px;
  --font-heading: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-950);
  line-height: 1.6;
}

body.site-gray {
  filter: grayscale(1);
}

h1,
h2,
h3,
.brand-text strong {
  font-family: var(--font-heading);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1180px;
  width: calc(100% - 40px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 112px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(2, 12, 24, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(225, 187, 140, 0.55);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(225, 187, 140, 0.08);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--cream);
}

.brand-text small {
  margin-top: 5px;
  font-size: 9px;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.main-nav a {
  position: relative;
  padding: 10px 11px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
}

.header-hotline {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-hotline span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
}

.header-hotline a {
  margin-top: 3px;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 32%, rgba(59, 82, 128, 0.28), transparent 42%),
    linear-gradient(100deg, var(--navy-950) 0%, #091A30 54%, rgba(9, 26, 48, 0.78) 68%),
    var(--navy-950);
}

.hero-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-slide.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-slide.text-slide {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(2, 12, 24, 0.92);
}

.hero-arrow {
  position: absolute;
  right: 18px;
  bottom: 86px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(2, 12, 24, 0.46);
  color: var(--white);
  cursor: pointer;
}

.hero-arrow-prev {
  right: 64px;
}

.hero-dots {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 26px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--gold);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 12, 24, 0.35), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-top: 34px;
  padding-bottom: 34px;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border: 1px solid rgba(225, 187, 140, 0.45);
  border-radius: 4px;
  font-size: 13px;
  color: var(--gold);
  background: rgba(225, 187, 140, 0.08);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.25;
  color: var(--white);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-slogan {
  margin: 16px 0 0;
  font-size: clamp(19px, 2.4vw, 27px);
  font-weight: 600;
  color: var(--cream);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  color: #221806;
  background: linear-gradient(135deg, #EACF9E, var(--gold-deep));
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn-line {
  min-height: 36px;
  padding: 0 16px;
  font-size: 13px;
  color: var(--gold);
  border-color: rgba(225, 187, 140, 0.45);
  background: rgba(225, 187, 140, 0.06);
}

/* Services */
.services {
  padding: 78px 0 86px;
  background:
    linear-gradient(180deg, rgba(11, 21, 33, 0.35), transparent 18%),
    var(--navy-950);
  border-top: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 224px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(20, 34, 53, 0.72), rgba(6, 16, 31, 0.88));
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(225, 187, 140, 0.45);
  transform: translateY(-3px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid rgba(225, 187, 140, 0.35);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(225, 187, 140, 0.08);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
  color: var(--white);
}

.service-card p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
}

.service-card .btn-line {
  margin-top: auto;
}

/* Why */
.why {
  padding: 78px 0 86px;
  background: var(--navy-900);
  border-top: 1px solid var(--line);
}

.why h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-item {
  padding: 30px 24px;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(11, 21, 33, 0.58);
  text-align: center;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border: 1px solid rgba(225, 187, 140, 0.38);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(225, 187, 140, 0.08);
}

.why-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--cream);
}

.why-item p {
  margin: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
}

/* Cases */
.cases {
  padding: 78px 0 72px;
  background: var(--soft);
}

.section-head {
  margin-bottom: 34px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--ink);
}

.section-head p {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.case-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px 20px;
  border: 1px dashed #D8D2DC;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-photo {
  height: 104px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #EFF1F5;
}

.case-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.case-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border: 1px solid rgba(21, 32, 51, 0.14);
  border-radius: 4px;
  font-size: 11px;
  color: #5A6575;
  background: var(--soft);
}

.case-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}

.case-body p {
  min-height: 60px;
  margin: 0 0 14px;
  flex: 1;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.case-body time {
  font-size: 12px;
  color: #9AA2AC;
}

.cases-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #B98A4E;
}

.more-link:hover {
  color: #8F642C;
}

/* Stats */
.stats {
  padding: 52px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(225, 187, 140, 0.08), transparent 38%),
    var(--navy-950);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  text-align: center;
}

.stat-item {
  padding: 12px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gold);
}

.stat-item span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

/* News */
.news {
  padding: 78px 0 84px;
  background: var(--soft);
}

.news-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.news-faq-panel {
  padding: 22px 22px 10px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
}

.news-faq-head {
  margin-bottom: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #EDEFF4;
}

.news-faq-head h3 {
  margin: 0;
  font-size: 18px;
  color: var(--ink);
}

.news-faq-head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid #EDEFF4;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 2px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  color: #B98A4E;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 2px 16px;
  font-size: 14px;
  color: var(--muted);
}

.faq-empty {
  padding: 22px 2px;
  font-size: 14px;
  color: var(--muted);
}

.news-side {
  padding: 22px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
}

.news-side h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--ink);
}

.news-side-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.news-side-head h3 {
  margin: 0;
}

.news-total {
  font-size: 12px;
  color: var(--muted);
}

.news-toolbar {
  margin-bottom: 10px;
}

.news-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #E2DEE4;
  border-radius: 6px;
  background: var(--soft);
  color: #8A93A0;
}

.news-search:focus-within {
  border-color: var(--gold-deep);
  background: var(--white);
}

.news-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
}

.news-search input::placeholder {
  color: #A6ADB6;
}

.news-feed {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-feed li {
  padding: 13px 0;
  border-bottom: 1px solid #EDEFF4;
}

.news-feed li:last-child {
  border-bottom: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: start;
}

.news-item-thumb {
  width: 84px;
  height: 64px;
  overflow: hidden;
  border-radius: 6px;
  background: #F0F2F6;
}

.news-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item.no-thumb {
  grid-template-columns: 1fr;
}

.news-item.no-thumb .news-item-thumb {
  display: none;
}

.news-item-body {
  min-width: 0;
}

.news-item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #333D4C;
}

.news-item-title:hover {
  color: var(--gold-deep);
}

.news-item-date {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #9AA2AC;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-news-card {
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.home-news-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(23, 35, 61, .08);
}

.home-news-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.home-news-thumb {
  height: 150px;
  overflow: hidden;
  background: #F0F2F6;
}

.home-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 14px;
  min-width: 0;
}

.home-news-date {
  font-size: 12px;
  color: #9AA2AC;
}

.home-news-body h4 {
  margin: 8px 0 6px;
  font-size: 15px;
  line-height: 1.5;
  color: #333D4C;
}

.home-news-body p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-empty {
  padding: 26px 4px;
  font-size: 13px;
  color: var(--muted);
}

.news-pager {
  flex-wrap: wrap;
  justify-content: center;
}

.news-pager button,
.news-pager span {
  min-width: 30px;
}

.news-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-side li {
  padding: 11px 0;
  border-bottom: 1px solid #EDEFF4;
}

.news-side li:last-child {
  border-bottom: 0;
}

.news-side a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #333D4C;
}

.news-side a:hover {
  color: #B98A4E;
}

.news-side time {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #9AA2AC;
}

.pager {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}

.pager button,
.pager span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #E2DEE4;
  border-radius: 4px;
  font-size: 13px;
  color: #66707F;
  background: var(--white);
}

.pager button {
  cursor: pointer;
}

.pager .active {
  border-color: var(--gold-deep);
  color: #fff;
  background: var(--gold-deep);
}

/* Services page */
.services-hero {
  position: relative;
  padding: 92px 0 96px;
  background:
    linear-gradient(100deg, rgba(2, 12, 24, 0.92), rgba(6, 16, 31, 0.55)),
    url("../images/services/banner.jpg") center / cover;
  color: var(--white);
}

.services-hero-inner {
  text-align: center;
}

.services-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white);
}

.services-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
}

.service-categories,
.service-products {
  padding: 78px 0 84px;
  background: var(--soft);
}

.service-products {
  background: var(--white);
}

.service-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-cat {
  display: grid;
  place-items: center;
  min-height: 66px;
  padding: 14px 18px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
  color: #344057;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-cat:hover {
  border-color: var(--gold-deep);
  color: #8F642C;
  transform: translateY(-2px);
  text-decoration: none;
}

.service-cat.active {
  border-color: var(--gold-deep);
  color: #8F642C;
  background: #FBF4EA;
}

.service-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.service-breadcrumb a:hover {
  color: var(--gold);
}

.service-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-product {
  overflow: hidden;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-product-img {
  height: 180px;
  background-color: #EFF1F5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-product-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.service-product-body h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
}

.service-product-body dl {
  margin: 0 0 18px;
}

.service-product-body dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed #E5E1E6;
  font-size: 14px;
}

.service-product-body dt {
  color: #8A95AA;
}

.service-product-body dd {
  margin: 0;
  color: #344057;
  font-weight: 600;
  text-align: right;
}

.service-product-body .price {
  color: #C24242;
  font-size: 18px;
}

.service-product-body .btn {
  margin-top: auto;
}

.service-price-note {
  margin: 22px 0 0;
  font-size: 13px;
  color: #8A95AA;
  text-align: center;
}

.service-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 48px 20px;
  border: 1px dashed #D8D2DC;
  border-radius: var(--radius);
  background: #F7F9FC;
  color: var(--muted);
  text-align: center;
}

.service-cta {
  padding: 70px 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(225, 187, 140, 0.1), transparent 40%),
    var(--navy-950);
  text-align: center;
  color: var(--white);
}

.service-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--white);
}

.service-cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
}

.service-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.service-clinic {
  padding: 78px 0 88px;
  background:
    radial-gradient(circle at 18% 24%, rgba(225, 187, 140, 0.1), transparent 40%),
    var(--navy-950);
}

.service-clinic .section-head h2 {
  color: var(--white);
}

.service-clinic .section-head p {
  color: rgba(255, 255, 255, 0.66);
}

.service-clinic .service-cat {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(11, 21, 33, 0.62);
  color: rgba(255, 255, 255, 0.82);
}

.service-clinic .service-cat:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@supports not (display: grid) {
  .services-grid,
  .case-grid,
  .why-grid,
  .stats-grid,
  .news-layout,
  .service-product-grid,
  .service-cat-grid,
  .footer-grid,
  .contact-service-grid,
  .contact-offices,
  .express-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .services-grid > *,
  .case-grid > *,
  .why-grid > *,
  .service-product-grid > *,
  .service-cat-grid > *,
  .contact-service-grid > *,
  .contact-offices > *,
  .express-grid > * {
    flex: 1 1 30%;
    min-width: 220px;
  }

  .stats-grid > * {
    flex: 1 1 18%;
    min-width: 120px;
  }

  .news-layout > * {
    flex: 1 1 46%;
    min-width: 280px;
  }

  .footer-grid > * {
    flex: 1 1 24%;
    min-width: 220px;
  }
}

/* Footer */
.site-footer {
  padding: 62px 0 0;
  background:
    linear-gradient(180deg, rgba(225, 187, 140, 0.05), transparent 28%),
    var(--navy-950);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 34px;
  padding-bottom: 48px;
}

.footer-brand h3,
.footer-col h3,
.footer-contact h3 {
  margin: 0 0 16px;
  font-size: 17px;
  color: var(--cream);
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin: 8px 0;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact p {
  margin: 7px 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.footer-phone {
  display: block;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.footer-contact-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 13px;
  color: var(--gold);
}

.footer-contact-link:hover {
  border-color: var(--gold);
  color: var(--white);
}

.footer-qr {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-qr figure {
  margin: 0;
  text-align: center;
}

.footer-qr img {
  width: 86px;
  height: 86px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-qr figcaption {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 640px) {
  .footer-qr {
    gap: 10px;
  }

  .footer-qr img {
    width: 76px;
    height: 76px;
  }
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

/* Floating contact */
.float-bar {
  position: fixed;
  right: 14px;
  bottom: 110px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 58px;
  min-height: 58px;
  padding: 8px 5px;
  border: 1px solid rgba(225, 187, 140, 0.4);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(6, 16, 31, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  font-size: 10px;
  text-align: center;
}

.float-whatsapp {
  border-color: rgba(108, 186, 110, 0.6);
  color: #7ED17F;
}

.float-btn:hover {
  transform: translateX(-2px);
}

/* WhatsApp image modal */
.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.whatsapp-modal.open {
  visibility: visible;
  opacity: 1;
}

.whatsapp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
}

.whatsapp-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 14px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.whatsapp-panel img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 4px;
}

.whatsapp-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
}

.whatsapp-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 1080px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 66px;
    flex-wrap: wrap;
  }

  .main-nav {
    position: static;
    order: 3;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    background: rgba(6, 16, 31, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    display: inline-block;
    padding: 13px 15px;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    white-space: nowrap;
  }

  .main-nav a.active::after {
    display: block;
    left: 15px;
    right: 15px;
    bottom: 0;
  }

  .header-hotline {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .hero-slider,
  .hero-slide,
  .hero-slide.active {
    width: 60%;
    opacity: 0.5;
  }

  .hero-inner {
    min-height: 440px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .home-news-grid {
    grid-template-columns: 1fr;
  }

  .service-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 0;
  }

  .hero-arrow {
    right: 12px;
    bottom: 24px;
  }

  .hero-arrow-prev {
    right: 58px;
  }

  .hero-dots {
    right: 108px;
    bottom: 34px;
  }

  .hero-slider,
  .hero-slide,
  .hero-slide.active {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    border-radius: 0;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(2, 12, 24, 0.28), rgba(2, 12, 24, 0.82));
  }

  .hero-inner {
    min-height: 470px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .stat-item:nth-child(3) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }

  .float-bar {
    right: 10px;
    bottom: 16px;
  }

  .float-btn {
    width: 52px;
    min-height: 52px;
    font-size: 9px;
  }

  .services-hero {
    padding: 64px 0;
  }

  .service-cat-grid,
  .service-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact {
  padding: 70px 0 78px;
  background:
    linear-gradient(180deg, rgba(225, 187, 140, 0.08), transparent 30%),
    var(--soft);
}

.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-primary,
.contact-mail {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 22px 24px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
}

.contact-primary img,
.contact-mail img {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.contact-primary > div,
.contact-mail > div {
  min-width: 0;
}

.contact-primary span {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-deep);
}

.contact-primary small,
.contact-mail small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.contact-mail a {
  display: block;
  overflow: hidden;
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-mail a:hover {
  color: var(--gold-deep);
}

.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.contact-info-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
}

.contact-info-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.contact-info-card h3 {
  margin: 12px 0 8px;
  font-size: 16px;
  color: var(--ink);
}

.contact-info-card a {
  display: block;
  overflow-wrap: anywhere;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: #C24242;
}

.contact-info-card a:hover {
  color: var(--gold-deep);
}

.contact-info-card p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #E7C9C9;
  border-radius: var(--radius);
  background: #FFF7F7;
}

.contact-notice img {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.contact-notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #7A3333;
}

.contact-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.office-card {
  overflow: hidden;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
}

.office-card h3 {
  margin: 0;
  padding: 18px 18px 6px;
  font-size: 18px;
  color: var(--ink);
}

.office-address {
  margin: 0;
  padding: 0 18px 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.office-media {
  display: grid;
  gap: 8px;
  padding: 0 18px 14px;
}

.office-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
  background: #ECE9EE;
}

.office-media .media-fallback {
  display: none;
}

.office-media.missing img {
  display: none;
}

.office-media.missing .media-fallback {
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px dashed #D8D2DC;
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
}

.traffic-info {
  padding: 0 18px 18px;
  border-top: 1px dashed #E5E1E6;
}

.traffic-info h4 {
  margin: 14px 0 8px;
  font-size: 14px;
  color: var(--ink);
}

.traffic-info p {
  margin: 5px 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-express {
  margin-bottom: 22px;
}

.contact-express > h3 {
  margin: 0 0 14px;
  font-size: 22px;
  color: var(--ink);
}

.express-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.express-card {
  padding: 16px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
}

.express-card h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--ink);
}

.express-card p {
  margin: 4px 0;
  font-size: 13px;
  color: var(--muted);
}

.express-note {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid #E4E1E6;
  border-radius: 6px;
  background: var(--white);
  font-size: 14px;
  line-height: 1.7;
  color: #7A4A22;
}

.express-hotlines {
  display: grid;
  gap: 8px;
}

.express-hotlines p {
  margin: 0;
  padding: 11px 14px;
  border-left: 3px solid var(--gold-deep);
  background: var(--white);
  font-size: 14px;
  color: var(--ink);
}

.express-hotlines strong {
  color: #C24242;
}

.contact-payment {
  margin-top: 6px;
}

.payment-account,
.payment-note,
.payment-list,
.payment-contact {
  margin-bottom: 14px;
  padding: 20px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
}

.payment-account h3,
.payment-list h4 {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--ink);
}

.payment-account-grid {
  display: grid;
  gap: 10px;
}

.payment-field {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  border-radius: 6px;
  background: #F7F9FC;
}

.payment-field span {
  color: #8A95AA;
  font-size: 14px;
}

.payment-field strong {
  color: #C24242;
  font-size: 18px;
  line-height: 1.5;
  word-break: break-all;
}

.payment-field.account-no strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.payment-note p,
.payment-list p,
.payment-contact p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #4A5668;
}

.payment-note p:first-child {
  margin-top: 0;
}

.payment-note strong,
.payment-arrival strong,
.payment-contact strong {
  color: #C24242;
}

.payment-list ol {
  margin: 8px 0 12px;
  padding-left: 22px;
  font-size: 14px;
  line-height: 2;
  color: #4A5668;
}

.payment-contact {
  display: grid;
  gap: 6px;
}

.payment-contact a {
  color: #C24242;
  font-weight: 600;
}

.payment-qq img {
  vertical-align: middle;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.contact-social figure {
  margin: 0;
  padding: 16px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.contact-social img {
  width: 150px;
  height: 150px;
  border-radius: 6px;
  object-fit: cover;
}

.contact-social figcaption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.contact-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: start;
}

.contact-main {
  min-width: 0;
}

.contact-qr-side {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 14px;
}

.contact-qr-side figure {
  margin: 0;
  padding: 16px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.contact-qr-side img {
  width: 100%;
  max-width: 190px;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
}

.contact-qr-side figcaption {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.contact-fixed-qr {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 70;
  display: grid;
  gap: 8px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(225, 187, 140, 0.35);
  border-radius: 10px;
  background: rgba(2, 12, 24, 0.96);
  box-shadow: 0 12px 30px rgba(2, 12, 24, 0.28);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.contact-fixed-qr strong {
  display: block;
  font-size: 14px;
  text-align: center;
  color: var(--gold);
}

.contact-fixed-qr-row {
  display: flex;
  gap: 10px;
}

.contact-fixed-qr figure {
  margin: 0;
  text-align: center;
}

.contact-fixed-qr img {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
}

.contact-fixed-qr figcaption {
  margin-top: 5px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-qr-side {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero,
  .contact-offices,
  .express-grid {
    grid-template-columns: 1fr;
  }

  .contact-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contact {
    padding: 46px 0 54px;
  }

  .contact-hero,
  .contact-service-grid,
  .contact-offices,
  .express-grid {
    grid-template-columns: 1fr;
  }

  .contact-primary,
  .contact-mail {
    padding: 18px;
  }

  .payment-field {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-primary span {
    font-size: 30px;
  }

  .contact-mail a {
    font-size: 18px;
    white-space: normal;
  }

  .contact-social {
    flex-direction: column;
    align-items: center;
  }

  .contact-social figure {
    width: min(100%, 260px);
  }

  .contact-social img {
    width: 100%;
    height: auto;
  }

  .contact-fixed-qr {
    left: 10px;
    bottom: 10px;
    padding: 10px;
  }

  .contact-fixed-qr img {
    width: 72px;
    height: 72px;
  }
}

/* About */
.about {
  padding: 70px 0 78px;
  background:
    linear-gradient(180deg, rgba(225, 187, 140, 0.08), transparent 30%),
    var(--soft);
}

.about-hero {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--white);
}

.about-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-bottom: 16px;
}

.about-block {
  padding: 26px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
}

.about-block h3 {
  margin: 0 0 14px;
  font-size: 20px;
  color: var(--ink);
}

.about-block p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-brands {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-brands li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed #E5E1E6;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.about-brands li:last-child {
  border-bottom: 0;
}

.about-brands img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.about-range {
  margin-bottom: 16px;
}

.about-photo {
  overflow: hidden;
  border-radius: 6px;
}

.about-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.about-mission {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--cream);
}

.about-mission span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
}

.about-mission strong {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  color: var(--gold);
}

.about-closing {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 46px 0 54px;
  }

  .about-block {
    padding: 20px;
  }

  .about-mission {
    padding: 22px;
  }
}

/* Consult */
.consult {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 50% 38%, rgba(59, 82, 128, 0.3), transparent 48%),
    var(--navy-950);
}

.consult-panel {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.consult-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(225, 187, 140, 0.45);
  border-radius: 4px;
  font-size: 13px;
  color: var(--gold);
  background: rgba(225, 187, 140, 0.08);
}

.consult h1 {
  margin: 14px 0 30px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.2;
  color: var(--white);
}

.consult .consult-launch {
  margin-right: 12px;
}

@media (max-width: 640px) {
  .consult {
    padding: 56px 0 70px;
  }

  .consult .consult-launch {
    margin: 0 0 12px;
  }

  .consult .btn {
    width: 100%;
  }
}

/* Local article pages */
.article-header {
  background: var(--navy-950);
  border-bottom: 1px solid var(--line);
}

.article-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  color: var(--white);
}

.article-brand {
  font-weight: 700;
  color: var(--gold);
}

.article-back {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  color: var(--cream);
}

.article-back:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.article-main {
  min-height: calc(100vh - 190px);
  padding: 48px 0 64px;
  background: var(--soft);
}

.article-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 46px;
  border: 1px solid #E4E1E6;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-date {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(199, 164, 95, 0.14);
  color: var(--gold-deep);
  font-size: 12px;
}

.article-card h1 {
  margin: 16px 0 22px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  color: var(--ink);
}

.article-hero-image {
  margin: 0 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.article-content p {
  margin: 0 0 14px;
}

.article-video {
  margin: 20px 0;
}

.article-video video {
  display: block;
  width: 100%;
  max-height: 480px;
  border-radius: 8px;
  background: #000;
}

.news-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 2px 7px;
  border-radius: 4px;
  background: #E9F1FE;
  color: #1f6feb;
  font-size: 11px;
  font-weight: 600;
}

.article-footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px dashed #E5E1E6;
}

.article-back-link {
  font-size: 14px;
  color: var(--gold-deep);
}

.article-footer-note {
  padding: 24px 0;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

@media (max-width: 640px) {
  .article-topbar {
    min-height: 56px;
  }

  .article-main {
    padding: 28px 0 40px;
  }

  .article-card {
    padding: 28px 20px;
  }
}
