/* bijin — Night Atlas / Departure Board
   Prefix: bj- */

:root {
  --bj-midnight: #071525;
  --bj-atlas: #0E3A5F;
  --bj-coral: #FF5A36;
  --bj-coral-deep: #E04522;
  --bj-fog: #C9D6E0;
  --bj-paper: #F5F7FA;
  --bj-ink: #0A1A2A;
  --bj-muted: #6B7C8C;
  --bj-line: rgba(201, 214, 224, 0.18);
  --bj-line-strong: rgba(201, 214, 224, 0.35);
  --bj-glass: rgba(7, 21, 37, 0.72);

  --font-display: "Bebas Neue", "IBM Plex Sans", sans-serif;
  --font-jp: "Shippori Mincho", "Noto Sans JP", serif;
  --font-body: "Noto Sans JP", "IBM Plex Sans", sans-serif;
  --font-latin: "IBM Plex Sans", "Noto Sans JP", sans-serif;

  --nav-h: 4.25rem;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.bj {
  margin: 0;
  background: var(--bj-paper);
  color: var(--bj-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }
h1, h2, h3, h4 { font-family: var(--font-jp); font-weight: 600; line-height: 1.35; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }

.bj-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--bj-coral);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
}
.bj-skip:focus { left: 0.5rem; top: 0.5rem; }

/* —— Buttons —— */
.bj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid transparent;
  background: var(--bj-atlas);
  color: var(--bj-paper);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.bj-btn:hover { background: #124a78; }
.bj-btn--coral {
  background: var(--bj-coral);
  color: #fff;
}
.bj-btn--coral:hover { background: var(--bj-coral-deep); }
.bj-btn--ghost {
  background: transparent;
  border-color: rgba(245, 247, 250, 0.55);
  color: var(--bj-paper);
}
.bj-btn--ghost:hover {
  background: rgba(245, 247, 250, 0.1);
  border-color: var(--bj-paper);
}
.bj-btn--ink {
  background: var(--bj-midnight);
  color: var(--bj-paper);
}
.bj-btn--ink:hover { background: #0c2438; }

/* —— Nav —— */
.bj-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding:
    env(safe-area-inset-top, 0px)
    max(var(--pad), env(safe-area-inset-right, 0px))
    0
    max(var(--pad), env(safe-area-inset-left, 0px));
  background: transparent;
  color: var(--bj-paper);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}
.bj-nav.is-scrolled,
body.is-nav-open .bj-nav {
  background: var(--bj-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--bj-line);
}
body.is-nav-open .bj-nav {
  background: var(--bj-midnight);
}
.bj-nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.15rem;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.bj-nav__mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  color: inherit;
}
.bj-nav__sub {
  font-family: var(--font-latin);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--bj-fog);
  opacity: 0.75;
}
.bj-nav__links {
  display: none;
  margin-left: auto;
  gap: 1.6rem;
}
.bj-nav__links a {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  opacity: 0.78;
  position: relative;
}
.bj-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--bj-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.bj-nav__links a:hover,
.bj-nav__links a.is-on { opacity: 1; }
.bj-nav__links a.is-on::after,
.bj-nav__links a:hover::after { transform: scaleX(1); }
.bj-nav__cta { display: none; }
.bj-burger {
  margin-left: auto;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  place-content: center;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.bj-burger__lines {
  display: grid;
  gap: 6px;
  width: 1.4rem;
}
.bj-burger i {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s;
  transform-origin: center;
}
.bj-burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.bj-burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.bj-burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

.bj-drawer {
  position: fixed;
  top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: var(--bj-midnight);
  color: var(--bj-paper);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding:
    1.25rem
    max(var(--pad), env(safe-area-inset-right, 0))
    calc(2rem + env(safe-area-inset-bottom, 0px))
    max(var(--pad), env(safe-area-inset-left, 0));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.bj-drawer.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}
.bj-drawer[hidden] { display: none !important; }
.bj-drawer a {
  font-family: var(--font-jp);
  font-size: clamp(1.25rem, 5.5vw, 1.55rem);
  padding: 1rem 0;
  border-bottom: 1px solid var(--bj-line);
  min-height: 3.25rem;
  display: flex;
  align-items: center;
}
.bj-drawer a[aria-current="page"] { color: var(--bj-coral); }
.bj-drawer__cta {
  margin-top: 1.25rem;
  justify-content: center;
  border: 1px solid var(--bj-coral) !important;
  background: var(--bj-coral);
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  letter-spacing: 0.06em;
  min-height: 3rem;
  padding: 0.85rem 1.25rem !important;
}

@media (min-width: 900px) {
  .bj-nav__links { display: flex; }
  .bj-nav__cta { display: inline-flex; margin-left: 0.5rem; }
  .bj-burger { display: none; }
  .bj-drawer { display: none !important; }
}

/* —— Hero —— */
.bj-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--bj-paper);
  overflow: hidden;
  background: var(--bj-midnight);
}
.bj-hero--page {
  min-height: 72vh;
  min-height: 72svh;
}
.bj-hero__media {
  position: absolute;
  inset: -8% 0 -8% 0;
  z-index: 0;
  will-change: transform;
}
.bj-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bj-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 21, 37, 0.35) 0%, rgba(7, 21, 37, 0.15) 35%, rgba(7, 21, 37, 0.78) 78%, rgba(7, 21, 37, 0.95) 100%),
    linear-gradient(90deg, rgba(7, 21, 37, 0.55) 0%, transparent 55%);
}
.bj-hero__fog {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(201, 214, 224, 0.12) 40%, rgba(7, 21, 37, 0.4));
  filter: blur(0.5px);
  will-change: transform;
}
.bj-hero__copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding:
    calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 2rem)
    var(--pad)
    clamp(3rem, 8vh, 5.5rem);
}
.bj-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 18vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
  color: var(--bj-paper);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.bj-hero h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 600;
  max-width: 16em;
  margin-bottom: 0.85rem;
}
.bj-hero__lead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 34em;
  color: var(--bj-fog);
  margin-bottom: 1.75rem;
  line-height: 1.85;
}
.bj-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Sections —— */
.bj-sec {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad);
}
.bj-sec--midnight {
  background: var(--bj-midnight);
  color: var(--bj-paper);
}
.bj-sec--atlas {
  background: var(--bj-atlas);
  color: var(--bj-paper);
}
.bj-sec--paper { background: var(--bj-paper); }
.bj-sec--fog {
  background: linear-gradient(180deg, #E8EEF3 0%, var(--bj-paper) 100%);
}
.bj-wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.bj-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 40rem;
}
.bj-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bj-k {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--bj-coral);
  margin-bottom: 0.55rem;
}
.bj-sec--midnight .bj-k,
.bj-sec--atlas .bj-k { color: var(--bj-coral); }
.bj-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 0.5rem;
}
.bj-muted {
  color: var(--bj-muted);
  font-size: 0.98rem;
}
.bj-sec--midnight .bj-muted,
.bj-sec--atlas .bj-muted { color: rgba(201, 214, 224, 0.78); }

