:root {
  --header-h: 64px;
  --red: #b42318;
  --red-strong: #8f1d17;
  --red-dark: #4c1411;
  --gold: #c99645;
  --blue: #0b82c9;
  --ink: #1f1b18;
  --ink-soft: #463d38;
  --muted: #6e625c;
  --line: #e3d6c8;
  --paper: #f6f0e7;
  --paper-strong: #efe2d3;
  --surface: #fffdf8;
  --max: 1180px;
  --shadow: 0 18px 46px rgba(73, 39, 25, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding-top: var(--header-h);
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf8 0, #f7efe6 560px, #fbf7f0 100%);
  font-family:
    "Microsoft YaHei UI",
    "Microsoft YaHei",
    "PingFang SC",
    "Source Han Sans SC",
    "Noto Sans CJK SC",
    "Noto Sans SC",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-break: strict;
  text-size-adjust: 100%;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

p,
a,
span,
strong,
small,
em,
li {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

main#top {
  scroll-margin-top: var(--header-h);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: flex;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 253, 248, 0.94);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(155, 117, 80, 0.24);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 10px 28px rgba(56, 34, 24, 0.1);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.brand-text small {
  margin-top: 4px;
  color: #70645f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #352d29;
  font-size: 14.5px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--red-strong);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-h));
  min-height: 620px;
  overflow: hidden;
  background: #391613;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.72s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(1.1);
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 12, 11, 0.84) 0%, rgba(99, 23, 19, 0.58) 42%, rgba(166, 78, 38, 0.2) 68%, rgba(255, 250, 240, 0.04) 100%),
    linear-gradient(0deg, rgba(27, 15, 13, 0.42) 0%, rgba(27, 15, 13, 0) 60%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  width: min(var(--max), calc(100% - 72px));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 24px;
  color: #fff;
  transform: translateX(-50%);
}

.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 4px 12px;
  color: #fff9ed;
  background: rgba(180, 35, 24, 0.9);
  border-left: 3px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 18px 0 12px;
  color: #fff;
  font-size: 56px;
  line-height: 1.08;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.hero-line {
  max-width: 780px;
  margin: 0 0 16px;
  color: #fff6e8;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-line span + span::before {
  content: "与";
}

.hero-summary {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 249, 240, 0.9);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: rgba(180, 35, 24, 0.94);
  border: 1px solid rgba(255, 232, 205, 0.38);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-actions a:nth-child(2) {
  background: rgba(31, 27, 24, 0.4);
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  background: rgba(201, 150, 69, 0.96);
  transform: translateY(-1px);
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 30px;
  z-index: 4;
  display: flex;
  gap: 12px;
}

.hero-dots button {
  width: 38px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #f1c27b;
}

.channel-nav {
  position: relative;
  z-index: 10;
  display: grid;
  width: min(var(--max), calc(100% - 44px));
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  margin: -34px auto 0;
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 18px 34px rgba(68, 38, 23, 0.13);
}

.channel-nav a {
  display: grid;
  min-height: 68px;
  align-content: center;
  gap: 4px;
  padding: 12px 18px;
  border-right: 1px solid rgba(183, 154, 122, 0.4);
  transition: background 0.2s ease, color 0.2s ease;
}

.channel-nav a:last-child {
  border-right: 0;
}

.channel-nav a:hover,
.channel-nav a:focus-visible {
  color: #fff;
  background: var(--red-strong);
}

.channel-nav span {
  color: rgba(143, 29, 23, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.channel-nav strong {
  color: inherit;
  font-size: 15px;
  line-height: 1.3;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 3px 11px;
  color: var(--red-strong);
  background: rgba(180, 35, 24, 0.08);
  border-left: 3px solid var(--red);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
}

.section-kicker.light {
  color: #fff8ed;
  background: rgba(180, 35, 24, 0.92);
  border-left-color: var(--gold);
}

.positioning-section {
  display: grid;
  width: min(var(--max), calc(100% - 44px));
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  margin: 64px auto 0;
  padding: 56px 0 46px;
  border-bottom: 1px solid rgba(180, 35, 24, 0.18);
}

.section-index {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  color: var(--red-strong);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.section-index::before {
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
}

.positioning-copy h2 {
  max-width: 920px;
  font-size: 34px;
  line-height: 1.42;
}

.positioning-facts {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 2px solid rgba(180, 35, 24, 0.35);
}

.positioning-facts span {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 0 14px;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.positioning-facts span:first-child {
  padding-left: 0;
}

.positioning-facts span:last-child {
  border-right: 0;
}

.company-section,
.contact-section {
  display: grid;
  width: min(var(--max), calc(100% - 44px));
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
  margin: 72px auto;
}

.company-media {
  position: relative;
  min-height: 386px;
  overflow: hidden;
  background: var(--red-dark);
  box-shadow: var(--shadow);
}

.company-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(55, 21, 15, 0.04), rgba(28, 14, 12, 0.28)),
    inset 0 0 0 1px rgba(255, 248, 238, 0.2);
  content: "";
}

.company-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02) brightness(1.08);
}

