:root {
  --bg: #f7f2e8;
  --bg-soft: #f2e8d8;
  --surface: #fffdf8;
  --surface-strong: #fff5e7;
  --surface-alt: #ecf8f4;
  --text: #1f2a2f;
  --muted: #5c6d72;
  --line: #d5c6ad;
  --line-strong: #c0ae90;
  --brand: #f0642b;
  --brand-strong: #d84d18;
  --accent: #0f8778;
  --accent-soft: #e0f4ef;
  --zalo: #117fe2;
  --ok: #1e9d6a;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 28px 56px rgba(73, 46, 23, 0.16);
  --shadow-md: 0 14px 28px rgba(73, 46, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Be Vietnam Pro", "Segoe UI", sans-serif;
  line-height: 1.65;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% -5%, rgba(240, 100, 43, 0.22), transparent 36%),
    radial-gradient(circle at 90% 4%, rgba(15, 135, 120, 0.17), transparent 36%),
    linear-gradient(180deg, #fcf8f0 0%, #f7f2e8 48%, #f2e8d8 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(31, 42, 47, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 42, 47, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 72%);
}

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(8px);
}

.signal-strip {
  overflow: hidden;
  border-bottom: 1px solid #caa57e;
  background: linear-gradient(90deg, #f7bf7b, #f1a94f);
}

.signal-track {
  display: inline-flex;
  gap: 2.4rem;
  align-items: center;
  white-space: nowrap;
  min-width: 100%;
  padding: 0.48rem 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #3f2612;
  animation: tickerMove 22s linear infinite;
}

.signal-track span {
  position: relative;
}

.signal-track span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69401f;
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  background: rgba(255, 249, 239, 0.9);
  border-bottom: 1px solid rgba(208, 184, 151, 0.7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.74rem;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Noto Serif", serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), #f28741);
  box-shadow: 0 10px 24px rgba(240, 100, 43, 0.3);
}

.brand-text {
  display: grid;
  gap: 0.06rem;
}

.brand-text strong {
  font-family: "Noto Serif", serif;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  font-size: 0.74rem;
  color: #6a5d4a;
}

.menu {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.menu a {
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 700;
  color: #4e473f;
  border-radius: 999px;
  padding: 0.55rem 0.86rem;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.menu a:hover,
.menu a.active {
  color: #2d2924;
  border-color: #cfb28d;
  background: #fff4e4;
}

.menu .menu-cta {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  border-color: transparent;
}

.menu .menu-cta:hover {
  color: #fff;
  box-shadow: 0 10px 22px rgba(240, 100, 43, 0.32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #cfb28d;
  border-radius: 12px;
  background: #fff8eb;
  padding: 10px 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 9px;
  background: #4f463d;
}

.dispatch-hero {
  padding: 3.7rem 0 2.8rem;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 0.9rem;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 0.68rem;
  color: #6e5a45;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero h1,
.page-title,
.section-title,
.article-title,
.dispatch-copy h1,
.card h3,
.timeline h3,
.footer-brand,
.form h3,
.article-card h3,
.cta-band h2,
.bento-item h3,
.district-board h3,
.board-head strong,
.lane-card h3 {
  margin: 0;
  font-family: "Noto Serif", serif;
  letter-spacing: 0.01em;
}

.dispatch-copy h1 {
  font-size: clamp(2.05rem, 4.8vw, 3.6rem);
  line-height: 1.03;
  max-width: 18ch;
}

.hero-lead {
  margin: 0.94rem 0 0;
  color: var(--muted);
  max-width: 64ch;
}

.hero-actions {
  margin-top: 1.16rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.btn {
  min-height: 47px;
  padding: 0.66rem 1.06rem;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  box-shadow: 0 11px 24px rgba(240, 100, 43, 0.27);
}

.btn-zalo {
  color: #fff;
  background: linear-gradient(145deg, var(--zalo), #379df8);
  box-shadow: 0 11px 24px rgba(17, 127, 226, 0.22);
}

.btn-outline {
  color: #274740;
  border: 1px solid #89b2a8;
  background: #edfaf7;
}

.hero-badges {
  margin-top: 1.16rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

.hero-badges article {
  border: 1px solid #d8c6ac;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff8ec, #fff3e0);
  padding: 0.8rem;
  box-shadow: var(--shadow-md);
}

.hero-badges strong {
  display: block;
  font-family: "Noto Serif", serif;
  font-size: 1.01rem;
  color: #3f3122;
}

.hero-badges p {
  margin: 0.24rem 0 0;
  color: #6a5a47;
  font-size: 0.84rem;
}

.dispatch-board {
  border: 1px solid #d9c3a4;
  border-radius: var(--radius-xl);
  background: linear-gradient(152deg, #fff7e8, #ffe9c9);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.board-head {
  border-radius: 14px;
  border: 1px dashed #c5965a;
  padding: 0.72rem 0.8rem;
  background: rgba(255, 255, 255, 0.65);
}

.board-head p {
  margin: 0;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  color: #855a2d;
}

.board-head strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 1.03rem;
  color: #3f2c1a;
}

.lane-list {
  display: grid;
  gap: 0.5rem;
}

.lane-card {
  border: 1px solid #d3b28b;
  border-radius: 12px;
  padding: 0.68rem 0.74rem;
  background: rgba(255, 255, 255, 0.8);
}

.lane-card h3 {
  font-size: 1rem;
  color: #332416;
}

.lane-card p {
  margin: 0.32rem 0 0;
  color: #5e4c39;
  font-size: 0.88rem;
}

.lane-live {
  border-color: #22a06d;
  background: linear-gradient(145deg, #effcf4, #dbf8e8);
}

.board-image {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d3b28b;
  background: #fff;
}

.board-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.board-image figcaption {
  padding: 0.64rem 0.7rem;
  color: #5c4c39;
  font-size: 0.86rem;
  background: #fff8ec;
}

.section {
  padding: 2.9rem 0;
}

.section-soft {
  background:
    radial-gradient(circle at 12% 0%, rgba(240, 100, 43, 0.08), transparent 34%),
    radial-gradient(circle at 95% 0%, rgba(15, 135, 120, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.84), rgba(245, 236, 221, 0.82));
}

.section-head {
  margin-bottom: 1.08rem;
}

.section-title {
  font-size: clamp(1.58rem, 2.8vw, 2.38rem);
  line-height: 1.15;
  max-width: 30ch;
}

.section-desc {
  margin: 0.7rem 0 0;
  color: var(--muted);
  max-width: 74ch;
}

.service-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.72rem;
}

.bento-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 1.02rem;
}

.bento-item h3 {
  font-size: 1.1rem;
}

.bento-item p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.bento-a {
  grid-column: span 5;
  background: linear-gradient(150deg, #fffaf1, #ffe8d2);
}

.bento-b {
  grid-column: span 3;
  background: linear-gradient(150deg, #ffffff, #f4fff9);
}

.bento-c {
  grid-column: span 4;
  background: linear-gradient(150deg, #f4fffe, #dff8f4);
}

.bento-d {
  grid-column: span 4;
}

.bento-e {
  grid-column: span 5;
}

.bento-f {
  grid-column: span 3;
  background: linear-gradient(150deg, #fff5ea, #ffe0c0);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.icon-dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), #109d8b);
  box-shadow: 0 8px 20px rgba(15, 135, 120, 0.28);
}

.service-check {
  list-style: none;
  margin: 0.76rem 0 0;
  padding: 0;
}

.service-check li {
  position: relative;
  padding-left: 1.15rem;
  margin-top: 0.3rem;
  color: #47585d;
}

.service-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.district-wrap {
  position: relative;
}

.district-board {
  border: 1px solid #ceba9d;
  border-radius: var(--radius-xl);
  padding: 0.9rem;
  background:
    linear-gradient(145deg, #fffef9, #f6ecdc),
    repeating-linear-gradient(
      -45deg,
      rgba(15, 135, 120, 0.06),
      rgba(15, 135, 120, 0.06) 12px,
      transparent 12px,
      transparent 24px
    );
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

.district-board article {
  border: 1px solid #cfb592;
  border-radius: 14px;
  padding: 0.74rem;
  background: rgba(255, 255, 255, 0.8);
}

.district-board h3 {
  font-size: 1rem;
}

.district-board p {
  margin: 0.34rem 0 0;
  color: #5d554b;
  font-size: 0.9rem;
}

.area-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-chip {
  border: 1px solid #cfb18a;
  background: #fff8ea;
  border-radius: 999px;
  padding: 0.44rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #4c3e30;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.58rem;
}

.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fffaf1;
  padding: 0.9rem;
}

.step {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 0.92rem;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
}

.timeline h3 {
  margin: 0.7rem 0 0;
  font-size: 1rem;
}

.timeline p {
  margin: 0.48rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.gallery-card .card-body {
  padding: 0.88rem 0.94rem 1rem;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.article-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
}

.article-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.article-card .body {
  padding: 0.9rem;
}

.article-card .meta {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0a7d70;
}

.article-card h3 {
  margin: 0.42rem 0 0;
  font-size: 1.02rem;
}

.article-card p {
  margin: 0.44rem 0 0;
  color: var(--muted);
}

.cta-band {
  border-radius: var(--radius-xl);
  border: 1px solid #cb8b5a;
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(145deg, #f06d31, #d8531f);
  color: #fff8ef;
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.8rem;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.14rem);
  line-height: 1.17;
}

.cta-band p {
  margin: 0.62rem 0 0;
  color: rgba(255, 248, 239, 0.93);
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cta-actions .btn-outline {
  border-color: rgba(255, 248, 239, 0.54);
  color: #fff8ef;
  background: rgba(255, 255, 255, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 0.72rem;
}

.contact-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.contact-list li {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
  padding: 0.66rem 0.74rem;
}

.form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff8ee;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.form p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.form-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.56rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #464139;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c9b291;
  border-radius: 10px;
  background: #fffefb;
  color: var(--text);
  font: inherit;
  padding: 0.62rem 0.7rem;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.notice {
  margin: 0.62rem 0 0;
  font-size: 0.88rem;
  color: #6f6659;
}

.page-hero {
  padding: 3.2rem 0 2.4rem;
}

.page-title {
  font-size: clamp(1.88rem, 3.7vw, 2.86rem);
  line-height: 1.1;
}

.page-lead {
  margin: 0.8rem 0 0;
  max-width: 74ch;
  color: var(--muted);
}

.breadcrumb {
  margin-bottom: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #706458;
  font-size: 0.82rem;
}

.breadcrumb a {
  text-decoration: none;
  color: #166d61;
}

.article-page {
  display: grid;
  gap: 1.1rem;
}

.article-cover {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.article-cover img {
  width: 100%;
  height: min(460px, 56vw);
  object-fit: cover;
}

.article-content {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 1.18rem;
}

.article-content h2 {
  margin: 1rem 0 0;
  font-family: "Noto Serif", serif;
  font-size: 1.3rem;
}

.article-content p,
.article-content ul {
  margin: 0.62rem 0 0;
  color: #4f6066;
}

.article-content ul {
  padding-left: 1.1rem;
}

.article-content li {
  margin-top: 0.32rem;
}

.related {
  margin-top: 1rem;
}

.footer {
  margin-top: 2.7rem;
  border-top: 1px solid #cfb390;
  background: linear-gradient(180deg, #fffaf1 0%, #f4e8d5 100%);
}

.footer-wrap {
  padding: 1.7rem 0 1.1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.8rem;
  align-items: start;
}

.footer-brand {
  font-size: 1.08rem;
}

.footer-desc,
.footer-note {
  margin: 0.5rem 0 0;
  color: #62594f;
}

.footer-note a {
  color: #1d7368;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.38rem;
}

.footer-links a {
  text-decoration: none;
  color: #3f3730;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #d6bf9f;
  display: flex;
  justify-content: space-between;
  gap: 0.62rem;
  color: #685d4f;
  font-size: 0.9rem;
}

.float-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: grid;
  gap: 0.42rem;
}

.float-actions a {
  min-width: 146px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.6rem 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(73, 46, 23, 0.24);
}

.float-call {
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
}

.float-zalo {
  background: linear-gradient(145deg, var(--zalo), #339bf5);
}

.badge-list {
  list-style: none;
  margin: 1.14rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.badge-list li {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fffef9;
  padding: 0.64rem;
}

.badge-list strong {
  display: block;
  font-family: "Noto Serif", serif;
  font-size: 0.96rem;
}

.badge-list span {
  font-size: 0.84rem;
  color: #6b645d;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: revealUp 0.58s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.08s;
}

.reveal.delay-2 {
  animation-delay: 0.16s;
}

.reveal.delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .btn,
  .article-card {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .dispatch-grid,
  .contact-grid,
  .cta-band,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .service-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .bento-a,
  .bento-c,
  .bento-e {
    grid-column: span 4;
  }

  .bento-b,
  .bento-d,
  .bento-f {
    grid-column: span 2;
  }

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

  .grid-3,
  .article-list,
  .district-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 4%;
    width: min(90vw, 350px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.28rem;
    padding: 0.74rem;
    border: 1px solid #cfb28d;
    border-radius: 14px;
    background: rgba(255, 250, 241, 0.97);
    box-shadow: 0 16px 30px rgba(65, 45, 24, 0.18);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    border-radius: 11px;
  }

  .dispatch-hero {
    padding-top: 3rem;
  }

  .float-actions {
    right: 10px;
    bottom: 10px;
  }

  .float-actions a {
    min-width: 120px;
    font-size: 0.88rem;
  }
}

@media (max-width: 640px) {
  .brand-text strong {
    font-size: 0.95rem;
  }

  .dispatch-copy h1 {
    font-size: clamp(1.74rem, 8.9vw, 2.52rem);
  }

  .section {
    padding: 2.2rem 0;
  }

  .hero-badges,
  .service-bento,
  .grid-3,
  .grid-2,
  .timeline,
  .article-list,
  .district-board {
    grid-template-columns: 1fr;
  }

  .bento-a,
  .bento-b,
  .bento-c,
  .bento-d,
  .bento-e,
  .bento-f {
    grid-column: span 1;
  }

  .board-image img,
  .gallery-card img,
  .article-card img {
    height: 58vw;
  }

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

  .signal-track {
    gap: 1.6rem;
  }
}