/* —— Departure board itineraries —— */
.bj-board {
  color: var(--bj-paper);
  border: 1px solid var(--bj-line-strong);
  background:
    linear-gradient(180deg, rgba(14, 58, 95, 0.55), rgba(7, 21, 37, 0.96)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(201, 214, 224, 0.07) 39px,
      rgba(201, 214, 224, 0.07) 40px
    );
  box-shadow: inset 0 1px 0 rgba(201, 214, 224, 0.08);
}
.bj-board__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  padding: 1.35rem 1.45rem;
  border-bottom: 1px solid var(--bj-line);
  align-items: start;
}
.bj-board__row:last-child { border-bottom: 0; }
.bj-board__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
  color: var(--bj-coral);
  line-height: 1;
  min-width: 4.5rem;
}
.bj-board__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: baseline;
  margin-bottom: 0.85rem;
}
.bj-board__meta h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--bj-paper);
}
.bj-board__days {
  font-family: var(--font-latin);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--bj-fog);
  opacity: 0.85;
}

/* Horizontal timeline */
.bj-timeline {
  --draw: 0;
  position: relative;
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 1.1rem 0 0.35rem;
  scrollbar-width: thin;
}
.bj-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0.55rem;
  height: 2px;
  background: rgba(201, 214, 224, 0.18);
}
.bj-timeline::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  height: 2px;
  width: calc(var(--draw) * 100%);
  background: linear-gradient(90deg, var(--bj-coral), #ff8a6e);
  transition: width 1.2s var(--ease);
}
.bj-timeline.is-drawn { --draw: 1; }
.bj-timeline__stop {
  position: relative;
  flex: 1 0 auto;
  min-width: 6.5rem;
  padding: 1.4rem 1rem 0 0;
  font-family: var(--font-latin);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--bj-fog);
}
.bj-timeline__stop::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--bj-midnight);
  border: 2px solid var(--bj-coral);
  z-index: 1;
  transform: scale(0);
  transition: transform 0.4s var(--ease);
}
.bj-timeline.is-drawn .bj-timeline__stop::before {
  transform: scale(1);
  transition-delay: calc(var(--i, 0) * 0.12s + 0.2s);
}

