/* JET X — Light Theme Variant */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fafaf7;
  --bg-tertiary: #f4f3ee;
  --bg-elevated: #ffffff;
  --accent: #f47920;
  --accent-bright: #ff8a2e;
  --accent-dim: #c85f15;
  --accent-glow: rgba(244, 121, 32, 0.18);
  --accent-soft: rgba(244, 121, 32, 0.08);
  --ink: #0b0b0e;
  --text-primary: #0b0b0e;
  --text-secondary: #4a4a52;
  --text-tertiary: #8a8a91;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);
  --max-width: 1400px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.nav__logo span span { color: var(--ink) !important; }

.nav__menu { display: flex; gap: 36px; align-items: center; list-style: none; }

.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav__link:hover, .nav__link.is-active { color: var(--text-primary); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

.nav__actions { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  display: flex;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  font-size: 12px;
  font-weight: 600;
}
.lang-toggle button {
  padding: 6px 14px;
  border-radius: 100px;
  color: var(--text-tertiary);
  transition: all 0.2s var(--ease);
  letter-spacing: 0.08em;
}
.lang-toggle button.is-active { background: var(--accent); color: #fff; }

.btn-cta {
  padding: 12px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-cta--primary {
  background: var(--accent);
  color: #fff;
}
.btn-cta--primary:hover { background: var(--accent-bright); }

.btn-cta--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink);
}
.btn-cta--ghost:hover { background: var(--bg-tertiary); border-color: var(--ink); box-shadow: none; }

.nav__hamburger { display: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 40px 80px;
  background: var(--bg-primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, var(--accent-soft), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(244,121,32,0.04), transparent 60%);
  z-index: 0;
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: 0;
}

.hero__accent-shape {
  position: absolute;
  top: 15%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.15); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
  background: rgba(255,255,255,0.8);
}
.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__title {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: var(--ink);
}

.hero__title .accent {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 40px;
  border-left: 2px solid var(--ink);
}

.hero__stat-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.hero__stat-num .accent-text { color: var(--accent); }
.hero__stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.hero__scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee */
.marquee {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee__item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 80px;
}
.marquee__item::after {
  content: '✕';
  color: var(--accent);
  font-size: 10px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Section */
.section { padding: 140px 40px; position: relative; }
.section__inner { max-width: var(--max-width); margin: 0 auto; }
.section__header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section__title .accent { color: var(--accent); }

.section__description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* Services */
.services { background: var(--bg-secondary); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 28px;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.service-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.service-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__features li {
  font-size: 13px;
  color: var(--text-tertiary);
  padding-left: 20px;
  position: relative;
  font-weight: 500;
}
.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}

/* Feature banner */
.feature-banner {
  background: linear-gradient(135deg, var(--ink), #1a1a1f);
  color: #fff;
  border-radius: 24px;
  padding: 60px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.feature-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(60px);
}

.feature-banner__content { position: relative; z-index: 1; }
.feature-banner__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}

.feature-banner__desc {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-banner .btn-cta { background: var(--accent); color: #fff; }
.feature-banner .btn-cta:hover { background: var(--accent-bright); }

.feature-banner__visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-stat {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.feature-stat__num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.feature-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}

/* Clients */
.clients { background: var(--bg-primary); }
.clients__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.client-card {
  padding: 40px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
  transition: all 0.3s var(--ease);
}
.client-card:hover {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08);
}
.client-card__icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 24px; }
.client-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.client-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Location */
.location { background: var(--bg-secondary); }
.location__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.location__visual {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 60%),
    #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.location__airport-code {
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
}

.location__airport-sub {
  position: absolute;
  bottom: 40px; left: 40px; right: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.location__coords { font-family: 'JetBrains Mono', monospace; color: var(--text-secondary); }

.location__meta { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.location__meta li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.location__meta strong {
  color: var(--text-tertiary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

/* CTA */
.cta {
  padding: 120px 40px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244, 121, 32, 0.2), transparent 60%);
}

.cta > * { position: relative; z-index: 1; }

.cta__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto 28px;
  color: #fff;
}
.cta__title .accent { color: var(--accent); }
.cta__desc {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta .btn-cta { padding: 16px 32px; font-size: 14px; background: var(--accent); color: #fff; }
.cta .btn-cta:hover { background: var(--accent-bright); }
.cta .btn-cta--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.cta .btn-cta--ghost:hover { background: rgba(255,255,255,0.1); }

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 80px 40px 40px;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
}
.footer__inner { max-width: var(--max-width); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 340px;
  line-height: 1.7;
}
.footer__col-title {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
  font-weight: 500;
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

[data-i18n-en], [data-i18n-ja] { display: none; }
body.lang-ja [data-i18n-ja] { display: inline; }
body.lang-en [data-i18n-en] { display: inline; }
body.lang-ja [data-i18n-ja].block,
body.lang-en [data-i18n-en].block { display: block; }

/* Responsive */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 60px; }
  .hero__stats { flex-direction: row; padding-left: 0; padding-top: 30px; border-left: none; border-top: 2px solid var(--ink); }
  .section__header { grid-template-columns: 1fr; gap: 24px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .location__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-banner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .nav__menu { display: none; }
  .hero { padding: 120px 20px 60px; }
  .section { padding: 80px 20px; }
  .services__grid, .clients__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta { padding: 80px 20px; }
  .hero__stats { flex-direction: column; }
}

/* ========= Page Hero (sub pages) ========= */
.page-hero {
  padding: 180px 40px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, var(--accent-soft), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(244,121,32,0.04), transparent 50%);
  z-index: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero__breadcrumb {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.page-hero__breadcrumb a { color: var(--accent); }

.page-hero__title {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: var(--ink);
}

.page-hero__subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.6;
}

/* ========= Process ========= */
.process { background: var(--bg-secondary); }
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process__step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
}
.process__step:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08);
}
.process__step-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 20px;
}
.process__step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.process__step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========= Pricing ========= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.12);
}

