/* ═══════════════════════════════════════════════════════════
   COMPONENTS — Gobi Logistics Redesign
   ═══════════════════════════════════════════════════════════ */

/* ── NAVIGATION ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background var(--ease-std), box-shadow var(--ease-std);
}
.site-nav.scrolled {
  background: var(--charcoal);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
}

/* text logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 2px;
}
.logo-text {
  font-family: 'Calibri', 'Segoe UI', 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: block;
}
.logo-text--lg {
  font-size: 1.3rem;
  color: #A0AEC0;
}
.logo-g {
  color: var(--gobi-green);
}
.logo-tagline {
  font-family: 'Calibri', 'Segoe UI', 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  display: block;
}
.logo-tagline-em {
  color: var(--gobi-green);
  font-weight: 700;
}
/* footer version */
.site-footer .logo-text {
  color: #A0AEC0;
}
.site-footer .logo-tagline {
  color: rgba(160,174,192,.45);
}
.site-footer .logo-tagline-em {
  color: var(--gobi-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease-std);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gobi-green);
  transition: width var(--ease-std);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: var(--space-6);
}

/* hamburger — hidden desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
}
.nav-mobile-overlay a {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color var(--ease-std);
}
.nav-mobile-overlay a:hover { color: var(--gobi-green); }

@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  transition: background var(--ease-std), color var(--ease-std), border-color var(--ease-std), box-shadow var(--ease-std);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gobi-green);
  color: var(--white);
  border-color: var(--gobi-green);
}
.btn-primary:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  box-shadow: 0 4px 16px rgba(139,191,0,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--gobi-green);
  border-color: var(--gobi-green);
  padding: 12px 26px;
}
.btn-secondary:hover {
  background: var(--gobi-green);
  color: var(--white);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: #0f0f1a;
  border-color: #0f0f1a;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-card);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: transform var(--ease-std), box-shadow var(--ease-std);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card-icon {
  width: 48px; height: 48px;
  background: rgba(139,191,0,.12);
  border-radius: var(--radius-card);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--gobi-green);
}
.card-icon svg { width: 24px; height: 24px; }

.card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--charcoal);
}

.card-body {
  font-size: var(--text-base);
  color: var(--slate);
  line-height: var(--leading-body);
}

/* stat card */
.stat-card {
  text-align: center;
  padding: var(--space-10) var(--space-8);
}
.stat-card .stat-number {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-hero));
  font-weight: 800;
  color: var(--gobi-green);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-card .stat-label {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-top: var(--space-2);
}
.stat-card .stat-sub {
  font-size: var(--text-xs);
  color: #A0AEC0;
  margin-top: var(--space-1);
}

/* sector card (image bg + overlay) */
.sector-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
  background: var(--charcoal);
}
.sector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,.9) 40%, rgba(26,26,46,.3) 100%);
  z-index: 1;
}
.sector-card-content {
  position: relative;
  z-index: 2;
}
.sector-card-icon {
  color: var(--gobi-green);
  margin-bottom: var(--space-3);
}
.sector-card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}

/* case study card */
.case-card {
  border-left: 4px solid var(--gobi-green);
}
.case-card .case-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gobi-green);
  background: rgba(139,191,0,.1);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: var(--space-4);
}

/* process step card */
.step-card {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-8);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-card);
}
.step-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gobi-green);
  color: var(--charcoal);
  font-weight: 800;
  font-size: var(--text-sm);
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.step-body p {
  font-size: var(--text-base);
  color: #A0AEC0;
  line-height: var(--leading-body);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 72px; /* nav height */
}
.hero-sm {
  min-height: 55vh;
  padding-top: 72px;
}

.hero-bg-map {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 640px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content .eyebrow { color: var(--gobi-green); }

.hero h1 {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-hero));
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,.75);
  line-height: var(--leading-body);
  margin-bottom: var(--space-10);
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* hero fade-in */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-content { animation: heroFadeIn 0.7s ease-out both; }

@media (max-width: 767px) {
  .hero { min-height: 90vh; }
}

/* ── PROOF BAR ───────────────────────────────────────────────── */
.proof-bar {
  background: var(--charcoal);
  padding: var(--space-12) var(--container-pad);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 3px solid var(--gobi-green);
}
.proof-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.proof-item {
  text-align: center;
}
.proof-number {
  font-size: clamp(var(--text-4xl), 4vw, var(--text-5xl));
  font-weight: 800;
  color: var(--gobi-green);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.proof-label {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-top: var(--space-2);
  display: block;
}
.proof-sub {
  font-size: var(--text-xs);
  color: #A0AEC0;
  margin-top: var(--space-1);
  display: block;
}
.proof-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.15);
  font-size: var(--text-2xl);
}

@media (max-width: 767px) {
  .proof-bar .container { grid-template-columns: repeat(2, 1fr); }
  .proof-divider { display: none; }
}

/* ── GOLDEN CIRCLE SVG ───────────────────────────────────────── */
.golden-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.golden-circle-wrap svg {
  width: min(320px, 80vw);
  height: auto;
}
.golden-circle-caption {
  font-size: var(--text-base);
  color: #A0AEC0;
  text-align: center;
  font-style: italic;
  max-width: 400px;
}

