/* ==========================================================================
   奇异果体育 · Shared Site Kit
   深绿 / 米白 / 亮橙 / 金色 · 粗野主义运动数据板
   ========================================================================== */

/* ---------- 1. Reset & Tokens ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-green: #0A3D2E;
  --c-ink: #111111;
  --c-cream: #F7F6F2;
  --c-orange: #FF5C00;
  --c-gold: #E8A33D;
  --c-surface: #E9E6DF;
  --c-gray: #4A4A4A;
  --c-border: #0A3D2E;

  --font-head: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", "Cascadia Code", Consolas, "Liberation Mono", monospace;

  --header-h: 72px;
  --max-w: 1280px;
  --gutter: clamp(16px, 4vw, 48px);
  --shadow-hard: 4px 4px 0 var(--c-green);
  --shadow-ink: 6px 6px 0 var(--c-ink);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-ink);
  background-color: var(--c-cream);
  background-image:
    linear-gradient(rgba(10, 61, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 61, 46, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--c-green);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--c-orange);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.2;
  text-wrap: balance;
}

::selection {
  background: var(--c-orange);
  color: var(--c-cream);
}

:focus-visible {
  outline: 3px solid var(--c-orange);
  outline-offset: 3px;
}

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

/* ---------- 2. Skip Link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: clamp(12px, 3vw, 28px);
  z-index: 2000;
  padding: 12px 22px;
  background: var(--c-orange);
  color: var(--c-cream);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-ink);
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 16px;
  outline-color: var(--c-cream);
}

/* ---------- 3. Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  border-bottom: 2px solid rgba(10, 61, 46, 0.14);
  transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: var(--c-green);
  border-bottom-color: rgba(247, 246, 242, 0.25);
  box-shadow: 0 3px 0 var(--c-ink);
}

.header-inner {
  max-width: var(--max-w);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.brand-word {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--c-green);
  white-space: nowrap;
  transition: color 0.3s;
}

.brand-word em {
  font-style: normal;
  margin-left: 2px;
  color: var(--c-orange);
  transition: color 0.3s;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.22em;
  color: var(--c-gray);
  text-transform: uppercase;
  transition: color 0.3s;
}

.site-header.is-scrolled .brand-word {
  color: var(--c-cream);
}

.site-header.is-scrolled .brand-word em {
  color: var(--c-gold);
}

.site-header.is-scrolled .brand-sub {
  color: rgba(247, 246, 242, 0.6);
}

/* Brand symbol — kiwi cross-section */
.brand-symbol {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--c-ink);
  background: var(--c-green);
  box-shadow: inset 0 0 0 3px var(--c-cream);
}

.brand-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-orange);
  box-shadow:
    7px -4px 0 -1px var(--c-gold),
    -7px 4px 0 -1px var(--c-gold),
    -7px -4px 0 -1px var(--c-orange),
    7px 4px 0 -1px var(--c-orange);
}

/* ---------- 4. Navigation (desktop) ---------- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.nav-item a {
  position: relative;
  display: inline-block;
  padding: 10px 0 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--c-green);
  text-decoration: none;
  transition: color 0.25s;
}

.site-header.is-scrolled .nav-item a {
  color: var(--c-cream);
}

.nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 3px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s ease;
}

.nav-item a:hover::after,
.nav-item a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-item a[aria-current="page"] {
  color: var(--c-orange);
}

.nav-item a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-item a[aria-current="page"] {
  color: var(--c-gold);
}

/* Nav CTA */
.nav-cta {
  display: inline-block;
  padding: 9px 18px;
  border: 2px solid var(--c-green);
  background: var(--c-orange);
  color: var(--c-cream);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--c-ink);
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s, border-color 0.15s, color 0.15s;
}

.nav-cta:hover {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-cream);
  box-shadow: 1px 1px 0 var(--c-ink);
  transform: translate(2px, 2px);
}

.site-header.is-scrolled .nav-cta {
  border-color: var(--c-cream);
}

.site-header.is-scrolled .nav-cta:hover {
  background: var(--c-gold);
  border-color: var(--c-ink);
  color: var(--c-ink);
  box-shadow: 1px 1px 0 var(--c-ink);
  transform: translate(2px, 2px);
}

/* Toggle button */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1100;
  padding: 8px 14px;
  border: 2px solid var(--c-green);
  background: var(--c-cream);
  color: var(--c-green);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--c-cream);
  background: var(--c-green);
  color: var(--c-cream);
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--c-orange);
  background: var(--c-orange);
  color: var(--c-cream);
}

.nav-toggle:focus-visible {
  outline-color: var(--c-gold);
  outline-offset: 2px;
}

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

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-bars i {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s;
}

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

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