.price-card--featured {
  background: linear-gradient(180deg, var(--accent-soft), #fff);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -20px var(--accent-glow);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.price-card__tier {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.price-card__examples {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
  line-height: 1.5;
  min-height: 36px;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-card__price-currency { color: var(--text-tertiary); font-size: 14px; font-weight: 600; }
.price-card__price-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-card__price-unit { color: var(--text-tertiary); font-size: 13px; font-weight: 500; }

.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.price-card__features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.price-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ========= Pricing add-on table ========= */
.price-table {
  margin-top: 80px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.price-table__header,
.price-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 20px 32px;
  align-items: center;
}

.price-table__header {
  background: var(--bg-tertiary);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 700;
}

.price-table__row {
  border-top: 1px solid var(--border);
  transition: background 0.2s var(--ease);
}
.price-table__row:hover { background: var(--bg-secondary); }

.price-table__cell-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.price-table__cell-name small {
  display: block;
  font-weight: 400;
  color: var(--text-tertiary);
  font-size: 12px;
  margin-top: 2px;
}
.price-table__cell { font-size: 15px; color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.price-table__cell strong { color: var(--accent); font-weight: 700; }

/* ========= Vision (Company) ========= */
.vision-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.vision-grid:last-child { border: none; }

.vision-grid__label {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 8px;
}

.vision-grid__title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
  color: var(--ink);
}

.vision-grid__body { font-size: 17px; color: var(--text-secondary); line-height: 1.8; }
.vision-grid__body p + p { margin-top: 20px; }

.info-table {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.info-table dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.info-table dt {
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 2px;
}
.info-table dd { color: var(--ink); line-height: 1.7; }
.info-table dd small { display: block; color: var(--text-tertiary); font-size: 13px; margin-top: 4px; }

/* ========= Contact ========= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form__submit { grid-column: 1 / -1; justify-self: start; margin-top: 12px; }
@media (max-width: 640px) { .contact-form { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__item {
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.2s var(--ease);
}
.contact-info__item:hover {
  background: #fff;
  border-color: var(--accent);
}
.contact-info__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info__value {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.contact-info__sub {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process__timeline { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .pricing-grid, .process__timeline { grid-template-columns: 1fr; }
  .price-table__header { display: none; }
  .price-table__header, .price-table__row { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
  .info-table dl { grid-template-columns: 1fr; gap: 4px; }
  .page-hero { padding: 140px 20px 60px; }
}

/* ========= Media banner (sub pages) ========= */
.media-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 420px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.media-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.media-banner:hover img { transform: scale(1.04); }
.media-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 30%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.media-banner__caption {
  position: absolute;
  bottom: 32px;
  left: 40px;
  right: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  color: #fff;
}
.media-banner__caption-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 10px;
}
.media-banner__caption-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 540px;
}
.media-banner__caption-title .accent { color: var(--accent); }
.media-banner__caption-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 768px) {
  .media-banner { height: 420px; min-height: 360px; }
  .media-banner__caption { flex-direction: column; align-items: start; left: 20px; right: 20px; bottom: 20px; gap: 20px; }
}

