/* ============================================================
   Nii Technologies Limited — Component Styles
   niipayments.com
   ============================================================ */

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.solid {
  background: rgba(26, 46, 74, 0.97);
  border-bottom-color: var(--bg-border-sub);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  width: 100%;
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--s5), 5vw, var(--s16));
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}
.nav__logo-mark {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 0.75rem + 0.75vw, 1.1rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__logo-sub {
  font-size: var(--t-xs);
  color: var(--gold-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s10);
}
.nav__links a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
  padding-block: var(--s2);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after,
.nav__links a[aria-current='page']::after { transform: scaleX(1); }
.nav__links a[aria-current='page'] { color: var(--text-primary); }

/* CTA */
.nav__cta {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inverse) !important;
  background: var(--gold);
  padding: 0.7rem var(--s6);
  border-radius: var(--r-sm);
  border: 1px solid var(--gold);
  transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast) !important;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--gold-light) !important;
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-1px);
}
.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  background: none;
  border: none;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--dur-mid), opacity var(--dur-mid);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile panel */
.nav__mobile {
  display: none;
  position: fixed;
  top: calc(var(--ticker-h) + var(--nav-h));
  left: 0; right: 0;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--bg-border);
  z-index: 199;
  padding: var(--s6) clamp(var(--s5), 5vw, var(--s16));
  flex-direction: column;
  gap: var(--s1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--bg-border-sub);
  transition: color var(--dur-fast);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-cta {
  margin-top: var(--s5);
  display: inline-block;
  width: fit-content;
  padding: var(--s3) var(--s8);
  background: var(--gold);
  color: var(--text-inverse) !important;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border-bottom: none !important;
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   HERO — Full-bleed cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--bg-void);
}

/* The photographic background layer */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* Dark gradient over photo for legibility */
    linear-gradient(
      180deg,
      rgba(8,8,8,0.35) 0%,
      rgba(8,8,8,0.15) 35%,
      rgba(8,8,8,0.35) 68%,
      rgba(8,8,8,0.55) 100%
    ),
    /* Atmospheric architecture / depth texture using CSS only */
    repeating-linear-gradient(
      90deg,
      rgba(200,168,75,0.012) 0px,
      transparent 1px,
      transparent 79px,
      rgba(200,168,75,0.012) 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(200,168,75,0.012) 0px,
      transparent 1px,
      transparent 79px,
      rgba(200,168,75,0.012) 80px
    ),
    /* Deep background base */
    linear-gradient(135deg, var(--bg-void) 0%, var(--bg-void) 40%, var(--bg-void) 100%);
}

/* Inner glow — gives depth to the CSS hero */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 45%, rgba(200,168,75,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 80% at 15% 50%, rgba(200,168,75,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 85% 50%, rgba(200,168,75,0.04) 0%, transparent 60%);
}

/* Architectural line perspective — gives cinematic depth */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Converging vertical lines to horizon */
    linear-gradient(to bottom, transparent 40%, rgba(200,168,75,0.04) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 80% at 50% 60%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-total) + var(--s20));
  padding-bottom: clamp(160px, 20vw, 260px);
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s6);
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-line);
}

.hero__co {
  display: block;
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s8);
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 17ch;
  margin-inline: auto;
  margin-bottom: var(--s6);
}

.hero__h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: var(--t-md);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--s10);
  font-weight: 400;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse);
  background: var(--gold);
  padding: 1rem var(--s10);
  border-radius: var(--r-sm);
  border: 1px solid var(--gold);
  transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.hero__cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.hero__cta svg { width: 14px; height: 14px; }

/* ============================================================
   AUTHORITY STRIP — overlaps hero bottom
   ============================================================ */
.authority {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * clamp(60px, 8vw, 100px));
  overflow-x: hidden;
}

.authority__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.authority__item {
  padding: var(--s8) var(--s6);
  text-align: center;
  border-right: 1px solid var(--bg-border);
  position: relative;
}
.authority__item:last-child { border-right: none; }

