/* ==========================================================================
   ZJF — Zhonjin Future USA Inc.
   Brand Stylesheet  /  Enterprise Logistics Infrastructure
   ========================================================================== */

/* ---- Design Tokens ------------------------------------------------------- */
:root {
  /* Brand Colors */
  --navy:        #0A2540;
  --navy-deep:   #061829;
  --navy-light:  #1B3A5C;
  --steel:       #5A6B7B;
  --steel-light: #8896A4;
  --gold:        #B08A3E;
  --gold-light:  #C9A05C;
  --gold-soft:   #F5EFE0;
  --white:       #FFFFFF;
  --paper:       #F8F9FB;
  --stone:       #F1F3F6;
  --rule:        #D6DBE0;
  --rule-soft:   #E8ECF0;
  --ink:         #1A2332;
  --ink-soft:    #4A5868;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Source Han Serif SC', 'Songti SC', Georgia, serif;
  --font-body:    'Manrope', 'Source Han Sans SC', 'PingFang SC', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing scale */
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;
  --s-11: 160px;

  /* Layout */
  --container: 1440px;
  --container-narrow: 960px;
  --nav-h: 76px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --t-1: 200ms;
  --t-2: 400ms;
  --t-3: 700ms;
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ---- Typography ---------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--navy);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  color: var(--navy);
}
h4, .h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.italic-accent { font-style: italic; color: var(--gold); }

p { color: var(--ink-soft); }
.lead {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---- Layout Utilities ---------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--s-10) 0; }
.section-sm { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-8) 0; }

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: var(--s-9) 0; }
  .section-sm { padding: var(--s-8) 0; }
}

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.divider {
  height: 1px;
  background: var(--rule-soft);
  border: 0;
  margin: 0;
}

/* ---- Navigation ---------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--rule-soft);
  transition: background var(--t-1) var(--ease);
}
.nav.scrolled { background: rgba(255, 255, 255, 0.96); }
.nav-inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.brand-mark span { color: var(--gold); }
.brand-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  border-left: 1px solid var(--rule);
  padding-left: 10px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  letter-spacing: -0.005em;
  transition: color var(--t-1) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--t-2) var(--ease);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}
.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  color: var(--steel);
  border-radius: 999px;
  transition: all var(--t-1) var(--ease);
}
.lang-btn.active {
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--navy);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 32px 32px;
    border-bottom: 1px solid var(--rule);
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; gap: 0; }
  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .brand-tag {
    border-left: 0;
    padding-left: 0;
  }
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 2px;
  transition: all var(--t-1) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.18);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(176, 138, 62, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost {
  padding: 14px 0;
  color: var(--navy);
}
.btn-ghost::after {
  content: "→";
  margin-left: 8px;
  transition: transform var(--t-1) var(--ease);
}
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: var(--s-11) 0 var(--s-10);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 20%, rgba(176, 138, 62, 0.18), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(27, 58, 92, 0.6), transparent 60%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero h1, .hero h2 { color: var(--white); }
.hero p, .hero .lead { color: rgba(255, 255, 255, 0.78); }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-8);
  align-items: end;
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-7); }
}
.hero-headline {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: var(--s-6);
}
.hero-meta-item .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.hero-meta-item .value {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
  color: var(--white);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: var(--s-6);
}
.hero-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.hero-cta .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ---- Stats Bar ----------------------------------------------------------- */
.stats-bar {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--s-7) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.stats-bar .grid-4 { gap: 0; }
.stat-item {
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-item:last-child { border-right: 0; }
@media (max-width: 1100px) {
  .stat-item { border-right: 0; padding: 16px 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
}
.stat-num .unit { color: var(--gold-light); font-size: 0.6em; margin-left: 4px; }
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Section Header ------------------------------------------------------ */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s-7);
  align-items: end;
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--rule-soft);
}
@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ---- Cards --------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--rule-soft);
  padding: var(--s-6);
  transition: all var(--t-2) var(--ease);
  position: relative;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -16px rgba(10, 37, 64, 0.1);
}
.card-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: var(--s-5);
}
.card h3 { margin-bottom: var(--s-3); }
.card p { font-size: 15px; line-height: 1.6; }

.card-feature {
  background: var(--navy);
  color: var(--white);
  padding: var(--s-7);
  border: none;
}
.card-feature h3 { color: var(--white); }
.card-feature p { color: rgba(255,255,255,0.75); }

/* ---- Pillars (3-column with line numbers) ------------------------------- */
.pillar {
  padding-top: var(--s-5);
  border-top: 1px solid var(--navy);
  position: relative;
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: var(--s-5);
  display: block;
}
.pillar h3 {
  font-size: 28px;
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
}
.pillar p { font-size: 15px; line-height: 1.65; max-width: 36ch; }
.pillar ul { margin-top: var(--s-5); }
.pillar ul li {
  font-size: 14px;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  padding-left: 18px;
}
.pillar ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---- Footer -------------------------------------------------------------- */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--s-9) 0 var(--s-6);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .brand-mark { color: var(--white); font-size: 26px; }
.footer-brand .brand-mark span { color: var(--gold-light); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  margin-top: var(--s-4);
  color: rgba(255, 255, 255, 0.85);
  max-width: 32ch;
}
.footer h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--s-4);
}
.footer ul li {
  margin-bottom: 12px;
}
.footer ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--t-1) var(--ease);
}
.footer ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.footer-bottom .legal {
  display: flex;
  gap: 24px;
}
.footer-bottom .legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .legal a:hover { color: rgba(255,255,255,0.85); }

