/* MJEPA site styles */

:root {
  --bg:           #FFFFFF;
  --bg-soft:      #F7F8FA;
  --bg-alt:       #EEF1F5;

  --ink:          #131826;
  --ink-2:        #1F2533;
  --text:         #2A3142;
  --text-dim:     #4A5060;
  --text-mute:    #828A99;

  --line:         #E3E6EB;
  --line-soft:    #F0F2F5;

  --gold:         #B0883D;
  --crimson:      #9C2D2D;

  --dark-bg:      #131826;
  --dark-text:    #C7CCD6;
  --dark-line:    #2A3142;

  --sans:         "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
  --sans-en:      "Inter", "Helvetica Neue", Arial, sans-serif;

  --maxw:         1240px;
  --gutter:       clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* NAV */
.nav {
  background: #FFFFFF;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: center;
}
.nav-item {
  position: relative;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-item > a.is-current,
.nav-dropdown a.is-current { color: var(--gold); font-weight: 600; }
.nav-item > a.is-current::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.nav-links .caret {
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
  transition: transform 0.25s ease;
}
.nav-item:hover > a .caret { transform: rotate(180deg); }

/* Dropdowns */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 28px -16px rgba(19,24,38,0.2);
  z-index: 50;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  width: 100%;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--gold);
}
.nav-dropdown a::after {
  content: "→";
  font-family: var(--sans-en);
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-dropdown a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Language toggle */
.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink);
  padding-left: 22px;
  border-left: 1px solid var(--line);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.lang .flag {
  width: 22px;
  height: 14px;
  display: inline-block;
  background: linear-gradient(90deg, #C8102E 33%, #0066B3 33% 66%, #C8102E 66%);
  border: 1px solid var(--line);
  position: relative;
}
.lang .flag::after {
  content: "★";
  position: absolute;
  left: 1px; top: 50%;
  transform: translateY(-50%);
  color: #FFC72C;
  font-size: 7px;
  line-height: 1;
}
.lang a {
  color: var(--ink);
  transition: color 0.25s ease;
}
.lang a:hover { color: var(--gold); }

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: clamp(420px, 56vh, 620px);
  overflow: hidden;
  background: var(--ink);
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,24,38,0.20) 0%, rgba(19,24,38,0.55) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(40px, 7vh, 80px);
  color: #FFFFFF;
  z-index: 2;
}
.hero-overlay .container { width: 100%; }
.hero-overlay .label {
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}
.hero-overlay h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 600;
  line-height: 1.25;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  max-width: 22ch;
  word-break: keep-all;
  line-break: strict;
}
.hero-overlay .sub {
  font-family: var(--sans-en);
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  max-width: 56ch;
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dots .container {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}
.hero-dot.is-active { background: #FFFFFF; }

/* SECTION SHELL */
.section {
  padding: clamp(64px, 9vh, 120px) 0;
}
.section.tight { padding: clamp(48px, 7vh, 80px) 0; }
.section.soft { background: var(--bg-soft); }

.section-head {
  margin-bottom: clamp(36px, 5vh, 56px);
  text-align: left;
}
.section-head .eyebrow {
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.section-head h2 small {
  display: block;
  font-family: var(--sans-en);
  font-size: 14px;
  color: var(--text-mute);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ABOUT / MISSION */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.about-row .col-tagline {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.about-row .col-tagline .accent {
  color: var(--gold);
  display: block;
  margin-top: 8px;
  font-family: var(--sans-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-row .col-body p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.missions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: clamp(48px, 6vh, 72px);
}
.mission {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.mission:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.mission .n {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 600;
}
.mission h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  word-break: keep-all;
  line-break: strict;
}

/* ACTIVITIES */
.activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.activity {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.activity:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 28px -18px rgba(19,24,38,0.18);
}
.activity .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.activity .head .n {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-weight: 600;
}
.activity h3 {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}
.activity ul { list-style: none; padding: 0; margin: 0; }
.activity li {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
}
.activity li::before {
  content: "•";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}

/* LEADERSHIP */
.leadership-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.leadership-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}
.leadership-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.leadership-info .eyebrow {
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.leadership-info h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.leadership-info .role {
  font-family: var(--sans-en);
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.roster {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.roster dt {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans-en);
}
.roster dd {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.85;
}

/* NEWS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-item {
  display: block;
  background: #FFFFFF;
  transition: transform 0.3s ease;
}
.news-item:hover { transform: translateY(-4px); }
.news-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.news-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-item:hover .news-thumb img { transform: scale(1.04); }
.news-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.news-meta .date { color: var(--text-mute); }
.news-meta .cat { color: var(--gold); font-weight: 600; }
.news-item h3 {
  margin-top: 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}
.news-foot {
  margin-top: 40px;
  text-align: center;
}
.btn-outline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--ink);
  transition: all 0.3s ease;
  font-family: var(--sans-en);
}
.btn-outline:hover {
  background: var(--ink);
  color: #FFFFFF;
}

/* PARTNERS STRIP */
.partners-strip {
  background: #FFFFFF;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-head {
  text-align: center;
  margin-bottom: 48px;
}
.partners-head .eyebrow {
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.partners-head h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.partners-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 48px 24px;
  align-items: center;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.partners-logos img {
  max-height: 60px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.partners-logos img:hover { opacity: 1; transform: scale(1.04); }

/* MEMBERSHIP LANDING */
.member-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.member-choice-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: clamp(36px, 4.4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.member-choice-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -20px rgba(19, 24, 38, 0.22);
}
.member-choice-card .country-label {
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.member-choice-card h3 {
  font-family: var(--sans);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.member-choice-card p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.85;
  margin: 0;
}
.member-choice-card .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.member-choice-card .chip {
  font-size: 11.5px;
  padding: 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.member-choice-card .member-choice-more {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--sans-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.member-choice-card .member-choice-more .arrow {
  color: var(--gold);
  font-size: 16px;
}
.member-choice-card:hover .member-choice-more { gap: 16px; color: var(--gold); }
@media (max-width: 800px) {
  .member-choice-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* CTA BANNERS */
.cta-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-banner {
  position: relative;
  padding: clamp(48px, 7vw, 80px) clamp(36px, 5vw, 64px);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  overflow: hidden;
}
/* Background image layer */
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.85);
  transition: filter 0.6s ease, transform 0.8s ease;
  z-index: 0;
}
.cta-banner:hover::after {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}
/* Photo overlay */
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(19,24,38,0.78), rgba(19,24,38,0.55));
  z-index: 1;
  transition: opacity 0.4s ease;
}
.cta-banner:hover::before { opacity: 0.7; }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner.bg-membership::after {
  background-image: url('photos/cta-membership-skyscrapers.jpg');
}
.cta-banner.bg-partners::after {
  background-image: url('photos/cta-partners-tokyo-night.jpg');
}
.cta-banner .eyebrow {
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-banner h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  margin-bottom: 14px;
  color: #FFFFFF;
}
.cta-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.84);
  max-width: 36ch;
  margin-bottom: 24px;
}
.cta-banner .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
  font-family: var(--sans-en);
}
.cta-banner:hover .arrow-link { gap: 16px; }
.arrow-link .arrow { color: var(--gold); font-size: 18px; }

/* FOOTER */
footer {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: clamp(60px, 8vh, 80px) 0 28px;
  font-size: 13px;
  line-height: 1.85;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dark-line);
}
.foot-brand .brand-jp-dark {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}
.foot-brand .brand-en-dark {
  display: block;
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 4px 0 16px;
}
.foot-brand p {
  font-size: 12.5px;
  color: var(--dark-text);
  line-height: 1.85;
  max-width: 36ch;
}
.foot-col h6 {
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--sans-en);
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li {
  margin-bottom: 8px;
}
.foot-col a {
  font-size: 13px;
  color: var(--dark-text);
  transition: color 0.25s ease;
}
.foot-col a:hover { color: #FFFFFF; }
.foot-col p { color: var(--dark-text); font-size: 12.5px; }
.foot-col a.mail {
  display: block;
  color: var(--gold);
  font-family: var(--sans-en);
  font-size: 12.5px;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.foot-bar {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: var(--sans-en);
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.foot-bar .honor { color: var(--gold); }

/* MEMBERSHIP PAGE */
.page-hero {
  background: var(--ink);
  color: #FFFFFF;
  padding: clamp(80px, 10vh, 120px) 0 clamp(60px, 8vh, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('photos/flags-clean.jpg') center/cover;
  opacity: 0.35;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,24,38,0.65), rgba(19,24,38,0.85));
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-family: var(--sans-en);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.page-hero .lede {
  font-size: 15.5px;
  color: rgba(255,255,255,0.88);
  line-height: 2;
  max-width: 62ch;
}

/* MEMBER TYPES */
.types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.types .col {
  background: #FFFFFF;
  padding: 40px 36px;
}
.types .col .label {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.types .col h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.types .col .chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.chip {
  font-size: 11.5px;
  padding: 6px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.types .col p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
}

/* TIER TABLES */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}
table.tier {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #FFFFFF;
}
table.tier thead th {
  background: var(--bg-soft);
  padding: 18px 16px;
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  text-align: center;
  border-bottom: 2px solid var(--ink);
  vertical-align: top;
}
table.tier thead th:first-child {
  text-align: left;
  background: var(--ink);
  color: #FFFFFF;
}
table.tier thead th .en {
  display: block;
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
table.tier thead th:first-child .en { color: rgba(255,255,255,0.6); }
table.tier tbody th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 500;
  color: var(--text);
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
table.tier tbody td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
table.tier tbody th .mn,
table.tier tbody td .mn {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-mute);
  margin-top: 3px;
}
table.tier tr.row-cat td {
  background: var(--ink);
  color: #FFFFFF;
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  font-weight: 600;
  padding: 12px 16px;
}
table.tier .yes { color: var(--gold); font-size: 14px; }
table.tier .dash { color: var(--text-mute); }
table.tier td.fee {
  font-weight: 600;
  color: var(--ink);
}
table.tier td.fee small {
  display: block;
  font-family: var(--sans-en);
  font-size: 10.5px;
  font-weight: 400;
  color: var(--text-mute);
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.tier-note {
  font-size: 12.5px;
  color: var(--text-mute);
  margin-top: 14px;
  line-height: 1.85;
}
.tier-note.crimson { color: var(--crimson); }

/* Add-on services */
.addons {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 4vw, 56px);
  margin-top: 64px;
}
.addons-intro h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.addons-intro h3 small {
  display: block;
  font-family: var(--sans-en);
  font-size: 13px;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.1em;
}
.addons-intro p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.85;
}
.addons-intro .flag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--gold);
  padding: 4px 10px;
}
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.addon-cell {
  background: #FFFFFF;
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.addon-cell .ix {
  color: var(--gold);
  font-family: var(--sans-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  min-width: 16px;
}
.addon-cell .addon-body { flex: 1; }
.addons .mn {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--text-mute);
  margin-top: 3px;
}
.addon-group + .addon-group { margin-top: 28px; }
.addon-group h4 {
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.addon-group h4 .mn,
.addon-lead .mn,
.addon-fee .mn {
  text-transform: none;
  letter-spacing: normal;
}
.addon-lead {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 10px;
}
.addon-fee {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--gold);
}
.addon-cell .detail {
  display: block;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 4px;
  line-height: 1.6;
}
.addon-cell small {
  display: block;
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 4px;
}

/* APPLY */
.apply {
  background: var(--bg-soft);
  padding: clamp(64px, 9vh, 96px) 0;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.apply h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}
.apply h2 small {
  display: block;
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.apply p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 28px;
}
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: #FFFFFF;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.3s ease;
}
.cta-btn:hover { background: var(--gold); }
.cta-btn .sub {
  display: block;
  font-family: var(--sans-en);
  font-size: 10.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4px;
}
.cta-btn:hover .sub { color: rgba(255,255,255,0.85); }
.flow-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.step .n {
  font-family: var(--sans-en);
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.step h5 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.step p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.75;
}

/* MEMBER DIRECTORY */
.dir-block {
  margin-top: 56px;
}
.dir-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 28px;
}
.dir-label span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.dir-label .count {
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.16em;
}
.dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dir-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
a.dir-card { cursor: pointer; }
a.dir-card:hover,
.dir-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(19,24,38,0.2);
}
.dir-card.no-link { cursor: default; }
.dir-card.no-link:hover {
  border-color: var(--line);
  transform: none;
  box-shadow: none;
}
.dir-card .logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}
.dir-card .logo-wrap img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
}
.dir-card .tier {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.dir-card .corp {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.dir-card .corp small {
  display: block;
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.dir-card .industry {
  font-size: 11.5px;
  color: var(--text-mute);
  padding: 6px 0 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.dir-card .desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.75;
  flex: 1;
}
.dir-card .more {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-family: var(--sans-en);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}
.dir-card:hover .more { gap: 10px; }

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vh, 60px) clamp(20px, 5vw, 60px);
}
.modal.is-open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19,24,38,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFade 0.3s ease forwards;
}
.modal-dialog {
  position: relative;
  background: var(--bg);
  max-width: 900px;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: clamp(36px, 5vw, 56px);
  z-index: 1;
  border-top: 4px solid var(--gold);
  animation: modalLift 0.4s cubic-bezier(0.2,0.8,0.2,1) forwards;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalLift {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.modal-close:hover {
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(90deg);
}
body.modal-open { overflow: hidden; }

.jni-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 28px;
}
.jni-head .eyebrow {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.jni-head .meru {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.jni-head .meru i {
  color: var(--gold);
  font-style: normal;
  margin-right: 6px;
}
.jni-title {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.25;
}
.jni-title small {
  display: block;
  font-family: var(--sans-en);
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.jni-lead {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 12px;
}
.jni-lead em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}
.jni-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 28px 0;
}
.jni-fact {
  background: var(--bg);
  padding: 22px 24px;
}
.jni-fact h5 {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.jni-fact ul { list-style: none; padding: 0; margin: 0; }
.jni-fact li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
}
.jni-fact .big {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.jni-fact .big small {
  display: block;
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.jni-roadmap-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.jni-roadmap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.jni-track h6 {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.jni-phase { margin-bottom: 20px; }
.jni-phase h4 {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.jni-phase h4 .when {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 400;
  margin-left: 8px;
  letter-spacing: 0.08em;
}
.jni-phase ul { list-style: none; padding: 0; margin: 0; }
.jni-phase li {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.75;
  padding-left: 14px;
  position: relative;
}
.jni-phase li::before {
  content: "›";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}
.jni-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--text-mute);
}
.jni-note .domain {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

/* MOBILE NAV */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px; height: 44px;
  position: relative;
  z-index: 200;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  position: absolute;
  width: 24px; height: 2px;
  background: var(--ink);
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.nav-toggle span { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle span::before { content: ""; top: -8px; left: 0; transform: none; }
.nav-toggle span::after { content: ""; top: 8px; left: 0; transform: none; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(19, 24, 38, 0.5);
  z-index: 99;
}
body.nav-open .mobile-overlay { display: block; }
body.nav-open { overflow: hidden; }

/* PARTNERS GRID */
.partner-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-card-v3 {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.partner-card-v3:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(19,24,38,0.2);
}
a.partner-card-v3 { cursor: pointer; text-decoration: none; }
.partner-card-v3 .country {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.partner-card-v3 .logo-wrap {
  height: 56px;
  display: flex;
  align-items: center;
}
.partner-card-v3 .logo-wrap img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
}
.partner-card-v3 .logo-text {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 16px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.01em;
  width: 100%;
}
.partner-card-v3 .name {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.partner-card-v3 .desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Tabs (partners filter) */
.tabs-v3 {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.tab-v3 {
  background: transparent;
  border: none;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease;
  font-family: var(--sans);
}
.tab-v3:hover { color: var(--ink); }
.tab-v3.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-v3 .num {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--sans-en);
  color: var(--text-mute);
  font-size: 11px;
  font-weight: 500;
}

/* GREETING page */
.greeting-v3 {
  padding: clamp(64px, 8vh, 96px) 0;
}
.greeting-v3-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.greeting-v3-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}
.greeting-v3-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.greeting-v3-photo .sig {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}
.greeting-v3-body p {
  font-size: 15.5px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 20px;
}
.greeting-v3-body .signoff {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.greeting-v3-body .signoff .name {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}
.greeting-v3-body .signoff .role {
  font-family: var(--sans-en);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Directors roster */
.dir-roster-v3 {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}
.dir-roster-row-v3 {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.dir-roster-row-v3 .role {
  font-family: var(--sans-en);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.dir-roster-row-v3 .role .jp {
  display: block;
  font-family: var(--sans);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 6px;
}
.dir-roster-row-v3 .name {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.dir-roster-row-v3 .n {
  font-family: var(--sans-en);
  color: var(--gold);
  font-size: 14px;
  text-align: right;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Offices */
.offices-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.office-v3 {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.office-v3 h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  color: var(--ink);
}
.office-v3 h3 small {
  display: block;
  font-family: var(--sans-en);
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.office-v3 .map-wrap {
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}
.office-v3 .map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.3);
  transition: filter 0.4s ease;
}
.office-v3 .map-wrap:hover iframe { filter: grayscale(0); }
.office-v3 .addr p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
}
.office-v3 .mail {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

/* Activities page */
.activities-rows {
  border-top: 1px solid var(--ink);
}
.activity-row-v3 {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 5vw, 72px);
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.activity-row-v3 .head .n {
  font-family: var(--sans-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  display: block;
}
.activity-row-v3 .head h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.activity-row-v3 ul {
  list-style: none;
  padding: 0; margin: 0;
}
.activity-row-v3 li {
  padding: 14px 0 14px 22px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.activity-row-v3 li:last-child { border-bottom: none; }
.activity-row-v3 li::before {
  content: "—";
  position: absolute; left: 0; top: 14px;
  color: var(--gold);
  font-weight: 600;
}

/* News listing cards on news.html */
.news-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .missions { grid-template-columns: repeat(2, 1fr); }
  .activities { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .partners-logos { grid-template-columns: repeat(4, 1fr); }
  .cta-banners { grid-template-columns: 1fr; }
  .about-row { grid-template-columns: 1fr; }
  .leadership-row { grid-template-columns: 1fr; }
  .types { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .addons { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .dir-grid { grid-template-columns: 1fr 1fr; }
  .jni-facts { grid-template-columns: 1fr; }
  .jni-roadmap { grid-template-columns: 1fr; }
  .partner-grid-v3 { grid-template-columns: repeat(2, 1fr); }
  .news-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-row-v3 { grid-template-columns: 1fr; gap: 16px; }
  .offices-v3 { grid-template-columns: 1fr; }
  .greeting-v3-split { grid-template-columns: 1fr; gap: 32px; }
  .greeting-v3-photo { max-width: 360px; }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .lang { display: none; }

  /* Mobile nav slide-down panel */
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 360px);
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 150;
    box-shadow: -20px 0 40px -20px rgba(0,0,0,0.15);
    gap: 0;
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-item:last-child { border-bottom: none; }
  .nav-item > a {
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.06em;
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    border: none;
    border-top: none;
    box-shadow: none;
    background: var(--bg-soft);
    padding: 0 0 16px 0;
    min-width: 0;
  }
  .nav-dropdown a {
    padding: 10px 16px;
    font-size: 13px;
    border-bottom: none;
  }
  .nav-dropdown a::after { display: none; }
  .nav-links .caret { transform: rotate(180deg); opacity: 1; color: var(--gold); }

  .brand-logo { height: 48px; }
  .nav-inner { padding: 14px 0; }

  /* Hero adjustments */
  .hero { height: clamp(540px, 75vh, 720px); }
  .hero-overlay { padding-bottom: clamp(48px, 9vh, 88px); }
  .hero-overlay h1 { font-size: clamp(32px, 7.5vw, 48px); line-height: 1.2; }
  .hero-overlay .sub { font-size: 13px; }
  .hero-dots { bottom: 22px; }

  /* Tables horizontally scroll */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table.tier { min-width: 640px; }
  table.tier thead th { font-size: 11px; padding: 10px 8px; }
  table.tier tbody th { font-size: 12px; padding: 10px 8px; }
  table.tier tbody td { font-size: 12px; padding: 10px 6px; }
  table.tier td.fee { font-size: 14px; }

  /* JNI modal compact */
  .modal-dialog { padding: 28px 22px; }
  .modal-close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 20px; }

  /* Members hero subtitle stack */
  .partner-grid-v3 { grid-template-columns: 1fr; }
  .news-listing-grid { grid-template-columns: 1fr; }

  /* Footer */
  .foot-bar { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 720px) {
  .missions { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .partners-logos { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .dir-grid { grid-template-columns: 1fr; }
  .dir-roster-row-v3 { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .dir-roster-row-v3 .n { display: none; }

  .page-hero h1 { font-size: clamp(28px, 7vw, 36px); }
  .section-head h2 { font-size: clamp(22px, 5vw, 28px); }
}

.foot-bar .honor { display: none; }

@media screen and (max-width: 767px) {
  .partners-logos {
    grid-template-columns: 1fr 1fr !important;
  }
}