/* ---------- 5. Mobile Navigation ---------- */
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    width: min(340px, 88vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 28px) var(--gutter) 32px;
    background: var(--c-green);
    border-left: 4px solid var(--c-orange);
    box-shadow: -8px 0 0 var(--c-ink);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
  }

  .site-nav[data-open="true"] {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    border-bottom: 1px solid rgba(247, 246, 242, 0.18);
  }

  .nav-item a {
    display: block;
    width: 100%;
    padding: 16px 4px;
    font-size: 20px;
    font-weight: 800;
    color: var(--c-cream);
  }

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

  .nav-item a[aria-current="page"] {
    color: var(--c-gold);
    padding-left: 12px;
    border-left: 4px solid var(--c-orange);
  }
}

/* ---------- 6. Footer ---------- */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--c-green);
  color: var(--c-cream);
  border-top: 6px solid var(--c-ink);
}

.footer-route {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 14px var(--gutter);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  border-bottom: 1px solid rgba(247, 246, 242, 0.2);
}

.route-coord {
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-route-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-gold) 0 6px, transparent 6px 14px);
  opacity: 0.45;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 64px);
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 52px var(--gutter) 44px;
}

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

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

.footer-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--c-cream);
  margin-bottom: 12px;
}

.footer-trust {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(247, 246, 242, 0.82);
  max-width: 36em;
  margin-bottom: 16px;
}

.footer-address {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--c-gold);
}

.site-footer .brand-symbol {
  border-color: var(--c-cream);
  background: var(--c-cream);
  box-shadow: inset 0 0 0 3px var(--c-green);
}

.site-footer .brand-symbol::after {
  background: var(--c-orange);
  box-shadow:
    7px -4px 0 -1px var(--c-orange),
    -7px 4px 0 -1px var(--c-orange),
    -7px -4px 0 -1px var(--c-gold),
    7px 4px 0 -1px var(--c-gold);
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(247, 246, 242, 0.22);
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 10px;
}

.footer-links a {
  color: var(--c-cream);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--c-orange);
  padding-left: 6px;
}

.footer-contact {
  font-size: 14px;
  color: rgba(247, 246, 242, 0.85);
}

.footer-contact li {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  word-break: break-all;
}

.footer-contact a {
  display: inline-block;
  margin-top: 4px;
  color: var(--c-orange);
  font-weight: 700;
  text-decoration: none;
}

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

.footer-contact-note {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(247, 246, 242, 0.6);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 20px var(--gutter);
  border-top: 1px solid rgba(247, 246, 242, 0.2);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(247, 246, 242, 0.7);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(247, 246, 242, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--c-orange);
}

/* ---------- 7. Layout Components ---------- */
.container-main {
  width: min(100% - var(--gutter) * 2, var(--max-w));
  margin-inline: auto;
}

.page-hero {
  background: var(--c-cream);
  padding-top: calc(var(--header-h) + clamp(32px, 8vw, 96px));
  padding-bottom: clamp(32px, 6vw, 72px);
}

.page-hero--green {
  background: var(--c-green);
  color: var(--c-cream);
}

.section-block {
  position: relative;
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-block--green {
  background: var(--c-green);
  color: var(--c-cream);
}

.section-block--dark {
  background: var(--c-ink);
  color: var(--c-cream);
}

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

.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 36px;
  border-bottom: 3px solid var(--c-green);
}

.section-block--green .section-head,
.section-block--dark .section-head {
  border-bottom-color: var(--c-cream);
}

.section-no {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-orange);
}

.section-block--green .section-no {
  color: var(--c-gold);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--c-ink);
}

.section-block--green .section-title,
.section-block--dark .section-title {
  color: var(--c-cream);
}

.section-side {
  margin-left: auto;
  align-self: center;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-gray);
}

.section-block--green .section-side,
.section-block--dark .section-side {
  color: var(--c-gold);
}

.page-body {
  max-width: 72ch;
  margin-inline: auto;
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-ink);
}

.page-body h2 {
  font-size: 26px;
  margin: 2em 0 1em;
  color: var(--c-green);
}

.page-body h3 {
  font-size: 20px;
  margin: 1.8em 0 0.8em;
  color: var(--c-green);
}

.page-body p {
  margin-bottom: 1.4em;
}

.page-body a {
  color: var(--c-orange);
  font-weight: 600;
}

.page-body ul {
  list-style: square;
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}

.page-body li {
  margin-bottom: 0.5em;
}