/* —— Destination bands —— */
.bj-band {
  position: relative;
  min-height: clamp(22rem, 58vh, 34rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--bj-paper);
}
.bj-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bj-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.bj-band__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 21, 37, 0.82) 0%, rgba(7, 21, 37, 0.35) 55%, rgba(7, 21, 37, 0.55) 100%);
}
.bj-band--right .bj-band__veil {
  background: linear-gradient(270deg, rgba(7, 21, 37, 0.82) 0%, rgba(7, 21, 37, 0.35) 55%, rgba(7, 21, 37, 0.55) 100%);
}
.bj-band__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
}
.bj-band--right .bj-band__inner { text-align: right; }
.bj-band__code {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: var(--bj-coral);
  margin-bottom: 0.35rem;
}
.bj-band__place {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 12vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
  transform: translateX(-12%);
  opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}
.bj-band--right .bj-band__place {
  transform: translateX(12%);
}
.bj-band__place.is-in {
  transform: none;
  opacity: 1;
}
.bj-band__jp {
  font-family: var(--font-jp);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 0.65rem;
}
.bj-band__tag {
  font-family: var(--font-latin);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--bj-fog);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.bj-band p {
  max-width: 32em;
  color: rgba(245, 247, 250, 0.88);
  margin: 0;
}
.bj-band--right p { margin-left: auto; }

/* —— Staggered image stack —— */
.bj-stack {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 800px) {
  .bj-stack {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .bj-stack__item:nth-child(even) {
    margin-top: 4.5rem;
  }
}
.bj-stack__item {
  position: relative;
}
.bj-stack__item figure {
  margin: 0;
  position: relative;
}
.bj-stack__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.bj-stack__item .bj-stack__gate {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  background: var(--bj-midnight);
  color: var(--bj-fog);
  padding: 0.3rem 0.55rem;
}
.bj-stack__body {
  padding: 1.1rem 0.15rem 0;
}
.bj-stack__body .price {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--bj-coral);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.bj-stack__body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.bj-stack__body p {
  color: var(--bj-muted);
  font-size: 0.95rem;
  margin: 0;
}
.bj-sec--midnight .bj-stack__body p,
.bj-sec--atlas .bj-stack__body p { color: rgba(201, 214, 224, 0.78); }

/* —— Process steps —— */
.bj-steps {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 720px) {
  .bj-steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.bj-steps li {
  border-top: 2px solid var(--bj-coral);
  padding-top: 1rem;
}
.bj-steps__media {
  margin: 0 0 0.85rem;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #0a2035;
}
.bj-steps__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bj-steps b {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--bj-coral);
  display: block;
  line-height: 1;
  margin-bottom: 0.55rem;
}
.bj-steps h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.bj-steps p {
  font-size: 0.92rem;
  color: var(--bj-muted);
  margin: 0;
}
.bj-sec--midnight .bj-steps p { color: rgba(201, 214, 224, 0.75); }

/* —— Voices —— */
.bj-voices {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .bj-voices { grid-template-columns: repeat(3, 1fr); }
}
.bj-voices blockquote {
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--bj-line-strong);
}
.bj-voices__pic {
  margin: 0 0 1rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  border-radius: 50%;
  background: #0a2035;
}
.bj-voices__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bj-voices p {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.bj-voices cite {
  font-style: normal;
  font-family: var(--font-latin);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--bj-muted);
  opacity: 0.9;
}
.bj-sec--midnight .bj-voices cite,
.bj-sec--atlas .bj-voices cite { color: var(--bj-fog); opacity: 0.85; }

/* —— Notes / blog list —— */
.bj-notes {
  display: grid;
  gap: 0;
  border-top: 1px solid currentColor;
  border-color: rgba(10, 26, 42, 0.12);
}
.bj-sec--midnight .bj-notes { border-color: var(--bj-line); }
.bj-notes article {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(10, 26, 42, 0.12);
  align-items: center;
}
.bj-sec--midnight .bj-notes article { border-color: var(--bj-line); }
@media (min-width: 720px) {
  .bj-notes article {
    grid-template-columns: 12rem 1fr;
    gap: 2rem;
  }
}
.bj-notes img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.bj-notes .bj-k { margin-bottom: 0.35rem; }
.bj-notes h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.bj-notes p {
  margin: 0;
  color: var(--bj-muted);
  font-size: 0.95rem;
}
.bj-sec--midnight .bj-notes p { color: rgba(201, 214, 224, 0.75); }