.authority__item::before {
  content: '';
  position: absolute;
  top: 0; left: var(--s6); right: var(--s6);
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.authority__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
}

.authority__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .authority__inner { grid-template-columns: repeat(2, 1fr); }
  .authority__item:nth-child(2) { border-right: none; }
  .authority__item:nth-child(3),
  .authority__item:nth-child(4) {
    border-top: 1px solid var(--bg-border);
  }
  .authority__label {
    white-space: normal;
    font-size: 0.55rem;
  }
  .authority__item {
    padding: var(--s6) var(--s4);
  }
}

@media (max-width: 480px) {
  .authority__inner {
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
  .authority__item {
    border-right: none;
    border-top: 1px solid var(--bg-border);
    padding: var(--s5) var(--s3);
  }
  .authority__item:nth-child(1),
  .authority__item:nth-child(2) {
    border-top: none;
  }
  .authority__item:nth-child(odd) {
    border-right: 1px solid var(--bg-border);
  }
  .authority__value {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .authority__label {
    white-space: normal;
    font-size: 0.5rem;
    letter-spacing: 0.06em;
  }
}

/* ============================================================
   INTRO / SUMMARY SECTION
   ============================================================ */
.intro { background: var(--bg-deep); }

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--s12), 7vw, var(--s24));
  align-items: center;
}

.intro__tag {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: var(--s1) var(--s4);
  border-radius: var(--r-sm);
  margin-bottom: var(--s6);
}

.intro__h2 {
  font-size: var(--t-xl);
  color: var(--text-primary);
  margin-bottom: var(--s6);
  max-width: 14ch;
}

.intro__body {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 58ch;
}
.intro__body p + p { margin-top: var(--s4); }

/* Right: decorative architecture panel */
.intro__panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-xl);
  padding: var(--s10);
  overflow: hidden;
}
.intro__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-dim));
}
.intro__panel::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.intro__points {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.intro__point {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}

.intro__point-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--gold-ghost);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.intro__point-icon svg { width: 16px; height: 16px; }

.intro__point-label {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}

.intro__point-body {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: none;
}

@media (max-width: 768px) {
  .intro__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES — Premium asymmetric layout
   ============================================================ */
.services { background: var(--bg-base); }

.services__header {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--s12);
  align-items: end;
  margin-bottom: clamp(var(--s10), 5vw, var(--s16));
  padding-bottom: clamp(var(--s8), 4vw, var(--s12));
  border-bottom: 1px solid var(--bg-border-sub);
}

.services__h2 {
  font-size: var(--t-xl);
  color: var(--text-primary);
}

.services__intro {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.75;
  align-self: end;
  max-width: none;
}

/* Featured large card + grid */
.services__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s4);
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border-sub);
  border-radius: var(--r-lg);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-mid), box-shadow var(--dur-mid), background var(--dur-mid);
}
.svc-card:hover {
  border-color: var(--bg-border);
  background: var(--bg-card-2);
  box-shadow: var(--shadow-md);
}

.svc-card--featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: var(--s10);
  background:
    linear-gradient(160deg, rgba(200,168,75,0.04) 0%, transparent 60%),
    var(--bg-card);
}
.svc-card__featured-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  color: var(--gold-dim);
  pointer-events: none;
}
.svc-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(8,8,8,0.6) 100%);
}
.svc-card--featured .svc-card__num {
  font-size: clamp(4rem, 8vw, 9rem);
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity var(--dur-mid);
}
.svc-card:hover::after { opacity: 1; }

.svc-card__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--bg-border);
  line-height: 1;
  position: absolute;
  top: var(--s5);
  right: var(--s6);
  user-select: none;
  transition: color var(--dur-mid);
}
.svc-card:hover .svc-card__num { color: var(--bg-card-2); }

.svc-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: var(--s5);
  position: relative;
  z-index: 1;
}

.svc-card__name {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--s3);
  position: relative;
  z-index: 1;
}

