/* ============================================================
   01 Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; color: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
input, textarea, select { font: inherit; }

/* ============================================================
   02 Design Tokens
   ============================================================ */
:root {
  --color-cream: #F7F4EC;
  --color-moss: #436A5A;
  --color-blue: #2AA6E0;
  --color-orange: #E67E30;
  --color-stone: #9A9B96;
  --color-ink: #1E2622;
  --color-terra: #A7574A;
  --color-wash: #39433E;

  --font-heading: "Montserrat", "Noto Sans SC", "Source Han Sans CN", "PingFang SC", sans-serif;
  --font-body: "Noto Sans SC", "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "SF Mono", "Cascadia Mono", "JetBrains Mono", Consolas, "Noto Sans SC", monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 88px;

  --header-w: 280px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 350ms var(--ease-out);

  --shadow-sm: 0 2px 8px rgba(30, 38, 34, 0.08);
  --shadow-md: 0 4px 20px rgba(30, 38, 34, 0.12);
  --shadow-lg: 0 12px 40px rgba(30, 38, 34, 0.18);

  --focus-ring: 0 0 0 2px var(--color-cream), 0 0 0 4px var(--color-blue);
}

/* ============================================================
   03 Base Typography & Layout
   ============================================================ */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-ink);
  background-color: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.4vw, 24px); }

p, li, dl, dd, blockquote { font-size: 16px; line-height: 1.75; }

a { color: var(--color-moss); transition: color var(--t-fast); }
a:hover { color: var(--color-blue); }

#main-content {
  flex: 1 0 auto;
  min-width: 0;
  outline: none;
  scroll-margin-top: 24px;
}

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--color-blue);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* ============================================================
   04 Skip Link & Scroll Progress
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--color-blue);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: top 200ms ease;
}
.skip-link:focus { top: 0; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  border-radius: 0 3px 3px 0;
  z-index: 10000;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(42, 166, 224, 0.35);
}

/* ============================================================
   05 Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background:
    linear-gradient(200deg, transparent 0%, rgba(42, 166, 224, 0.06) 45%, rgba(230, 126, 48, 0.08) 100%),
    var(--color-ink);
  color: var(--color-cream);
  box-shadow: 0 1px 0 rgba(247, 244, 236, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-moss) 0%, var(--color-blue) 50%, var(--color-orange) 100%);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
  pointer-events: none;
}

.header-brand { flex: 1 1 auto; min-width: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-bg {
  fill: var(--color-moss);
  stroke: var(--color-moss);
  stroke-width: 2;
  transition: fill var(--t-base), stroke var(--t-base);
}

.brand-wave {
  stroke: var(--color-cream);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-dot {
  fill: var(--color-orange);
  transition: fill var(--t-fast);
}

.brand-ring {
  stroke: var(--color-blue);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.45;
  transition: opacity var(--t-base);
}

.brand:hover .brand-bg {
  fill: var(--color-wash);
  stroke: var(--color-blue);
}

.brand:hover .brand-ring {
  opacity: 0.85;
}

.brand:hover .brand-dot {
  fill: var(--color-orange);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--color-cream);
  white-space: nowrap;
}

.brand-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 236, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-nav-wrap {
  min-width: 0;
  width: 100%;
  order: 3;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background:
    linear-gradient(180deg, rgba(67, 106, 90, 0.18), transparent 60%),
    var(--color-ink);
  border-top: 1px solid rgba(247, 244, 236, 0.06);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  z-index: 90;
}

.site-nav {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 450ms var(--ease-out), opacity 250ms ease;
  padding: 0 12px;
}

.site-nav[data-open] {
  max-height: 70vh;
  opacity: 1;
  overflow-y: auto;
}

.nav-caption {
  display: none;
}

.nav-list {
  position: relative;
  padding: 8px 0;
}

.nav-list::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(67, 106, 90, 0.45), rgba(57, 67, 62, 0.45));
  border-radius: 2px;
}

.nav-item + .nav-item {
  margin-top: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 14px;
  color: rgba(247, 244, 236, 0.65);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-link::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(154, 155, 150, 0.55);
  background: var(--color-ink);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.nav-link:hover {
  color: var(--color-cream);
  background: rgba(247, 244, 236, 0.06);
}

.nav-link:hover::before {
  border-color: var(--color-orange);
  background: var(--color-orange);
}

.nav-link[aria-current="page"] {
  color: var(--color-cream);
  background: rgba(67, 106, 90, 0.35);
  font-weight: 600;
}

.nav-link[aria-current="page"]::before {
  border-color: var(--color-blue);
  background: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(42, 166, 224, 0.2);
}

.nav-index {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-moss);
  min-width: 20px;
  font-variant-numeric: tabular-nums;
  transition: color var(--t-fast);
}

.nav-link:hover .nav-index { color: var(--color-orange); }
.nav-link[aria-current="page"] .nav-index { color: var(--color-blue); }

.nav-label {
  flex: 1 1 auto;
}

/* ============================================================
   06 Header Status Block
   ============================================================ */