/* ========= Page hero with image backdrop ========= */
.page-hero--with-media {
  padding: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero--with-media .page-hero__media-wrap {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 600px;
  overflow: hidden;
}
.page-hero--with-media .page-hero__media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburnsLight 22s ease-in-out infinite alternate;
}
@keyframes kenburnsLight {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.page-hero--with-media .page-hero__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3) 80%, rgba(255,255,255,0) 95%, rgba(255,255,255,1) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 55%);
}
.page-hero--with-media .page-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 40px 80px;
  z-index: 2;
  color: #fff;
  max-width: none;
}
.page-hero--with-media .page-hero__inner-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.page-hero--with-media .page-hero__title,
.page-hero--with-media .page-hero__subtitle { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.page-hero--with-media .page-hero__breadcrumb {
  color: rgba(255,255,255,0.8);
}
.page-hero--with-media .page-hero__breadcrumb a { color: var(--accent); }

@media (max-width: 768px) {
  .page-hero--with-media .page-hero__media-wrap { height: 60vh; min-height: 480px; }
  .page-hero--with-media .page-hero__inner { padding: 100px 20px 60px; }
}

/* ========= Monochrome photo treatment ========= */
/* Editorial B&W with slight warm tint; orange accents pop stronger against gray world */

.hero-cinematic__img,
.media-banner img,
.split-feature__visual img,
.page-hero--with-media .page-hero__media-wrap img,
.gallery__item img,
.image-strip__item img {
  filter: grayscale(1) contrast(1.05) brightness(0.96);
  transition: filter 1.2s var(--ease), transform 1s var(--ease);
}

/* Subtle warm tint for hero / large media */
.hero-cinematic__img,
.page-hero--with-media .page-hero__media-wrap img,
.media-banner img {
  filter: grayscale(1) contrast(1.08) brightness(0.94) sepia(0.06);
}

/* Vignette for depth */
.hero-cinematic__media::after,
.page-hero--with-media .page-hero__media-wrap::after,
.media-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.media-banner__overlay,
.media-banner__caption { z-index: 2; }

/* Gentle color reveal on hover for interactive sections */
.media-banner:hover img,
.split-feature:hover .split-feature__visual img,
.gallery__item:hover img {
  filter: grayscale(0.7) contrast(1.05) brightness(1);
}

/* ========= Brand Logo (image-based) ========= */
.nav { padding: 18px 40px; }

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
}
.nav__logo img {
  display: block;
  height: 35px;
  width: auto;
  transition: transform 0.3s var(--ease);
}
.nav__logo:hover img { transform: scale(1.03); }

.footer .nav__logo img { height: 64px; }

@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .nav__logo img { height: 27px; }
  .footer .nav__logo img { height: 43px; }
}

/* ========= Logo showcase (hero / brand moments) ========= */
.logo-showcase {
  background: var(--bg-primary);
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.logo-showcase__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 700;
  margin-bottom: 40px;
}
.logo-showcase__mark {
  display: inline-block;
  max-width: 480px;
  width: 48%;
}
.logo-showcase__mark img { width: 100%; height: auto; display: block; }
.logo-showcase__caption {
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .logo-showcase { padding: 80px 20px; }
  .logo-showcase__mark { width: 57%; }
}

/* ========= Mobile hamburger & menu ========= */
.nav__hamburger {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 102;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease), background 0.2s;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