.svc-card__desc {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: none;
}

.services__secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s4);
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .services__header { grid-template-columns: 1fr; gap: var(--s5); }
  .services__layout { grid-template-columns: 1fr; }
  .svc-card--featured { grid-row: auto; min-height: 300px; }
  .services__secondary { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services__secondary { grid-template-columns: 1fr; }
}

/* ============================================================
   PROBLEM / NEED SECTION
   ============================================================ */
.problem {
  background: var(--bg-lift);
  border-top: 1px solid var(--bg-border-sub);
  border-bottom: 1px solid var(--bg-border-sub);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(200,168,75,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s12), 7vw, var(--s24));
  align-items: center;
}

.problem__h2 {
  font-size: var(--t-xl);
  color: var(--text-primary);
  margin-bottom: var(--s6);
  max-width: 16ch;
}

.problem__body {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 52ch;
}
.problem__body p + p { margin-top: var(--s5); }

.problem__right {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.problem__item {
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
  padding: var(--s6);
  background: var(--bg-card);
  border: 1px solid var(--bg-border-sub);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-mid);
}
.problem__item:hover { border-color: var(--bg-border); }

.problem__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold-dim);
  border-radius: var(--r-sm) 0 0 var(--r-sm);
}

.problem__item-title {
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s2);
}
.problem__item-text {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: none;
}

@media (max-width: 768px) {
  .problem__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TRUST — Why NII
   ============================================================ */
.trust {
  background: var(--bg-deep);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: clamp(var(--s10), 5vw, var(--s16));
}

.trust__card {
  padding: var(--s8) var(--s6);
  background: var(--bg-card);
  border: 1px solid var(--bg-border-sub);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-mid), box-shadow var(--dur-mid);
}
.trust__card:hover {
  border-color: var(--bg-border);
  box-shadow: var(--shadow-md);
}
.trust__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), transparent);
}

.trust__icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: var(--s5);
}

.trust__title {
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s3);
  line-height: 1.2;
}

.trust__text {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: none;
}

@media (max-width: 900px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .trust__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CORRIDOR / INTERNATIONAL SECTION
   ============================================================ */
.corridor {
  background: var(--bg-base);
  border-top: 1px solid var(--bg-border-sub);
  position: relative;
  overflow: hidden;
}
.corridor::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.corridor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s12), 7vw, var(--s24));
  align-items: center;
  position: relative;
  z-index: 1;
}

.corridor__h2 {
  font-size: var(--t-xl);
  color: var(--text-primary);
  margin-bottom: var(--s6);
  max-width: 15ch;
}

.corridor__body {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: none;
}
.corridor__body p + p { margin-top: var(--s4); }

.corridor__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s8);
}

.corridor__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  padding: var(--s2) var(--s4);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.corridor__tag:hover {
  border-color: var(--gold-line);
  color: var(--gold);
}
.corridor__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Visual panel right side */
.corridor__visual {
  background: var(--bg-card);
  border: 1px solid var(--bg-border-sub);
  border-radius: var(--r-xl);
  padding: var(--s10);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.corridor__visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.corridor__diagram {
  width: 100%;
  max-width: 340px;
}

@media (max-width: 768px) {
  .corridor__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband {
  background: var(--bg-lift);
  border-top: 1px solid var(--bg-border-sub);
  border-bottom: 1px solid var(--bg-border-sub);
  position: relative;
  overflow: hidden;
}
.ctaband::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 100%);
}

.ctaband__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: var(--w-narrow);
  margin-inline: auto;
}

.ctaband__h2 {
  font-size: var(--t-xl);
  color: var(--text-primary);
  margin-bottom: var(--s5);
  max-width: 20ch;
  margin-inline: auto;
}