/* —— FAQ —— */
.bj-faq {
  max-width: 720px;
  margin: 0 auto;
}
.bj-faq details {
  border-bottom: 1px solid rgba(10, 26, 42, 0.12);
  padding: 1rem 0;
}
.bj-sec--midnight .bj-faq details { border-color: var(--bj-line); }
.bj-faq summary {
  cursor: pointer;
  font-family: var(--font-jp);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.bj-faq summary::-webkit-details-marker { display: none; }
.bj-faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bj-coral);
  line-height: 1;
}
.bj-faq details[open] summary::after { content: "–"; }
.bj-faq p {
  margin: 0.75rem 0 0;
  color: var(--bj-muted);
  font-size: 0.95rem;
}
.bj-sec--midnight .bj-faq p { color: rgba(201, 214, 224, 0.75); }

/* —— Team —— */
.bj-team {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .bj-team { grid-template-columns: repeat(3, 1fr); }
}
.bj-team article img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: saturate(0.85) contrast(1.05);
}
.bj-team .bj-k { margin-bottom: 0.25rem; }
.bj-team h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.bj-team p {
  margin: 0;
  color: var(--bj-muted);
  font-size: 0.92rem;
}

/* —— Pricing strip —— */
.bj-price {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(10, 26, 42, 0.12);
}
.bj-price article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(10, 26, 42, 0.12);
  align-items: baseline;
}
.bj-price h3 {
  font-size: 1.1rem;
  margin: 0;
  grid-column: 1;
}
.bj-price .amt {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--bj-coral);
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}
.bj-price .note {
  grid-column: 1;
  margin: 0;
  font-size: 0.88rem;
  color: var(--bj-muted);
}

/* —— Principles / guarantees —— */
.bj-split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .bj-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
  }
}
.bj-split__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.bj-quote {
  font-family: var(--font-jp);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.55;
  border-left: 3px solid var(--bj-coral);
  padding-left: 1.1rem;
  margin: 1.5rem 0 0;
  color: var(--bj-ink);
}
.bj-sec--midnight .bj-quote { color: var(--bj-paper); }

.bj-principles {
  display: grid;
  gap: 0;
}
.bj-principles article {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(10, 26, 42, 0.12);
}
.bj-sec--midnight .bj-principles article,
.bj-sec--atlas .bj-principles article { border-color: var(--bj-line); }
.bj-principles h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.bj-principles p {
  margin: 0;
  color: var(--bj-muted);
  font-size: 0.95rem;
}
.bj-sec--midnight .bj-principles p,
.bj-sec--atlas .bj-principles p { color: rgba(201, 214, 224, 0.75); }

/* —— Topics —— */
.bj-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.bj-topics article {
  min-width: 5.5rem;
  border-left: 2px solid var(--bj-coral);
  padding-left: 0.75rem;
}
.bj-topics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--bj-coral);
}
.bj-topics span {
  font-size: 0.85rem;
  color: var(--bj-muted);
}

/* —— Years —— */
.bj-years {
  display: grid;
  gap: 0;
}
.bj-years li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--bj-line);
  align-items: baseline;
}
.bj-years b {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: var(--bj-coral);
}
.bj-years p { margin: 0; color: rgba(201, 214, 224, 0.85); }

/* —— Contact —— */
.bj-contact {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .bj-contact {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}
.bj-form {
  display: grid;
  gap: 1.1rem;
}
.bj-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.bj-form input,
.bj-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 26, 42, 0.18);
  background: #fff;
  color: var(--bj-ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
  border-radius: 0;
}
.bj-form input:focus,
.bj-form textarea:focus {
  outline: 2px solid var(--bj-atlas);
  outline-offset: 1px;
}
.bj-err {
  color: var(--bj-coral-deep);
  font-size: 0.82rem;
}
.bj-map {
  position: relative;
  min-height: 280px;
  background: var(--bj-atlas);
}
.bj-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}
.bj-success {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(10, 26, 42, 0.12);
  background: #fff;
}

/* —— CTA —— */
.bj-cta {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  background: var(--bj-midnight);
  color: var(--bj-paper);
  text-align: center;
  overflow: hidden;
  min-height: clamp(18rem, 42vh, 26rem);
  display: grid;
  align-items: center;
}
.bj-cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bj-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bj-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 120%, rgba(255, 90, 54, 0.22), transparent 70%),
    linear-gradient(180deg, #0a2035, var(--bj-midnight));
  pointer-events: none;
}
.bj-cta:has(.bj-cta__media)::before { display: none; }
.bj-cta__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 120%, rgba(255, 90, 54, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(7, 21, 37, 0.72), rgba(7, 21, 37, 0.92));
  pointer-events: none;
}
.bj-cta > *:not(.bj-cta__media):not(.bj-cta__veil) { position: relative; z-index: 2; }
.bj-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.4rem auto 0.85rem;
  max-width: 14em;
}
.bj-cta p {
  max-width: 34em;
  margin: 0 auto 1.5rem;
  color: var(--bj-fog);
}