/* ---------- 8. Content Components ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border: 2px solid var(--c-green);
  background: var(--c-green);
  color: var(--c-cream);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: var(--shadow-hard);
  transition: transform 0.15s, box-shadow 0.15s, background-color 0.15s, color 0.15s, border-color 0.15s;
}

.btn:hover {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-cream);
  box-shadow: 2px 2px 0 var(--c-ink);
  transform: translate(2px, 2px);
}

.btn:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-green);
}

.btn--ghost:hover {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-cream);
  box-shadow: 3px 3px 0 var(--c-ink);
}

.btn--orange {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-cream);
}

.btn--orange:hover {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-cream);
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--c-gray);
}

.crumb a {
  color: var(--c-green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.crumb a:hover {
  color: var(--c-orange);
}

.crumb-sep {
  color: var(--c-gold);
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1.5px solid var(--c-green);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-green);
  background: transparent;
  transition: background-color 0.2s, color 0.2s;
}

.tag:hover {
  background: var(--c-green);
  color: var(--c-cream);
}

.tag--active {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-cream);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 16px 20px;
  border: 2px solid var(--c-green);
  background: var(--c-surface);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-ink);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-orange);
}

.legend-dot--green {
  background: var(--c-green);
}

.legend-dot--gold {
  background: var(--c-gold);
}

.legend-line {
  display: inline-block;
  flex-shrink: 0;
  width: 26px;
  height: 3px;
  background: var(--c-ink);
}

.coords {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--c-gray);
}

.coords__num {
  font-weight: 700;
  color: var(--c-orange);
}

.route-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.route-line__stop {
  padding: 6px 12px;
  border: 2px solid var(--c-green);
  color: var(--c-green);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.route-line__stop:hover {
  background: var(--c-green);
  color: var(--c-cream);
}

.route-line__arrow {
  color: var(--c-orange);
  font-weight: 700;
  font-size: 16px;
}

.img-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(10, 61, 46, 0.06) 12px 14px), var(--c-surface);
  border: 3px solid var(--c-border);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
}

.img-frame--wide {
  aspect-ratio: 16 / 7;
}

.img-frame--tall {
  aspect-ratio: 3 / 4;
}

.img-frame--square {
  aspect-ratio: 1 / 1;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-frame::before {
  content: attr(data-caption);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 6px 12px;
  background: var(--c-green);
  color: var(--c-cream);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(45deg, transparent 0 12px, rgba(10, 61, 46, 0.05) 12px 14px);
  pointer-events: none;
}

.img-frame:has(img)::after {
  opacity: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--c-cream);
  border: 3px solid var(--c-green);
  box-shadow: var(--shadow-hard);
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--c-green);
  color: var(--c-cream);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(247, 246, 242, 0.3);
  border-bottom: 2px solid var(--c-ink);
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-surface);
  border-right: 1px solid var(--c-surface);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: var(--c-surface);
}

.data-table .num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--c-orange);
}

.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-green);
}

.stat-number--orange {
  color: var(--c-orange);
}

.stat-number--gold {
  color: var(--c-gold);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-gray);
  text-transform: uppercase;
}

.deco-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px var(--c-green);
  user-select: none;
}

.deco-num--cream {
  -webkit-text-stroke-color: rgba(247, 246, 242, 0.25);
}

.v-text {
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-gray);
}

/* ---------- 9. Bento Grid ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-item {
  position: relative;
  min-width: 0;
  min-height: 140px;
  padding: 24px;
  background: var(--c-cream);
  border: 3px solid var(--c-border);
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.bento-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c-ink);
}

.bento-item--green {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-cream);
}

.bento-item--green:hover {
  border-color: var(--c-orange);
  box-shadow: 6px 6px 0 var(--c-ink);
}

.bento-item--orange {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: var(--c-cream);
}

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

.bento-6 {
  grid-column: span 6;
}

.bento-8 {
  grid-column: span 8;
}

.bento-12 {
  grid-column: span 12;
}

.bento-item--green .stat-number {
  color: var(--c-cream);
}

.bento-item--green .stat-number--orange {
  color: var(--c-orange);
}

.bento-item--green .stat-number--gold {
  color: var(--c-gold);
}

.bento-item--green .stat-label {
  color: rgba(247, 246, 242, 0.7);
}

.bento-item--green .tag {
  border-color: var(--c-cream);
  color: var(--c-cream);
}

.bento-item--green .tag:hover {
  background: var(--c-cream);
  color: var(--c-green);
}

/* ---------- 10. Reveal & Reduced Motion ---------- */
[data-reveal] {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js [data-reveal]:not([data-revealed="true"]) {
  opacity: 0;
  transform: translateY(20px);
}

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

  .js [data-reveal]:not([data-revealed="true"]) {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 11. Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .bento-6,
  .bento-8 {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 15px;
  }

  .brand-word {
    font-size: 18px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .brand-symbol {
    width: 30px;
    height: 30px;
  }

  .section-head {
    flex-wrap: wrap;
    align-items: center;
  }

  .section-side {
    display: none;
  }

  .bento-item {
    padding: 20px;
    min-height: 100px;
  }

  .bento-4,
  .bento-6,
  .bento-8,
  .bento-12 {
    grid-column: span 12;
  }

  .footer-route {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-route-line {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

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