.header-status-block {
  display: none;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.status-light {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CDB9A;
  box-shadow: 0 0 0 4px rgba(76, 219, 154, 0.2);
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76, 219, 154, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(76, 219, 154, 0.08); }
}

.status-text {
  font-size: 14px;
}

.route-line {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-stone);
  letter-spacing: 0.02em;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--color-blue);
  border-radius: 2px;
}

/* ============================================================
   07 Nav Toggle (mobile)
   ============================================================ */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(247, 244, 236, 0.04);
  border: 1px solid rgba(247, 244, 236, 0.25);
  border-radius: var(--radius-pill);
  color: var(--color-cream);
  transition: border-color var(--t-fast), background var(--t-fast);
  flex: 0 0 auto;
}

.nav-toggle:hover {
  border-color: var(--color-orange);
  background: rgba(230, 126, 48, 0.15);
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.nav-toggle-bar {
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 250ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

@media (max-width: 400px) {
  .nav-toggle-label { display: none; }
  .nav-toggle { padding: 10px; }
}

/* ============================================================
   08 Footer
   ============================================================ */
.site-footer {
  flex-shrink: 0;
  background:
    radial-gradient(1200px 400px at 80% 0%, rgba(42, 166, 224, 0.08), transparent 60%),
    var(--color-ink);
  color: rgba(247, 244, 236, 0.75);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-ornament {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 4px;
}

.ornament-bar { height: 100%; }
.ornament-bar--moss { flex: 0 0 40%; background: var(--color-moss); }
.ornament-bar--blue { flex: 0 0 35%; background: var(--color-blue); }
.ornament-bar--orange { flex: 1; background: var(--color-orange); }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px 32px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand-col {
  min-width: 0;
}

.brand--footer {
  margin-bottom: 16px;
}

.brand--footer .brand-mark {
  width: 40px;
  height: 40px;
}

.brand--footer .brand-name {
  font-size: 20px;
}

.footer-trust {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(247, 244, 236, 0.5);
  max-width: 42ch;
  margin-top: 4px;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-cream);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.1);
}

.footer-heading::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
  flex-shrink: 0;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  font-size: 14px;
  color: rgba(247, 244, 236, 0.6);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-list a:hover {
  color: var(--color-orange);
  padding-left: 4px;
}

.footer-contact-item {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 244, 236, 0.6);
  margin-bottom: 12px;
  word-break: break-all;
}

.contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(247, 244, 236, 0.35);
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 244, 236, 0.08);
  margin-top: 48px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  color: rgba(247, 244, 236, 0.4);
}

.footer-copyright {
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.footer-note {
  font-size: 13px;
  line-height: 1.6;
}

/* ============================================================
   09 Shared Components
   ============================================================ */
.page-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--space-lg) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-orange);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.section-lead {
  font-size: 16px;
  color: var(--color-stone);
  max-width: 60ch;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base), transform var(--t-fast);
}

.btn-primary {
  background: var(--color-moss);
  color: var(--color-cream);
}

.btn-primary:hover {
  background: var(--color-wash);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--color-orange);
  color: #FFFFFF;
}

