/* Light-Visual variant — white base + heavy imagery */

/* Cinematic hero with video/image background (light base) */
.hero-cinematic {
  position: relative;
  height: 100vh;
  min-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 100px;
  background: #000;
}

.hero-cinematic__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-cinematic__video,
.hero-cinematic__img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -2%); }
}

.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.25) 60%, rgba(255,255,255,0) 95%, rgba(255,255,255,1) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, transparent 70%);
}

.hero-cinematic__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-cinematic__content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-cinematic__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-cinematic__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero-cinematic__title {
  font-size: clamp(60px, 10vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}

.hero-cinematic__title .accent {
  display: inline;
  color: var(--accent);
  font-style: italic;
}

.hero-cinematic__subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 48px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-cinematic__cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cinematic .btn-cta--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 32px rgba(244,121,32,0.4);
}
.hero-cinematic .btn-cta--primary:hover { background: var(--accent-bright); }
.hero-cinematic .btn-cta--ghost {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-cinematic .btn-cta--ghost:hover { background: rgba(255,255,255,0.22); }

.hero-cinematic__bottom-meta {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.hero-cinematic__bottom-meta strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Image strip */
.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--bg-secondary);
}

.image-strip__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.image-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.image-strip__item:hover img { transform: scale(1.08); }

.image-strip__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  padding: 6px 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .image-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Split feature (light) */
.split-feature {
  padding: 140px 40px;
  background: var(--bg-primary);
}

.split-feature--alt { background: var(--bg-secondary); }

.split-feature__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.split-feature--reverse .split-feature__inner { direction: rtl; }
.split-feature--reverse .split-feature__text,
.split-feature--reverse .split-feature__visual { direction: ltr; }

.split-feature__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.25);
}

.split-feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.split-feature:hover .split-feature__visual img { transform: scale(1.05); }

.split-feature__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,1);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.split-feature__eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.split-feature__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.split-feature__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ink);
}

.split-feature__title .accent { color: var(--accent); }

.split-feature__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.split-feature__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.split-feature__points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.split-feature__points li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid rgba(244,121,32,0.15);
  box-sizing: content-box;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .split-feature__inner { grid-template-columns: 1fr; gap: 40px; }
  .split-feature--reverse .split-feature__inner { direction: ltr; }
}

/* Parallax banner */
.parallax-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 40px;
}

.parallax-banner__bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
}

.parallax-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}

.parallax-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(244, 121, 32, 0.2), transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}

.parallax-banner__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.parallax-banner__quote {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.parallax-banner__quote .accent { color: var(--accent); }

.parallax-banner__caption {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}

/* Gallery (light) */
.gallery {
  padding: 120px 40px;
  background: var(--bg-primary);
}

.gallery__grid {
  max-width: var(--max-width);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-tertiary);
  cursor: pointer;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--big { grid-row: span 2; grid-column: span 2; }

.gallery__item-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  padding: 6px 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--big { grid-row: span 2; grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--tall, .gallery__item--wide, .gallery__item--big { grid-column: span 1; grid-row: span 1; }
}

/* Stats under hero */
.under-hero-stats {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-bottom: 1px solid var(--border);
}

.under-hero-stats__item { }
.under-hero-stats__num {
  font-size: 56px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.under-hero-stats__num .accent { color: var(--accent); }
.under-hero-stats__label {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .under-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 640px) {
  .under-hero-stats { grid-template-columns: 1fr; padding: 40px 20px; }
}

/* ========= Mobile overrides for visual sections ========= */
@media (max-width: 860px) {
  .hero-cinematic {
    padding: 0 24px 70px;
    min-height: 620px;
    height: 100vh;
    max-height: 900px;
  }
  .hero-cinematic__title { font-size: clamp(44px, 12vw, 80px); }
  .hero-cinematic__subtitle { font-size: 17px; max-width: 100%; margin-bottom: 36px; }
  .hero-cinematic__eyebrow { font-size: 10px; padding: 8px 14px; letter-spacing: 0.14em; }
  .hero-cinematic__bottom-meta {
    right: 24px; bottom: 20px;
    font-size: 10px; letter-spacing: 0.15em;
  }
  .hero-cinematic__bottom-meta strong { font-size: 12px; }
  .hero-cinematic__cta-row { flex-direction: column; align-items: stretch; }
  .hero-cinematic__cta-row .btn-cta { justify-content: center; padding: 14px 22px; }

  .split-feature { padding: 80px 24px; }
  .split-feature__inner { grid-template-columns: 1fr !important; gap: 36px; direction: ltr !important; }
  .split-feature__text,
  .split-feature__visual { direction: ltr !important; }
  .split-feature__visual { aspect-ratio: 4/3; max-height: 440px; }
  .split-feature__title { font-size: clamp(32px, 8vw, 48px); }
  .split-feature__desc { font-size: 16px; }
  .split-feature__badge {
    top: 16px; left: 16px;
    font-size: 10px; padding: 8px 12px;
  }
}

@media (max-width: 420px) {
  .hero-cinematic { padding: 0 18px 60px; min-height: 560px; }
  .hero-cinematic__title { font-size: 44px; line-height: 0.95; }
  .hero-cinematic__subtitle { font-size: 15px; }
  .hero-cinematic__bottom-meta { display: none; }
  .split-feature { padding: 64px 18px; }
}

/* ============ Stronger hero overlay (final, override all previous) ============ */
/* Heavy left-bottom darkening so text is always legible */
.hero-cinematic__overlay,
.hero-cinematic__overlay--soft {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.55) 90%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 45%, transparent 75%) !important;
}