/* —— Footer —— */
.bj-foot {
  background: #050f1a;
  color: var(--bj-fog);
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2rem;
}
.bj-foot__board {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bj-line);
}
@media (min-width: 800px) {
  .bj-foot__board { grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr; }
}
.bj-foot__brand {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--bj-paper);
  display: block;
  margin-bottom: 0.5rem;
}
.bj-foot h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: var(--bj-coral);
  margin-bottom: 0.85rem;
}
.bj-foot p,
.bj-foot li { font-size: 0.9rem; }
.bj-foot a:hover { color: var(--bj-paper); }
.bj-foot__social {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.bj-foot__copy {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  font-family: var(--font-latin);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

/* —— Reveal —— */
.js [data-bj] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.08s);
}
.js [data-bj].is-in {
  opacity: 1;
  transform: none;
}

/* —— Misc —— */
.bj-hub {
  max-width: 36rem;
}
.bj-hub h2 { margin-bottom: 0.5rem; }

.bj-gate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-family: var(--font-latin);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--bj-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.bj-gate-row span { color: var(--bj-coral); }

/* —— Intro split —— */
.bj-split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: end;
}
@media (min-width: 860px) {
  .bj-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}
.bj-split__copy .bj-head { margin-bottom: 1.25rem; }
.bj-split__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0a2035;
}
.bj-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* —— Mobile layout —— */
@media (max-width: 899px) {
  :root { --nav-h: 3.85rem; --pad: clamp(1rem, 4.5vw, 1.5rem); }

  .bj-nav {
    background: var(--bj-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--bj-line);
  }
  body.is-nav-open .bj-nav { background: var(--bj-midnight); }

  .bj-nav__mark { font-size: 1.65rem; }
  .bj-nav__sub { letter-spacing: 0.22em; }

  .bj-hero__copy {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 1.5rem);
    padding-bottom: clamp(2.5rem, 7vh, 4rem);
  }
  .bj-hero h1 { max-width: none; }
  .bj-hero__lead { max-width: none; }
  .bj-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bj-hero__actions .bj-btn { width: 100%; }

  .bj-sec { padding-top: clamp(2.75rem, 8vw, 4rem); padding-bottom: clamp(2.75rem, 8vw, 4rem); }

  .bj-board__row { padding: 1.15rem 1rem; gap: 0.85rem; }
  .bj-board__num { min-width: 3.5rem; }
  .bj-timeline {
    margin: 0 -0.15rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    scroll-snap-type: x proximity;
  }
  .bj-timeline__stop { scroll-snap-align: start; min-width: 5.75rem; }

  .bj-band { min-height: clamp(20rem, 62vh, 28rem); }
  .bj-band__inner { padding-top: 2.25rem; padding-bottom: 2.25rem; }
  .bj-band--right .bj-band__inner { text-align: left; }
  .bj-band--right p { margin-left: 0; }
  .bj-band__place,
  .bj-band--right .bj-band__place { transform: translateX(-8%); }
  .bj-band__place.is-in,
  .bj-band--right .bj-band__place.is-in { transform: none; }

  .bj-price article {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .bj-price .amt {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    font-size: 1.55rem;
  }

  .bj-years li { grid-template-columns: 4.5rem 1fr; gap: 0.75rem; }
  .bj-cta { min-height: auto; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .bj-cta .bj-btn { width: min(100%, 20rem); }
  .bj-map,
  .bj-map iframe { min-height: 240px; }
  .bj-form input,
  .bj-form textarea { font-size: 16px; }
}

@media (max-width: 600px) {
  .bj-hero__brand { font-size: clamp(3.6rem, 20vw, 5.25rem); margin-bottom: 1rem; }
  .bj-hero h1 { font-size: clamp(1.35rem, 5.5vw, 1.7rem); }
  .bj-band__place { font-size: clamp(2.6rem, 14vw, 3.8rem); }
  .bj-board__row { grid-template-columns: 1fr; }
  .bj-board__meta { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .bj-stack__item .bj-stack__gate { font-size: 0.85rem; }
  .bj-foot__brand { font-size: 2rem; }
  .bj-topics { gap: 0.85rem 1rem; }
  .bj-topics article { min-width: calc(50% - 0.5rem); }
}