@media (max-width: 860px) {
  .nav__hamburger { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
    z-index: 99;
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu li { list-style: none; border-bottom: 1px solid var(--border); }
  .nav__menu li:first-child { border-top: 1px solid var(--border); }
  .nav__menu__link,
  .nav__menu .nav__link {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
    padding: 22px 0;
    width: 100%;
  }
  .nav__menu .nav__link.is-active { color: var(--accent); }
  .nav__menu .nav__link.is-active::after { display: none; }

  .nav__menu__extra {
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .nav__menu__extra .btn-cta {
    justify-content: center;
    padding: 16px 24px;
    font-size: 14px;
  }

  .nav__actions .btn-cta { display: none; }
  .nav__actions .lang-toggle { margin-right: 12px; }
}

@media (max-width: 420px) {
  .nav__actions { gap: 10px; }
  .nav__actions .lang-toggle { padding: 3px; font-size: 11px; }
  .nav__actions .lang-toggle button { padding: 5px 10px; }
}

/* ========= Mobile comprehensive fixes ========= */
@media (max-width: 860px) {
  .section { padding: 80px 24px; }
  .section__header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .section__title { font-size: clamp(32px, 7.5vw, 48px); }
  .section__description { font-size: 16px; }

  .page-hero { padding: 140px 24px 60px; }
  .page-hero__title { font-size: clamp(44px, 10vw, 72px); }
  .page-hero__subtitle { font-size: 17px; }
  .page-hero__breadcrumb { font-size: 11px; margin-bottom: 24px; }

  .page-hero--with-media .page-hero__media-wrap { height: 65vh; min-height: 520px; }
  .page-hero--with-media .page-hero__inner { padding: 100px 24px 56px; }

  .media-banner { height: 360px; min-height: 340px; }
  .media-banner__caption { left: 24px; right: 24px; bottom: 24px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .media-banner__caption-title { font-size: clamp(24px, 6vw, 36px); }

  .services__grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 32px 28px; }
  .service-card__title { font-size: 22px; }

  .clients__grid { grid-template-columns: 1fr; gap: 16px; }

  .process__timeline { grid-template-columns: 1fr; gap: 16px; }
  .process__step { padding: 28px 24px; }
  .process__step-num { font-size: 44px; }

  .vision-grid { grid-template-columns: 1fr; gap: 20px; padding: 56px 0; }
  .vision-grid__label { font-size: 12px; padding-top: 0; }
  .vision-grid__title { font-size: clamp(28px, 7vw, 40px); }
  .vision-grid__body { font-size: 16px; }

  .info-table dl { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .info-table dt { font-size: 11px; }

  .price-card { padding: 28px 24px; }
  .price-card__title { font-size: 20px; }
  .price-card__price-num { font-size: 32px; }

  .price-table { margin-top: 60px; }
  .price-table__header { display: none; }
  .price-table__row {
    display: block;
    padding: 20px 24px;
  }
  .price-table__row .price-table__cell {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-top: 1px dashed var(--border);
    font-size: 14px;
  }
  .price-table__row .price-table__cell:nth-child(2)::before { content: 'Light'; }
  .price-table__row .price-table__cell:nth-child(3)::before { content: 'Mid-size'; }
  .price-table__row .price-table__cell:nth-child(4)::before { content: 'Heavy'; }
  .price-table__row .price-table__cell::before {
    color: var(--text-tertiary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
  }
  .price-table__cell-name { border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 4px; }

  .cta { padding: 80px 24px; }
  .cta__title { font-size: clamp(32px, 8vw, 52px); }
  .cta__desc { font-size: 16px; }
  .cta__buttons { flex-direction: column; }
  .cta__buttons .btn-cta { justify-content: center; width: 100%; }

  .footer { padding: 60px 24px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .footer__col-title { margin-bottom: 14px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .logo-showcase { padding: 72px 24px; }
  .logo-showcase__mark { width: 53%; max-width: 347px; }
  .logo-showcase__caption { font-size: 14px; margin-top: 28px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { grid-template-columns: 1fr; gap: 16px; }
  .contact-info__item { padding: 20px; }
  .contact-info__value { font-size: 16px; }
}

@media (max-width: 420px) {
  .section { padding: 64px 18px; }
  .page-hero { padding: 120px 18px 48px; }
  .cta { padding: 64px 18px; }
  .footer { padding: 48px 18px 24px; }
  .media-banner { height: 300px; min-height: 280px; }
}

/* ========= Typography: Editorial (jetex.com-inspired) ========= */
/* Latin: Cormorant Garamond (display serif) + Inter (body sans)
   Japanese: Noto Serif JP (display 明朝) + Noto Sans JP (body ゴシック) */

.hero-cinematic__title,
.hero__title,
.section__title,
.split-feature__title,
.page-hero__title,
.cta__title,
.vision-grid__title,
.feature-banner__title,
.service-card__title,
.price-card__title,
.parallax-banner__quote,
.media-banner__caption-title,
.process__step-title {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', 'Hiragino Mincho ProN', 'YuMincho', '游明朝', serif;
  font-weight: 600;
  letter-spacing: -0.012em;
  font-style: normal;
}

.hero-cinematic__title { font-weight: 600; line-height: 1.0; letter-spacing: -0.015em; }
.hero-cinematic__title .accent { font-style: italic; font-weight: 500; }

.section__title,
.split-feature__title,
.page-hero__title,
.cta__title,
.vision-grid__title,
.feature-banner__title { font-weight: 600; letter-spacing: -0.012em; line-height: 1.1; }

.service-card__title,
.price-card__title,
.process__step-title { font-weight: 600; letter-spacing: -0.005em; }

/* Display titles in JP — slightly bolder for matching weight perception with serif */
body.lang-ja .hero-cinematic__title,
body.lang-ja .hero__title,
body.lang-ja .section__title,
body.lang-ja .split-feature__title,
body.lang-ja .page-hero__title,
body.lang-ja .cta__title,
body.lang-ja .vision-grid__title,
body.lang-ja .feature-banner__title {
  font-weight: 700;
  letter-spacing: 0.01em;
}
body.lang-ja .service-card__title,
body.lang-ja .price-card__title,
body.lang-ja .process__step-title {
  font-weight: 700;
}

/* Eyebrows / labels remain sans for clean uppercase */
.hero-cinematic__eyebrow,
.section__eyebrow,
.split-feature__eyebrow,
.page-hero__breadcrumb,
.media-banner__caption-eyebrow,
.parallax-banner__caption,
.vision-grid__label,
.service-card__num,
.price-card__tier,
.client-card__title,
.location__airport-sub,
.footer__col-title,
.nav__link,
.btn-cta {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Body / paragraphs: clean sans throughout */
body,
.hero-cinematic__subtitle,
.hero__subtitle,
.section__description,
.page-hero__subtitle,
.split-feature__desc,
.cta__desc,
.feature-banner__desc,
.service-card__desc,
.price-card__features,
.price-card__examples,
.client-card__desc,
.process__step-desc,
.vision-grid__body,
.info-table dd,
.contact-info__value,
.contact-info__sub,
.footer__brand-desc,
.footer__links a,
.footer__bottom {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Subtitle italics on serif accents */
.split-feature__title .accent,
.page-hero__title .accent,
.section__title .accent,
.cta__title .accent,
.vision-grid__title .accent,
.feature-banner__title .accent,
.parallax-banner__quote .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

body.lang-ja .split-feature__title .accent,
body.lang-ja .page-hero__title .accent,
body.lang-ja .section__title .accent,
body.lang-ja .cta__title .accent,
body.lang-ja .vision-grid__title .accent,
body.lang-ja .feature-banner__title .accent,
body.lang-ja .parallax-banner__quote .accent {
  font-style: normal;
  font-weight: 700;
}

/* Stat numbers stay crisp sans */
.under-hero-stats__num,
.location__airport-code,
.feature-stat__num,
.process__step-num,
.price-card__price-num,
.hero__stat-num {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

/* ========= jetex.com font system override (Josefin Sans + Open Sans) ========= */
/* Override the Cormorant Garamond block above. This is the authoritative font system. */

body,
.hero-cinematic__subtitle,
.hero__subtitle,
.section__description,
.page-hero__subtitle,
.split-feature__desc,
.cta__desc,
.feature-banner__desc,
.service-card__desc,
.client-card__desc,
.process__step-desc,
.vision-grid__body,
.info-table dd,
.contact-info__value,
.contact-info__sub,
.footer__brand-desc,
.footer__links a,
.footer__bottom,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Open Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 400;
}

/* All display/heading content → Josefin Sans (Latin) + Noto Sans JP / Shippori Mincho (JP) */
.hero-cinematic__title,
.hero__title,
.section__title,
.split-feature__title,
.page-hero__title,
.cta__title,
.vision-grid__title,
.feature-banner__title,
.service-card__title,
.price-card__title,
.parallax-banner__quote,
.media-banner__caption-title,
.process__step-title,
.client-card__title,
.nav__link,
.btn-cta,
.section__eyebrow,
.split-feature__eyebrow,
.hero-cinematic__eyebrow,
.media-banner__caption-eyebrow,
.parallax-banner__caption,
.vision-grid__label,
.service-card__num,
.price-card__tier,
.location__airport-sub,
.footer__col-title,
.page-hero__breadcrumb,
.lang-toggle button,
.hero-cinematic__bottom-meta,
.location__meta strong,
.info-table dt,
.contact-form__label,
.contact-info__label {
  font-family: 'Josefin Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* Display title weights — Josefin Sans is light by default; use 500-700 for headings */
.hero-cinematic__title { font-weight: 500; letter-spacing: -0.005em; line-height: 1.0; }
.section__title,
.split-feature__title,
.page-hero__title,
.cta__title,
.vision-grid__title,
.feature-banner__title { font-weight: 500; letter-spacing: -0.005em; line-height: 1.1; }

.service-card__title,
.price-card__title,
.process__step-title { font-weight: 600; letter-spacing: 0; }

/* Italic for accent words (jetex.com style) */
.hero-cinematic__title .accent,
.split-feature__title .accent,
.page-hero__title .accent,
.section__title .accent,
.cta__title .accent,
.vision-grid__title .accent,
.feature-banner__title .accent,
.parallax-banner__quote .accent {
  font-style: italic;
  font-weight: 400;
}

/* Japanese — display headings use Shippori Mincho (more refined than Noto Serif JP), body stays Noto Sans JP */
body.lang-ja .hero-cinematic__title,
body.lang-ja .hero__title,
body.lang-ja .section__title,
body.lang-ja .split-feature__title,
body.lang-ja .page-hero__title,
body.lang-ja .cta__title,
body.lang-ja .vision-grid__title,
body.lang-ja .feature-banner__title,
body.lang-ja .media-banner__caption-title,
body.lang-ja .parallax-banner__quote {
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', 'YuMincho', '游明朝', serif;
  font-weight: 600;
  letter-spacing: 0.005em;
}

body.lang-ja .service-card__title,
body.lang-ja .price-card__title,
body.lang-ja .process__step-title {
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  font-weight: 600;
}

body.lang-ja .hero-cinematic__title .accent,
body.lang-ja .split-feature__title .accent,
body.lang-ja .page-hero__title .accent,
body.lang-ja .section__title .accent,
body.lang-ja .cta__title .accent,
body.lang-ja .vision-grid__title .accent,
body.lang-ja .feature-banner__title .accent {
  font-style: normal;
  font-weight: 700;
}

/* Stat numbers — keep Josefin Sans for elegance */
.under-hero-stats__num,
.location__airport-code,
.feature-stat__num,
.process__step-num,
.price-card__price-num,
.hero__stat-num {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Eyebrows / labels keep tight uppercase look */
.section__eyebrow,
.split-feature__eyebrow,
.hero-cinematic__eyebrow,
.media-banner__caption-eyebrow,
.parallax-banner__caption,
.vision-grid__label,
.service-card__num,
.price-card__tier,
.location__airport-sub,
.footer__col-title,
.page-hero__breadcrumb,
.contact-form__label,
.contact-info__label {
  font-weight: 600;
  letter-spacing: 0.18em;
}

/* ========= Elegant Japanese typography (mincho-first) ========= */
/* Body and content text in JP → Shippori Mincho (literary feel, like a refined magazine) */

body.lang-ja,
body.lang-ja .hero-cinematic__subtitle,
body.lang-ja .hero__subtitle,
body.lang-ja .section__description,
body.lang-ja .page-hero__subtitle,
body.lang-ja .split-feature__desc,
body.lang-ja .cta__desc,
body.lang-ja .feature-banner__desc,
body.lang-ja .service-card__desc,
body.lang-ja .client-card__desc,
body.lang-ja .process__step-desc,
body.lang-ja .vision-grid__body,
body.lang-ja .info-table dd,
body.lang-ja .footer__brand-desc {
  font-family: 'Shippori Mincho B1', 'Shippori Mincho', 'Hiragino Mincho ProN', 'YuMincho', '游明朝', serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.85;
}

/* Display headings JP — Shippori Mincho B1 with elegant tracking */
body.lang-ja .hero-cinematic__title,
body.lang-ja .hero__title,
body.lang-ja .section__title,
body.lang-ja .split-feature__title,
body.lang-ja .page-hero__title,
body.lang-ja .cta__title,
body.lang-ja .vision-grid__title,
body.lang-ja .feature-banner__title,
body.lang-ja .media-banner__caption-title,
body.lang-ja .parallax-banner__quote {
  font-family: 'Shippori Mincho B1', 'Shippori Mincho', 'Hiragino Mincho ProN', 'YuMincho', '游明朝', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Card/component titles JP — slightly tighter */
body.lang-ja .service-card__title,
body.lang-ja .price-card__title,
body.lang-ja .process__step-title,
body.lang-ja .client-card__title {
  font-family: 'Shippori Mincho B1', 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Hero subtitle JP — slightly bigger line-height for breathing room */
body.lang-ja .hero-cinematic__subtitle,
body.lang-ja .page-hero__subtitle,
body.lang-ja .section__description {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

/* Vision body text JP — even more breathing for literary feel */
body.lang-ja .vision-grid__body p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

/* CEO message JP — extra elegant treatment */
body.lang-ja #message .vision-grid__body p {
  font-size: 17px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* Small UI labels in JP keep gothic for clarity (these are mostly Latin anyway) */
body.lang-ja .nav__link,
body.lang-ja .btn-cta,
body.lang-ja .footer__col-title,
body.lang-ja .lang-toggle button,
body.lang-ja .footer__bottom,
body.lang-ja .footer__links a,
body.lang-ja .contact-info__sub,
body.lang-ja .price-card__price-unit {
  font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Key Japanese accents — reduce italic feel that doesn't translate to mincho */
body.lang-ja .hero-cinematic__title .accent,
body.lang-ja .split-feature__title .accent,
body.lang-ja .page-hero__title .accent,
body.lang-ja .section__title .accent,
body.lang-ja .cta__title .accent,
body.lang-ja .vision-grid__title .accent,
body.lang-ja .feature-banner__title .accent,
body.lang-ja .parallax-banner__quote .accent {
  font-style: normal;
  font-weight: 700;
}

/* Improve JP headline rendering */
body.lang-ja h1,
body.lang-ja h2,
body.lang-ja h3 {
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;  /* proportional alternates for tighter JP */
}

/* ========= Color hero override (Mt. Fuji composite) ========= */
.hero-cinematic__img.hero-cinematic__img--color {
  filter: contrast(1.04) saturate(1.08);
}
.hero-cinematic__overlay.hero-cinematic__overlay--soft {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 25%, rgba(0,0,0,0.18) 70%, rgba(0,0,0,0.6) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, transparent 70%);
}

/* ============ jetex.com font system override (FINAL) ============ */
/* Hero / Page hero / All major titles → Josefin Sans 300 (light) — jetex.com signature */

.hero-cinematic__title,
.hero__title,
.page-hero__title,
.section__title,
.split-feature__title,
.cta__title,
.feature-banner__title,
.media-banner__caption-title,
.parallax-banner__quote {
  font-family: 'Josefin Sans', 'Shippori Mincho B1', 'Hiragino Mincho ProN', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-cinematic__title { font-weight: 300; line-height: 1.0; letter-spacing: 0.015em; }
.section__title,
.split-feature__title,
.page-hero__title,
.cta__title { font-weight: 300; line-height: 1.05; letter-spacing: 0.02em; }
.vision-grid__title { font-weight: 300; letter-spacing: 0.02em; }

/* Service / price / process small titles a bit heavier */
.service-card__title,
.price-card__title,
.process__step-title,
.client-card__title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Italic / accent words slightly bolder */
.hero-cinematic__title .accent,
.split-feature__title .accent,
.page-hero__title .accent,
.section__title .accent,
.cta__title .accent,
.vision-grid__title .accent,
.feature-banner__title .accent {
  font-style: italic;
  font-weight: 400;
}

/* Japanese headings — Shippori Mincho B1, weight 600 */
body.lang-ja .hero-cinematic__title,
body.lang-ja .hero__title,
body.lang-ja .section__title,
body.lang-ja .split-feature__title,
body.lang-ja .page-hero__title,
body.lang-ja .cta__title,
body.lang-ja .vision-grid__title,
body.lang-ja .feature-banner__title,
body.lang-ja .media-banner__caption-title,
body.lang-ja .parallax-banner__quote {
  font-family: 'Shippori Mincho B1', 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
body.lang-ja .service-card__title,
body.lang-ja .price-card__title,
body.lang-ja .process__step-title {
  font-family: 'Shippori Mincho B1', 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}
body.lang-ja .hero-cinematic__title .accent,
body.lang-ja .split-feature__title .accent,
body.lang-ja .page-hero__title .accent,
body.lang-ja .section__title .accent,
body.lang-ja .cta__title .accent,
body.lang-ja .vision-grid__title .accent {
  font-style: normal;
  font-weight: 700;
}

/* Body text → Open Sans Light (jetex.com style) */
body,
.hero-cinematic__subtitle,
.hero__subtitle,
.section__description,
.page-hero__subtitle,
.split-feature__desc,
.cta__desc,
.feature-banner__desc,
.service-card__desc,
.client-card__desc,
.process__step-desc,
.vision-grid__body,
.info-table dd,
.contact-info__value,
.contact-info__sub,
.footer__brand-desc,
.footer__links a,
.footer__bottom,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: 'Open Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

body.lang-ja,
body.lang-ja .hero-cinematic__subtitle,
body.lang-ja .hero__subtitle,
body.lang-ja .section__description,
body.lang-ja .page-hero__subtitle,
body.lang-ja .split-feature__desc,
body.lang-ja .cta__desc,
body.lang-ja .feature-banner__desc,
body.lang-ja .service-card__desc,
body.lang-ja .vision-grid__body,
body.lang-ja .footer__brand-desc {
  font-family: 'Open Sans', 'Noto Sans JP', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

/* Eyebrows, labels, navigation — Josefin Sans light, uppercase */
.section__eyebrow,
.split-feature__eyebrow,
.hero-cinematic__eyebrow,
.media-banner__caption-eyebrow,
.parallax-banner__caption,
.vision-grid__label,
.service-card__num,
.price-card__tier,
.location__airport-sub,
.footer__col-title,
.page-hero__breadcrumb,
.contact-form__label,
.contact-info__label,
.nav__link,
.btn-cta,
.lang-toggle button {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
}

/* ============ Sub-page hero in jetex-style (contained image + caption below) ============ */

.page-hero--with-media {
  padding: 110px 40px 30px !important;
  border-bottom: none !important;
  background: var(--bg-primary) !important;
}

.page-hero--with-media .page-hero__media-wrap {
  position: relative !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.page-hero--with-media .page-hero__media-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburnsLight 24s ease-in-out infinite alternate;
}

.page-hero--with-media .page-hero__media-overlay {
  display: none !important;
}

/* Caption below image */
.page-hero--with-media .page-hero__inner {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  padding: 56px 24px 24px !important;
  z-index: 1;
  color: var(--ink) !important;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-hero--with-media .page-hero__inner-wrap {
  width: 100%;
  max-width: 100%;
}

.page-hero--with-media .page-hero__breadcrumb {
  color: var(--accent) !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  justify-content: center;
}
.page-hero--with-media .page-hero__breadcrumb a {
  color: var(--text-tertiary) !important;
}
.page-hero--with-media .page-hero__breadcrumb a:hover {
  color: var(--accent) !important;
}

.page-hero--with-media .page-hero__title {
  color: var(--ink) !important;
  text-shadow: none !important;
  font-family: 'Josefin Sans', sans-serif !important;
  font-size: clamp(28px, 3vw, 48px) !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.25 !important;
  margin-bottom: 14px !important;
}
body.lang-ja .page-hero--with-media .page-hero__title {
  font-family: 'Shippori Mincho B1', serif !important;
  font-size: clamp(22px, 2.6vw, 38px) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.5 !important;
}

.page-hero--with-media .page-hero__subtitle {
  color: var(--text-secondary) !important;
  text-shadow: none !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.85 !important;
  max-width: 560px;
  margin: 0 auto !important;
}
body.lang-ja .page-hero--with-media .page-hero__subtitle {
  font-size: 14px !important;
  letter-spacing: 0.06em !important;
  line-height: 1.95 !important;
}

@media (max-width: 768px) {
  .page-hero--with-media { padding: 90px 20px 24px !important; }
  .page-hero--with-media .page-hero__media-wrap { aspect-ratio: 4/3 !important; }
  .page-hero--with-media .page-hero__inner { padding: 36px 16px 16px !important; }
}

/* ============ FINAL i18n + JP Mincho across ALL pages (priority override) ============ */
html [data-i18n-en],
html [data-i18n-ja] {
  display: none !important;
}
html body.lang-ja [data-i18n-ja] {
  display: inline !important;
}
html body.lang-en [data-i18n-en] {
  display: inline !important;
}
html body.lang-ja [data-i18n-ja].block,
html body.lang-en [data-i18n-en].block { display: block !important; }
html body.lang-ja [data-i18n-ja].flex,
html body.lang-en [data-i18n-en].flex { display: flex !important; }
html body.lang-ja [data-i18n-ja].grid,
html body.lang-en [data-i18n-en].grid { display: grid !important; }

/* Apply Mincho-style JP font consistently across ALL major heading classes on all pages */
html body.lang-ja .hero-cinematic__title,
html body.lang-ja .hero__title,
html body.lang-ja .page-hero__title,
html body.lang-ja .section__title,
html body.lang-ja .split-feature__title,
html body.lang-ja .cta__title,
html body.lang-ja .vision-grid__title,
html body.lang-ja .feature-banner__title,
html body.lang-ja .media-banner__caption-title,
html body.lang-ja .parallax-banner__quote,
html body.lang-ja .service-card__title,
html body.lang-ja .price-card__title,
html body.lang-ja .process__step-title {
  font-family: 'Shippori Mincho B1', 'Shippori Mincho', 'Hiragino Mincho ProN', 'YuMincho', '游明朝', serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  line-height: 1.5 !important;
}

html body.lang-ja .hero-cinematic__title .accent,
html body.lang-ja .page-hero__title .accent,
html body.lang-ja .section__title .accent,
html body.lang-ja .split-feature__title .accent,
html body.lang-ja .cta__title .accent,
html body.lang-ja .vision-grid__title .accent {
  color: var(--accent) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-family: 'Shippori Mincho B1', serif !important;
}

/* ============ FINAL EN typography (jetex.com style — Josefin Sans throughout) ============ */
html body.lang-en,
html body.lang-en .hero-cinematic__subtitle,
html body.lang-en .hero__subtitle,
html body.lang-en .section__description,
html body.lang-en .page-hero__subtitle,
html body.lang-en .split-feature__desc,
html body.lang-en .cta__desc,
html body.lang-en .feature-banner__desc,
html body.lang-en .service-card__desc,
html body.lang-en .client-card__desc,
html body.lang-en .process__step-desc,
html body.lang-en .vision-grid__body,
html body.lang-en .info-table dd,
html body.lang-en .info-table dt,
html body.lang-en .contact-info__value,
html body.lang-en .contact-info__sub,
html body.lang-en .footer__brand-desc,
html body.lang-en .footer__links a,
html body.lang-en .footer__bottom,
html body.lang-en .contact-form input,
html body.lang-en .contact-form select,
html body.lang-en .contact-form textarea,
html body.lang-en p,
html body.lang-en li {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.75 !important;
}

/* EN headings — Josefin Sans Bold 500-600, jetex.com style */
html body.lang-en .hero-cinematic__title,
html body.lang-en .hero__title,
html body.lang-en .page-hero__title,
html body.lang-en .section__title,
html body.lang-en .split-feature__title,
html body.lang-en .cta__title,
html body.lang-en .vision-grid__title,
html body.lang-en .feature-banner__title,
html body.lang-en .media-banner__caption-title,
html body.lang-en .parallax-banner__quote,
html body.lang-en .service-card__title,
html body.lang-en .price-card__title,
html body.lang-en .process__step-title,
html body.lang-en .client-card__title {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
}

/* EN accents — slightly lighter weight italic for elegance */
html body.lang-en .hero-cinematic__title .accent,
html body.lang-en .page-hero__title .accent,
html body.lang-en .section__title .accent,
html body.lang-en .split-feature__title .accent,
html body.lang-en .cta__title .accent,
html body.lang-en .vision-grid__title .accent {
  color: var(--accent) !important;
  font-weight: 500 !important;
  font-style: normal !important;
  font-family: 'Josefin Sans', sans-serif !important;
}

/* EN labels / nav / buttons — Josefin Sans uppercase, semibold */
html body.lang-en .nav__link,
html body.lang-en .btn-cta,
html body.lang-en .section__eyebrow,
html body.lang-en .split-feature__eyebrow,
html body.lang-en .hero-cinematic__eyebrow,
html body.lang-en .media-banner__caption-eyebrow,
html body.lang-en .parallax-banner__caption,
html body.lang-en .vision-grid__label,
html body.lang-en .service-card__num,
html body.lang-en .price-card__tier,
html body.lang-en .footer__col-title,
html body.lang-en .page-hero__breadcrumb,
html body.lang-en .lang-toggle button,
html body.lang-en .contact-form__label,
html body.lang-en .contact-info__label {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
}

/* EN — adjust card titles to be slightly less bold for refined feel */
html body.lang-en .service-card__title,
html body.lang-en .price-card__title,
html body.lang-en .process__step-title {
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}

/* ============ DEFINITIVE EN — same Light 300 across all pages ============ */
html body.lang-en .hero-cinematic__title,
html body.lang-en .hero__title,
html body.lang-en .page-hero__title,
html body.lang-en .section__title,
html body.lang-en .split-feature__title,
html body.lang-en .cta__title,
html body.lang-en .vision-grid__title {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
}