/* Stronger image treatment for color hero */
.hero-cinematic__img.hero-cinematic__img--color {
  filter: contrast(1.05) saturate(1.05) brightness(0.94) !important;
}

/* Hero text shadow stronger for legibility */
.hero-cinematic__title { text-shadow: 0 4px 30px rgba(0,0,0,0.7), 0 2px 12px rgba(0,0,0,0.4) !important; }
.hero-cinematic__subtitle { text-shadow: 0 2px 14px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5) !important; }

/* ============ Caption-style hero (small text, bottom-right) ============ */
/* Override: aircraft is hero, text is elegant caption */

.hero-cinematic {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  padding: 0 60px 60px !important;
}

.hero-cinematic__content {
  max-width: 480px !important;
  margin: 0 !important;
  text-align: right !important;
  padding: 0 !important;
  position: relative;
  z-index: 3;
}

.hero-cinematic__eyebrow {
  font-size: 10px !important;
  padding: 6px 12px !important;
  letter-spacing: 0.18em !important;
  margin-bottom: 16px !important;
  background: rgba(255,255,255,0.92) !important;
  display: inline-flex !important;
}

.hero-cinematic__title {
  font-size: clamp(28px, 3.5vw, 48px) !important;
  font-weight: 300 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 14px !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4) !important;
}
body.lang-ja .hero-cinematic__title {
  font-size: clamp(24px, 3vw, 38px) !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.06em !important;
}

.hero-cinematic__subtitle {
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  letter-spacing: 0.04em !important;
  max-width: 420px !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  margin-bottom: 22px !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6) !important;
}
body.lang-ja .hero-cinematic__subtitle {
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  line-height: 1.85 !important;
}

.hero-cinematic__cta-row {
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.hero-cinematic__cta-row .btn-cta {
  padding: 11px 22px !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
}

.hero-cinematic__bottom-meta {
  bottom: 60px !important;
  left: 60px !important;
  right: auto !important;
  text-align: left !important;
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
}
.hero-cinematic__bottom-meta strong { font-size: 12px !important; }

/* Soften overlay since text is smaller and in a corner */
.hero-cinematic__overlay,
.hero-cinematic__overlay--soft {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.55) 100%),
    linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 100%) !important;
}

@media (max-width: 768px) {
  .hero-cinematic { padding: 0 24px 32px !important; }
  .hero-cinematic__content { max-width: 100% !important; }
  .hero-cinematic__bottom-meta { bottom: 32px !important; left: 24px !important; }
}

/* ============ jetex.com-style contained hero ============ */
/* Image with margins, caption BELOW image */