.company-copy h2,
.section-intro h2,
.bxy-copy h2,
.news-head h2,
.contact-copy h2 {
  font-size: 30px;
  line-height: 1.42;
}

.company-copy p,
.section-intro p,
.bxy-copy p,
.news-list p,
.contact-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.9;
}

.company-copy p {
  margin: 16px 0 0;
}

.smart-party-section,
.cases-section,
.news-section {
  width: 100%;
  padding: 70px max(22px, calc((100vw - var(--max)) / 2));
}

.smart-party-section {
  background:
    linear-gradient(90deg, rgba(180, 35, 24, 0.06), transparent 45%),
    var(--surface);
  border-top: 1px solid rgba(180, 35, 24, 0.14);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  display: grid;
  max-width: 850px;
}

.section-intro p {
  margin: 16px 0 0;
  max-width: 760px;
}

.capability-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 3px solid var(--red);
  background: rgba(248, 241, 232, 0.9);
}

.capability-band div {
  display: grid;
  min-height: 154px;
  align-content: start;
  gap: 14px;
  padding: 22px 22px 24px;
  background: rgba(255, 253, 248, 0.82);
  border-right: 1px solid var(--line);
}

.capability-band div:last-child {
  border-right: 0;
}

.capability-band span,
.case-ledger b,
.news-list span {
  color: var(--red-strong);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.capability-band strong {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.58;
}

.bxy-section {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #3c1512;
}

.bxy-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.03) brightness(1.08);
}

.bxy-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 13, 12, 0.86), rgba(118, 26, 21, 0.62) 48%, rgba(201, 150, 69, 0.12)),
    linear-gradient(0deg, rgba(29, 14, 12, 0.38), rgba(29, 14, 12, 0.02));
}

.bxy-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(var(--max), calc(100% - 44px));
  min-height: 610px;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 56px;
  align-items: center;
  margin-inline: auto;
  color: #fff;
}

.bxy-copy h2 {
  max-width: 560px;
  color: #fff;
  font-size: 34px;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.bxy-copy p {
  max-width: 570px;
  margin-top: 18px;
  color: rgba(255, 249, 240, 0.9);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 238, 207, 0.44);
  border-bottom: 3px solid var(--gold);
  background: rgba(255, 248, 237, 0.12);
  backdrop-filter: blur(10px);
}

.value-grid span {
  display: grid;
  min-height: 128px;
  align-content: center;
  padding: 18px 12px;
  color: #fff8ed;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.value-grid span:last-child {
  border-right: 0;
}

.value-grid strong {
  display: block;
  font-size: 25px;
  line-height: 1.25;
}

.value-grid small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 248, 238, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.cases-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(246, 240, 231, 0.96)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.section-intro.compact {
  max-width: 940px;
}

.case-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 34px;
  background: var(--line);
  border-top: 3px solid var(--red);
}

.case-ledger > * {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255, 253, 248, 0.93);
}

.case-primary {
  grid-column: 1 / -1;
  min-height: 134px;
  background:
    linear-gradient(90deg, rgba(180, 35, 24, 0.08), transparent),
    #fffaf2;
}

.case-primary strong {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.3;
}

.case-primary em {
  color: #785932;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.case-ledger strong {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.45;
}

.news-section {
  background: var(--surface);
}

.news-head {
  max-width: 840px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border-top: 3px solid var(--red);
}

.news-list article {
  min-height: 232px;
  padding: 24px 24px 26px;
  background: rgba(255, 253, 248, 0.96);
}

.news-list h3 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.news-list p {
  margin: 14px 0 0;
  font-size: 14.5px;
}

.contact-section {
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  padding: 66px 0;
}

.contact-copy {
  display: grid;
  align-content: center;
}

.contact-copy p {
  max-width: 680px;
  margin: 16px 0 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(180, 35, 24, 0.07), rgba(11, 130, 201, 0.06)),
    #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(73, 39, 25, 0.08);
}

.qr-placeholder {
  position: relative;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(143, 29, 23, 0.18);
  box-shadow: 0 10px 20px rgba(73, 39, 25, 0.08);
  padding: 9px;
}

.qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.contact-panel strong {
  color: var(--red-strong);
  font-size: 18px;
  line-height: 1.35;
}

.contact-panel p {
  margin: 10px 0 0;
  font-size: 14.5px;
}