/* ── SECTION HEADER BLOCK ────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-12);
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-sub {
  margin-inline: auto;
}

/* ── SPLIT LAYOUT ────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

@media (max-width: 767px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient-hero);
  padding: var(--space-20) var(--container-pad);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.cta-banner p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.75);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-inline: auto;
}
.cta-banner .btn-group {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CASE STUDY FEATURE ──────────────────────────────────────── */
.case-study-feature {
  background: var(--charcoal);
  border-radius: var(--radius-panel);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 767px) {
  .case-study-feature { grid-template-columns: 1fr; gap: var(--space-8); }
}

.case-study-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.case-stat {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  text-align: center;
}
.case-stat .n {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--gobi-green);
  letter-spacing: -0.04em;
  line-height: 1;
}
.case-stat .l {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #A0AEC0;
  margin-top: var(--space-2);
}

.case-study-body .case-headline {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  color: var(--white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}
.case-study-body p {
  color: #A0AEC0;
  line-height: var(--leading-body);
  margin-bottom: var(--space-6);
}

/* ── COVERAGE MAP PLACEHOLDER ────────────────────────────────── */
.coverage-map-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-panel);
  padding: var(--space-12);
  text-align: center;
}

/* ── CONTACT FORM ────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
@media (max-width: 767px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: var(--space-2); }
.form-field--full { grid-column: 1 / -1; }

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--charcoal);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-btn);
  background: var(--white);
  color: var(--charcoal);
  font-size: var(--text-base);
  transition: border-color var(--ease-std), box-shadow var(--ease-std);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gobi-green);
  box-shadow: 0 0 0 3px rgba(139,191,0,.15);
  outline: none;
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--signal-red);
}
.form-error {
  font-size: var(--text-xs);
  color: var(--signal-red);
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-textarea { min-height: 120px; resize: vertical; }

.radio-group {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 500;
}
.radio-label input { accent-color: var(--gobi-green); }

.form-success {
  display: none;
  background: rgba(139,191,0,.1);
  border: 1px solid var(--gobi-green);
  border-radius: var(--radius-card);
  padding: var(--space-8);
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 {
  font-size: var(--text-xl);
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: var(--space-16) var(--container-pad) var(--space-8);
  color: #A0AEC0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 479px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .footer-logo { height: 32px; margin-bottom: var(--space-4); }
.footer-brand p {
  font-size: var(--text-sm);
  line-height: var(--leading-body);
  max-width: 260px;
}

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.footer-col ul li {
  margin-bottom: var(--space-2);
}
.footer-col ul a {
  font-size: var(--text-sm);
  color: #A0AEC0;
  transition: color var(--ease-std);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  color: #A0AEC0;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--gobi-green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
}

/* ── DIFFERENTIATOR PILLARS ──────────────────────────────────── */
.pillar-card {
  padding: var(--space-8);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: border-color var(--ease-std), background var(--ease-std);
}
.pillar-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(139,191,0,.3);
}
.pillar-card .pillar-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-card);
  background: rgba(139,191,0,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gobi-green);
  margin-bottom: var(--space-6);
}
.pillar-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.pillar-card p {
  font-size: var(--text-base);
  color: #A0AEC0;
  line-height: var(--leading-body);
}

/* ── VALUE CARD (WHY page) ───────────────────────────────────── */
.value-card {
  background: var(--off-white);
  border-radius: var(--radius-card);
  padding: var(--space-10);
  border-top: 4px solid var(--gobi-green);
}
.value-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.value-card p {
  font-size: var(--text-base);
  color: var(--slate);
  line-height: var(--leading-body);
}

/* ── PULL QUOTE ──────────────────────────────────────────────── */
.pull-quote {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: var(--space-12) var(--container-pad);
}
.pull-quote blockquote {
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.section--dark .pull-quote blockquote { color: var(--white); }

/* ── FEATURE BLOCK (ePARCEL features) ───────────────────────── */
.feature-block {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  border-radius: var(--radius-card);
  background: var(--off-white);
  transition: box-shadow var(--ease-std);
}
.feature-block:hover { box-shadow: var(--shadow-card-hover); }
.feature-block .feat-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius-card);
  background: rgba(139,191,0,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gobi-green);
}
.feature-block h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--charcoal);
}
.feature-block p {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: var(--leading-body);
}

/* ── TEAM ROLE CARDS ─────────────────────────────────────────── */
.role-card {
  text-align: center;
  padding: var(--space-10) var(--space-8);
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.role-card .role-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(139,191,0,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gobi-green);
  margin: 0 auto var(--space-6);
}
.role-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--charcoal);
}
.role-card p {
  font-size: var(--text-base);
  color: var(--slate);
  line-height: var(--leading-body);
}

/* ── CONTACT SIDEBAR ─────────────────────────────────────────── */
.contact-sidebar {
  background: var(--off-white);
  border-radius: var(--radius-panel);
  padding: var(--space-10);
}
.contact-sidebar h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--charcoal);
}
.contact-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gobi-green);
}
.contact-item-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
}

/* ── PROCESS CONSULTING HIGHLIGHT ────────────────────────────── */
.consulting-box {
  background: linear-gradient(135deg, rgba(139,191,0,.08), rgba(139,191,0,.03));
  border: 1px solid rgba(139,191,0,.25);
  border-radius: var(--radius-panel);
  padding: var(--space-10);
}
.consulting-box h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

/* ── BREADCRUMB / BACK LINK ──────────────────────────────────── */
.page-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--space-3);
  display: block;
}