.hero-cinematic {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 110px 40px 30px !important;
  background: #fff !important;
  overflow: visible !important;
  align-items: initial !important;
  justify-content: initial !important;
}

.hero-cinematic__media {
  position: relative !important;
  inset: auto !important;
  z-index: 0;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hero-cinematic__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate !important;
}

.hero-cinematic__overlay,
.hero-cinematic__overlay--soft {
  display: none !important;
}
.hero-cinematic__grain {
  display: none !important;
}

/* Content moves below the image, centered */
.hero-cinematic__content {
  position: relative !important;
  max-width: 720px !important;
  margin: 56px auto 24px !important;
  text-align: center !important;
  padding: 0 24px !important;
  color: var(--ink) !important;
}

.hero-cinematic__eyebrow {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--accent) !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  display: inline-flex !important;
  padding: 0 !important;
  text-transform: uppercase !important;
}
.hero-cinematic__eyebrow::before {
  display: none !important;
}

.hero-cinematic__title {
  color: var(--ink) !important;
  text-shadow: none !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.3 !important;
  margin-bottom: 14px !important;
}
.hero-cinematic__title .accent {
  color: var(--accent) !important;
  font-style: normal !important;
  font-weight: 400 !important;
}
body.lang-ja .hero-cinematic__title {
  font-size: clamp(22px, 2.6vw, 36px) !important;
  font-weight: 600 !important;
  font-family: 'Shippori Mincho B1', serif !important;
  letter-spacing: 0.05em !important;
}
body.lang-ja .hero-cinematic__title .accent {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.hero-cinematic__subtitle {
  color: var(--text) !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 !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
}
body.lang-ja .hero-cinematic__subtitle {
  font-size: 14px !important;
  letter-spacing: 0.06em !important;
  line-height: 1.95 !important;
}

.hero-cinematic__cta-row {
  justify-content: center !important;
  gap: 12px !important;
}
.hero-cinematic__cta-row .btn-cta {
  padding: 12px 26px !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--ink) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
.hero-cinematic__cta-row .btn-cta:hover {
  background: var(--accent) !important;
}
.hero-cinematic__cta-row .btn-cta--ghost {
  background: transparent !important;
  border: 1px solid rgba(0,0,0,0.2) !important;
  color: var(--ink) !important;
  backdrop-filter: none !important;
}
.hero-cinematic__cta-row .btn-cta--ghost:hover {
  background: var(--ink) !important;
  color: #fff !important;
  border-color: var(--ink) !important;
}

/* Hide bottom-meta — no need on contained hero */
.hero-cinematic__bottom-meta { display: none !important; }

@media (max-width: 768px) {
  .hero-cinematic { padding: 90px 20px 24px !important; }
  .hero-cinematic__media { aspect-ratio: 4/3 !important; }
  .hero-cinematic__content { margin: 40px auto 16px !important; }
}

/* ============ Final fix: prevent block display on accent so 「を。」 stays inline ============ */
.hero-cinematic__title .accent,
.hero-cinematic__title span,
.hero-cinematic__title [data-i18n-ja] span,
.hero-cinematic__title [data-i18n-en] span {
  display: inline !important;
}

/* ============ FIX: i18n hiding takes priority (override the display:inline !important above) ============ */
[data-i18n-en], [data-i18n-ja] { display: none !important; }
body.lang-ja [data-i18n-ja] { display: inline !important; }
body.lang-en [data-i18n-en] { display: inline !important; }
body.lang-ja [data-i18n-ja].block,
body.lang-en [data-i18n-en].block { display: block !important; }
body.lang-ja [data-i18n-ja].flex,
body.lang-en [data-i18n-en].flex { display: flex !important; }
body.lang-ja [data-i18n-ja].grid,
body.lang-en [data-i18n-en].grid { display: grid !important; }

/* ============ EN typography (jetex.com style) — bold title, light subtitle ============ */
body.lang-en .hero-cinematic__title {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  font-size: clamp(32px, 3.6vw, 52px) !important;
}
body.lang-en .hero-cinematic__title .accent {
  font-weight: 500 !important;
  font-style: normal !important;
}
body.lang-en .hero-cinematic__subtitle {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
}

/* ============ FINAL EN headings — match jetex.com refined weight (Light/Regular) ============ */
html body.lang-en .hero-cinematic__title,
html body.lang-en .split-feature__title,
html body.lang-en .page-hero__title,
html body.lang-en .section__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 {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
}

/* EN body text — lighter weight matching jetex.com Indulge in seamless luxury text */
html body.lang-en .hero-cinematic__subtitle,
html body.lang-en .split-feature__desc,
html body.lang-en .page-hero__subtitle,
html body.lang-en .section__description,
html body.lang-en .cta__desc,
html body.lang-en .feature-banner__desc,
html body.lang-en .service-card__desc,
html body.lang-en .vision-grid__body,
html body.lang-en .vision-grid__body p {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.7 !important;
}

/* EN accent words — same weight as base, just colored orange */
html body.lang-en .hero-cinematic__title .accent,
html body.lang-en .split-feature__title .accent,
html body.lang-en .page-hero__title .accent,
html body.lang-en .section__title .accent,
html body.lang-en .cta__title .accent,
html body.lang-en .vision-grid__title .accent {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  color: var(--accent) !important;
}

/* Service / price card titles — slightly bolder for legibility */
html body.lang-en .service-card__title,
html body.lang-en .price-card__title,
html body.lang-en .process__step-title {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
}

/* ============ FINAL — Home EN headings match sub-pages (weight 600) ============ */
html body.lang-en .hero-cinematic__title,
html body.lang-en .split-feature__title,
html body.lang-en .logo-showcase__caption {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
}

html body.lang-en .hero-cinematic__title .accent,
html body.lang-en .split-feature__title .accent {
  font-weight: 500 !important;
  font-style: normal !important;
  color: var(--accent) !important;
}

html body.lang-en .hero-cinematic__subtitle,
html body.lang-en .split-feature__desc {
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
}

/* ============ DEFINITIVE EN typography — Josefin Sans Light 300 EVERYWHERE ============ */
/* Force light weight 300 for all major EN headings to match sub-pages refined look */
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 {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.25 !important;
}

html body.lang-en .hero-cinematic__title .accent,
html body.lang-en .split-feature__title .accent,
html body.lang-en .page-hero__title .accent,
html body.lang-en .section__title .accent,
html body.lang-en .cta__title .accent,
html body.lang-en .vision-grid__title .accent,
html body.lang-en .feature-banner__title .accent {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 300 !important;
  font-style: normal !important;
  color: var(--accent) !important;
}

/* EN body text — Josefin Sans 300 Light */
html body.lang-en .hero-cinematic__subtitle,
html body.lang-en .hero__subtitle,
html body.lang-en .page-hero__subtitle,
html body.lang-en .section__description,
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 .vision-grid__body,
html body.lang-en .vision-grid__body p,
html body.lang-en .footer__brand-desc,
html body.lang-en p {
  font-family: 'Josefin Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.7 !important;
}

/* Service / price / process card titles — slightly bolder for readability */
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: 500 !important;
  letter-spacing: 0.04em !important;
}

/* ============ ABSOLUTE i18n hide override (beats all earlier rules) ============ */
/* Higher specificity than .hero-cinematic__title span — defeats lingering display:inline */
html[lang] body.lang-en [data-i18n-ja],
html[lang] body.lang-ja [data-i18n-en],
html[lang] body.lang-en [data-i18n-ja] *,
html[lang] body.lang-ja [data-i18n-en] * {
  display: none !important;
  visibility: hidden !important;
}

html[lang] body.lang-ja [data-i18n-ja],
html[lang] body.lang-en [data-i18n-en] {
  display: inline !important;
  visibility: visible !important;
}
html[lang] body.lang-ja [data-i18n-ja] *:not([data-i18n-ja]):not([data-i18n-en]),
html[lang] body.lang-en [data-i18n-en] *:not([data-i18n-ja]):not([data-i18n-en]) {
  display: inline !important;
  visibility: visible !important;
}