/* ---- Page Header (interior pages) --------------------------------------- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: var(--s-10) 0 var(--s-8);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 90% 30%, rgba(176, 138, 62, 0.15), transparent 60%);
  z-index: -2;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: -1;
  mask-image: linear-gradient(180deg, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 50%, transparent 100%);
}
.page-header h1 { color: var(--white); margin-bottom: var(--s-4); max-width: 18ch; }
.page-header .lead { color: rgba(255, 255, 255, 0.78); max-width: 60ch; }
.page-header .eyebrow { color: var(--gold-light); margin-bottom: var(--s-5); }
.page-header .eyebrow::before { background: var(--gold-light); }

.breadcrumb {
  margin-bottom: var(--s-7);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  gap: 12px;
  align-items: center;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.5; }

/* ---- Quote / Pull --------------------------------------------------------- */
.pull {
  border-left: 2px solid var(--gold);
  padding: var(--s-2) 0 var(--s-2) var(--s-5);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-style: italic;
  line-height: 1.35;
  color: var(--navy);
  max-width: 36ch;
}
.pull cite {
  display: block;
  margin-top: var(--s-4);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ---- Content Prose ------------------------------------------------------- */
.prose h2 { margin-top: var(--s-8); margin-bottom: var(--s-5); }
.prose h3 { margin-top: var(--s-6); margin-bottom: var(--s-3); }
.prose p { margin-bottom: var(--s-4); font-size: 16px; line-height: 1.75; color: var(--ink); }
.prose ul { margin: var(--s-4) 0; padding-left: 0; }
.prose ul li {
  position: relative;
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}
.prose ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
}
.prose strong { color: var(--navy); font-weight: 600; }

/* ---- CTA Banner ---------------------------------------------------------- */
.cta {
  background: var(--navy);
  color: var(--white);
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 50%, rgba(176, 138, 62, 0.2), transparent 60%);
  z-index: -1;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; }
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255, 255, 255, 0.78); margin-top: var(--s-4); max-width: 60ch; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 600px) {
  .cta-actions { flex-direction: row; align-items: center; }
}
.cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.cta .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ---- Trust Bar ----------------------------------------------------------- */
.trust-bar {
  background: var(--paper);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  text-align: center;
  margin-bottom: var(--s-5);
}
.trust-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-7);
  align-items: center;
}
.trust-item {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--navy);
  font-style: italic;
  opacity: 0.7;
  transition: opacity var(--t-2) var(--ease);
}
.trust-item:hover { opacity: 1; }

/* ---- Map / Corridor diagram --------------------------------------------- */
.corridor-card {
  border: 1px solid var(--rule-soft);
  padding: var(--s-6);
  background: var(--paper);
  position: relative;
  transition: all var(--t-2) var(--ease);
}
.corridor-card:hover { background: var(--white); border-color: var(--navy); }
.corridor-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.corridor-card h4 { font-size: 18px; margin-bottom: var(--s-2); }
.corridor-card p { font-size: 14px; line-height: 1.55; }
.corridor-meta {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--steel);
}
.corridor-meta span strong { color: var(--navy); font-weight: 600; }

/* ---- Form ---------------------------------------------------------------- */
.form {
  display: grid;
  gap: var(--s-4);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 14px 16px;
  border-radius: 2px;
  transition: border var(--t-1) var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---- Logo Mark (SVG inline support) -------------------------------------- */
.logomark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* ---- FAQ ----------------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--rule-soft);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: var(--s-5) 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--navy);
  cursor: pointer;
  font-weight: 500;
}
.faq-q .icon {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--t-2) var(--ease);
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-2) var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p {
  padding: 0 0 var(--s-5);
  font-size: 16px;
  line-height: 1.7;
  max-width: 76ch;
}

/* ---- Animations --------------------------------------------------------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.rise {
  animation: rise 1s var(--ease) both;
}
.rise.d-1 { animation-delay: 0.1s; }
.rise.d-2 { animation-delay: 0.2s; }
.rise.d-3 { animation-delay: 0.3s; }
.rise.d-4 { animation-delay: 0.4s; }
.rise.d-5 { animation-delay: 0.5s; }
.rise.d-6 { animation-delay: 0.6s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Lang visibility ----------------------------------------------------- */
[data-lang]:not(.lang-active) { display: none !important; }

/* ---- Misc ---------------------------------------------------------------- */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-steel { color: var(--steel); }
.bg-paper { background: var(--paper); }
.bg-stone { background: var(--stone); }
.bg-navy { background: var(--navy); color: var(--white); }
.mb-3 { margin-bottom: var(--s-3); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.text-center { text-align: center; }

/* ---- Selection / focus states ------------------------------------------- */
::selection { background: var(--gold); color: var(--white); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