.site-footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px max(22px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 249, 240, 0.78);
  background: #351512;
  border-top: 3px solid var(--red);
  font-size: 12.5px;
}

.footer-brandline,
.footer-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.footer-brandline strong {
  color: #fff8ed;
  font-size: 13px;
}

.footer-brandline span,
.footer-meta span,
.footer-meta a {
  color: rgba(255, 248, 238, 0.72);
}

.footer-meta {
  justify-content: flex-end;
}

.footer-meta a {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .channel-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .channel-nav a:nth-child(3n) {
    border-right: 0;
  }

  .positioning-section,
  .company-section,
  .bxy-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .positioning-facts {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-index {
    position: static;
  }

  .capability-band,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-band div:nth-child(2n),
  .value-grid span:nth-child(2n) {
    border-right: 0;
  }

  .case-ledger,
  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    gap: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 14px;
    left: 14px;
    display: none;
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: #f2e7d8;
  }

  .hero-carousel {
    min-height: 610px;
  }

  .hero-content {
    width: min(100% - 30px, var(--max));
    justify-content: flex-start;
    padding-top: clamp(190px, 31svh, 260px);
    padding-bottom: 34px;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 560px;
    font-size: 36px;
    line-height: 1.22;
  }

  .hero-line {
    max-width: 560px;
    font-size: 22px;
    line-height: 1.42;
  }

  .hero-summary {
    max-width: 560px;
    font-size: 15.5px;
    line-height: 1.72;
  }

  .hero-dots {
    right: 18px;
    bottom: 24px;
  }

  .channel-nav {
    width: min(100% - 28px, var(--max));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -24px;
  }

  .channel-nav a {
    min-height: 58px;
    padding: 10px 13px;
  }

  .channel-nav a:nth-child(3n) {
    border-right: 1px solid rgba(183, 154, 122, 0.4);
  }

  .channel-nav a:nth-child(2n) {
    border-right: 0;
  }

  .positioning-section,
  .company-section,
  .bxy-inner,
  .contact-section {
    width: min(100% - 28px, var(--max));
  }

  .positioning-section {
    gap: 20px;
    margin-top: 38px;
    padding: 38px 0 34px;
  }

  .positioning-copy h2,
  .company-copy h2,
  .section-intro h2,
  .bxy-copy h2,
  .news-head h2,
  .contact-copy h2 {
    font-size: 25px;
    line-height: 1.42;
  }

  .positioning-facts {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .positioning-facts span {
    min-height: 45px;
    padding-inline: 0;
    border-right: 0;
  }

  .company-section {
    gap: 28px;
    margin: 42px auto;
  }

  .company-media {
    min-height: 250px;
  }

  .company-copy p,
  .section-intro p,
  .bxy-copy p,
  .news-list p,
  .contact-copy p,
  .contact-panel p {
    font-size: 15px;
    line-height: 1.82;
  }

  .smart-party-section,
  .cases-section,
  .news-section {
    padding: 44px 14px;
  }

  .capability-band,
  .case-ledger,
  .news-list {
    grid-template-columns: 1fr;
  }

  .capability-band div,
  .capability-band div:nth-child(2n) {
    min-height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-band div:last-child {
    border-bottom: 0;
  }

  .bxy-section,
  .bxy-inner {
    min-height: 610px;
  }

  .bxy-inner {
    gap: 28px;
    padding: 44px 0;
  }

  .value-grid span {
    min-height: 106px;
  }

  .case-ledger > * {
    min-height: 88px;
    padding: 18px;
  }

  .case-primary {
    min-height: 118px;
  }

  .case-primary strong {
    font-size: 22px;
  }

  .news-list article {
    min-height: auto;
    padding: 20px 18px 22px;
  }

  .news-list h3 {
    font-size: 18px;
  }

  .contact-section {
    padding: 42px 0;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    display: none;
  }

  .hero-carousel {
    min-height: 610px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 30px;
    line-height: 1.28;
  }

  .hero-line {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-line span {
    display: block;
  }

  .hero-line span + span::before {
    content: "";
  }

  .hero-summary {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions a {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .channel-nav {
    grid-template-columns: 1fr 1fr;
  }

  .channel-nav span {
    display: none;
  }

  .channel-nav strong {
    font-size: 14px;
  }

  .positioning-copy h2,
  .company-copy h2,
  .section-intro h2,
  .bxy-copy h2,
  .news-head h2,
  .contact-copy h2 {
    font-size: 22px;
    line-height: 1.45;
  }

  .company-media {
    min-height: 216px;
  }

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

  .value-grid strong {
    font-size: 22px;
  }

  .qr-placeholder {
    width: 118px;
    height: 118px;
  }
}