.ctaband__body {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--s8);
  max-width: 50ch;
  margin-inline: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--bg-border-sub);
  padding-top: clamp(var(--s16), 7vw, var(--s24));
  padding-bottom: var(--s8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--s12);
  padding-bottom: var(--s12);
  border-bottom: 1px solid var(--bg-border-sub);
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.footer__logo-mark {
  height: 34px;
  width: auto;
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer__tagline {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 30ch;
  margin-bottom: var(--s6);
}

.footer__address {
  font-style: normal;
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.75;
}

.footer__col-title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--s5);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.footer__nav a {
  font-size: var(--t-sm);
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.footer__nav a:hover { color: var(--gold); }

.footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  margin-bottom: var(--s3);
}
.footer__contact-icon {
  width: 14px; height: 14px;
  color: var(--gold-dim);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer__contact-text {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.6;
}
.footer__contact-text a {
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}
.footer__contact-text a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-top: var(--s6);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--t-xs);
  color: var(--text-muted);
}

.footer__stamp {
  font-size: var(--t-xs);
  color: var(--text-muted);
}
.footer__stamp a {
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.footer__stamp a:hover { color: var(--gold-dim); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--s8); }
}

/* ============================================================
   BUTTONS (general)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem var(--s8);
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--gold);
  color: var(--text-inverse);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--bg-border);
}
.btn--outline:hover {
  border-color: var(--gold-line);
  color: var(--text-primary);
}

/* ============================================================
   ABOUT PAGE — SPECIFIC
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-void);
  padding-top: var(--header-total);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.5) 100%),
    repeating-linear-gradient(90deg, rgba(200,168,75,0.015) 0px, transparent 1px, transparent 79px, rgba(200,168,75,0.015) 80px),
    repeating-linear-gradient(0deg, rgba(200,168,75,0.015) 0px, transparent 1px, transparent 79px, rgba(200,168,75,0.015) 80px),
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,168,75,0.06) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-void) 0%, var(--bg-void) 50%, var(--bg-void) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(var(--s16), 8vw, var(--s24));
  padding-top: clamp(var(--s16), 8vw, var(--s24));
}
.page-hero__h1 {
  font-size: var(--t-2xl);
  color: var(--text-primary);
  max-width: 16ch;
  margin-top: var(--s5);
}

/* About body */
.about-body { background: var(--bg-base); }
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(var(--s12), 7vw, var(--s20));
}
.about-prose {
  font-size: var(--t-base);
  color: var(--text-secondary);
  line-height: 1.85;
}
.about-prose p + p { margin-top: var(--s6); }

.mission-block {
  margin-top: var(--s10);
  padding: var(--s8) var(--s8) var(--s8) var(--s10);
  background: var(--bg-card);
  border: 1px solid var(--bg-border-sub);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.mission-block::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,168,75,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.mission-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: var(--s4);
}
.mission-text {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.55;
  position: relative;
  z-index: 1;
  max-width: none;
}

/* Sidebar cards */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border-sub);
  border-radius: var(--r-lg);
  padding: var(--s6);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), transparent);
}
.info-card__title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: var(--s4);
}
.info-card__body {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: none;
}
.info-card__body a {
  color: var(--text-secondary);
  transition: color var(--dur-fast);
}
.info-card__body a:hover { color: var(--gold); }
.info-card__body address { font-style: normal; }
.phone-note {
  font-size: var(--t-xs);
  color: var(--text-muted);
  font-style: italic;
  margin-top: var(--s2);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { order: -1; }
}