.btn-accent:hover {
  background: #D0681F;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-moss);
  border-color: var(--color-moss);
}

.btn-ghost:hover {
  background: var(--color-moss);
  color: var(--color-cream);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-stone);
  padding: 16px 0;
}

.breadcrumb a {
  color: var(--color-stone);
  transition: color var(--t-fast);
}

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

.breadcrumb-sep {
  opacity: 0.5;
  font-size: 12px;
}

.breadcrumb-current {
  color: var(--color-ink);
  font-weight: 600;
}

.card {
  background: #FFFDF8;
  border: 1px solid rgba(67, 106, 90, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(42, 166, 224, 0.4);
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr);
}

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

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--color-cream);
  border: 1px solid rgba(67, 106, 90, 0.12);
}

.stat-value {
  font-family: var(--font-data);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.stat-label {
  font-size: 13px;
  color: var(--color-stone);
  letter-spacing: 0.04em;
}

.stat-value--accent { color: var(--color-blue); }
.stat-value--warn { color: var(--color-orange); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(42, 166, 224, 0.12);
  color: var(--color-blue);
  white-space: nowrap;
}

.badge--moss {
  background: rgba(67, 106, 90, 0.14);
  color: var(--color-moss);
}

.badge--orange {
  background: rgba(230, 126, 48, 0.14);
  color: var(--color-orange);
}

/* ============================================================
   10 Image Panel Bases
   ============================================================ */
.img-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(67, 106, 90, 0.28), rgba(30, 38, 34, 0.88)),
    repeating-linear-gradient(45deg, rgba(247, 244, 236, 0.04) 0px, rgba(247, 244, 236, 0.04) 2px, transparent 2px, transparent 12px);
  box-shadow: var(--shadow-md);
}

.img-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 35%, rgba(42, 166, 224, 0.16) 100%);
  pointer-events: none;
}

.img-panel--portrait {
  aspect-ratio: 4 / 5;
}

.img-panel--wide {
  aspect-ratio: 16 / 6;
}

.img-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   11 Reveal-on-Scroll
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms var(--ease-out);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   12 Responsive: Tablet & Desktop
   ============================================================ */
@media (min-width: 768px) {
  .header-nav-wrap {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    padding: 0 32px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-container {
    padding: 0 32px;
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--header-w);
    height: 100vh;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    background:
      linear-gradient(200deg, transparent 30%, rgba(42, 166, 224, 0.06) 100%),
      var(--color-ink);
    box-shadow: 1px 0 0 rgba(247, 244, 236, 0.06);
    overflow: hidden;
  }

  .site-header::after {
    height: 6px;
  }

  .header-brand {
    flex: 0 0 auto;
  }

  .header-nav-wrap {
    position: static;
    flex: 1 1 auto;
    overflow-y: auto;
    width: auto;
    order: 0;
    margin-top: 36px;
    padding: 0;
    background: none;
    border-top: none;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(247, 244, 236, 0.15) transparent;
  }

  .header-nav-wrap::-webkit-scrollbar {
    width: 4px;
  }

  .header-nav-wrap::-webkit-scrollbar-thumb {
    background: rgba(247, 244, 236, 0.15);
    border-radius: 4px;
  }

  .site-nav {
    max-height: none;
    opacity: 1;
    overflow: visible;
    padding: 0;
  }

  .site-nav[data-open] {
    max-height: none;
    overflow: visible;
  }

  .nav-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--color-stone);
    padding: 0 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }

  .nav-caption::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--color-orange);
    border-radius: 2px;
  }

  .header-status-block {
    display: block;
    flex: 0 0 auto;
    padding-top: 16px;
    margin-top: 24px;
    border-top: 1px solid rgba(247, 244, 236, 0.1);
  }

  .nav-toggle {
    display: none;
  }

  #main-content,
  .site-footer {
    margin-left: var(--header-w);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    padding: 0 48px;
  }

  .footer-bottom {
    padding-left: 48px;
    padding-right: 48px;
  }

  .page-container {
    padding: 0 40px;
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}