/* Operations grid */
.ops-section { background: var(--bg-deep); }
.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-top: clamp(var(--s8), 4vw, var(--s12));
}
.ops-card {
  padding: var(--s6);
  background: var(--bg-card);
  border: 1px solid var(--bg-border-sub);
  border-radius: var(--r-lg);
  transition: border-color var(--dur-mid);
}
.ops-card:hover { border-color: var(--bg-border); }
.ops-card__title {
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.ops-card__body {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: none;
}

@media (max-width: 600px) {
  .ops-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  background: var(--bg-lift);
  border-top: 1px solid var(--bg-border-sub);
}

.contact-direct {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-direct .contact-intro__h2 {
  max-width: none;
}
.contact-direct .contact-intro__body {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-direct__items {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  margin-top: var(--s8);
  border: 1px solid var(--bg-border-sub);
  border-radius: 4px;
  overflow: hidden;
}
.contact-direct__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  padding: var(--s5) var(--s8);
  background: var(--bg-card);
  border-bottom: 1px solid var(--bg-border-sub);
  transition: background var(--dur-fast);
}
.contact-direct__item:last-child { border-bottom: none; }
.contact-direct__item:hover { background: var(--bg-lift); }
.contact-direct__label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.contact-direct__email {
  font-size: var(--t-sm);
  color: var(--gold-dim);
  transition: color var(--dur-fast);
  text-decoration: none;
}
.contact-direct__email:hover { color: var(--gold); }
.contact-direct__address {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--s3);
  margin-top: var(--s7);
  font-size: var(--t-xs);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.contact-intro__h2 {
  font-size: var(--t-xl);
  color: var(--text-primary);
  margin-bottom: var(--s5);
  max-width: 14ch;
}
.contact-intro__body {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--s6);
  max-width: none;
}
.contact-intro__email a {
  font-size: var(--t-sm);
  color: var(--gold-dim);
  transition: color var(--dur-fast);
}
.contact-intro__email a:hover { color: var(--gold); }

/* Form */
.nii-form {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.form-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-label .opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  font-size: 0.88em;
  margin-left: 4px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--bg-border);
  border-radius: var(--r-md);
  padding: 0.75rem var(--s4);
  font-size: var(--t-sm);
  color: var(--text-primary);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: var(--s10);
  cursor: pointer;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.1);
}
.form-input.err,
.form-select.err,
.form-textarea.err { border-color: rgba(176,64,64,0.6); }
.form-textarea {
  resize: vertical;
  min-height: 130px;
}
.form-honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.form-privacy {
  font-size: var(--t-xs);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
}
.form-err-msg {
  display: none;
  font-size: var(--t-xs);
  color: #b04040;
  margin-top: 3px;
}
.form-err-msg.show { display: block; }
.form-success {
  display: none;
  padding: var(--s5) var(--s6);
  background: rgba(74,156,109,0.08);
  border: 1px solid rgba(74,156,109,0.25);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: #6daa8a;
  line-height: 1.6;
}
.form-success.show { display: block; }

@media (max-width: 768px) {
  .contact-direct__item { flex-direction: column; align-items: flex-start; gap: var(--s2); padding: var(--s5) var(--s5); }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT INFO SECTION
   ============================================================ */
.contact-info-section {
  background: var(--bg-base);
  border-top: 1px solid var(--bg-border-sub);
}
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s12), 7vw, var(--s20));
  align-items: start;
}
.contact-mailboxes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--s8);
  border: 1px solid var(--bg-border-sub);
  border-radius: var(--r-md);
  overflow: hidden;
}
.contact-mailbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  padding: var(--s4) var(--s6);
  background: var(--bg-card);
  border-bottom: 1px solid var(--bg-border-sub);
  transition: background var(--dur-fast);
}
.contact-mailbox:last-child { border-bottom: none; }
.contact-mailbox:hover { background: var(--bg-card-2); }
.contact-mailbox__label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.contact-mailbox__addr {
  font-size: var(--t-sm);
  color: var(--gold-dim);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.contact-mailbox__addr:hover { color: var(--gold); }
.contact-address {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  margin-top: var(--s6);
  font-size: var(--t-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-form-section {
  background: var(--bg-void);
  border-top: 1px solid var(--bg-border-sub);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(var(--s12), 7vw, var(--s20));
  align-items: start;
}
.contact-form-h2 {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--s5);
  max-width: 16ch;
}
.contact-form-intro {
  font-size: var(--t-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Updated form field wrapper */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.form-label__opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  font-size: 0.88em;
  margin-left: 4px;
}
.field-error {
  display: none;
  font-size: var(--t-xs);
  color: #c06060;
  margin-top: 2px;
}

/* Select wrapper for custom arrow */
.form-select-wrap {
  position: relative;
}
.form-select-wrap .form-select {
  background-image: none;
  padding-right: var(--s10);
}
.form-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  color: var(--text-muted);
  pointer-events: none;
}

/* form-success — hidden attribute version */
.form-success[hidden] { display: none; }
.form-success:not([hidden]) {
  display: block;
  padding: var(--s5) var(--s6);
  background: rgba(74,156,109,0.08);
  border: 1px solid rgba(74,156,109,0.25);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: #6daa8a;
  line-height: 1.6;
  margin-bottom: var(--s6);
}

@media (max-width: 900px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-aside { display: none; }
  .contact-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-mailbox { flex-direction: column; align-items: flex-start; gap: var(--s2); padding: var(--s4); }
  .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   CURRENCY TICKER BAR
   ============================================================ */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 32px;
  background: rgba(18, 28, 44, 0.97);
  border-bottom: 1px solid rgba(200,168,75,0.18);
  display: flex;
  align-items: center;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ticker-bar__label {
  flex-shrink: 0;
  padding: 0 14px 0 16px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #c8a84b;
  text-transform: uppercase;
  border-right: 1px solid rgba(200,168,75,0.18);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-bar__track-outer {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.ticker-bar__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  will-change: transform;
  gap: 0;
}

.ticker-bar__track:hover {
  animation-play-state: paused;
}

/* Duplicate track for seamless loop */
.ticker-bar__track-clone {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}

.ticker-bar__track-clone:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item, .ticker-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  border-right: 1px solid rgba(200,168,75,0.1);
  height: 100%;
}

.ticker-item:last-child, .ticker-bar__item:last-child {
  border-right: none;
}

.ticker-item__pair, .ticker-bar__pair {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(242,237,228,0.75);
  text-transform: uppercase;
}

.ticker-item__rate, .ticker-bar__rate {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #ede8dd;
}

.ticker-item__base, .ticker-bar__base {
  font-size: 9px;
  color: rgba(200,168,75,0.7);
  font-weight: 300;
  letter-spacing: 0.06em;
}

.ticker-bar__status {
  flex-shrink: 0;
  padding: 0 12px;
  font-size: 8.5px;
  font-family: var(--font-sans);
  color: rgba(200,168,75,0.5);
  letter-spacing: 0.1em;
  white-space: nowrap;
  border-left: 1px solid rgba(200,168,75,0.12);
}

.ticker-bar--loading .ticker-bar__track, .ticker-bar--loading .ticker-bar__track-clone { opacity: 0.4; }

/* Shift nav and body down by ticker height */
.nav {
  top: 32px !important;
}

@media (max-width: 640px) {
  .ticker-bar__label { display: none; }
  .ticker-item, .ticker-bar__item { padding: 0 14px; }
  .ticker-item__pair, .ticker-bar__pair { font-size: 9.5px; }
  .ticker-item__rate, .ticker-bar__rate { font-size: 10px; }
  .ticker-bar__status { display: none; }
}

/* ── FAQ SECTION ───────────────────────────────────────────────── */
.faq { background: var(--bg-void); }
.faq__h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: var(--s7);
  margin-top: var(--s3);
}
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-top: 1px solid rgba(200,168,75,0.15);
  padding: var(--s5) 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(200,168,75,0.15); }
.faq__q {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #f0ece4);
  margin-bottom: var(--s3);
  letter-spacing: 0.01em;
}
.faq__a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary, rgba(240,236,228,0.7));
  margin: 0;
}

/* ── HERO MOBILE FIX ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero__content {
    overflow: hidden;
  }
  .hero__eyebrow {
    letter-spacing: 0.1em;
    font-size: 0.65rem;
    gap: var(--s2);
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__eyebrow::before,
  .hero__eyebrow::after {
    width: 20px;
  }
  .hero__co {
    letter-spacing: 0.12em;
    font-size: 0.65rem;
  }
}
