﻿:root {
  --ink: #0d1827;
  --ink-soft: #2a3645;
  --muted: #6b7785;
  --line: #e2e6ec;
  --paper: #ffffff;
  --paper-soft: #f4f5f7;
  --paper-warm: #faf8f3;
  --accent: #ffd43b;
  --accent-soft: #fff5cc;
  --accent-deep: #c69b00;
  --red: #ff4634;
  --shadow-sm: 0 4px 14px rgba(13, 24, 39, 0.06);
  --shadow-md: 0 18px 42px rgba(13, 24, 39, 0.10);
  --shadow-lg: 0 32px 80px rgba(13, 24, 39, 0.18);
  --container: 1240px;
  --header-h: 88px;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Inter", "Helvetica Neue", Arial, sans-serif;
  --display: "Inter", "Helvetica Neue", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

/* ========== Page transition overlay ========== */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

.page-transition-panel {
  position: absolute;
  inset: 0;
  will-change: transform, opacity, filter, clip-path;
}

.page-transition-panel:nth-child(1) { background: var(--accent); z-index: 1; }
.page-transition-panel:nth-child(2) { background: var(--accent-deep); z-index: 2; }
.page-transition-panel:nth-child(3) { background: var(--ink); z-index: 3; }

/* ===== Pattern 1: Text Reveal + Wipe ===== */
body.pt-textwipe .page-transition-panel {
  background: var(--ink);
  transform: translateY(-101%);
  transition: transform 820ms cubic-bezier(0.83, 0, 0.17, 1);
}
body.pt-textwipe .page-transition-panel:nth-child(3) { transition-delay: 0ms; }
body.pt-textwipe .page-transition-panel:nth-child(2) { transition-delay: 130ms; background: var(--accent-deep); }
body.pt-textwipe .page-transition-panel:nth-child(1) { transition-delay: 260ms; background: var(--accent); }
body.pt-textwipe.pt-loading .page-transition-panel {
  transform: translateY(0);
  transition: none !important;
}

body.pt-textwipe .page-transition::before {
  content: attr(data-page-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 100;
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  text-align: center;
  line-height: 1;
  opacity: 0;
  transform: scale(1.35);
  filter: blur(20px);
  transition:
    opacity 560ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 700ms cubic-bezier(0.7, 0, 0.2, 1),
    filter 560ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
body.pt-textwipe.pt-loading .page-transition::before {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

body.pt-textwipe .page-transition::after {
  content: 'PAGE TRANSITION';
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 360ms ease 80ms;
  pointer-events: none;
}
body.pt-textwipe.pt-loading .page-transition::after {
  opacity: 1;
}

/* ===== Pattern 2: Loader Counter ===== */
body.pt-counter .page-transition-panel {
  background: var(--ink);
  transform: translateY(-101%);
  transition: transform 540ms cubic-bezier(0.83, 0, 0.17, 1);
}
body.pt-counter .page-transition-panel:nth-child(3) { transition-delay: 0ms; }
body.pt-counter .page-transition-panel:nth-child(2) { transition-delay: 80ms; }
body.pt-counter .page-transition-panel:nth-child(1) { transition-delay: 160ms; background: var(--accent); }
body.pt-counter.pt-loading .page-transition-panel {
  transform: translateY(0);
  transition: none !important;
}

body.pt-counter .page-transition {
  --pt-bar: 0%;
}

body.pt-counter .page-transition::before {
  content: attr(data-pt-count);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-family: var(--display);
  font-size: clamp(120px, 26vw, 320px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  opacity: 1;
  transition: opacity 200ms ease;
  pointer-events: none;
}
body.pt-counter:not(.pt-loading) .page-transition::before {
  opacity: 0;
}

body.pt-counter .page-transition::after {
  content: '';
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(180px, 30vw, 340px);
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: var(--pt-bar) 100%;
  z-index: 100;
  pointer-events: none;
}
body.pt-counter:not(.pt-loading) .page-transition::after {
  opacity: 0;
  transition: opacity 200ms ease;
}

/* Default (no pattern class): hidden */
body:not(.pt-textwipe):not(.pt-counter) .page-transition-panel {
  opacity: 0;
}

body.pt-leaving .page-transition {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition-panel { transition: none !important; }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-feature-settings: "palt";
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(226, 230, 236, 0.8);
  transition: background 280ms ease, border-color 280ms ease;
}

.site-header.is-transparent {
  background: rgba(13, 24, 39, 0.0);
  border-bottom-color: transparent;
  color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-transparent .brand-text strong { color: #fff; }
.site-header.is-transparent .brand-text small { color: rgba(255, 255, 255, 0.66); }
.site-header.is-transparent .nav a { color: #fff; }
.site-header.is-transparent .nav a small { color: rgba(255, 255, 255, 0.5); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 11px;
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  font-family: var(--display);
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  transition: color 240ms ease;
}

.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  transition: color 240ms ease;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 26px);
}

.nav a {
  position: relative;
  display: grid;
  gap: 1px;
  padding: 8px 4px;
  text-align: center;
  transition: color 200ms ease;
}

.nav a span {
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a small {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 240ms ease;
}

.nav a::after {
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 240ms ease, transform 240ms ease;
  content: "";
}

.nav a:hover::after,
.nav a.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.header-cta {
  display: inline-grid;
  gap: 1px;
  align-items: center;
  justify-items: center;
  padding: 12px 24px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 212, 59, 0.4);
}

.header-cta span {
  font-size: 0.84rem;
  letter-spacing: 0.14em;
}

.header-cta small {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.6px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-transparent .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header.is-transparent .nav-toggle span {
  background: #fff;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   Mobile drawer
   ========================================================= */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--header-h) + 24px) 28px 32px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-100%);
  transition: transform 480ms cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

body.menu-open .mobile-nav {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  color: #fff;
}

.mobile-nav a strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mobile-nav a span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.mobile-nav-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.04em;
  align-self: center;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 36px 140px;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.04) brightness(0.78);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 24, 39, 0.55) 0%, rgba(13, 24, 39, 0.32) 36%, rgba(13, 24, 39, 0.7) 100%),
    linear-gradient(90deg, rgba(13, 24, 39, 0.55) 0%, rgba(13, 24, 39, 0.05) 50%);
}

.hero-content {
  width: min(100%, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.92);
}

.hero-eyebrow-line {
  display: inline-block;
  width: 64px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.6rem, 7.6vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-family: var(--sans);
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line em {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%);
  animation: heroLineUp 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line:nth-child(1) em { animation-delay: 200ms; }
.hero-line:nth-child(2) em { animation-delay: 380ms; }
.hero-line:nth-child(3) em { animation-delay: 560ms; }

@keyframes heroLineUp {
  to { transform: translateY(0); }
}

.hero-sub {
  margin: 36px 0 0;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroSubUp 900ms cubic-bezier(0.22, 1, 0.36, 1) 900ms forwards;
}

@keyframes heroSubUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroSubUp 900ms cubic-bezier(0.22, 1, 0.36, 1) 1100ms forwards;
}

.hero-meta {
  position: absolute;
  right: 36px;
  bottom: 32px;
  display: flex;
  gap: 38px;
  z-index: 2;
  opacity: 0;
  animation: heroSubUp 900ms cubic-bezier(0.22, 1, 0.36, 1) 1300ms forwards;
}

.hero-meta-item {
  display: grid;
  gap: 4px;
  text-align: right;
}

.hero-meta-label {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.hero-meta-value {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
}

.scroll-cue {
  position: absolute;
  left: 36px;
  bottom: 32px;
  z-index: 2;
  display: inline-grid;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.85);
}

.scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.scroll-line::after {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--accent));
  animation: scrollSweep 1.8s ease-in-out infinite;
  content: "";
}

@keyframes scrollSweep {
  0% { transform: translateY(0); }
  100% { transform: translateY(120px); }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, color 240ms ease;
}

.btn span { display: inline-block; }

.btn::after {
  content: "→";
  display: inline-block;
  transition: transform 240ms ease;
}

.btn:hover::after { transform: translateX(4px); }

.btn.primary {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(255, 212, 59, 0.34);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 212, 59, 0.44);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn.block {
  width: 100%;
}

/* =========================================================
   Hero curved divider (organic transition)
   ========================================================= */

.hero-curve {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 120px;
  color: var(--ink);
  z-index: 3;
  pointer-events: none;
}

/* =========================================================
   Manifesto (scroll-driven cinematic section)
   ========================================================= */

.manifesto {
  --m-progress: 0;
  position: relative;
  height: 320vh;
  background: var(--paper);
  color: var(--ink);
  overflow: clip;
  z-index: 2;
}

.manifesto-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  padding: 0 36px;
  overflow: hidden;
  background: var(--paper);
}

.manifesto-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.m-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 600ms ease;
}

.m-shape-1 {
  top: -10vh;
  left: -10vw;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(closest-side, rgba(255, 212, 59, 0.72), transparent 70%);
  transform:
    translate3d(calc(var(--m-progress) * -22vw), calc(var(--m-progress) * 32vh), 0)
    scale(calc(0.4 + var(--m-progress) * 1.2))
    rotate(calc(var(--m-progress) * 60deg));
}

.m-shape-2 {
  bottom: -16vh;
  right: -12vw;
  width: 56vw;
  height: 56vw;
  max-width: 680px;
  max-height: 680px;
  background: radial-gradient(closest-side, rgba(13, 24, 39, 0.14), transparent 70%);
  transform:
    translate3d(calc(var(--m-progress) * 18vw), calc(var(--m-progress) * -28vh), 0)
    scale(calc(1.4 - var(--m-progress) * 0.8))
    rotate(calc(var(--m-progress) * -70deg));
}

.m-shape-3 {
  top: 30%;
  left: 50%;
  width: 30vw;
  height: 30vw;
  max-width: 360px;
  max-height: 360px;
  background: radial-gradient(closest-side, rgba(255, 70, 52, 0.24), transparent 70%);
  transform:
    translate3d(calc(var(--m-progress) * -110% - 50%), calc(var(--m-progress) * 18vh - 50%), 0)
    scale(calc(0.3 + var(--m-progress) * 1.4))
    rotate(calc(var(--m-progress) * 90deg));
}

.manifesto[data-active="true"] .m-shape { opacity: 1; }

.manifesto-stack {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  gap: clamp(8px, 1.4vw, 22px);
  z-index: 1;
}

.manifesto-line {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: rgba(13, 24, 39, 0.12);
  transition: color 480ms ease;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 clamp(8px, 1.6vw, 24px);
}

.manifesto-line em {
  font-style: normal;
  display: inline-block;
  transform: translateY(0.6em);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), opacity 720ms ease, color 600ms ease;
}

.manifesto-line strong {
  font-weight: 900;
  display: inline-block;
  transform: translateY(0.6em);
  opacity: 0;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 80ms, opacity 760ms ease 80ms, color 600ms ease;
  color: var(--ink);
}

.manifesto-line.is-on em,
.manifesto-line.is-on strong {
  transform: translateY(0);
  opacity: 1;
}

.manifesto-line.is-on { color: var(--ink); }

.m-l1.is-on em { color: var(--accent-deep); }
.m-l2.is-on em { color: var(--accent-deep); }
.m-l3.is-on em { color: var(--red); }

.manifesto-pop {
  display: inline-block;
  position: relative;
  width: clamp(180px, 28vw, 380px);
  aspect-ratio: 16 / 10;
  margin: 0 clamp(6px, 1vw, 16px);
  border-radius: 16px;
  overflow: hidden;
  vertical-align: middle;
  transform: translate3d(0, 40px, 0) scale(0.6);
  opacity: 0;
  transition: transform 880ms cubic-bezier(0.22, 1, 0.36, 1) 200ms, opacity 880ms ease 200ms;
  box-shadow: 0 22px 48px rgba(13, 24, 39, 0.22);
  background: var(--ink);
}

.manifesto-line.is-on .manifesto-pop {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.manifesto-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.06);
}

.manifesto-tag {
  position: absolute;
  bottom: 32px;
  right: 36px;
  margin: 0;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: rgba(13, 24, 39, 0.42);
  z-index: 2;
}

/* =========================================================
   Marquee
   ========================================================= */

.marquee {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  animation: marqueeMove 28s linear infinite;
}

.marquee-track span:not(.marquee-dot) {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  color: rgba(255, 255, 255, 0.92);
}

.marquee-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Section base
   ========================================================= */

section { scroll-margin-top: var(--header-h); }

.section-head {
  margin-bottom: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.eyebrow span {
  color: var(--accent-deep);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow.light span {
  color: var(--accent);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.section-head h2 .accent {
  color: var(--accent-deep);
  position: relative;
}

.section-head h2 .accent-yellow {
  color: var(--accent);
}

.section-head.light h2 { color: #fff; }

.section-lead {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.section-lead.light {
  color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   About
   ========================================================= */

.about {
  padding: 130px 0 140px;
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.94;
}

.about-lead {
  font-size: 1.18rem !important;
  font-weight: 700;
  color: var(--ink) !important;
  margin-bottom: 28px !important;
}

.about-points {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.about-points li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 0.96rem;
  color: var(--ink);
}

.about-points strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--accent-deep);
}

.about-visual {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
}

.about-visual-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-visual-card.lg {
  grid-column: 1 / -1;
  aspect-ratio: 5 / 4;
}

.about-visual-card.sm {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  margin-left: 28%;
  width: 72%;
  margin-top: -64px;
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual-card:hover img {
  transform: scale(1.04);
}

.about-visual-tag {
  position: absolute;
  left: 22px;
  bottom: 16px;
  margin: 0;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* =========================================================
   Business (sticky stacked-card scroll)
   ========================================================= */

.business {
  padding: 140px 0 0;
  background: var(--paper-soft);
}

.business .section-head {
  margin-bottom: 24px;
}

.business-stack {
  position: relative;
  padding-bottom: 140px;
}

.business-card-pin {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  padding: 36px 32px;
  background: var(--paper-soft);
}

.business-card-pin + .business-card-pin {
  top: calc(var(--header-h) + 80px);
}

.business-card-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  padding: 56px;
  box-shadow: 0 30px 80px -20px rgba(13, 24, 39, 0.18), 0 0 0 1px rgba(13, 24, 39, 0.04);
  transform-origin: center top;
  transition: transform 240ms ease;
}

.business-card-pin.reverse .business-card-inner {
  direction: rtl;
}

.business-card-pin.reverse .business-card-inner > * {
  direction: ltr;
}

.business-num-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.business-num-pre {
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--accent-deep);
  text-transform: uppercase;
}

.business-num {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(13, 24, 39, 0.10);
  line-height: 0.8;
}

.business-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.business-card-pin:hover .business-image img {
  transform: scale(1.05);
}

.business-body {
  position: relative;
  z-index: 1;
}

.business-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.business-body h3 {
  margin: 0 0 22px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.business-body > p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.94;
}

.business-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.business-tags li {
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* =========================================================
   Intern (dark section)
   ========================================================= */

.intern {
  padding: 140px 0;
  background: var(--ink);
  color: #fff;
  position: relative;
}

.intern::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 16% 22%, rgba(255, 212, 59, 0.08) 0%, transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(255, 70, 52, 0.06) 0%, transparent 30%);
  pointer-events: none;
  content: "";
}

.intern .container { position: relative; z-index: 1; }

.intern-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intern-stat {
  text-align: left;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.intern-stat:last-child { border-right: 0; }

.intern-stat-value {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}

.intern-stat-unit {
  font-size: 0.5em;
  margin-left: 4px;
  color: rgba(255, 212, 59, 0.7);
}

.intern-stat-label {
  margin: 0 0 4px;
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
}

.intern-stat-note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.intern-flow {
  margin-top: 88px;
}

.intern-flow-title {
  margin: 0 0 36px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.intern-flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: flow;
}

.intern-flow-list li {
  position: relative;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: transform 320ms ease, background 320ms ease;
}

.intern-flow-list li:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

.intern-flow-num {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.intern-flow-list h4 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  font-weight: 900;
  color: #fff;
}

.intern-flow-list p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

/* =========================================================
   Skills
   ========================================================= */

.skills {
  padding: 140px 0;
  background: var(--paper);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.skill-card {
  position: relative;
  padding: 36px 26px;
  background: var(--paper-soft);
  border-radius: 14px;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), background 320ms ease, box-shadow 320ms ease;
  transform-style: preserve-3d;
  cursor: default;
}

.skill-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 212, 59, 0) 30%, rgba(255, 212, 59, 0.18) 100%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
  content: "";
}

.skill-card:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-8px);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.skill-card:hover::after {
  opacity: 1;
}

.skill-num {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  transition: color 320ms ease;
}

.skill-card:hover .skill-num {
  color: var(--accent);
}

.skill-card h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.skill-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.8;
  transition: color 320ms ease;
}

.skill-card:hover p {
  color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   Career
   ========================================================= */

.career {
  padding: 140px 0;
  background: var(--ink);
  color: #fff;
}

.career-logos {
  list-style: none;
  margin: 64px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.career-logos li {
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 320ms ease;
  overflow: hidden;
}

.career-logos li:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 38px -8px rgba(255, 212, 59, 0.35);
}

.career-logos img {
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Per-logo size tuning — each source crops differently so we
   compensate per file to make the rendered logos look optically
   the same "presence" inside the tile. */
.career-logos .logo-leverages    { max-width: 88%; max-height: 50%; }
.career-logos .logo-rakuten      { max-width: 62%; max-height: 50%; }
.career-logos .logo-fast-retailing { max-width: 78%; max-height: 70%; }
.career-logos .logo-strike       { max-width: 46%; max-height: 86%; }
.career-logos .logo-nexus        { max-width: 50%; max-height: 88%; }
.career-logos .logo-accenture    { max-width: 80%; max-height: 50%; }
.career-logos .logo-daiwa        { max-width: 78%; max-height: 64%; }

.career-logos li.more {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.22);
}

.career-logos li.more:hover {
  background: rgba(255, 212, 59, 0.06);
  border-color: rgba(255, 212, 59, 0.4);
  box-shadow: none;
}

.career-logos li.more span {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-style: italic;
}

.career-callout {
  margin-top: 96px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  background: linear-gradient(135deg, rgba(255, 212, 59, 0.12) 0%, rgba(255, 212, 59, 0.04) 60%);
  border: 1px solid rgba(255, 212, 59, 0.18);
  border-radius: 22px;
}

.career-callout-num {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--accent);
  line-height: 0.9;
}

.career-callout-unit {
  font-size: 0.5em;
  margin-left: 4px;
}

.career-callout-body h3 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
}

.career-callout-body p {
  margin: 0;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   Voice (sticky featured + scrolling rail)
   ========================================================= */

.voice {
  padding: 140px 0;
  background: var(--paper-warm);
}

.voice-stage {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.voice-pinned {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  display: grid;
  gap: 18px;
}

.voice-rail {
  display: grid;
  gap: 22px;
}

.voice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 480ms ease, border-color 480ms ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.voice-rail .voice-card {
  padding: 0;
  opacity: 0.42;
  transform: translateY(28px) scale(0.985);
}

.voice-rail .voice-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  border-color: rgba(13, 24, 39, 0.18);
  box-shadow: 0 22px 60px -22px rgba(13, 24, 39, 0.32);
}

.voice-rail .voice-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.voice-rail .voice-card.is-active::before {
  transform: scaleY(1);
}

.voice-num {
  position: absolute;
  top: 18px;
  right: 28px;
  margin: 0;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(13, 24, 39, 0.32);
}

.voice-card.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.voice-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.voice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-body {
  padding: 32px 32px 28px;
  display: grid;
  gap: 14px;
  flex: 1;
}

.voice-tag {
  margin: 0;
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
}

.voice-body h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.voice-card.featured .voice-body h3 { color: #fff; font-size: 1.4rem; }

.voice-body blockquote {
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.86;
}

.voice-card.featured blockquote {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.voice-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.voice-card.featured .voice-meta {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.voice-name {
  margin: 0 0 4px;
  font-size: 0.96rem;
  font-weight: 900;
}

.voice-detail {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.voice-card.featured .voice-detail { color: rgba(255, 255, 255, 0.5); }

.voice-counter {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 4px 4px 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.voice-counter-current {
  font-size: 1.6rem;
  color: var(--accent-deep);
}

.voice-counter-divider {
  flex: 1;
  height: 2px;
  background: rgba(13, 24, 39, 0.12);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.voice-counter-divider::after {
  position: absolute;
  inset: 0;
  width: var(--voice-progress, 0%);
  background: var(--accent);
  transition: width 480ms cubic-bezier(0.22, 1, 0.36, 1);
  content: "";
}

.voice-counter-total {
  font-size: 1rem;
  color: var(--muted);
}

/* =========================================================
   Message
   ========================================================= */

.message {
  padding: 140px 0;
  background: var(--paper);
}

.message-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.message-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink);
}

.message-portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 24, 39, 0.4) 100%);
  content: "";
}

.message-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-name {
  margin: 18px 0 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.message-lead {
  margin: 0 0 32px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--ink);
}

.message-body p {
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.94;
}

.message-signature {
  margin-top: 36px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem !important;
}

.message-signature strong {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.08rem;
  color: var(--ink);
}

/* =========================================================
   Numbers band
   ========================================================= */

.numbers {
  padding: 80px 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.numbers-item {
  text-align: center;
}

.numbers-label {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.numbers-value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.numbers-unit {
  font-size: 0.5em;
  margin-left: 4px;
  color: var(--accent-deep);
  font-weight: 700;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  padding: 140px 0;
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(100%, 880px);
  margin: 0 auto;
}

.faq-item {
  padding: 22px 28px;
  background: var(--paper-soft);
  border-radius: 14px;
  transition: background 240ms ease;
}

.faq-item[open] {
  background: var(--ink);
  color: #fff;
}

.faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
  font-family: var(--display);
  color: var(--accent-deep);
  font-size: 1.1rem;
  font-weight: 900;
}

.faq-item[open] .faq-q { color: var(--accent); }

.faq-question {
  font-weight: 800;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.6px;
  background: var(--ink);
  transform: translateY(-50%);
  transition: transform 240ms ease, background 240ms ease;
  content: "";
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--accent);
}

.faq-item[open] .faq-icon::after {
  transform: translateY(-50%) rotate(0);
}

.faq-answer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-answer p {
  margin: 0;
  padding-left: 38px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.86;
}

/* =========================================================
   Contact
   ========================================================= */

.contact {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 56px;
  align-items: stretch;
}

.contact-direct {
  padding: 48px 40px;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-direct-label {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-phone {
  display: inline-block;
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 240ms ease;
}

.contact-phone:hover { color: var(--accent); }

.contact-mail {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  word-break: break-all;
  transition: color 240ms ease;
}

.contact-mail:hover { color: var(--accent); }

.contact-direct-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-divider {
  margin: 32px 0;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form {
  padding: 48px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  gap: 18px;
}

.contact-form-label {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form span {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.contact-form em {
  font-style: normal;
  padding: 2px 8px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 212, 59, 0.18);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form-note {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  padding: 80px 0 32px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.footer-brand .brand-mark {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  line-height: 1.7;
}

.footer-col-label {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 200ms ease;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-contact li {
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-tagline {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   Reveal animation
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 880ms cubic-bezier(0.22, 1, 0.36, 1), transform 880ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

.about-visual-card,
.business-image,
.voice-image,
.message-portrait-frame {
  position: relative;
}

.about-visual-card::before,
.business-image::before,
.voice-image::before,
.message-portrait-frame::before {
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: 2;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1100ms cubic-bezier(0.77, 0, 0.18, 1);
  content: "";
  pointer-events: none;
}

.business-image::before {
  background: var(--accent);
}

.voice-image::before,
.message-portrait-frame::before {
  background: var(--ink);
}

.about-visual-card.is-revealed::before,
.business-image.is-revealed::before,
.voice-image.is-revealed::before,
.message-portrait-frame.is-revealed::before {
  transform: scaleX(0);
  transform-origin: left center;
}

.business-card {
  transform: translateY(0);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 480ms ease;
}

[data-count].is-counting {
  display: inline-block;
  animation: countPop 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes countPop {
  from { transform: scale(0.7); }
  to { transform: scale(1); }
}

.intern-deep-link {
  margin-top: 56px;
  text-align: center;
}

/* More-CTA bridge (index → details) */
.more-cta {
  padding: 120px clamp(28px, 6vw, 80px);
  background: linear-gradient(180deg, #f7f5ed 0%, #fff 100%);
  text-align: center;
}

.more-cta-inner {
  width: min(100%, 880px);
  margin: 0 auto;
}

.more-cta .eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.more-cta h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.more-cta > .more-cta-inner > p {
  margin: 0 auto 36px;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.more-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
}

.more-cta-links {
  list-style: none;
  margin: 0 auto;
  padding: 36px 0 0;
  border-top: 1px solid rgba(13, 24, 39, 0.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 32px;
  text-align: left;
  max-width: 720px;
}

.more-cta-links a {
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 200ms ease;
}

.more-cta-links a:hover { color: var(--accent-deep); }

.more-cta .btn.ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(13, 24, 39, 0.32);
}

.more-cta .btn.ghost:hover {
  background: rgba(13, 24, 39, 0.06);
  border-color: rgba(13, 24, 39, 0.55);
}

@media (max-width: 880px) {
  .more-cta { padding: 80px 22px; }
  .more-cta-actions { flex-direction: column; }
  .more-cta-links { grid-template-columns: 1fr; }
}

/* Deep-link clusters (business / career / skills) */
.business-deep-links,
.career-deep-links,
.skills-deep-links {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.92rem;
}

.business-deep-links a,
.career-deep-links a,
.skills-deep-links a {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.business-deep-links a:hover,
.career-deep-links a:hover,
.skills-deep-links a:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.skills-deep-links {
  justify-content: center;
  margin-top: 48px;
}

/* =========================================================
   Sub-page (intern detail page)
   ========================================================= */

body.subpage { background: var(--paper); }

.sub-hero {
  position: relative;
  min-height: 80vh;
  padding: calc(var(--header-h) + 100px) clamp(28px, 6vw, 80px) 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sub-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 24, 39, 0.55) 0%, rgba(13, 24, 39, 0.78) 60%, rgba(13, 24, 39, 0.92) 100%),
    radial-gradient(circle at 80% 30%, rgba(255, 212, 59, 0.35), transparent 60%);
}

.sub-hero-bg img,
.sub-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.sub-hero .eyebrow {
  display: inline-block;
  margin: 0 0 28px;
  padding: 7px 18px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 212, 59, 0.5);
  border-radius: 999px;
}

.sub-hero h1 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 960px;
}

.sub-hero h1 .accent-yellow { color: var(--accent); }

.sub-hero p {
  margin: 0 0 36px;
  max-width: 720px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.sub-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sub-hero .btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.sub-hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.breadcrumb {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 18px clamp(28px, 6vw, 80px);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(13, 24, 39, 0.06);
}

.breadcrumb a {
  color: var(--accent-deep);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb-sep { opacity: 0.4; }

.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.detail-section {
  padding: 100px clamp(28px, 6vw, 80px);
}

.detail-section.alt { background: #f7f5ed; }
.detail-section.dark { background: var(--ink); color: #fff; }
.detail-section.dark h2,
.detail-section.dark h3,
.detail-section.dark h4 { color: #fff; }
.detail-section.dark .eyebrow { color: var(--accent); }
.detail-section.dark p { color: rgba(255, 255, 255, 0.78); }
.detail-section.dark .faq-block summary { color: #fff; }
.detail-section.dark .faq-block details { border-bottom-color: rgba(255, 255, 255, 0.15); }
.detail-section.dark .faq-block details p { color: rgba(255, 255, 255, 0.82); }
.detail-section.dark .faq-block summary::after { color: var(--accent); }
.detail-section.dark .detail-card { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }
.detail-section.dark .detail-card h3 { color: #fff; }
.detail-section.dark .detail-card p { color: rgba(255, 255, 255, 0.72); }
.detail-section.dark .day-timeline li { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }
.detail-section.dark .day-time { color: var(--accent); }
.detail-section.dark .day-body h4 { color: #fff; }
.detail-section.dark .day-body p { color: rgba(255, 255, 255, 0.72); }

.section-head.single {
  width: min(100%, 1200px);
  margin: 0 auto 56px;
}

.section-head.single h2 {
  margin: 12px 0 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-head.single .eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.section-head.single p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.detail-grid {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.detail-card {
  position: relative;
  padding: 36px 28px 32px;
  background: #fff;
  border: 1px solid rgba(13, 24, 39, 0.06);
  border-radius: 18px;
  box-shadow: 0 18px 36px -22px rgba(13, 24, 39, 0.18);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -22px rgba(13, 24, 39, 0.24);
}

.detail-card > span {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(13, 24, 39, 0.18);
  margin-bottom: 14px;
  line-height: 1;
}

.detail-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--ink);
}

.detail-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* Day in the life timeline */
.day-timeline {
  width: min(100%, 880px);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}

.day-timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(13, 24, 39, 0.06);
  align-items: baseline;
}

.day-time {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--accent-deep);
}

.day-body h4 {
  margin: 0 0 6px;
  font-size: 1.04rem;
  font-weight: 900;
  color: var(--ink);
}

.day-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* FAQ list (sub-page) */
.faq-block {
  width: min(100%, 880px);
  margin: 0 auto;
}

.faq-block details {
  padding: 24px 0;
  border-bottom: 1px solid rgba(13, 24, 39, 0.1);
}

.faq-block summary {
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

.faq-block summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-deep);
  transition: transform 200ms ease;
}

.faq-block details[open] summary::after { content: "−"; }

.faq-block details p {
  margin: 14px 0 0;
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* Related pages cross-link */
.related-services {
  padding: 100px clamp(28px, 6vw, 80px);
  background: #f7f5ed;
}

.related-grid {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.related-card {
  position: relative;
  padding: 40px 32px;
  background: #fff;
  border-radius: 22px;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(13, 24, 39, 0.06);
  box-shadow: 0 18px 36px -22px rgba(13, 24, 39, 0.18);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
  display: block;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -22px rgba(13, 24, 39, 0.26);
}

.related-card .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.related-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 900;
}

.related-card p {
  margin: 0 0 18px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.related-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.related-card-arrow::after {
  content: "→";
  transition: transform 200ms ease;
}

.related-card:hover .related-card-arrow::after { transform: translateX(4px); }

.sub-cta {
  padding: 100px clamp(28px, 6vw, 80px);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.sub-cta h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.sub-cta h2 .accent-yellow { color: var(--accent); }

.sub-cta p {
  margin: 0 auto 32px;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.sub-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.sub-cta-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #fff;
  font-family: var(--display);
}

.sub-cta-tel span {
  font-size: 1.6rem;
  font-weight: 900;
}

.sub-cta-tel small {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}

.sub-cta-tel:hover span { color: var(--accent); }

.sub-footer {
  padding: 60px clamp(28px, 6vw, 80px) 40px;
  background: #0a121d;
  color: rgba(255, 255, 255, 0.65);
}

.sub-footer-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-footer h4 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.sub-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.sub-footer a {
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
}

.sub-footer a:hover { color: var(--accent); }

.sub-footer-brand strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.sub-footer-copyright {
  width: min(100%, 1200px);
  margin: 24px auto 0;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 880px) {
  .sub-hero {
    min-height: 70vh;
    padding: calc(var(--header-h) + 56px) 22px 56px;
  }
  .sub-hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .breadcrumb { padding: 14px 22px; }
  .detail-section { padding: 64px 22px; }
  .day-timeline li { grid-template-columns: 80px 1fr; gap: 16px; padding: 18px 20px; }
  .day-time { font-size: 1rem; }
  .related-services { padding: 64px 22px; }
  .sub-cta { padding: 64px 22px; }
  .sub-cta-actions { flex-direction: column; }
  .sub-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =========================================================
   Scroll-driven flourish (per-element --c-progress)
   ========================================================= */

.business-num {
  transform:
    scale(calc(0.6 + var(--c-progress, 0.5) * 1.6))
    translateX(calc((var(--c-progress, 0.5) - 0.5) * 90px))
    rotate(calc((var(--c-progress, 0.5) - 0.5) * -8deg));
  transform-origin: left bottom;
  opacity: calc(0.25 + var(--c-progress, 0.5) * 0.75);
  will-change: transform, opacity;
}

.business-image img {
  transform:
    scale(calc(1.0 + var(--c-progress, 0.5) * 0.18))
    translateY(calc((0.5 - var(--c-progress, 0.5)) * -4vh));
  will-change: transform;
}

.message-portrait-frame img {
  transform:
    scale(calc(1.04 + var(--c-progress, 0.5) * 0.14))
    translateY(calc((0.5 - var(--c-progress, 0.5)) * -3vh));
  will-change: transform;
}

.voice-card {
  translate: calc((0.5 - var(--c-progress, 0.5)) * 30px) 0;
  will-change: translate;
}

.career-callout {
  translate: 0 calc((0.5 - var(--c-progress, 0.5)) * -3vh);
  will-change: translate;
}

@media (max-width: 880px) {
  .business-num {
    transform:
      scale(calc(0.7 + var(--c-progress, 0.5) * 1.0))
      translateX(calc((var(--c-progress, 0.5) - 0.5) * 40px));
  }
  .business-image img,
  .message-portrait-frame img {
    transform: scale(calc(1.0 + var(--c-progress, 0.5) * 0.1));
  }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .nav { gap: 14px; }
  .nav a span { font-size: 0.72rem; }
  .header-cta span { font-size: 0.78rem; }

  .career-logos { grid-template-columns: repeat(3, 1fr); }
  .skills-grid { grid-template-columns: repeat(3, 1fr); }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .intern-stats { grid-template-columns: repeat(2, 1fr); }
  .intern-flow-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  :root { --header-h: 64px; }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 18px;
    gap: 8px;
  }

  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; }

  .brand-text small { display: none; }
  .brand-mark { width: 36px; height: 36px; font-size: 1rem; }
  .brand-text strong { font-size: 1rem; }

  .container { padding: 0 22px; }

  .hero {
    min-height: 92vh;
    padding: calc(var(--header-h) + 36px) 22px 120px;
  }

  .hero-eyebrow { margin-bottom: 22px; font-size: 0.7rem; letter-spacing: 0.18em; }
  .hero-eyebrow-line { width: 36px; }
  .hero-title { font-size: clamp(2rem, 10vw, 3.4rem); }
  .hero-sub { margin-top: 28px; font-size: 0.92rem; }
  .hero-actions { margin-top: 32px; gap: 10px; }
  .hero-actions .btn { padding: 14px 24px; min-height: 50px; font-size: 0.86rem; }

  .hero-meta {
    position: static;
    margin: 36px 0 0;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: flex-start;
  }
  .hero-meta-item { text-align: left; }

  .scroll-cue { display: none; }

  .marquee { padding: 16px 0; }
  .marquee-track { gap: 28px; }
  .marquee-track span:not(.marquee-dot) { font-size: 1.2rem; }

  .manifesto { height: 240vh; }
  .manifesto-pin { padding: 0 22px; }
  .manifesto-line {
    font-size: clamp(1.6rem, 9vw, 3rem);
    line-height: 1.12;
    gap: 0 8px;
  }
  .manifesto-pop {
    width: clamp(140px, 50vw, 240px);
    margin: 0 6px;
  }
  .manifesto-tag { right: 22px; bottom: 22px; font-size: 0.62rem; }
  .m-shape-1 { width: 90vw; height: 90vw; }
  .m-shape-2 { width: 90vw; height: 90vw; }
  .hero-curve { height: 70px; }

  .about, .business, .intern, .skills, .career, .voice, .message, .faq, .contact { padding: 80px 0; }
  .numbers { padding: 56px 0; }

  .section-head { margin-bottom: 40px; }
  .eyebrow { font-size: 0.7rem; }
  .section-head h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .section-lead { font-size: 0.92rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual-card.sm { width: 80%; margin-left: 20%; margin-top: -32px; }
  .about-lead { font-size: 1.04rem !important; }

  .business-stack { padding-bottom: 64px; }
  .business-card-pin { position: relative; top: auto !important; padding: 12px 0; }
  .business-card-inner,
  .business-card-pin.reverse .business-card-inner {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
    padding: 28px 22px;
    border-radius: 18px;
  }
  .business-num { font-size: 2.6rem; }
  .business-num-block { margin-bottom: 12px; gap: 10px; }
  .business-body h3 { font-size: clamp(1.5rem, 6vw, 1.9rem); }

  .intern-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 24px 0;
  }
  .intern-stat {
    border-right: 0;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
  }

  .intern-flow-list { grid-template-columns: 1fr; gap: 12px; }
  .intern-flow-list li { padding: 22px 20px; }

  .skills-grid { grid-template-columns: 1fr; gap: 12px; }
  .skill-card { padding: 26px 22px; }

  .career-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .career-logos li { aspect-ratio: 5 / 3; padding: 14px 18px; }
  .career-logos li.more span { font-size: 0.86rem; }

  .career-callout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 24px;
    text-align: center;
  }

  .voice-stage { grid-template-columns: 1fr; gap: 28px; }
  .voice-pinned { position: relative; top: auto; }
  .voice-rail { gap: 14px; }
  .voice-rail .voice-card { opacity: 1; transform: none; }
  .voice-image { aspect-ratio: 16 / 10; }
  .voice-body { padding: 24px 22px; }
  .voice-num { top: 14px; right: 22px; font-size: 0.7rem; }
  .voice-counter { display: none; }

  .message-grid { grid-template-columns: 1fr; gap: 32px; }
  .message-portrait-frame { aspect-ratio: 4 / 3; }
  .message-lead { font-size: clamp(1.2rem, 5.4vw, 1.6rem); }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .numbers-value { font-size: clamp(1.4rem, 7vw, 2rem); }

  .faq-item { padding: 18px 22px; }
  .faq-item summary { gap: 14px; font-size: 0.94rem; }
  .faq-question { font-size: 0.94rem; }
  .faq-answer p { padding-left: 0; font-size: 0.88rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-direct, .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-grid > :nth-child(4) { grid-column: auto; }
  .footer-bottom { flex-direction: column-reverse; align-items: flex-start; }
  .footer-tagline { font-size: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-line em { transform: none; }
  .hero-sub, .hero-actions, .hero-meta { opacity: 1; transform: none; }
}

/* ============================================================
   NEW SECTIONS — 2026-06-18 student-focused rewrite
   ============================================================ */

/* === Empathy section (replaces manifesto) === */
.empathy {
  background: var(--paper-warm);
  padding: 140px 32px;
  position: relative;
}
.empathy-pin {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.empathy-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 24px 0 56px;
}
.empathy-title em {
  font-style: normal;
  color: var(--red);
  font-weight: 900;
}
.empathy-body {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 2.2;
  color: var(--ink-soft);
  max-width: 640px;
}
.empathy-body p { margin: 0 0 28px; }
.empathy-body strong {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.32rem;
}
.empathy-close {
  margin-top: 56px !important;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.28rem !important;
  line-height: 2 !important;
}
.empathy-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .empathy { padding: 80px 20px; }
  .empathy-body { font-size: 1.05rem; line-height: 2; }
}

/* === Message section (代表メッセージ on top page) === */
.message-section {
  padding: 140px 32px;
  background: var(--paper);
}
.message-section .container { max-width: var(--container); margin: 0 auto; }
.message-section .message-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.message-section .message-portrait {
  position: sticky;
  top: 120px;
}
.message-section .message-portrait-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper-soft);
  box-shadow: var(--shadow-md);
}
.message-section .message-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.message-section .message-name {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-top: 20px;
  text-align: center;
}
.message-section .message-body {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 2.1;
  color: var(--ink-soft);
}
.message-section .message-lead {
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 32px;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
}
.message-section .message-body p { margin: 0 0 24px; }
.message-section .message-pull {
  background: var(--paper-warm);
  padding: 28px 32px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--ink) !important;
  line-height: 2.2 !important;
  margin: 32px 0 !important;
}
.message-section .message-signature {
  margin-top: 48px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8 !important;
}
.message-section .message-signature strong {
  font-family: var(--sans);
  font-size: 1.15rem;
  color: var(--ink);
}
@media (max-width: 960px) {
  .message-section { padding: 80px 20px; }
  .message-section .message-grid { grid-template-columns: 1fr; gap: 40px; }
  .message-section .message-portrait { position: static; max-width: 320px; margin: 0 auto; }
}

/* === Target section (こんな学生を募集) === */
.target {
  padding: 140px 32px;
  background: var(--ink);
  color: var(--paper);
}
.target .container { max-width: var(--container); margin: 0 auto; }
.target .section-head { color: var(--paper); }
.target .eyebrow { color: rgba(255, 255, 255, 0.6); }
.target h2 { color: var(--paper); }
.target h2 .accent { color: var(--accent); }
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.target-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.target-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: rgba(255, 212, 59, 0.05);
}
.target-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  line-height: 1;
}
.target-card h3 {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.55;
  margin: 0 0 20px;
  color: var(--paper);
}
.target-card p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
@media (max-width: 920px) {
  .target { padding: 80px 20px; }
  .target-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* === Experience section (5つの経験) === */
.experience {
  padding: 140px 32px;
  background: var(--paper);
}
.experience .container { max-width: var(--container); margin: 0 auto; }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.experience-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.experience-card-wide {
  grid-column: span 4;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
}
.experience-card-wide .experience-num { color: var(--accent); }
.experience-card-wide h3 { color: var(--paper); }
.experience-card-wide p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; }
.experience-num {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  line-height: 1;
}
.experience-card h3 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.55;
  margin: 0 0 16px;
  color: var(--ink);
}
.experience-card p {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 1024px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-card-wide { grid-column: span 2; grid-template-columns: 1fr; gap: 20px; padding: 36px 32px; }
}
@media (max-width: 600px) {
  .experience { padding: 80px 20px; }
  .experience-grid { grid-template-columns: 1fr; gap: 16px; }
  .experience-card-wide { grid-column: span 1; }
}

/* === MVV section === */
.mvv {
  padding: 140px 32px;
  background: var(--paper-soft);
}
.mvv .container { max-width: var(--container); margin: 0 auto; }
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
.mvv-card {
  background: var(--paper);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  border-top: 6px solid var(--accent);
}
.mvv-card.mvv-vision { border-top-color: var(--red); }
.mvv-label {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 700;
}
.mvv-card h3 {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.85;
  margin: 0;
  color: var(--ink);
}
.mvv-card h3 em {
  font-style: normal;
  background: linear-gradient(transparent 60%, var(--accent) 60%);
  font-weight: 900;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 72px;
  position: relative;
  padding-top: 56px;
}
.value-section-label {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  grid-column: span 5;
}
.value-card {
  background: var(--paper);
  border-radius: 6px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.value-num {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 800;
  margin: 0 0 12px;
}
.value-card h4 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.value-card p {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 1024px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mvv { padding: 80px 20px; }
  .value-grid { grid-template-columns: 1fr; }
}

/* === Related grid 4-column variant === */
.related-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .related-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .related-grid-4 { grid-template-columns: 1fr; }
}

/* === FV image (group photo fallback over video) === */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* When hero-image loads, hide the video underneath for static fallback */
.hero-image:not([style*="display: none"]) ~ .hero-video {
  opacity: 0;
}

/* ============================================================
   INTERN PAGE — 10-section student-focused (2026-06-18)
   ============================================================ */

.intern-hero { padding-bottom: 80px; }
.intern-lead {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255,255,255,0.92);
  max-width: 720px;
}

/* === 02 For You / target cards === */
.intern-target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.intern-target-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.intern-target-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.intern-target-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  line-height: 1;
}
.intern-target-card h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 0 14px;
  color: var(--ink);
}
.intern-target-card p {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .intern-target-grid { grid-template-columns: 1fr; }
}

/* === 03 5つの経験 === */
.intern-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.intern-exp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.intern-exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.intern-exp-wide {
  grid-column: span 4;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 32px;
  align-items: center;
  padding: 40px 48px;
}
.intern-exp-wide .intern-exp-num { color: var(--accent); }
.intern-exp-wide h3 { color: var(--paper); }
.intern-exp-wide p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.intern-exp-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  line-height: 1;
}
.intern-exp-card h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.18rem;
  line-height: 1.55;
  margin: 0 0 12px;
  color: var(--ink);
}
.intern-exp-card p {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 1024px) {
  .intern-experience-grid { grid-template-columns: repeat(2, 1fr); }
  .intern-exp-wide { grid-column: span 2; grid-template-columns: 1fr; gap: 16px; padding: 32px 28px; }
}
@media (max-width: 600px) {
  .intern-experience-grid { grid-template-columns: 1fr; }
  .intern-exp-wide { grid-column: span 1; }
}

/* === 04 成長ステップ === */
.step-flow {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  counter-reset: step 0;
}
.step-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 24px;
  position: relative;
  padding-left: 140px;
}
.step-item::before {
  content: '';
  position: absolute;
  left: 100px;
  top: -24px;
  width: 1px;
  height: 24px;
  background: var(--accent-deep);
}
.step-item:first-child::before { display: none; }
.step-mark {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.06em;
  background: var(--accent-soft);
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
}
.step-item h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.55;
  margin: 0 0 12px;
  color: var(--ink);
}
.step-item p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .step-item { padding: 80px 24px 28px; }
  .step-mark { left: 24px; top: 24px; transform: none; }
  .step-item::before { left: 50%; }
}

/* === 05 1日の流れ === */
.day-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.day-col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px;
}
.day-col-head {
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.day-col-label {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
}
.day-col-head h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
}
.day-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.day-flow li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.day-flow li:last-child { border-bottom: none; padding-bottom: 0; }
.day-flow-step {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
  line-height: 1;
}
.day-flow li h4 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.02rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.day-flow li p {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}
.day-note {
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 768px) {
  .day-split { grid-template-columns: 1fr; gap: 20px; }
}

/* === 06 サポート体制 === */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.support-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 4px;
  padding: 32px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.support-num {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--red);
  font-weight: 800;
  margin: 0 0 14px;
}
.support-card h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 14px;
  color: var(--ink);
}
.support-card p {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 920px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .support-grid { grid-template-columns: 1fr; }
}

/* === 07 募集要項テーブル === */
.req-table {
  margin-top: 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.req-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}
.req-row:last-child { border-bottom: none; }
.req-row dt {
  background: var(--paper-warm);
  padding: 24px 28px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  border-right: 1px solid var(--line);
}
.req-row dd {
  padding: 24px 28px;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.req-row dd small {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}
.req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.req-list li {
  position: relative;
  padding-left: 22px;
}
.req-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 2px;
  background: var(--accent-deep);
}
@media (max-width: 720px) {
  .req-row { grid-template-columns: 1fr; }
  .req-row dt { border-right: none; border-bottom: 1px solid var(--line); padding: 14px 20px; }
  .req-row dd { padding: 18px 20px; }
}

/* === 08 活動モデル === */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.model-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.model-card-mid { border-top: 4px solid var(--accent-deep); }
.model-card-high {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.model-card-high h3 { color: var(--paper); }
.model-card-high p { color: rgba(255,255,255,0.78); }
.model-card-high .model-week strong { color: var(--accent); }
.model-card-high .model-tags li {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.15);
}
.model-label {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 8px;
}
.model-week {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.model-week strong {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--red);
  vertical-align: -0.1em;
  margin: 0 4px;
}
.model-card h3 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 14px;
  color: var(--ink);
}
.model-card p {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.model-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.model-tags li {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--paper-warm);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 5px 12px;
}
.model-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 960px) {
  .model-grid { grid-template-columns: 1fr; }
}

/* === intern CTA === */
.intern-cta {
  text-align: center;
}
.intern-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.intern-cta-lead {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 2.1;
  color: rgba(255,255,255,0.92);
  margin: 24px 0 16px;
}

/* === FV image override (group photo from real shoot) === */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.04) saturate(1.04) brightness(0.85);
}
/* Reset opacity rule from earlier — single image now */
.hero-image:not([style*="display: none"]) ~ .hero-video { opacity: 1; }

/* ============================================================
   LSIGN POST 風刷新 (2026-06-19)
   - Tri-color: white + red + black
   - Big English impact titles + small JP subs
   - Image-overlay white sticker labels
   ============================================================ */

:root {
  --accent: #dc2626 !important;
  --accent-deep: #991b1b !important;
  --accent-soft: #fee2e2 !important;
  --red: #dc2626 !important;
  --ink: #0a0a0a !important;
  --paper-soft: #f5f5f7 !important;
}

/* ===== Tri-color Header (white/red/black) ===== */
.site-header {
  background: var(--paper) !important;
  border-bottom: none !important;
  height: 88px !important;
  display: grid !important;
  grid-template-columns: 1fr auto auto !important;
  align-items: stretch !important;
  padding: 0 !important;
  gap: 0 !important;
}
.site-header .brand {
  padding: 0 32px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: var(--paper) !important;
}
.site-header .brand-mark {
  background: var(--accent) !important;
  color: var(--paper) !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--display) !important;
  font-weight: 900 !important;
  font-size: 1.4rem !important;
  letter-spacing: 0 !important;
}
.site-header .brand-text strong {
  font-family: var(--display) !important;
  font-weight: 900 !important;
  font-size: 1.35rem !important;
  letter-spacing: 0.08em !important;
  color: var(--ink) !important;
}
.site-header .brand-text small {
  font-family: var(--sans) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
  color: #6b6b6b !important;
}
.site-header .nav {
  display: none !important;
}
@media (min-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto auto !important; }
  .site-header .nav {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
    padding: 0 32px !important;
    background: var(--paper) !important;
  }
  .site-header .nav a {
    font-family: var(--display) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.08em !important;
    color: var(--ink) !important;
    text-transform: uppercase !important;
    flex-direction: column !important;
    text-align: center !important;
  }
  .site-header .nav a small {
    font-family: var(--sans) !important;
    font-size: 0.65rem !important;
    color: #888 !important;
    letter-spacing: 0.04em !important;
    margin-top: 2px !important;
  }
  .site-header .nav a:hover, .site-header .nav a.is-active { color: var(--accent) !important; }
}

/* Red CONTACT block */
.header-cta {
  background: var(--accent) !important;
  color: var(--paper) !important;
  height: 88px !important;
  min-width: 180px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--display) !important;
  font-weight: 900 !important;
  font-size: 1rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  flex-direction: row !important;
  gap: 14px !important;
  padding: 0 36px !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  position: relative !important;
}
.header-cta::before {
  content: '—';
  font-weight: 400;
  margin-right: 4px;
}
.header-cta span {
  font-family: var(--display) !important;
  font-weight: 900 !important;
}
.header-cta small { display: none !important; }
.header-cta:hover {
  background: var(--accent-deep) !important;
  transform: none !important;
}

/* Black hamburger block */
.nav-toggle {
  background: #000 !important;
  width: 88px !important;
  height: 88px !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: column !important;
  gap: 6px !important;
  cursor: pointer !important;
  padding: 0 !important;
}
.nav-toggle span {
  display: block !important;
  width: 30px !important;
  height: 2px !important;
  background: var(--paper) !important;
  border-radius: 0 !important;
}

/* ===== HERO — Stacked image layout (LSIGN style) ===== */
.hero {
  min-height: auto !important;
  padding: 0 !important;
  background: var(--paper) !important;
  display: grid !important;
  grid-template-rows: auto auto !important;
  position: relative !important;
}
.hero .hero-bg {
  position: relative !important;
  z-index: 0 !important;
  height: auto !important;
  inset: auto !important;
}
.hero .hero-image {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 56vh !important;
  min-height: 380px !important;
  max-height: 600px !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  filter: contrast(1.02) brightness(0.95) !important;
}
.hero .hero-overlay { display: none !important; }
.hero .hero-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

/* Big white-block sticker title */
.hero-eyebrow { display: none !important; }
.hero-title {
  margin: 0 0 0 0 !important;
  font-family: var(--display) !important;
  font-weight: 900 !important;
  font-size: clamp(2.6rem, 8vw, 6rem) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
  padding: 0 !important;
}
.hero-title .hero-line {
  background: var(--paper) !important;
  color: var(--ink) !important;
  display: inline-block !important;
  padding: 14px 28px 8px !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}
.hero-title .hero-line em {
  font-style: normal !important;
  color: var(--ink) !important;
  font-family: var(--display) !important;
  font-weight: 900 !important;
}
@media (max-width: 720px) {
  .hero-title .hero-line { padding: 10px 18px 6px !important; }
}

/* Second hero stack (sub image + tagline block) */
.hero-meta {
  position: relative !important;
  display: block !important;
  background: var(--ink) !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 34vh !important;
  min-height: 280px !important;
  max-height: 380px !important;
  width: 100% !important;
  background-image: url('assets/biz-sales-2.jpg') !important;
  background-size: cover !important;
  background-position: center 40% !important;
}
.hero-meta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-meta::after {
  content: '大学生活を、将来の選択肢に変える。';
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  padding: 14px 22px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.hero-meta-item { display: none !important; }
.hero-sub, .hero-actions {
  position: absolute !important;
  z-index: 3 !important;
  left: 28px !important;
}
.hero-sub {
  display: none !important;
}
.hero-actions {
  bottom: 28px !important;
  right: 28px !important;
  left: auto !important;
  display: flex !important;
  gap: 12px !important;
}
@media (max-width: 720px) {
  .hero-actions { position: relative !important; padding: 20px !important; background: var(--ink) !important; bottom: auto !important; right: auto !important; left: auto !important; }
}

.hero .scroll-cue, .hero .hero-curve, .marquee { display: none !important; }

/* ===== Buttons — red filled + black ghost ===== */
.btn {
  border-radius: 0 !important;
  font-family: var(--display) !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  padding: 16px 32px !important;
  text-transform: uppercase !important;
  border: none !important;
  font-size: 0.92rem !important;
}
.btn.primary {
  background: var(--accent) !important;
  color: var(--paper) !important;
  box-shadow: none !important;
}
.btn.primary:hover { background: var(--accent-deep) !important; }
.btn.ghost {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
}
.btn.ghost:hover { background: var(--ink) !important; color: var(--paper) !important; }

/* ===== Section heads — big red English + small JP ===== */
.section-head .eyebrow,
.detail-section .section-head .eyebrow {
  font-family: var(--display) !important;
  font-size: clamp(3rem, 8vw, 6rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  color: var(--accent) !important;
  margin: 0 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}
.section-head .eyebrow span {
  display: inline !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  vertical-align: super !important;
  margin-right: 12px !important;
}
.section-head h2 {
  font-family: var(--sans) !important;
  font-weight: 900 !important;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
  color: var(--ink) !important;
  margin: 20px 0 24px !important;
  letter-spacing: 0.04em !important;
  line-height: 1.6 !important;
}
.section-head h2 .accent, .section-head h2 em {
  color: var(--accent) !important;
  font-style: normal !important;
  background: none !important;
}

/* ===== Section image overlay labels (LSIGN style) ===== */
.business-card-pin .business-image {
  position: relative !important;
}
.business-card-pin .business-image::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.25rem;
  padding: 16px 28px;
  letter-spacing: 0.06em;
}
.business-card-pin:nth-of-type(1) .business-image::after { content: '光回線 訪問販売'; }
.business-card-pin:nth-of-type(2) .business-image::after { content: '不動産仲介'; }
.business-card-pin .business-tag {
  font-family: var(--display) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.2em !important;
  color: var(--accent) !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
}
.business-card-pin h3 {
  font-family: var(--sans) !important;
  font-weight: 900 !important;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
  color: var(--ink) !important;
  letter-spacing: 0.04em !important;
}
.business-card-pin .business-num,
.business-card-pin .business-num-pre {
  color: var(--accent) !important;
  font-family: var(--display) !important;
  font-weight: 900 !important;
}

/* ===== Empathy section — restyle (white blocks on dark) ===== */
.empathy {
  background: var(--ink) !important;
  color: var(--paper) !important;
}
.empathy-title { color: var(--paper) !important; }
.empathy-title em { color: var(--accent) !important; }
.empathy-body { color: rgba(255,255,255,0.85) !important; }
.empathy-body strong { color: var(--paper) !important; }
.empathy-close { color: var(--paper) !important; border-top-color: rgba(255,255,255,0.2) !important; }
.empathy-tag { color: rgba(255,255,255,0.5) !important; }

/* ===== About — Big English title style consistency ===== */
.about { background: var(--paper) !important; }
.about-points li strong {
  background: var(--accent) !important;
  color: var(--paper) !important;
  font-family: var(--display) !important;
}

/* ===== Message section ===== */
.message-section { background: var(--paper-soft) !important; }
.message-lead {
  border-left-color: var(--accent) !important;
  color: var(--ink) !important;
}
.message-pull { background: var(--paper) !important; }

/* ===== Target / Experience / MVV — Red accents ===== */
.target { background: var(--ink) !important; }
.target h2 .accent { color: var(--accent) !important; }
.target-num { color: var(--accent) !important; }
.target-card:hover { border-color: var(--accent) !important; background: rgba(220,38,38,0.05) !important; }

.experience { background: var(--paper) !important; }
.experience-num { color: var(--accent) !important; }
.experience-card-wide { background: var(--ink) !important; }
.experience-card:hover { border-color: var(--accent) !important; }

.mvv { background: var(--paper-soft) !important; }
.mvv-card { border-top-color: var(--accent) !important; }
.mvv-vision { border-top-color: var(--ink) !important; }
.mvv-card h3 em { background: linear-gradient(transparent 60%, var(--accent-soft) 60%) !important; }
.value-num { color: var(--accent) !important; }
.value-card:hover { border-color: var(--accent) !important; }

/* ===== Sub-hero (intern.html FV) — LSIGN-style image + sticker ===== */
.sub-hero {
  background: var(--paper) !important;
  padding: 0 !important;
  min-height: auto !important;
  position: relative !important;
}
.sub-hero-bg {
  position: relative !important;
  width: 100% !important;
  height: 60vh !important;
  min-height: 400px !important;
  max-height: 640px !important;
}
.sub-hero-bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  filter: contrast(1.02) brightness(0.92) !important;
}
.sub-hero-inner {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  padding: 40px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  z-index: 2 !important;
}
.sub-hero-inner .eyebrow {
  background: var(--accent) !important;
  color: var(--paper) !important;
  padding: 8px 18px !important;
  font-family: var(--display) !important;
  font-weight: 900 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
  margin-bottom: 18px !important;
}
.sub-hero-inner h1 {
  background: var(--paper) !important;
  color: var(--ink) !important;
  padding: 18px 32px !important;
  font-family: var(--sans) !important;
  font-weight: 900 !important;
  font-size: clamp(1.6rem, 4vw, 3rem) !important;
  letter-spacing: 0.04em !important;
  line-height: 1.5 !important;
  margin: 0 0 18px !important;
  text-shadow: none !important;
}
.sub-hero-inner h1 .accent-yellow {
  color: var(--accent) !important;
  background: none !important;
}
.intern-lead, .sub-hero-inner > p {
  background: rgba(0,0,0,0.7) !important;
  color: var(--paper) !important;
  padding: 14px 22px !important;
  font-family: var(--sans) !important;
  font-size: 0.92rem !important;
  line-height: 1.85 !important;
  margin: 0 0 18px !important;
  max-width: 720px !important;
}

/* ===== Intern detail sections — big english headers ===== */
.detail-section {
  padding: 120px 32px !important;
  background: var(--paper) !important;
}
.detail-section.alt { background: var(--paper-soft) !important; }
.detail-section.dark { background: var(--ink) !important; color: var(--paper) !important; }
.detail-section.dark .section-head h2, .detail-section.dark h3 { color: var(--paper) !important; }
.detail-section.dark .section-head p { color: rgba(255,255,255,0.78) !important; }

/* ===== FAQ — restyle ===== */
.faq-block details {
  border: none !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  padding: 20px 0 !important;
  background: transparent !important;
}
.intern-faq .faq-block details { border-bottom-color: rgba(255,255,255,0.15) !important; }
.faq-block summary {
  font-family: var(--sans) !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  position: relative !important;
  padding-right: 40px !important;
}
.faq-block summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
  font-size: 1.6rem;
}
.faq-block details[open] summary::after { content: '−'; }

/* ===== Sub footer ===== */
.sub-footer, .site-footer {
  background: var(--ink) !important;
  color: var(--paper) !important;
}

/* ===== Mobile nav — black overlay ===== */
.mobile-nav { background: var(--ink) !important; }
.mobile-nav ul a strong { color: var(--paper) !important; }
.mobile-nav ul a span { color: rgba(255,255,255,0.55) !important; }
.mobile-nav-cta { background: var(--accent) !important; color: var(--paper) !important; }

/* ===== More CTA ===== */
.more-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
}
.more-cta h2, .more-cta p, .more-cta .eyebrow { color: var(--paper) !important; }
.more-cta h2 .accent-yellow { color: var(--accent) !important; background: none !important; }

/* ===== Marquee replaced ===== */
.marquee { display: none !important; }

/* ===== Sub CTA / intern-cta ===== */
.sub-cta, .intern-cta {
  background: var(--accent) !important;
  color: var(--paper) !important;
  padding: 100px 32px !important;
  text-align: center !important;
}
.sub-cta h2, .intern-cta h2 { color: var(--paper) !important; }
.sub-cta h2 .accent-yellow, .intern-cta h2 .accent-yellow {
  background: var(--paper) !important;
  color: var(--accent) !important;
  padding: 4px 16px !important;
}
.sub-cta-tel { color: var(--paper) !important; }

/* ===== Breadcrumb ===== */
.breadcrumb { background: var(--paper-soft) !important; padding: 14px 32px !important; }
.breadcrumb a { color: var(--accent) !important; font-weight: 700 !important; }

/* ===== Footer accents ===== */
.footer-tagline { color: var(--accent) !important; font-weight: 900 !important; letter-spacing: 0.14em !important; }

/* ============================================================
   FV REDO — Clean LSIGN POST stack (2026-06-19 v2)
   ============================================================ */

/* Reset all previous hero overrides */
.hero, .hero-bg, .hero-image, .hero-meta, .hero-content {
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
}
.hero, .hero-meta { display: none !important; }

/* New clean stacked hero */
.hero-stack {
  display: block;
  background: var(--paper);
  margin: 0;
  padding: 0;
}
.hero-stack-top, .hero-stack-bottom {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-stack-top {
  height: 64vh;
  min-height: 460px;
  max-height: 720px;
}
.hero-stack-bottom {
  height: 36vh;
  min-height: 280px;
  max-height: 420px;
}
.hero-stack-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: contrast(1.02) brightness(0.94);
}
.hero-stack-bottom .hero-stack-img {
  object-position: center 38%;
  filter: contrast(1.02) brightness(0.78);
}

/* Big white sticker title — LSIGN POST style */
.hero-stack-title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--display);
}
.hero-stack-title span {
  display: inline-block;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 28px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* Bottom tagline + CTA */
.hero-stack-tagline {
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 2;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 22px 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.04em;
}
.hero-stack-actions {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

@media (max-width: 720px) {
  .hero-stack-top { height: auto; min-height: 380px; max-height: 560px; aspect-ratio: 4 / 5; }
  .hero-stack-bottom { height: auto; min-height: 320px; max-height: 480px; aspect-ratio: 4 / 5; }
  .hero-stack-title { left: 18px; bottom: 24px; gap: 6px; }
  .hero-stack-title span { padding: 9px 18px 6px; font-size: clamp(1.3rem, 5.5vw, 2rem); }
  .hero-stack-tagline { left: 18px; top: 24px; padding: 9px 16px 6px; font-size: clamp(0.95rem, 3.5vw, 1.2rem); }
  .hero-stack-actions { left: 18px; right: 18px; bottom: 24px; justify-content: stretch; }
  .hero-stack-actions .btn { flex: 1; padding: 14px 12px; font-size: 0.78rem; }
}

/* ============================================================
   FIXES (2026-06-19 v3) — issues found via Playwright
   ============================================================ */

/* === FIX 1: Target section h2 was black-on-black === */
.target h2,
.target .section-head h2,
.target #target-title {
  color: var(--paper) !important;
}

/* === FIX 2: Empathy eyebrow — make BIG red LSIGN style === */
.empathy .eyebrow {
  font-family: var(--display) !important;
  font-size: clamp(3rem, 8vw, 6rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  color: var(--accent) !important;
  margin: 0 0 24px !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  display: block !important;
}
.empathy .eyebrow span {
  display: inline !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  vertical-align: super !important;
  margin-right: 12px !important;
}
.empathy-tag {
  display: none !important;
}

/* === FIX 3: Business image red overlay label === */
.business-card-pin .business-image {
  position: relative !important;
  overflow: hidden !important;
}
.business-card-pin .business-image img {
  position: relative !important;
  z-index: 1 !important;
}
.business-card-pin .business-image::after {
  content: '';
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  background: var(--accent) !important;
  color: var(--paper) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.4rem !important;
  padding: 16px 32px !important;
  letter-spacing: 0.06em !important;
  z-index: 5 !important;
  display: block !important;
  line-height: 1.2 !important;
}
.business-stack > .business-card-pin:nth-of-type(1) .business-image::after,
.business-stack [data-business-item]:nth-of-type(1) .business-image::after {
  content: '光回線 訪問販売' !important;
}
.business-stack > .business-card-pin:nth-of-type(2) .business-image::after,
.business-stack [data-business-item]:nth-of-type(2) .business-image::after {
  content: '不動産仲介' !important;
}

/* === FIX 4: Activity Model C — dark card text contrast === */
.model-card-high {
  background: var(--ink) !important;
  color: var(--paper) !important;
  border-color: var(--ink) !important;
}
.model-card-high .model-label {
  color: rgba(255,255,255,0.6) !important;
}
.model-card-high .model-week {
  color: rgba(255,255,255,0.92) !important;
}
.model-card-high .model-week strong {
  color: var(--accent) !important;
}
.model-card-high h3 {
  color: var(--paper) !important;
}
.model-card-high p {
  color: rgba(255,255,255,0.82) !important;
}
.model-card-high .model-tags li {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* === FIX 5: Dark sections (FAQ) — section eyebrow red, h2 white === */
.detail-section.dark .section-head .eyebrow {
  color: var(--accent) !important;
}
.detail-section.dark .section-head h2,
.detail-section.dark h2,
.detail-section.dark h3,
.detail-section.dark h4,
.detail-section.dark summary {
  color: var(--paper) !important;
}
.detail-section.dark .faq-block p {
  color: rgba(255,255,255,0.85) !important;
}

/* === FIX 6: Requirement giant title — slightly more reasonable on big screens === */
.detail-section .section-head .eyebrow {
  font-size: clamp(2.5rem, 7vw, 5rem) !important;
}

/* === FIX 7: Intern hero CTA buttons visibility === */
.sub-hero-inner .hero-actions {
  position: relative !important;
  background: rgba(0,0,0,0.7) !important;
  padding: 14px 20px !important;
  margin: 0 !important;
  left: auto !important;
  bottom: auto !important;
  display: inline-flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}
.sub-hero-inner .hero-actions .btn {
  padding: 14px 20px !important;
  font-size: 0.78rem !important;
}

/* === FIX 8: Section padding — reduce massive top spacing === */
.target, .experience, .mvv, .business, .message-section, .about {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.detail-section {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
@media (max-width: 768px) {
  .target, .experience, .mvv, .business, .message-section, .about,
  .detail-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}

/* === FIX 9: Section eyebrow on dark — empathy h2 also white === */
.empathy h2, .empathy-title { color: var(--paper) !important; }

/* === FIX 10: Business label as explicit span === */
.business-image {
  position: relative !important;
  overflow: hidden !important;
}
.biz-label {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 5 !important;
  background: var(--accent) !important;
  color: var(--paper) !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  font-size: 1.5rem !important;
  padding: 18px 36px !important;
  letter-spacing: 0.06em !important;
  display: block !important;
  line-height: 1.2 !important;
}
@media (max-width: 720px) {
  .biz-label { font-size: 1.1rem !important; padding: 12px 22px !important; }
}

/* === FIX 11: Hide the legacy business-tag (now redundant) === */
.business-tag { display: none !important; }

/* ============================================================
   FIX 12: Mobile header — fit MARLY brand properly (v5)
   ============================================================ */
@media (max-width: 720px) {
  .site-header {
    height: 64px !important;
  }
  .site-header .brand {
    padding: 0 14px !important;
    gap: 10px !important;
  }
  .site-header .brand-mark {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
  }
  .site-header .brand-text strong {
    font-size: 1rem !important;
    letter-spacing: 0.06em !important;
  }
  .site-header .brand-text small {
    display: none !important;
  }
  .header-cta {
    height: 64px !important;
    min-width: 0 !important;
    padding: 0 18px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.12em !important;
  }
  .header-cta::before { display: none !important; }
  .nav-toggle {
    width: 64px !important;
    height: 64px !important;
  }
  .nav-toggle span {
    width: 22px !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand {
    padding: 0 10px !important;
    gap: 8px !important;
  }
  .site-header .brand-mark {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }
  .site-header .brand-text strong {
    font-size: 0.9rem !important;
  }
  .header-cta {
    padding: 0 12px !important;
    font-size: 0.68rem !important;
  }
  .nav-toggle { width: 56px !important; }
}

/* ============================================================
   FIX 13: Single-image FV + hide desktop hamburger (v6)
   ============================================================ */

/* Hide the previous 2-stack rules */
.hero-stack-top, .hero-stack-bottom { display: none !important; }

.hero-stack-single {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  max-height: 880px;
  overflow: hidden;
}
.hero-stack-single .hero-stack-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.02) brightness(0.88);
}
.hero-stack-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.hero-stack-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 0 56px 0;
  gap: 0;
}
.hero-stack-overlay .hero-stack-title {
  position: static;
  left: auto;
  bottom: auto;
  margin: 0 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
}
.hero-stack-overlay .hero-stack-title span {
  display: inline-block;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 28px 10px;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.hero-stack-overlay .hero-stack-tagline {
  position: static;
  left: auto;
  top: auto;
  margin: 0 40px 28px;
  background: var(--accent);
  color: var(--paper);
  padding: 12px 24px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(0.95rem, 1.7vw, 1.3rem);
  letter-spacing: 0.04em;
}
.hero-stack-overlay .hero-stack-actions {
  position: static;
  right: auto;
  bottom: auto;
  margin: 0 40px;
  display: flex;
  gap: 14px;
}
@media (max-width: 720px) {
  .hero-stack-single {
    height: 78vh;
    min-height: 500px;
    max-height: 720px;
  }
  .hero-stack-overlay { padding: 0 0 28px 0; }
  .hero-stack-overlay .hero-stack-title { margin: 0 18px 14px; gap: 6px; }
  .hero-stack-overlay .hero-stack-title span {
    padding: 9px 18px 6px;
    font-size: clamp(1.3rem, 5.5vw, 2rem);
  }
  .hero-stack-overlay .hero-stack-tagline {
    margin: 0 18px 18px;
    padding: 9px 16px 6px;
    font-size: clamp(0.92rem, 3.5vw, 1.1rem);
  }
  .hero-stack-overlay .hero-stack-actions {
    margin: 0 18px;
    flex-direction: row;
  }
  .hero-stack-overlay .hero-stack-actions .btn {
    flex: 1;
    padding: 14px 12px;
    font-size: 0.78rem;
  }
}

/* === FIX 14: Hide hamburger on desktop (redundant when nav shown) === */
@media (min-width: 1100px) {
  .nav-toggle { display: none !important; }
  .site-header {
    grid-template-columns: auto 1fr auto !important;
  }
}

/* ============================================================
   FIX 15: Sub-hero subpages (career/message/voice) — LSIGN big red title (v7)
   ============================================================ */
.sub-hero {
  position: relative !important;
  width: 100% !important;
  height: 78vh !important;
  min-height: 540px !important;
  max-height: 760px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--ink) !important;
}
.sub-hero .sub-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
}
.sub-hero .sub-hero-bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 30% !important;
  filter: contrast(1.02) brightness(0.85) !important;
}
.sub-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.05) 25%,
    rgba(0,0,0,0.6) 100%
  );
}
.sub-hero .sub-hero-inner {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
  inset: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  padding: 40px 40px 56px 40px !important;
  max-width: none !important;
}
.sub-hero-eyebrow {
  font-family: var(--display) !important;
  font-size: clamp(3rem, 9vw, 7rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  color: var(--accent) !important;
  margin: 0 0 24px 0 !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
  background: transparent !important;
  padding: 0 !important;
}
.sub-hero h1,
.sub-hero .sub-hero-inner h1 {
  background: var(--paper) !important;
  color: var(--ink) !important;
  padding: 14px 28px 10px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(1.4rem, 3.5vw, 2.5rem) !important;
  letter-spacing: 0.04em !important;
  line-height: 1.5 !important;
  margin: 0 0 18px 0 !important;
  display: inline-block !important;
  text-shadow: none !important;
  max-width: none !important;
}
.sub-hero-lead {
  background: rgba(0,0,0,0.65) !important;
  color: var(--paper) !important;
  padding: 14px 22px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  margin: 0 0 22px 0 !important;
  max-width: 680px !important;
  display: inline-block !important;
}
.sub-hero .hero-actions {
  display: flex !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  flex-wrap: wrap !important;
}
.sub-hero .hero-actions .btn {
  padding: 14px 26px !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.1em !important;
}

@media (max-width: 720px) {
  .sub-hero {
    height: auto !important;
    min-height: 460px !important;
    max-height: 640px !important;
  }
  .sub-hero .sub-hero-inner {
    padding: 24px 18px 32px 18px !important;
  }
  .sub-hero-eyebrow {
    font-size: clamp(2.4rem, 12vw, 4rem) !important;
    margin-bottom: 14px !important;
  }
  .sub-hero h1 {
    padding: 10px 18px 7px !important;
    font-size: clamp(1.1rem, 5vw, 1.6rem) !important;
    margin-bottom: 14px !important;
  }
  .sub-hero-lead {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    margin-bottom: 16px !important;
  }
  .sub-hero .hero-actions .btn {
    flex: 1;
    padding: 13px 14px !important;
    font-size: 0.74rem !important;
  }
}

/* ============================================================
   FIX 16: Sub-hero specificity — override `.sub-hero-inner > p` (v8)
   ============================================================ */
.sub-hero .sub-hero-inner > p.sub-hero-eyebrow {
  font-family: var(--display) !important;
  font-size: clamp(3rem, 9vw, 7rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  color: var(--accent) !important;
  margin: 0 0 24px 0 !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
  background: transparent !important;
  padding: 0 !important;
  display: block !important;
  max-width: none !important;
}
.sub-hero .sub-hero-inner > p.sub-hero-lead {
  background: rgba(0,0,0,0.65) !important;
  color: var(--paper) !important;
  padding: 14px 22px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.85 !important;
  margin: 0 0 22px 0 !important;
  max-width: 680px !important;
  display: inline-block !important;
}

@media (max-width: 720px) {
  .sub-hero .sub-hero-inner > p.sub-hero-eyebrow {
    font-size: clamp(2.4rem, 12vw, 4rem) !important;
    margin-bottom: 14px !important;
  }
  .sub-hero .sub-hero-inner > p.sub-hero-lead {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    margin-bottom: 16px !important;
  }
}

/* === MOBILE POLISH 2026-06-20 === */
/* Append-only. Targets 390-480px primary, 720px secondary. */
/* Goal: fix invisible content, button stacking, oversized padding, footer */

/* ---------- A. REVEAL FALLBACK (kill opacity gate on mobile) ---------- */
@media (max-width: 768px) {
  .reveal,
  .message-body,
  .message-body.reveal,
  .message-lead,
  .contact-direct,
  .contact-direct.reveal,
  .contact-form,
  .contact-form.reveal,
  .voice-pinned,
  .voice-card.featured,
  .voice-image {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  .message-portrait-frame::before {
    transform: scaleX(0) !important;
  }
}

/* ---------- B. SUB-HERO UNIFIED OVERLAY (all sub-pages) ---------- */
@media (max-width: 720px) {
  .sub-hero {
    min-height: 520px;
    max-height: 640px;
    display: flex;
    align-items: flex-start;
  }
  .sub-hero .sub-hero-inner {
    padding: calc(var(--header-h, 64px) + 56px) 18px 32px !important;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sub-hero-eyebrow,
  .sub-hero .sub-hero-inner > p.sub-hero-eyebrow {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    margin: 0 0 14px !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    padding-top: 0 !important;
  }
  .sub-hero h1,
  .sub-hero .sub-hero-inner h1 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 16px 10px !important;
    font-size: 1.1rem !important;
    line-height: 1.55 !important;
    letter-spacing: 0.02em !important;
  }
  .sub-hero h1 br { display: none; }
  .sub-hero-lead,
  .sub-hero .sub-hero-inner > p.sub-hero-lead {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 14px !important;
    font-size: 0.82rem !important;
    line-height: 1.75 !important;
    background: rgba(0, 0, 0, 0.65) !important;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .sub-hero .sub-hero-bg img {
    object-position: center 35%;
    filter: contrast(1.05) brightness(0.92) !important;
  }
  .sub-hero-bg::after {
    background: linear-gradient(180deg,
      rgba(13, 24, 39, 0.35) 0%,
      rgba(13, 24, 39, 0.55) 60%,
      rgba(13, 24, 39, 0.82) 100%) !important;
  }
}

/* ---------- C. ALL HERO/SUB-HERO/CTA BUTTON STACKS ---------- */
@media (max-width: 480px) {
  .sub-hero .hero-actions,
  .hero-actions,
  .hero-stack-actions,
  .hero-stack-overlay .hero-stack-actions,
  .sub-cta-actions,
  .more-cta .more-cta-actions,
  .intern-cta .sub-cta-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100%;
  }
  .sub-hero .hero-actions .btn,
  .hero-actions .btn,
  .hero-stack-actions .btn,
  .hero-stack-overlay .hero-stack-actions .btn,
  .sub-cta-actions .btn,
  .more-cta .more-cta-actions .btn {
    flex: none !important;
    width: 100% !important;
    min-height: 52px;
    padding: 14px 18px !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
    text-align: center;
  }
  /* Index: hero stack tagline + buttons context */
  .hero-stack-overlay {
    padding: 0 0 36px 0;
  }
}

/* ---------- D. HEADER / BRAND ---------- */
@media (max-width: 480px) {
  .site-header {
    padding: 0 14px;
    gap: 6px;
  }
  .brand-text strong { font-size: 1rem; }
  .brand-text small,
  .header-cta small { display: none; }
  .brand-mark { width: 32px; height: 32px; }
  .header-cta {
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

/* ---------- E. BREADCRUMB ---------- */
@media (max-width: 480px) {
  .breadcrumb {
    padding: 12px 20px;
    font-size: 0.78rem;
    gap: 6px;
  }
  .breadcrumb-sep {
    font-size: 0.7em;
    opacity: 0.4;
    margin: 0 4px;
  }
}

/* ---------- F. SECTION PADDING SHRINK ---------- */
@media (max-width: 720px) {
  .detail-section,
  .message,
  .career,
  .faq,
  .contact,
  .voice,
  .empathy {
    padding: 56px 18px !important;
  }
  .related-services {
    padding: 48px 18px 56px !important;
  }
  .more-cta {
    padding: 56px 22px !important;
  }
  .section-head { margin-bottom: 28px; }
  .section-head h2 br { display: none; }
  .section-head .eyebrow { font-size: 0.72rem; }
  .section-head h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.45;
  }
}

/* Even tighter on small phones */
@media (max-width: 480px) {
  .detail-section,
  .message,
  .career,
  .faq,
  .contact,
  .voice {
    padding: 48px 18px !important;
  }
}

/* ---------- G. INDEX — HERO STACK / BUSINESS PIN ---------- */
@media (max-width: 720px) {
  /* Hero image crop */
  .hero-stack-single {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 3/4;
  }
  .hero-stack-single .hero-stack-img {
    object-position: center 18%;
  }
  /* Hero title unified block */
  .hero-stack-overlay .hero-stack-title {
    display: inline-block;
    background: var(--paper);
    padding: 14px 18px;
    gap: 0;
  }
  .hero-stack-overlay .hero-stack-title span {
    background: transparent !important;
    padding: 0 !important;
    display: block;
  }
  /* Business pin kill */
  .business-stack {
    padding-bottom: 0;
    min-height: 0 !important;
    height: auto !important;
  }
  .business-card-pin {
    position: static !important;
    top: auto !important;
    height: auto !important;
    padding: 16px 0;
    margin: 0 0 24px;
  }
  [data-business-stack] { display: block; }
  /* About visuals */
  .about-visual { gap: 16px; }
  .about-visual-card.sm {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
  /* Business deep links */
  .business-num { font-size: 2.2rem; }
  .business-deep-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .business-deep-links a { display: block; }
}

@media (max-width: 480px) {
  /* Empathy */
  .empathy-title {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    line-height: 1.45;
    margin-bottom: 24px;
  }
  .empathy-pin { padding: 0 4px; }
}

/* ---------- H. CAREER — LOGOS + CALLOUT VISIBILITY ---------- */
@media (max-width: 720px) {
  .career {
    background: var(--paper) !important;
    color: var(--ink) !important;
    padding: 56px 0 !important;
  }
  .career .container { padding: 0 22px !important; }
  .career .section-head.light .eyebrow,
  .career .section-head.light h2,
  .career .section-lead.light {
    color: var(--ink) !important;
  }
  .career-logos {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
    padding: 0;
    list-style: none;
  }
  .career-logos li {
    min-height: 90px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }
  .career-callout {
    background: #fff !important;
    color: var(--ink) !important;
    padding: 28px 22px !important;
    border-radius: 16px;
    margin: 24px 0 0;
  }
  .career-callout-num {
    color: var(--accent-deep);
    font-size: 3.2rem;
  }
  /* White-on-white invisibility fix: h3/p had color:#fff for dark backgrounds */
  .career-callout-body h3 {
    color: var(--ink) !important;
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
    margin: 0 0 12px !important;
  }
  .career-callout-body p {
    color: rgba(13, 24, 39, 0.72) !important;
    font-size: 0.88rem !important;
    line-height: 1.85 !important;
  }
  .career-callout-body .career-deep-links {
    margin-top: 18px !important;
  }
}

@media (max-width: 480px) {
  .career .section-head h2 {
    font-size: 1.4rem;
  }
}

/* ---------- I. VOICE — FEATURED CARD + DUPLICATE TITLE ---------- */
@media (max-width: 720px) {
  .voice-pinned,
  .voice-card.featured {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .voice-stage { min-height: 0 !important; }
  .voice .section-head .eyebrow {
    font-size: 0.7rem;
    color: var(--accent-deep);
  }
  .voice #voice-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .voice-body h3 {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .voice-body blockquote {
    font-size: 0.86rem;
    line-height: 1.8;
  }
  .voice-num {
    font-size: 0.78rem;
    opacity: 0.6;
    letter-spacing: 0.18em;
    font-weight: 700;
  }
}

/* ---------- J. MESSAGE — PORTRAIT + LEAD ---------- */
@media (max-width: 768px) {
  .message-portrait-frame {
    aspect-ratio: 3/4;
    max-width: 260px;
    margin: 0 auto;
  }
  .message-portrait-frame img {
    object-position: center 20%;
  }
}

@media (max-width: 480px) {
  .message-lead {
    padding-left: 14px;
    border-left-width: 3px;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
    line-height: 1.55;
  }
  .section-head .eyebrow {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .section-head .eyebrow span {
    font-size: 0.9rem !important;
    opacity: 0.6;
  }
}

/* ---------- K. FAQ — VISIBLE CARDS ---------- */
.faq-item {
  background: #fff;
  border: 1px solid rgba(13, 24, 39, 0.08);
  box-shadow: 0 12px 28px -20px rgba(13, 24, 39, 0.18);
}

@media (max-width: 720px) {
  .faq .section-head { margin-bottom: 20px !important; }
  .faq-block summary {
    padding: 16px 8px;
    font-size: 0.92rem;
  }
  .faq-block details p {
    font-size: 0.85rem;
    line-height: 1.8;
    padding-bottom: 16px;
  }
}

/* ---------- L. CONTACT — FORM ALWAYS VISIBLE + FRAMING ---------- */
@media (max-width: 880px) {
  .contact-direct,
  .contact-form,
  .contact-direct.reveal,
  .contact-form.reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .sub-hero-inner {
    margin: 0 16px;
    border-radius: 14px;
    max-width: calc(100% - 32px);
  }
  .contact-form {
    padding: 24px 18px;
    gap: 14px;
  }
  .contact-form label { gap: 8px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 1rem; /* prevents iOS zoom */
  }
}

/* ---------- M. INTERN — DAY SPLIT / STEP / REQ TABLE ---------- */
@media (max-width: 480px) {
  /* Day at MARLY */
  .day-col {
    padding: 24px 18px;
  }
  .day-col-head h3 { font-size: 1.15rem; }
  .day-flow li {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding-bottom: 14px;
  }
  .day-flow-step { font-size: 1.15rem; }
  .day-flow li h4 { font-size: 0.95rem; }

  /* Step flow */
  .step-item {
    padding: 58px 18px 22px !important;
    margin-bottom: 16px !important;
  }
  .step-mark {
    font-size: 0.85rem !important;
    padding: 5px 10px !important;
    left: 16px !important;
    top: 16px !important;
  }
  .step-item h3 { font-size: 1.05rem; }
  .step-item p {
    font-size: 0.88rem;
    line-height: 1.75;
  }
  .step-item::before { display: none !important; }

  /* Requirements table */
  .req-row dt {
    background: var(--paper-warm);
    font-size: 0.78rem;
    padding: 10px 16px;
    letter-spacing: 0.12em;
  }
  .req-row dd {
    padding: 14px 16px 18px;
    font-size: 0.92rem;
  }
  .req-list li { font-size: 0.88rem; }

  /* Intern hero specifics already covered by site-wide rules */
  .intern-target-card {
    padding: 24px 20px;
    border-radius: 6px;
  }
  .intern-target-num {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .intern-target-card h3 { font-size: 1.05rem; }

  .intern-exp-wide {
    padding: 22px 20px !important;
    gap: 10px !important;
  }
  .intern-exp-wide h3 { font-size: 1.1rem; }
  .intern-exp-wide p { font-size: 0.88rem !important; }

  .model-card { padding: 24px 20px; }
  .model-week strong { font-size: 2rem; }
  .model-card h3 { font-size: 1.05rem; }
  .model-card p {
    font-size: 0.88rem;
    line-height: 1.8;
  }
  .model-tags li {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .support-card { padding: 20px 18px; }
  .support-card h3 br { display: none; }
  .support-card h3 {
    font-size: 1.02rem;
    line-height: 1.5;
  }
}

/* ---------- N. INTERN CTA TEL LINK ---------- */
@media (max-width: 480px) {
  .sub-cta-tel {
    display: block;
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 212, 59, 0.5);
    border-radius: 8px;
    text-align: center;
  }
  .sub-cta-tel span { font-size: 1.4rem; }
  .sub-cta-tel small { font-size: 0.72rem; }
}

/* ---------- O. CARDS — UNIFORM TIGHTER PADDING ---------- */
@media (max-width: 480px) {
  .target-card {
    padding: 28px 22px;
  }
  .target-card h3 {
    font-size: 1.15rem;
  }
  .target-card h3 br { display: none; }

  .value-card { padding: 24px 20px; }
  .value-section-label {
    margin: 24px 0 12px;
    font-size: 0.85rem;
  }

  .related-card {
    padding: 22px 22px !important;
    border-radius: 16px !important;
  }
  .related-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .related-card-arrow { font-size: 0.78rem; }
  .related-grid,
  .related-grid-4 {
    gap: 12px !important;
  }
}

/* Pair related cards 2-col on phones >=380px to save scroll */
@media (min-width: 380px) and (max-width: 720px) {
  .related-grid-4,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .experience-card-wide {
    padding: 28px 22px;
  }
  .experience-card-wide p { font-size: 0.95rem; }
}

/* ---------- P. MORE-CTA / BOTTOM RED BAND ---------- */
@media (max-width: 480px) {
  .more-cta .btn.primary {
    background: #fff;
    color: var(--red);
  }
  .more-cta .btn.ghost {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
  }
  .more-cta h2 .accent-yellow {
    background: rgba(0, 0, 0, 0.15);
    padding: 0 6px;
  }
}

/* ---------- Q. ACCENT-YELLOW CONTRAST ON LIGHT BG ---------- */
@media (max-width: 720px) {
  .section-head.single h2 .accent-yellow,
  .section-head.light h2 .accent-yellow {
    color: var(--accent-deep) !important;
    text-decoration-color: var(--accent);
  }
  /* Keep yellow on dark CTAs as-is */
  .intern-cta-inner h2 .accent-yellow,
  .more-cta h2 .accent-yellow {
    color: var(--accent) !important;
  }
}

/* ---------- R. FOOTER ---------- */
@media (max-width: 720px) {
  .site-footer {
    padding: 48px 22px 24px !important;
    background: var(--ink, #0d1827);
  }
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-grid h4,
  .footer-col-label {
    color: #fff !important;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 0.12em;
  }
  .footer-grid ul,
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
  }
  .footer-grid a {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.88rem;
  }
  .copyright {
    font-size: 0.72rem;
    opacity: 0.7;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.6);
  }
  .sub-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px;
  }
  .sub-footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
  }
}

/* === END MOBILE POLISH 2026-06-20 === */

/* === MOBILE QUALITY FIX 2026-06-20 v2 === */
/* Consolidated mobile corrections layered on top of MOBILE POLISH 2026-06-20.
   Addresses: header balance, section bloat, photo reveal failures, hero overlay,
   eyebrow/h2 hierarchy, gutter consistency. */

/* ---------- PHOTOS: force-reveal (highest priority, must win) ---------- */
@media (max-width: 768px) {
  .reveal,
  .reveal.is-revealed,
  [class*="reveal"] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
  .about-visual-card::before,
  .business-image::before,
  .message-portrait-frame::before,
  .voice-image::before {
    transform: scaleX(0) !important;
    display: none !important;
  }
  .about-visual-card,
  .business-image,
  .message-portrait-frame,
  .voice-image,
  .experience-grid,
  .target-grid,
  .business-stack,
  .about-grid,
  .message-grid {
    opacity: 1 !important;
    transform: none !important;
  }
  .about-visual-card img,
  .business-image img,
  .message-portrait-frame img,
  .voice-image img {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ---------- HEADER: unified pill controls (consolidates FIX 10/12/Polish D) ---------- */
@media (max-width: 480px) {
  .site-header {
    height: 56px !important;
    align-items: center !important;
    padding: 0 12px 0 0 !important;
    gap: 8px !important;
    grid-template-columns: auto 1fr auto auto !important;
  }
  .site-header .brand {
    padding: 0 12px !important;
    gap: 8px !important;
  }
  .site-header .brand-mark {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
  }
  .site-header .brand-text strong {
    font-size: 0.95rem !important;
    letter-spacing: 0.04em !important;
  }
  .header-cta {
    height: 40px !important;
    min-width: 0 !important;
    padding: 0 18px !important;
    font-size: 0.76rem !important;
    letter-spacing: 0.14em !important;
    border-radius: 999px !important;
    align-self: center !important;
    margin-right: 4px !important;
  }
  .header-cta::before { display: none !important; }
  .nav-toggle {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 10px !important;
    align-self: center !important;
    gap: 4px !important;
  }
  .nav-toggle span {
    width: 18px !important;
    height: 1.8px !important;
    background: var(--ink, #111) !important;
  }
}

/* ---------- SECTION BLOAT: vertical padding + section-head ---------- */
@media (max-width: 720px) {
  .target, .experience, .mvv, .business,
  .message-section, .about, .detail-section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .section-head { margin-bottom: 18px !important; }
  .section-head h2 br { display: none; }
  .section-head h2 {
    font-size: clamp(1.55rem, 6vw, 2.1rem) !important;
    line-height: 1.4 !important;
    margin: 8px 0 18px !important;
  }
  .section-head .eyebrow {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem) !important;
    letter-spacing: 0 !important;
    margin-bottom: 4px !important;
  }
  .section-head .eyebrow span { font-size: 0.78rem !important; }
}

/* ---------- SECTION BLOAT: About ---------- */
@media (max-width: 720px) {
  .about-visual-card.lg { aspect-ratio: 5/3; max-height: 260px; }
  .about-visual-card.sm { display: none !important; }
  .about-grid { gap: 28px !important; }
  .about-copy p {
    line-height: 1.8;
    margin: 0 0 14px;
    font-size: 0.95rem;
  }
  .about-points {
    margin-top: 18px !important;
    padding-top: 14px;
    gap: 4px;
  }
  .about-points li {
    padding: 4px 0;
    font-size: 0.88rem;
    grid-template-columns: 24px 1fr;
    gap: 10px;
  }
  .about-points strong { font-size: 0.95rem; }
}

/* ---------- SECTION BLOAT: Message ---------- */
@media (max-width: 720px) {
  .message-section .message-grid {
    margin-top: 24px !important;
    gap: 22px !important;
  }
  .message-section .message-portrait-frame {
    aspect-ratio: 1/1;
    max-width: 200px;
    margin: 0 auto;
  }
  .message-section .message-lead {
    font-size: 1.1rem !important;
    line-height: 1.55 !important;
    margin: 0 0 16px !important;
  }
  .message-section .message-body {
    font-size: 0.95rem;
    line-height: 1.85;
  }
  .message-section .message-body p { margin: 0 0 14px; }
  .message-section .message-pull {
    padding: 18px 20px !important;
    line-height: 1.8 !important;
    margin: 18px 0 !important;
    font-size: 0.95rem;
  }
  .message-section .message-signature {
    margin-top: 22px !important;
    padding-top: 16px;
    font-size: 0.85rem;
  }
}

/* ---------- SECTION BLOAT: Target ---------- */
@media (max-width: 720px) {
  .target-grid { margin-top: 24px !important; gap: 14px !important; }
  .target-card { padding: 22px 20px !important; }
  .target-num { font-size: 1.8rem !important; margin: 0 0 10px !important; }
  .target-card h3 {
    font-size: 1.1rem !important;
    line-height: 1.45 !important;
    margin: 0 0 10px !important;
  }
  .target-card h3 br { display: none; }
  .target-card p {
    font-size: 0.88rem !important;
    line-height: 1.75 !important;
  }
}

/* ---------- SECTION BLOAT: Experience ---------- */
@media (max-width: 720px) {
  .experience-grid { margin-top: 24px !important; gap: 12px !important; }
  .experience-card { padding: 22px 20px !important; }
  .experience-num { font-size: 1.3rem !important; margin: 0 0 8px !important; }
  .experience-card h3 {
    font-size: 1.05rem !important;
    margin: 0 0 8px !important;
    line-height: 1.45 !important;
  }
  .experience-card h3 br { display: none; }
  .experience-card p {
    font-size: 0.86rem !important;
    line-height: 1.7 !important;
  }
  .experience-card-wide {
    padding: 22px 20px !important;
    gap: 10px !important;
  }
}

/* ---------- SECTION BLOAT: Business ---------- */
@media (max-width: 720px) {
  .business { padding: 44px 0 32px !important; }
  .business .section-head { padding: 0 20px; }
  .business-stack { padding: 0 16px 24px !important; }
  .business-card-pin,
  .business-card-pin.reverse {
    padding: 0 0 24px !important;
    margin: 0 0 18px !important;
    border-bottom: 1px solid rgba(13, 24, 39, 0.08);
  }
  .business-card-pin:last-child { border-bottom: none; }
  .business-card-inner,
  .business-card-pin.reverse .business-card-inner {
    padding: 18px 16px !important;
    gap: 14px !important;
    border-radius: 14px;
  }
  .business-image {
    aspect-ratio: 16 / 10 !important;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .business-num-block { margin-bottom: 8px !important; }
  .business-num { font-size: 1.6rem !important; }
  .business-body h3 {
    font-size: 1.25rem !important;
    margin: 6px 0 12px !important;
    line-height: 1.35 !important;
  }
  .business-body > p {
    font-size: 0.88rem !important;
    line-height: 1.75 !important;
    margin: 0 0 12px !important;
  }
  .business-tags { gap: 6px; }
  .business-tags li { font-size: 0.72rem; padding: 4px 10px; }
  .business-deep-links {
    margin-top: 12px !important;
    gap: 6px !important;
    font-size: 0.82rem;
  }
}

/* ---------- SECTION BLOAT: MVV / Values ---------- */
@media (max-width: 720px) {
  .mvv-grid { margin-top: 24px !important; gap: 12px !important; }
  .mvv-card { padding: 22px 20px !important; }
  .mvv-label {
    margin: 0 0 10px !important;
    font-size: 0.72rem;
  }
  .mvv-card h3 {
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
  }
  .value-grid {
    margin-top: 28px !important;
    padding-top: 34px !important;
    gap: 10px !important;
  }
  .value-section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }
  .value-card { padding: 16px 16px !important; }
  .value-num {
    font-size: 0.75rem !important;
    margin: 0 0 6px !important;
  }
  .value-card h4 {
    font-size: 0.95rem !important;
    margin: 0 0 6px !important;
  }
  .value-card p {
    font-size: 0.82rem !important;
    line-height: 1.65 !important;
  }
}

/* ---------- VISUAL BALANCE: sub-hero overlay + title + buttons ---------- */
@media (max-width: 720px) {
  .sub-hero-bg::after {
    background: linear-gradient(180deg,
      rgba(13, 24, 39, 0.18) 0%,
      rgba(13, 24, 39, 0.32) 55%,
      rgba(13, 24, 39, 0.62) 100%) !important;
  }
  .sub-hero .sub-hero-bg img {
    filter: contrast(1.04) brightness(1) !important;
  }
  .sub-hero-shade {
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.35) 100%) !important;
  }
  .sub-hero-eyebrow,
  .sub-hero .sub-hero-inner > p.sub-hero-eyebrow {
    font-size: clamp(1.6rem, 7.5vw, 2.4rem) !important;
  }
  .sub-hero h1,
  .sub-hero .sub-hero-inner h1 {
    display: inline-block !important;
    width: auto !important;
    max-width: calc(100% - 8px) !important;
    font-size: clamp(1.15rem, 5vw, 1.45rem) !important;
    padding: 11px 18px 9px !important;
  }
  .sub-hero .hero-actions { gap: 8px !important; }
  .sub-hero .hero-actions .btn {
    min-height: 46px !important;
    padding: 12px 16px !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.06em !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  }
  .sub-hero .hero-actions .btn.ghost {
    background: rgba(255, 255, 255, 0.96) !important;
    color: var(--ink) !important;
    border: 1px solid rgba(255, 255, 255, 0.96) !important;
  }
}

/* ---------- VISUAL BALANCE: unified mobile gutter ---------- */
@media (max-width: 720px) {
  :root { --m-gutter: 20px; }
  .container,
  .detail-section,
  .message, .career, .faq, .contact, .voice, .empathy,
  .related-services,
  .more-cta,
  .breadcrumb,
  .sub-cta,
  .sub-hero .sub-hero-inner {
    padding-left: var(--m-gutter) !important;
    padding-right: var(--m-gutter) !important;
  }
}

/* === END MOBILE QUALITY FIX v2 === */

/* === MOBILE LUXURY ELEVATION 2026-06-20 v3 === */

/* ---------- HERO v4: photo region (top) + solid button band (below) ---------- */
@media (max-width: 720px) {
  .hero-stack {
    background: var(--ink, #0d1827) !important;
    display: block;
    padding: 0 !important;
    margin: 0 !important;
  }
  /* Photo region: 4/5 aspect (taller than wide) — shows full 5-person frame */
  .hero-stack-single {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: relative;
    overflow: hidden;
    margin: 0;
  }
  .hero-stack-single .hero-stack-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    filter: contrast(1.04) brightness(1) saturate(1.04) !important;
  }
  /* Subtle shade at very top only — for sticker contrast */
  .hero-stack-single .hero-stack-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
      rgba(0,0,0,0.2) 0%,
      rgba(0,0,0,0) 30%) !important;
    pointer-events: none;
  }
  /* Overlay: sticker title + red tagline at TOP of photo only */
  .hero-stack-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    inset: auto !important;
    padding: calc(var(--header-h, 64px) + 24px) 18px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px;
  }
  /* Solid dark button band BELOW the photo — no overlap */
  .hero-stack-band {
    background: var(--ink, #0d1827) !important;
    padding: 24px 18px 32px !important;
    display: block !important;
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    z-index: auto !important;
  }
  .hero-stack-band .hero-stack-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin: 0 !important;
    width: 100% !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }
  .hero-stack-band .hero-stack-actions .btn {
    flex: none !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 0 !important;
  }
  .hero-stack-band .hero-stack-actions .btn.primary {
    background: var(--accent, #c8102e) !important;
    color: #fff !important;
    border: 0 !important;
  }
  .hero-stack-band .hero-stack-actions .btn.ghost {
    background: rgba(255,255,255,0.96) !important;
    color: var(--ink, #0d1827) !important;
    border: 0 !important;
  }
}

/* ---------- HERO: editorial overline (top frame) ---------- */
.hero-stack-eyebrow {
  margin: 0 18px;
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-style: italic;
  color: var(--paper, #fff);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  opacity: 0.88;
  text-transform: uppercase;
  align-self: flex-start;
}

/* ---------- HERO: tight white sticker ---------- */
@media (max-width: 720px) {
  .hero-stack-overlay .hero-stack-title {
    display: inline-block !important;
    width: auto !important;
    max-width: min(86%, 340px) !important;
    margin: 0 18px 12px !important;
    padding: 14px 20px 12px !important;
    border-radius: 2px !important;
    box-shadow: 0 22px 48px -18px rgba(0,0,0,0.55) !important;
    background: #fff !important;
  }
  .hero-stack-overlay .hero-stack-title span {
    font-size: clamp(1.45rem, 6.2vw, 2.05rem) !important;
    line-height: 1.18 !important;
    font-weight: 900 !important;
    letter-spacing: 0.005em !important;
    display: block !important;
  }
  .hero-stack-overlay .hero-stack-title span:last-child {
    font-family: 'Noto Serif JP', serif !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
  }
}

/* ---------- HERO: red tagline becomes an accent, not a banner ---------- */
@media (max-width: 720px) {
  .hero-stack-overlay .hero-stack-tagline {
    display: inline-block !important;
    width: auto !important;
    max-width: 280px !important;
    margin: 0 18px 24px !important;
    padding: 8px 14px 7px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.06em !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
  }
}

/* ---------- HERO: stacked full-width buttons (clean) ---------- */
@media (max-width: 720px) {
  .hero-stack-overlay .hero-stack-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin: 0 18px !important;
    width: calc(100% - 36px) !important;
  }
  .hero-stack-overlay .hero-stack-actions .btn {
    flex: none !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-align: center !important;
    box-shadow: 0 8px 22px -10px rgba(0,0,0,0.45);
    text-decoration: none !important;
  }
  .hero-stack-overlay .hero-stack-actions .btn.primary {
    background: var(--accent, #c8102e) !important;
    color: #fff !important;
    border: 0 !important;
  }
  .hero-stack-overlay .hero-stack-actions .btn.ghost {
    background: rgba(255,255,255,0.96) !important;
    color: var(--ink, #0d1827) !important;
    border: 0 !important;
  }
}

/* ---------- EMPATHY: 3-beat rhythm ---------- */
.empathy-body .empathy-lead-line {
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  line-height: 1.85;
  color: #d8d8d8;
  margin-bottom: 1.4em;
}
.empathy-body .empathy-pivot {
  color: #b6b6b6;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  margin-bottom: 0.5em;
}
.empathy-body .empathy-pivot strong { font-weight: 600; color: #e8e8e8; }
.empathy-body .empathy-hit {
  font-size: clamp(1.3rem, 4.4vw, 1.75rem);
  line-height: 1.55;
  color: #fff;
  font-weight: 700;
  margin-top: 1.2em;
  font-family: 'Noto Serif JP', serif;
}
.empathy-body .empathy-close {
  margin-top: 1.6em;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  font-style: italic;
}

/* ---------- ABOUT: warm off-white chapter break ---------- */
@media (max-width: 720px) {
  .about {
    background: #f6f3ee !important;
    color: #1a1a1a !important;
    padding-top: clamp(72px, 14vw, 140px) !important;
    padding-bottom: clamp(72px, 14vw, 140px) !important;
  }
  .about .section-head .eyebrow,
  .about h2#about-title,
  .about-lead,
  .about-copy p,
  .about-points li {
    color: #1a1a1a !important;
  }
  .about .accent { color: #c8102e !important; }
  .about-points li strong { color: #c8102e !important; }
  .about-visual-card .about-visual-tag { color: #fff !important; }
}

/* ---------- ABOUT: highlights tri-colon (replaces redundant prose) ---------- */
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 1.6em 0 2em;
  display: grid;
  gap: 0.5em;
}
.about-highlights li {
  font-size: clamp(1.05rem, 3.4vw, 1.45rem);
  line-height: 1.55;
  color: #1a1a1a;
  font-weight: 600;
  border-left: 2px solid rgba(0,0,0,0.14);
  padding-left: 0.9em;
  font-family: 'Noto Serif JP', serif;
}
.about-highlights li span {
  color: #c8102e;
  font-weight: 800;
}

/* ---------- TARGET CARDS: kill ghost border, use editorial rule ---------- */
@media (max-width: 720px) {
  .target-card {
    border: 0 !important;
    border-left: 2px solid #c8102e !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 4px 0 4px 20px !important;
    margin: 28px 0 !important;
    box-shadow: none !important;
  }
  .target-card .target-num {
    font-size: 0.7rem !important;
    letter-spacing: 0.3em !important;
    color: rgba(255,255,255,0.65) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin: 0 0 8px !important;
  }
  .target-card h3 {
    font-size: clamp(1.15rem, 4vw, 1.45rem) !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    color: #fff !important;
  }
  .target-card h3 br { display: none; }
  .target-card p {
    color: rgba(255,255,255,0.85) !important;
  }
}

/* ---------- EXPERIENCE CARDS: text visibility (light bg context) ---------- */
/* .experience has paper (white) bg, cards have paper-warm (cream).
   Wide card .experience-card-wide on dark, .intern-exp-wide on dark. */
.experience-card {
  background: #fff !important;
  border: 1px solid rgba(13,24,39,0.06) !important;
  box-shadow: 0 14px 28px -22px rgba(13,24,39,0.18) !important;
}
.experience-card h3,
.intern-exp-card h3 {
  color: var(--ink, #0d1827) !important;
}
.experience-card p,
.intern-exp-card p {
  color: rgba(13,24,39,0.78) !important;
}
.experience-card .experience-num,
.intern-exp-card .intern-exp-num {
  color: #c8102e !important;
}
/* Wide cards stay on dark bg if they have inverted theme */
.experience-card-wide h3,
.intern-exp-wide h3 {
  color: #fff !important;
}
.experience-card-wide p,
.intern-exp-wide p {
  color: rgba(255,255,255,0.85) !important;
}
.experience-card-wide .experience-num,
.intern-exp-wide .intern-exp-num {
  color: #c8102e !important;
}

/* ---------- MESSAGE: founder elevation ---------- */
/* Note: .message-section background = var(--paper-soft) = #f4f5f7 (light) on index */
@media (max-width: 720px) {
  .message-section .message-portrait-frame {
    aspect-ratio: 1 / 1 !important;
    max-width: min(72vw, 320px) !important;
    border-radius: 0 !important;
    overflow: hidden;
    margin: 0 auto !important;
  }
  .message-section .message-portrait-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 22% !important;
  }
  .message-section .message-name {
    margin-top: 16px;
    text-align: center;
    color: var(--ink-mute, #6b7280);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
  .message-section .message-lead {
    font-size: 1.1rem !important;
    line-height: 1.65 !important;
    border-left: 3px solid #c8102e !important;
    padding-left: 14px !important;
    margin: 24px 0 18px !important;
    font-weight: 700;
    color: var(--ink, #0d1827) !important;
    background: transparent !important;
  }
  .message-section .message-body p {
    font-size: 0.98rem !important;
    line-height: 1.95 !important;
    color: var(--ink, #0d1827) !important;
    margin: 0 0 1.3em !important;
  }
  .message-section .message-body strong {
    color: var(--ink, #0d1827) !important;
  }
  .message-section .message-signature {
    color: var(--ink, #0d1827) !important;
  }
}

/* ---------- MESSAGE: pull-quote promoted to display ---------- */
.message-section .message-pull,
.message-pull {
  border: 0 !important;
  border-left: 3px solid #c8102e !important;
  padding: 1.4em 0 1.4em 1.2em !important;
  margin: 2em 0 !important;
  background: transparent !important;
}
.message-section .message-pull p,
.message-pull p {
  font-size: clamp(1.15rem, 3.8vw, 1.6rem) !important;
  line-height: 1.55 !important;
  font-weight: 800 !important;
  color: var(--ink, #0d1827) !important;
  margin: 0 0 0.35em !important;
  font-family: 'Noto Serif JP', serif;
}
.message-section .message-pull p:last-child,
.message-pull p:last-child { margin-bottom: 0 !important; }
.message-section .message-pull p span,
.message-pull p span { color: #c8102e; }

/* ---------- SECTION SPACING: section-head h2 hierarchy ---------- */
@media (max-width: 720px) {
  .section-head h2 {
    font-size: clamp(1.55rem, 6vw, 2.1rem) !important;
    line-height: 1.45 !important;
    font-weight: 800 !important;
  }
  .section-head .eyebrow {
    font-size: 0.78rem !important;
    letter-spacing: 0.18em !important;
    font-weight: 600 !important;
    margin-bottom: 14px !important;
  }
  .section-head .eyebrow span {
    font-size: inherit !important;
    color: #c8102e !important;
    margin-right: 6px;
  }
}

/* ---------- SUB-PAGE HERO: per-page focal point ---------- */
.page-intern .sub-hero-bg img { object-position: center 45% !important; }
.page-career .sub-hero-bg img { object-position: center 55% !important; }
.page-voice  .sub-hero-bg img { object-position: 35% center !important; }
.page-message .sub-hero-bg img { object-position: center 38% !important; }
.page-faq    .sub-hero-bg img { object-position: center 50% !important; }
.page-contact .sub-hero-bg img { object-position: center 35% !important; }

/* Sub-page hero darkening: lighter than index since text density is lower */
@media (max-width: 720px) {
  .subpage .sub-hero-bg img,
  .page-intern .sub-hero-bg img,
  .page-career .sub-hero-bg img,
  .page-voice .sub-hero-bg img,
  .page-message .sub-hero-bg img,
  .page-faq .sub-hero-bg img,
  .page-contact .sub-hero-bg img {
    filter: contrast(1.04) brightness(0.96) saturate(1.04) !important;
  }
}

/* === END MOBILE LUXURY ELEVATION v3 === */



/* === MOBILE HERO v5 CREATIVE UPLIFT 2026-06-20 === */
/* EDITORIAL POWER direction: 覚悟 spine + duotone photo + asymmetric CTAs */
/* Scoped to .hero-editorial so other heroes (subpages) remain unaffected */

@media (max-width: 720px) {

  /* 1. Color tokens scoped to .hero-editorial */
  .hero-editorial {
    --hv5-ink: #0d1827;
    --hv5-cream: #f4ede0;
    --hv5-red: #c8102e;
    --hv5-mute: rgba(244, 237, 224, 0.55);
    --hv5-line: rgba(244, 237, 224, 0.22);
    background: var(--hv5-ink) !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    position: relative;
  }

  /* 2. Masthead strip (top thin editorial bar) */
  .hero-editorial .hero-masthead {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--header-h, 56px) + 6px) 18px 8px;
    background: var(--hv5-ink);
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    color: var(--hv5-cream);
    border-bottom: 1px solid var(--hv5-line);
    margin: 0;
    text-transform: uppercase;
  }
  .hero-editorial .hero-masthead span { white-space: nowrap; }

  /* 3. Photo plate: duotone-style treatment */
  .hero-editorial .hero-stack-single {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
  }
  .hero-editorial .hero-stack-single .hero-stack-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    filter: contrast(1.06) brightness(0.96) saturate(1.02) !important;
  }
  .hero-editorial .hero-stack-single .hero-stack-shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(13,24,39,0.32) 0%,
        rgba(13,24,39,0) 28%,
        rgba(13,24,39,0) 65%,
        rgba(13,24,39,0.55) 100%) !important;
    pointer-events: none;
  }

  /* 4. 覚悟 kanji spine — hairline outline, vertical left edge */
  .hero-editorial .hero-kanji-spine {
    position: absolute;
    top: 4%;
    left: -2%;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 42vw;
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1.2px var(--hv5-cream);
    text-stroke: 1.2px var(--hv5-cream);
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
  }
  .hero-editorial .hero-kanji-spine span:nth-child(2) {
    margin-left: 6%;
    margin-top: -8%;
  }

  /* 5. Tategaki thesis — vertical Japanese right side */
  .hero-editorial .hero-tategaki-thesis {
    position: absolute;
    top: 14%;
    right: 16px;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    color: var(--hv5-cream);
    opacity: 0.92;
    margin: 0;
    line-height: 1.7;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  }

  /* 6. English diagonal cross-line */
  .hero-editorial .hero-cross-line {
    position: absolute;
    bottom: 38%;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 4vw, 1.45rem);
    letter-spacing: 0.32em;
    color: var(--hv5-cream);
    opacity: 0.95;
    margin: 0;
    white-space: nowrap;
    z-index: 4;
    pointer-events: none;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  }

  /* 7. Headline (h1) — heavy serif, sits top-left below masthead */
  section.hero-editorial .hero-stack-single .hero-stack-overlay,
  .hero-editorial.hero-stack .hero-stack-overlay {
    position: absolute !important;
    top: 24px !important;
    left: 20px !important;
    right: 80px !important;
    bottom: auto !important;
    inset: auto !important;
    padding: 0 !important;
    z-index: 5 !important;
    display: block !important;
    width: auto !important;
    max-width: calc(100% - 100px) !important;
  }
  .hero-editorial .hero-stack-overlay .hero-stack-title {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    font-family: 'Noto Serif JP', serif !important;
  }
  .hero-editorial .hero-stack-overlay .hero-stack-title span {
    display: block !important;
    font-size: clamp(1.55rem, 7vw, 2.3rem) !important;
    line-height: 1.22 !important;
    font-weight: 900 !important;
    letter-spacing: 0.005em !important;
    color: var(--hv5-cream) !important;
    background: transparent !important;
    padding: 0 !important;
    text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.6);
  }
  .hero-editorial .hero-title-end {
    font-style: normal;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
  }
  .hero-editorial .hero-title-end i {
    display: inline-block;
    width: 0.32em;
    height: 0.32em;
    background: var(--hv5-red);
    transform: translateY(-0.02em);
    border-radius: 0;
  }

  /* 8. Tagline — italic, no pill background, sits below title */
  .hero-editorial .hero-stack-tagline {
    display: block !important;
    margin: 14px 0 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    font-family: 'Noto Serif JP', 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-size: 0.82rem !important;
    line-height: 1.65 !important;
    letter-spacing: 0.04em !important;
    color: var(--hv5-cream) !important;
    opacity: 0.92 !important;
    max-width: 100% !important;
    text-shadow: 0 1px 10px rgba(0,0,0,0.85);
  }

  /* 9. Wax-seal stamp (institutional accent) */
  .hero-editorial .hero-stamp {
    position: absolute;
    top: 6%;
    right: 18px;
    width: 64px;
    height: 64px;
    border: 1px solid var(--hv5-cream);
    border-radius: 50%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    color: var(--hv5-cream);
    transform: rotate(-6deg);
    z-index: 6;
    background: rgba(13,24,39,0.35);
    backdrop-filter: blur(2px);
  }
  .hero-editorial .hero-stamp span:first-child {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 3px;
  }
  .hero-editorial .hero-stamp span:last-child {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  /* 10. Scroll cue (bottom-right of photo) */
  .hero-editorial .hero-scroll-cue {
    position: absolute;
    bottom: 14px;
    right: 18px;
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-style: italic;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--hv5-cream);
    opacity: 0.55;
    text-transform: uppercase;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: hv5-bob 2.4s ease-in-out infinite;
  }
  .hero-editorial .hero-scroll-cue span {
    font-style: normal;
    font-size: 0.85rem;
  }
  @keyframes hv5-bob {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50%      { transform: translateY(4px); opacity: 0.85; }
  }

  /* 11. KPI band (substance row) */
  .hero-editorial .hero-stack-band {
    background: var(--hv5-ink) !important;
    padding: 22px 18px 28px !important;
    display: block !important;
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-top: 1px solid var(--hv5-line);
  }
  .hero-editorial .hero-kpi {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--hv5-line);
    border-bottom: 1px solid var(--hv5-line);
  }
  .hero-editorial .hero-kpi li {
    text-align: center;
    padding: 14px 6px;
    border-right: 1px solid var(--hv5-line);
    color: var(--hv5-cream);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
  .hero-editorial .hero-kpi li:last-child { border-right: 0; }
  .hero-editorial .hero-kpi li strong {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: flex;
    align-items: baseline;
    gap: 1px;
  }
  .hero-editorial .hero-kpi li strong i {
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-left: 2px;
    color: var(--hv5-cream);
  }
  .hero-editorial .hero-kpi li span {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    color: var(--hv5-red);
    font-weight: 600;
    text-transform: none;
  }

  /* 12. Asymmetric CTA pair */
  .hero-editorial .hero-stack-band .hero-stack-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin: 0 !important;
    width: 100% !important;
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }
  .hero-editorial .hero-stack-band .hero-stack-actions .btn {
    flex: none !important;
    width: 100% !important;
    min-height: 56px !important;
    padding: 16px 20px !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    font-family: 'Noto Serif JP', serif !important;
    box-shadow: none !important;
  }
  .hero-editorial .hero-stack-band .hero-stack-actions .btn.primary {
    background: var(--hv5-red) !important;
    color: var(--hv5-cream) !important;
    border: 0 !important;
    position: relative !important;
    box-shadow: 5px 5px 0 0 var(--hv5-cream) !important;
    margin-bottom: 6px;
  }
  .hero-editorial .hero-stack-band .hero-stack-actions .btn.ghost {
    background: transparent !important;
    color: var(--hv5-cream) !important;
    border: 1px solid var(--hv5-cream) !important;
    font-weight: 500 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.14em !important;
  }

  /* 13. Small viewport guards (<400px) */
  @media (max-width: 400px) {
    .hero-editorial .hero-masthead-right { display: none; }
    .hero-editorial .hero-kanji-spine { font-size: 46vw; }
    .hero-editorial .hero-stamp { width: 56px; height: 56px; }
    .hero-editorial .hero-stamp span:first-child { font-size: 0.62rem; }
    .hero-editorial .hero-stamp span:last-child { font-size: 0.74rem; }
    .hero-editorial .hero-tategaki-thesis { font-size: 0.7rem; }
    .hero-editorial .hero-stack-overlay .hero-stack-title span { font-size: 1.65rem !important; }
    .hero-editorial .hero-kpi li strong { font-size: 1.4rem; }
  }
}

/* === END MOBILE HERO v5 CREATIVE UPLIFT === */

/* === HERO v5 — PC: restore original FV (hide editorial extras) === */
@media (min-width: 721px) {
  /* Hide all new editorial extras on PC */
  .hero-editorial .hero-masthead,
  .hero-editorial .hero-stamp,
  .hero-editorial .hero-kpi {
    display: none !important;
  }
  /* Hero band: float buttons over photo bottom-right (original behaviour) */
  .hero-editorial .hero-stack-band {
    position: absolute !important;
    bottom: 32px !important;
    right: 40px !important;
    left: auto !important;
    top: auto !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    width: auto !important;
    z-index: 6 !important;
    display: block !important;
  }
  .hero-editorial .hero-stack-band .hero-stack-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px !important;
    width: auto !important;
    position: relative !important;
    inset: auto !important;
  }
  .hero-editorial .hero-stack-band .hero-stack-actions .btn {
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  /* Restore container to non-editorial */
  .hero-editorial {
    background: transparent !important;
    overflow: visible !important;
  }
  /* Restore hero photo proportions to full-bleed tall hero */
  .hero-editorial .hero-stack-single {
    aspect-ratio: auto !important;
    min-height: auto !important;
    height: 100vh !important;
    max-height: 880px !important;
  }
  .hero-editorial .hero-stack-single .hero-stack-img {
    object-position: center 30% !important;
    filter: none !important;
  }
  /* Restore overlay to bottom-left LSIGN sticker position */
  .hero-editorial .hero-stack-single .hero-stack-overlay {
    position: absolute !important;
    inset: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 80px 64px 96px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    max-width: none !important;
    width: auto !important;
  }
  /* White sticker title block (LSIGN style) */
  .hero-editorial .hero-stack-overlay .hero-stack-title {
    display: inline-block !important;
    background: var(--paper, #ffffff) !important;
    padding: 22px 32px !important;
    margin-bottom: 22px !important;
    box-shadow: 0 22px 48px -18px rgba(0,0,0,0.45) !important;
  }
  .hero-editorial .hero-stack-overlay .hero-stack-title span {
    color: var(--ink, #0d1827) !important;
    background: transparent !important;
    text-shadow: none !important;
    font-size: clamp(2.4rem, 4.5vw, 4rem) !important;
    line-height: 1.18 !important;
    font-weight: 900 !important;
    padding: 0 !important;
    font-family: 'Noto Serif JP', serif !important;
  }
  /* Hide red square period decoration on PC */
  .hero-editorial .hero-title-end i {
    display: none !important;
  }
  /* Red pill tagline */
  .hero-editorial .hero-stack-tagline {
    display: inline-block !important;
    background: var(--accent, #c8102e) !important;
    color: #fff !important;
    padding: 14px 22px !important;
    font-style: normal !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: clamp(1rem, 1.5vw, 1.3rem) !important;
    font-weight: 700 !important;
    opacity: 1 !important;
    text-shadow: none !important;
    letter-spacing: 0.04em !important;
    margin: 0 !important;
    max-width: none !important;
  }
}

/* === HERO v5 — base color tokens (mobile fallback) === */
.hero-editorial {
  --hv5-ink: #0d1827;
  --hv5-cream: #f4ede0;
  --hv5-red: #c8102e;
  --hv5-mute: rgba(244, 237, 224, 0.55);
  --hv5-line: rgba(244, 237, 224, 0.22);
  background: var(--hv5-ink);
  position: relative;
  overflow: hidden;
}

/* Masthead strip */
.hero-editorial .hero-masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--header-h, 64px) + 12px) 48px 12px;
  background: var(--hv5-ink);
  font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: var(--hv5-cream);
  border-bottom: 1px solid var(--hv5-line);
  margin: 0;
  text-transform: uppercase;
}

/* Photo plate (PC wide aspect) */
.hero-editorial .hero-stack-single {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
  margin: 0;
}
.hero-editorial .hero-stack-single .hero-stack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.06) brightness(0.96) saturate(1.02);
}
.hero-editorial .hero-stack-single .hero-stack-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,24,39,0.32) 0%,
    rgba(13,24,39,0) 28%,
    rgba(13,24,39,0) 65%,
    rgba(13,24,39,0.55) 100%);
  pointer-events: none;
}

/* Headline overlay - top left, editorial */
.hero-editorial .hero-stack-single .hero-stack-overlay {
  position: absolute;
  top: 48px;
  left: 64px;
  right: 200px;
  bottom: auto;
  inset: auto;
  padding: 0;
  z-index: 5;
  display: block;
  width: auto;
  max-width: 64%;
}
.hero-editorial .hero-stack-overlay .hero-stack-title {
  display: block;
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  font-family: 'Noto Serif JP', serif;
}
.hero-editorial .hero-stack-overlay .hero-stack-title span {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.18;
  font-weight: 900;
  color: var(--hv5-cream);
  background: transparent;
  padding: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.85);
}
.hero-editorial .hero-title-end {
  font-style: normal;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.hero-editorial .hero-title-end i {
  display: inline-block;
  width: 0.32em;
  height: 0.32em;
  background: var(--hv5-red);
  transform: translateY(-0.02em);
}

/* Tagline italic */
.hero-editorial .hero-stack-tagline {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--hv5-cream);
  opacity: 0.92;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85);
}

/* Wax-seal stamp top-right */
.hero-editorial .hero-stamp {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 92px;
  height: 92px;
  border: 1px solid var(--hv5-cream);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  color: var(--hv5-cream);
  transform: rotate(-6deg);
  z-index: 6;
  background: rgba(13,24,39,0.35);
  backdrop-filter: blur(2px);
}
.hero-editorial .hero-stamp span:first-child {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-editorial .hero-stamp span:last-child {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}

/* Bottom band — KPI + CTA */
.hero-editorial .hero-stack-band {
  background: var(--hv5-ink);
  padding: 28px 48px 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  inset: auto;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid var(--hv5-line);
}

/* KPI band (3-column horizontal) */
.hero-editorial .hero-kpi {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: row;
  gap: 0;
  border-top: 1px solid var(--hv5-line);
  border-bottom: 1px solid var(--hv5-line);
  flex: 1 1 auto;
  max-width: 60%;
}
.hero-editorial .hero-kpi li {
  text-align: center;
  padding: 14px 18px;
  border-right: 1px solid var(--hv5-line);
  color: var(--hv5-cream);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  flex: 1;
  list-style: none;
}
.hero-editorial .hero-kpi li:last-child { border-right: 0; }
.hero-editorial .hero-kpi li strong {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.hero-editorial .hero-kpi li strong i {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 2px;
}
.hero-editorial .hero-kpi li span {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--hv5-red);
  font-weight: 600;
  text-transform: none;
}

/* CTAs row on PC */
.hero-editorial .hero-stack-band .hero-stack-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin: 0;
  width: auto;
  position: relative;
  inset: auto;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  flex: 0 0 auto;
}
.hero-editorial .hero-stack-band .hero-stack-actions .btn {
  flex: 0 0 auto;
  width: auto;
  min-height: 52px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  font-family: 'Noto Serif JP', serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.hero-editorial .hero-stack-band .hero-stack-actions .btn.primary {
  background: var(--hv5-red);
  color: var(--hv5-cream);
  border: 0;
  box-shadow: 5px 5px 0 0 var(--hv5-cream);
}
.hero-editorial .hero-stack-band .hero-stack-actions .btn.ghost {
  background: transparent;
  color: var(--hv5-cream);
  border: 1px solid var(--hv5-cream);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

/* === END HERO v5 DESKTOP === */


/* === SECTION VARIATION 2026-06-20 v6 === */
/* Breaks the eyebrow + serif-h2 + numbered-card repetition across
   empathy / about / target / experience / business / mvv. */

/* ---------- EMPATHY: editorial pull-quote spread ---------- */
.empathy.empathy--v6 { padding: clamp(120px, 14vw, 180px) 32px; background: var(--paper-warm); }
.empathy--v6 .empathy-stage {
  max-width: 1040px; margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 40px; row-gap: 64px;
  position: relative;
}
.empathy--v6 .empathy-quote-open {
  grid-column: 1; grid-row: 1 / span 2;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(7rem, 18vw, 16rem);
  line-height: 0.8; color: var(--red); opacity: 0.85;
  align-self: start; transform: translateY(-12px);
}
.empathy--v6 .empathy-title {
  grid-column: 2; grid-row: 1; margin: 0;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 5.6vw, 4.2rem);
  line-height: 1.35; letter-spacing: 0.01em; color: var(--ink);
  display: flex; flex-direction: column; gap: 4px;
}
.empathy--v6 .empathy-line-1 {
  font-family: var(--sans); font-weight: 300;
  font-size: 0.5em; letter-spacing: 0.18em; color: var(--muted);
}
.empathy--v6 .empathy-line-2 { font-family: var(--serif); font-weight: 600; }
.empathy--v6 .empathy-line-3 {
  font-family: var(--sans); font-weight: 800;
  align-self: flex-start; font-size: 0.7em; letter-spacing: 0.08em;
  margin-top: 0.4em;
}
.empathy--v6 em.empathy-underline {
  font-style: normal; color: var(--ink); font-weight: 700;
  background-image: linear-gradient(transparent 65%, rgba(255,70,52,0.32) 65%, rgba(255,70,52,0.32) 92%, transparent 92%);
  padding: 0 0.06em;
}
.empathy--v6 .empathy-verse {
  grid-column: 2; grid-row: 2;
  font-family: var(--serif); color: var(--ink-soft);
  max-width: 680px;
  display: flex; flex-direction: column; gap: 48px;
}
.empathy--v6 .empathy-memory { font-size: 1.05rem; line-height: 2; margin: 0; }
.empathy--v6 .empathy-pivot {
  font-style: italic; font-weight: 400;
  font-size: 1rem; text-align: center;
  letter-spacing: 0.08em; color: var(--muted);
  margin: 0; position: relative;
}
.empathy--v6 .empathy-pivot::before,
.empathy--v6 .empathy-pivot::after {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: var(--line);
  vertical-align: middle; margin: 0 16px;
}
.empathy--v6 .empathy-hit {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.7; color: var(--ink);
  margin: 0; padding: 0; border: 0;
  quotes: "\201C" "\201D";
}
.empathy--v6 .empathy-hit p { margin: 0; }
.empathy--v6 .empathy-hit p::before {
  content: open-quote; font-family: var(--serif);
  font-size: 2.2em; line-height: 0; color: var(--red);
  opacity: 0.55; vertical-align: -0.4em; margin-right: 0.08em;
}
.empathy--v6 .empathy-hit p::after {
  content: close-quote; font-family: var(--serif);
  font-size: 2.2em; line-height: 0; color: var(--red);
  opacity: 0.55; vertical-align: -0.55em; margin-left: 0.06em;
}
.empathy--v6 .empathy-sign {
  grid-column: 1 / -1; grid-row: 3;
  justify-self: end; text-align: right;
  font-family: var(--sans); font-weight: 500;
  font-size: 1rem; letter-spacing: 0.04em; line-height: 1.9;
  color: var(--ink); max-width: 520px;
  padding-top: 40px; border-top: none; position: relative;
  margin: 0;
}
.empathy--v6 .empathy-sign::before {
  content: ""; display: block; width: 80px; height: 1px;
  background: var(--ink); margin-left: auto; margin-bottom: 28px;
}
.empathy--v6 .empathy-sign-mark {
  display: inline-block; font-family: var(--display);
  font-weight: 700; color: var(--red);
  margin-right: 12px; letter-spacing: 0.12em;
}
@media (max-width: 860px) {
  .empathy--v6 .empathy-stage { grid-template-columns: 1fr; row-gap: 32px; }
  .empathy--v6 .empathy-quote-open {
    grid-row: 1; grid-column: 1;
    font-size: 5.5rem; line-height: 0.7;
    transform: none; margin: 0 0 -8px;
  }
  .empathy--v6 .empathy-title { grid-row: 2; grid-column: 1; }
  .empathy--v6 .empathy-verse { grid-row: 3; grid-column: 1; gap: 32px; }
  .empathy--v6 .empathy-sign { grid-row: 4; grid-column: 1; }
  .empathy--v6 .empathy-line-3 { align-self: flex-start; }
  .empathy--v6 .empathy-sign { justify-self: stretch; text-align: left; }
  .empathy--v6 .empathy-sign::before { margin-left: 0; }
}

/* --- v6 EMPATHY: dark-bg color rescue (existing .empathy uses var(--ink) bg !important) --- */
.empathy.empathy--v6 { background: var(--ink) !important; color: var(--paper); }
.empathy--v6 .empathy-line-1 { color: rgba(255,255,255,0.55) !important; }
.empathy--v6 .empathy-title { color: rgba(255,255,255,0.96) !important; }
.empathy--v6 em.empathy-underline {
  color: #fff !important;
  background-image: linear-gradient(transparent 60%, rgba(255,70,52,0.55) 60%, rgba(255,70,52,0.55) 95%, transparent 95%) !important;
}
.empathy--v6 .empathy-memory { color: rgba(255,255,255,0.78) !important; }
.empathy--v6 .empathy-pivot { color: rgba(255,255,255,0.55) !important; }
.empathy--v6 .empathy-pivot::before,
.empathy--v6 .empathy-pivot::after { background: rgba(255,255,255,0.3) !important; }
.empathy--v6 .empathy-hit { color: rgba(255,255,255,0.92) !important; }
.empathy--v6 .empathy-hit p::before,
.empathy--v6 .empathy-hit p::after { color: var(--red) !important; opacity: 0.7; }
.empathy--v6 .empathy-sign { color: rgba(255,255,255,0.85) !important; }
.empathy--v6 .empathy-sign::before { background: rgba(255,255,255,0.5) !important; }
.empathy--v6 .empathy-quote-open { color: var(--red) !important; opacity: 0.75; }

/* ---------- ABOUT: magazine 2-column corporate spread ---------- */
.about.about--v6 { padding: clamp(96px, 12vw, 160px) 0; background: #fafaf7; }
.about--v6 .container { max-width: 1240px; }
.about--v6 .about-spread {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.about--v6 .about-hero {
  position: relative; margin: 0;
  aspect-ratio: 3 / 4; overflow: hidden; background: #111;
}
.about--v6 .about-hero-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; filter: saturate(0.9) contrast(1.04);
}
.about--v6 .about-hero-cap {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  color: #fff; font-family: var(--display);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.5); padding-top: 12px;
  display: flex; justify-content: space-between; gap: 16px;
}
.about--v6 .about-feature {
  display: flex; flex-direction: column;
  justify-content: center; padding: 8px 0;
}
.about--v6 .about-tagline {
  font-family: var(--display); font-size: 12px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #8a8a82; margin: 0 0 28px;
}
.about--v6 .about-feature-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 46px); line-height: 1.45;
  letter-spacing: 0.01em; margin: 0; color: var(--ink);
}
.about--v6 .about-feature-title .about-accent {
  color: var(--red); display: block; margin-top: 0.2em;
}
.about--v6 .about-rule {
  border: 0; border-top: 1px solid var(--red);
  width: 64px; margin: 36px 0 28px;
}
.about--v6 .about-lead {
  font-size: 16px; line-height: 2;
  color: #3a3a36; margin: 0 0 40px; max-width: 46ch;
}
.about--v6 .about-keys {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 0; padding-top: 28px;
  border-top: 1px solid #e5e3dc;
}
.about--v6 .about-keys > div { display: flex; flex-direction: column; gap: 8px; }
.about--v6 .about-keys dt {
  font-family: var(--display); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin: 0;
}
.about--v6 .about-keys dd {
  margin: 0; font-family: var(--serif);
  font-size: 15px; line-height: 1.7; color: var(--ink);
}
@media (max-width: 860px) {
  .about--v6 .about-spread { grid-template-columns: 1fr; gap: 32px; }
  .about--v6 .about-hero { aspect-ratio: 4 / 3; }
  .about--v6 .about-keys { grid-template-columns: 1fr; gap: 16px; padding-top: 20px; }
}

/* ---------- TARGET: vertical type-poster manifesto ---------- */
.target.target--v6 { background: #fafaf7; padding: clamp(96px, 12vw, 140px) 0; }
.target--v6 .target-manifesto-wrap { max-width: 880px; }
.target--v6 .target-eyebrow-alt {
  font-family: var(--display); font-size: 11px;
  letter-spacing: 0.3em; color: #8a1f1f;
  text-transform: uppercase; margin: 0 0 48px;
}
.target--v6 .target-eyebrow-alt span { margin: 0 8px; opacity: 0.6; }
.target--v6 .target-headline {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(28px, 4.4vw, 52px); line-height: 1.35;
  margin: 0 0 64px; color: var(--ink);
}
.target--v6 .target-manifesto {
  list-style: none; padding: 0; margin: 0;
  border-left: 1px solid rgba(138, 31, 31, 0.25);
}
.target--v6 .target-line {
  padding: 36px 0 36px 40px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  position: relative;
}
.target--v6 .target-line:last-child { border-bottom: none; }
.target--v6 .target-line::before {
  content: ""; position: absolute;
  left: -2px; top: 48px;
  width: 3px; height: 24px; background: #8a1f1f;
}
.target--v6 .target-index {
  display: inline-block; font-family: var(--display);
  font-size: 12px; letter-spacing: 0.2em;
  color: #8a1f1f; margin-bottom: 18px;
}
.target--v6 .target-statement {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(22px, 3.2vw, 38px); line-height: 1.45;
  margin: 0 0 14px; color: var(--ink);
}
.target--v6 .target-statement em {
  font-style: normal; color: #8a1f1f; font-weight: 700;
  box-shadow: inset 0 -8px 0 rgba(138, 31, 31, 0.08);
}
.target--v6 .target-undertext {
  font-size: 14px; color: #666; line-height: 1.85;
  max-width: 62ch; margin: 0;
}
.target--v6 .target-tag {
  margin-top: 64px; font-family: var(--display);
  font-size: 11px; letter-spacing: 0.3em;
  color: #aaa; text-align: right;
}
@media (max-width: 640px) {
  .target--v6 .target-line { padding: 28px 0 28px 24px; }
}

/* --- v6 TARGET: dark-bg color rescue (existing .target uses var(--ink) bg !important) --- */
.target.target--v6 { background: var(--ink) !important; color: var(--paper); }
.target--v6 .target-eyebrow-alt { color: #ff8a76 !important; }
.target--v6 .target-eyebrow-alt span { color: rgba(255,255,255,0.3) !important; }
.target--v6 .target-headline { color: rgba(255,255,255,0.96) !important; }
.target--v6 .target-manifesto { border-left-color: rgba(255,138,118,0.4) !important; }
.target--v6 .target-line { border-bottom-color: rgba(255,255,255,0.1) !important; }
.target--v6 .target-line::before { background: var(--red) !important; }
.target--v6 .target-index { color: #ff8a76 !important; }
.target--v6 .target-statement { color: rgba(255,255,255,0.96) !important; }
.target--v6 .target-statement em {
  color: var(--red) !important;
  box-shadow: inset 0 -8px 0 rgba(255,70,52,0.18) !important;
}
.target--v6 .target-undertext { color: rgba(255,255,255,0.72) !important; }
.target--v6 .target-tag { color: rgba(255,255,255,0.35) !important; }

/* ---------- EXPERIENCE: horizontal timeline rail ---------- */
.experience.experience--v6 { background: #fff; padding: clamp(96px, 12vw, 140px) 0; overflow: hidden; }
.experience--v6 .experience-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 80px;
}
.experience--v6 .experience-headline {
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 600; letter-spacing: 0.02em; margin: 0; color: var(--ink);
}
.experience--v6 .experience-eyebrow-alt {
  font-family: var(--display); font-size: 11px;
  letter-spacing: 0.35em; color: var(--ink);
  text-transform: uppercase; margin: 0; align-self: flex-start;
}
.experience--v6 .experience-rail {
  position: relative; padding: 0 max(24px, 5vw);
}
.experience--v6 .experience-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; position: relative;
}
.experience--v6 .experience-track::before {
  content: ""; position: absolute;
  top: 42px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(to right, transparent, #8a1f1f 8%, #8a1f1f 92%, transparent);
  z-index: 0;
}
.experience--v6 .exp-node {
  position: relative; margin: 0; text-align: center; z-index: 1;
}
.experience--v6 .exp-node::before {
  content: ""; position: absolute;
  top: 36px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 2px solid #8a1f1f; z-index: 2;
}
.experience--v6 .exp-icon {
  width: 84px; height: 84px; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
}
.experience--v6 .exp-icon svg {
  width: 48px; height: 48px; stroke: var(--ink);
  stroke-width: 1.4; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.experience--v6 .exp-step {
  display: block; font-family: var(--display);
  font-size: 10px; letter-spacing: 0.3em;
  color: #8a1f1f; margin-bottom: 10px;
}
.experience--v6 .exp-keyword {
  font-family: var(--serif); font-size: 22px;
  letter-spacing: 0.08em; margin: 0 0 12px;
  font-weight: 600; color: var(--ink);
}
.experience--v6 .exp-caption {
  font-size: 13px; line-height: 1.75;
  color: #555; max-width: 22ch; margin: 0 auto;
}
@media (max-width: 900px) {
  .experience--v6 .experience-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .experience--v6 .experience-track {
    grid-template-columns: repeat(5, 64vw);
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .experience--v6 .exp-node { scroll-snap-align: center; }
  .experience--v6 .experience-track::before { display: none; }
}

/* ---------- BUSINESS: magazine facing-page tile spread ---------- */
.business.business--v6 { background: #fff; padding: clamp(96px, 12vw, 140px) 0; }
.business--v6 .business-intro {
  text-align: left; margin-bottom: 72px;
}
.business--v6 .business-issue-head {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--muted); letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.business--v6 .business-headline {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(26px, 3.4vw, 42px); line-height: 1.4;
  margin: 0; color: var(--ink);
}
.business--v6 .business-spread {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: 0 clamp(20px, 5vw, 72px);
  max-width: 1280px; margin: 0 auto;
}
.business--v6 .business-tile {
  display: flex; flex-direction: column; gap: 24px;
  background: transparent; box-shadow: none; padding: 0;
}
.business--v6 .business-tile.reverse { flex-direction: column; }
.business--v6 .business-figure {
  position: relative; aspect-ratio: 4 / 5;
  overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0;
}
.business--v6 .business-figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.business--v6 .business-figure .biz-label {
  position: absolute; left: 16px; bottom: 16px;
  background: #fff; padding: 6px 12px;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink); font-family: var(--sans);
}
.business--v6 .business-caption {
  display: flex; flex-direction: column; gap: 14px; padding: 0 4px;
}
.business--v6 .business-issue {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: #888; letter-spacing: 0.08em;
  margin: 0;
}
.business--v6 .business-caption .business-tag {
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--red);
  margin: 0; background: none; padding: 0;
}
.business--v6 .business-caption h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3; margin: 0; color: var(--ink);
}
.business--v6 .business-caption > p {
  margin: 0; font-size: 15px; line-height: 1.85; color: var(--ink-soft);
}
.business--v6 .business-tags {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  list-style: none; padding: 0; margin: 0;
  font-size: 12px; color: #666;
}
.business--v6 .business-tags li {
  background: none; padding: 0; border: 0;
}
.business--v6 .business-tags li::before {
  content: "/ "; color: var(--red); margin-right: 2px;
}
.business--v6 .business-deep-links {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; border-top: 1px solid #e5e5e5;
  padding-top: 14px; margin: 0;
}
.business--v6 .business-deep-links a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.business--v6 .business-deep-links a:hover { border-bottom-color: var(--red); }
@media (max-width: 760px) {
  .business--v6 .business-spread { grid-template-columns: 1fr; padding: 0 20px; }
  .business--v6 .business-figure { aspect-ratio: 4 / 3; }
}

/* ---------- MVV: centered manifesto / creed ---------- */
.mvv.mvv--v6 { background: var(--paper-warm); padding: clamp(120px, 14vw, 180px) 0; }
.mvv--v6 .mvv-manifesto {
  max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.mvv--v6 .mvv-manifesto-head {
  font-family: var(--display); font-size: 12px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 56px;
}
.mvv--v6 .mvv-label-inline {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--red);
  letter-spacing: 0.08em; margin: 0 0 18px;
}
.mvv--v6 .mvv-statement {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px, 3.2vw, 40px); line-height: 1.55;
  margin: 0 0 56px; letter-spacing: 0.01em; color: var(--ink);
}
.mvv--v6 .mvv-statement em {
  font-style: italic; color: var(--red); font-weight: 600;
}
.mvv--v6 .mvv-rule {
  border: 0; border-top: 1px solid #d8d8d8;
  width: 80px; margin: 0 auto 56px;
}
.mvv--v6 .mvv-creed {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-direction: column; gap: 18px;
  counter-reset: none;
}
.mvv--v6 .mvv-creed-line {
  display: flex; justify-content: center;
  align-items: baseline; gap: 14px; flex-wrap: wrap;
  font-size: clamp(15px, 1.5vw, 18px);
}
.mvv--v6 .creed-name {
  font-family: var(--serif); font-style: italic;
  color: var(--ink); min-width: 180px; text-align: right;
  font-weight: 500;
}
.mvv--v6 .creed-dash { color: var(--red); }
.mvv--v6 .creed-body {
  color: var(--ink-soft); text-align: left;
  max-width: 520px; line-height: 1.75;
}
@media (max-width: 640px) {
  .mvv--v6 .mvv-creed-line { flex-direction: column; gap: 4px; }
  .mvv--v6 .creed-name, .mvv--v6 .creed-body { text-align: center; min-width: 0; max-width: none; }
}

/* === END SECTION VARIATION 2026-06-20 v6 === */

/* =========================================================
   HERO v7 — Editorial Mobile (2026-06-21)
   Goal: Strip away the recruitment-LP / dept-store-flyer language
   (red pill CTA, white box headline, full-screen dark overlay, 7×red).
   Inherit BRUTUS/POPEYE/LSIGN POST editorial restraint instead.
   ========================================================= */

/* ---------- Color tokens for editorial palette ---------- */
:root {
  --hero-bordeaux: #8b1a1a;       /* muted red, replaces #ff4634 in hero */
  --hero-ink-paper: #f5f1ea;      /* warm off-white */
  --hero-veil: rgba(15, 18, 24, 0.55);
}

/* ---------- SUB-HERO: shared base (mobile + PC) ---------- */
.sub-hero { background: #0f1218 !important; }

.sub-hero .sub-hero-inner { padding: calc(var(--header-h, 64px) + 48px) clamp(18px, 5vw, 56px) clamp(40px, 8vh, 72px) !important; }

/* Sub-hero overlay: only bottom-darkening gradient — photo stays alive */
.sub-hero-bg::after {
  background:
    linear-gradient(180deg, transparent 0%, transparent 35%, rgba(15,18,24,0.55) 75%, rgba(15,18,24,0.85) 100%) !important;
}

/* Photo: NO scale — show source photo as-is, let cover do its job */
.sub-hero-bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 50% !important;
  transform: none !important;
  filter: saturate(0.92) contrast(1.05) !important;
}

/* Eyebrow: small caps, letter-spaced — NOT a big red label (covers .sub-hero-eyebrow + .eyebrow) */
.sub-hero .sub-hero-inner > p.eyebrow,
.sub-hero .sub-hero-inner > p.sub-hero-eyebrow,
.sub-hero .sub-hero-eyebrow,
.sub-hero .eyebrow,
.sub-hero-eyebrow {
  font-family: var(--display) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.32em !important;
  color: rgba(255, 255, 255, 0.85) !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 28px 0 !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  border: 0 !important;
  display: block !important;
}
.sub-hero .sub-hero-inner > p.eyebrow::before,
.sub-hero .sub-hero-inner > p.sub-hero-eyebrow::before,
.sub-hero .eyebrow::before,
.sub-hero-eyebrow::before {
  content: "— ";
  color: var(--hero-bordeaux);
  letter-spacing: 0;
  margin-right: 4px;
}

/* H1: editorial serif, white, NO white box */
.sub-hero h1,
.sub-hero .sub-hero-inner h1 {
  background: transparent !important;
  color: #fff !important;
  padding: 0 !important;
  font-family: "Noto Serif JP", "Yu Mincho", serif !important;
  font-weight: 500 !important;
  font-size: clamp(1.6rem, 5.4vw, 3.2rem) !important;
  letter-spacing: 0.02em !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45) !important;
  max-width: 22ch !important;
  display: block !important;
}
.sub-hero h1 br { display: block !important; }

/* Red accent ("将来の選択肢" etc.) — italic bordeaux, no pure red */
.sub-hero h1 .accent,
.sub-hero h1 .accent-yellow,
.sub-hero h1 strong,
.sub-hero h1 em {
  color: #ffb8a8 !important;
  font-style: italic !important;
  font-weight: 600 !important;
  background: transparent !important;
  position: relative;
}

/* ---------- HEADER: ENTRY pill → text link (mobile only) ---------- */
@media (max-width: 720px) {
  .site-header .header-cta {
    background: transparent !important;
    color: var(--ink) !important;
    border: 1px solid var(--ink) !important;
    border-radius: 0 !important;
    padding: 8px 14px !important;
    box-shadow: none !important;
    min-width: 0 !important;
  }
  .site-header .header-cta span {
    color: var(--ink) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
  }
  .site-header .header-cta small { display: none !important; }
}

/* ---------- MOBILE: editorial hero — kill leads, breadcrumb, buttons ---------- */
@media (max-width: 720px) {
  .sub-hero .hero-actions { display: none !important; }
  .sub-hero .sub-hero-inner > p.sub-hero-lead,
  .sub-hero .sub-hero-inner > p.intern-lead,
  .sub-hero .sub-hero-inner > p.skills-lead,
  .sub-hero .sub-hero-inner > p.career-lead,
  .sub-hero .sub-hero-inner > p.voice-lead,
  .sub-hero .sub-hero-inner > p.message-lead,
  .sub-hero .sub-hero-inner > p.contact-lead,
  .sub-hero .sub-hero-inner > p.faq-lead,
  .sub-hero .sub-hero-lead,
  .sub-hero .intern-lead { display: none !important; }
  /* Catch-all: any unclassified <p> after h1 inside sub-hero (details.html etc) */
  .sub-hero .sub-hero-inner > p:not(.eyebrow):not(.sub-hero-eyebrow) { display: none !important; }
  .sub-hero .sub-hero-inner > p.sub-hero-eyebrow,
  .sub-hero .sub-hero-inner > p.eyebrow { display: block !important; }

  /* Breadcrumb below hero: hidden on mobile */
  .breadcrumb { display: none !important; }

  /* Sub-hero proportions — shorter & wider so landscape photos show full context */
  .sub-hero {
    min-height: 360px !important;
    max-height: 440px !important;
    display: flex !important;
    align-items: flex-end !important;
  }
  .sub-hero .sub-hero-inner {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    padding-bottom: 56px !important;
  }
  .sub-hero h1,
  .sub-hero .sub-hero-inner h1 {
    font-size: clamp(1.4rem, 6.2vw, 2.2rem) !important;
    max-width: 100% !important;
  }
}

/* ---------- PC: editorial restraint — eyebrow + h1 only, like mobile ---------- */
@media (min-width: 721px) {
  .sub-hero {
    min-height: 58vh !important;
    display: block !important;
    position: relative !important;
  }
  .sub-hero .sub-hero-inner {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    height: auto !important;
    padding: 56px clamp(40px, 6vw, 80px) 88px !important;
    max-width: none !important;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .sub-hero .sub-hero-inner > p.eyebrow,
  .sub-hero .sub-hero-inner > p.sub-hero-eyebrow,
  .sub-hero .eyebrow,
  .sub-hero-eyebrow {
    font-size: 13px !important;
    letter-spacing: 0.36em !important;
    margin-bottom: 28px !important;
  }
  .sub-hero h1,
  .sub-hero .sub-hero-inner h1 {
    font-size: clamp(2.4rem, 4.4vw, 3.8rem) !important;
    max-width: 22ch !important;
  }
  /* Hide lead + buttons on PC too — editorial single-line treatment matches mobile */
  .sub-hero .sub-hero-inner > p:not(.eyebrow):not(.sub-hero-eyebrow) { display: none !important; }
  .sub-hero .sub-hero-inner > p.sub-hero-eyebrow,
  .sub-hero .sub-hero-inner > p.eyebrow { display: block !important; }
  .sub-hero .hero-actions { display: none !important; }
}

/* === END HERO v7 === */

/* === Contact form thank-you state 2026-06-21 === */
.contact-form-thanks {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) clamp(24px, 5vw, 56px);
  border: 1px solid rgba(13, 24, 39, 0.08);
  background: var(--paper, #fff);
}
.contact-form-thanks-mark {
  font-family: var(--display, serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--hero-bordeaux, #8b1a1a);
  margin: 0 0 22px;
}
.contact-form-thanks h3 {
  font-family: var(--serif, "Noto Serif JP", serif);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  color: var(--ink, #0d1827);
}
.contact-form-thanks p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft, #2a3645);
  margin: 0;
}

/* === Mobile duplicate-headline fix 2026-06-21 ===
   skills/career/voice/message はヒーローのh1と section-head のh2が同一文言。
   モバイルでは sub-hero 直下の section-head を非表示にして縦冗長を解消。 */
@media (max-width: 720px) {
  .page-skills .skills > .container > .section-head,
  .page-career .career > .container > .section-head,
  .page-voice .voice > .container > .section-head,
  .page-message .message > .container > .section-head {
    display: none !important;
  }
}

/* === HOME HERO mobile tweaks 2026-06-21 — stamp right, less zoom === */
@media (max-width: 720px) {
  .hero-editorial .hero-stamp {
    right: 10px !important;
    top: 5% !important;
    width: 64px !important;
    height: 64px !important;
  }
  .hero-editorial .hero-stack-single {
    aspect-ratio: 16 / 10 !important;
  }
  .hero-editorial .hero-stack-single .hero-stack-img {
    object-position: center 50% !important;
  }
}

/* === HOME HERO voice-banner swap 2026-06-22 — ソース 1920×675 完全一致、cover === */
section.hero-editorial .hero-stack-single,
.hero-editorial .hero-stack-single {
  aspect-ratio: 1920 / 675 !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  background: #0a1726 !important;
}
section.hero-editorial .hero-stack-single .hero-stack-img,
.hero-editorial .hero-stack-single .hero-stack-img {
  object-fit: cover !important;
  object-position: center center !important;
  background: #0a1726 !important;
  filter: none !important;
}
/* PC版 - 横余白なし、ヘッダー直下に画像ぴったり (2026-06-25: +20px バッファ削除) */
@media (min-width: 721px) {
  .hero-stack.hero-editorial {
    background: #0a1726 !important;
    padding: var(--header-h, 88px) 0 0 !important;
  }
  .hero-editorial .hero-stack-single {
    max-width: none;
    margin: 0;
    border: none;
  }
}
/* SE版は余白なし - フルブリード */
@media (max-width: 720px) {
  .hero-stack.hero-editorial {
    background: #0a1726 !important;
    padding-top: 0 !important;
  }
}
.hero-editorial .hero-stack-shade {
  background: none;
}
section.hero-editorial .hero-stack-single .hero-stack-overlay,
.hero-editorial.hero-stack .hero-stack-overlay {
  display: none !important;
}
@media (max-width: 720px) {
  .hero-editorial .hero-stack-single {
    aspect-ratio: 1920 / 675 !important;
  }
  .hero-editorial .hero-stack-single .hero-stack-img {
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* Hero CTAバンド内の応募ボタンを非表示（ヘッダーENTRY + 下部CTAで導線確保済み） */
.hero-editorial .hero-stack-band .hero-stack-actions,
.hero-editorial .hero-stack-overlay .hero-stack-actions,
.hero-editorial .hero-stack-actions {
  display: none !important;
}

/* empathy: スマホで section padding 詰め + " と "高校時代は、" の隙間圧縮 */
@media (max-width: 720px) {
  .empathy.empathy--v6 {
    padding: 24px 24px 56px !important;
  }
  .empathy--v6 .empathy-stage {
    row-gap: 4px !important;
  }
  .empathy--v6 .empathy-quote-open {
    font-size: 4.2rem !important;
    margin: 0 !important;
    line-height: 1 !important;
    transform: none !important;
  }
}

/* KPI バンド: スマホで中央寄せ・横に広げて縦詰める + 文字小 */
@media (max-width: 720px) {
  .hero-editorial .hero-stack-band {
    padding: 10px 16px 8px !important;
  }
  .hero-editorial .hero-kpi {
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
    justify-items: stretch !important;
  }
  .hero-editorial .hero-kpi li {
    padding: 8px 4px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .hero-editorial .hero-kpi li strong {
    font-size: 1.25rem !important;
  }
  .hero-editorial .hero-kpi li strong i {
    font-size: 0.58rem !important;
  }
  .hero-editorial .hero-kpi li span {
    font-size: 0.52rem !important;
  }
}

/* === Site splash / loader 2026-06-22 — エディトリアル風カーテンライズ === */
.site-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf8f3;
  pointer-events: auto;
  animation: site-splash-curtain 0.9s cubic-bezier(0.86, 0, 0.07, 1) 1.4s forwards;
}
.site-splash::before,
.site-splash::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: #faf8f3;
  z-index: -1;
}
.site-splash::before { top: 0; }
.site-splash::after { bottom: 0; }
.site-splash-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: site-splash-pop 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.site-splash-logo {
  width: clamp(110px, 16vw, 160px);
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.96);
  animation: site-splash-fade-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
.site-splash-line {
  display: block;
  width: clamp(140px, 20vw, 220px);
  height: 1px;
  background: linear-gradient(to right, transparent, #8b1a1a 30%, #8b1a1a 70%, transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: site-splash-line-draw 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}
.site-splash-tag {
  font-family: var(--display, "Cormorant Garamond", serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(13, 24, 39, 0.55);
  opacity: 0;
  transform: translateY(4px);
  animation: site-splash-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}
@keyframes site-splash-fade-in {
  to { opacity: 1; transform: scale(1); }
}
@keyframes site-splash-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes site-splash-line-draw {
  to { transform: scaleX(1); }
}
@keyframes site-splash-pop {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes site-splash-curtain {
  0% { opacity: 1; transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
  }
}
/* Prevent layout flicker — hide body scroll until splash done */
body.is-splash-active {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .site-splash,
  .site-splash-logo,
  .site-splash-line,
  .site-splash-tag {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
  }
}

/* === Brand logo image swap 2026-06-22 — ロゴを画像に差し替え === */
.site-header .brand-mark {
  font-size: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}
.site-header .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* === Mobile nav ENTRY CTA 幅固定 2026-06-22 — 「無料エントリーする →」時代の自然幅をENTRY短文でも維持 === */
@media (max-width: 720px) {
  .mobile-nav-cta {
    width: 100% !important;
    max-width: 360px !important;
    min-height: 56px !important;
    padding: 18px 32px !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.16em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    text-transform: uppercase !important;
  }
}


/* === SUB-HERO header overlap fix 2026-06-25 ====================
   サブページのヒーロー画像が固定ヘッダーに隠れる問題の修正。
   .sub-hero-bg を固定ヘッダー分だけ下げて、画像が切れないようにする。
   .sub-hero 自体の背景 (#0d1827) は上部で見えるため、ヘッダー裏も継ぎ目なし。
   ※ 既存の .sub-hero .sub-hero-bg !important (line 5255) より特異性を上げる
================================================================ */
section.sub-hero {
  background: var(--ink, #0d1827) !important;
}
section.sub-hero .sub-hero-bg,
.sub-hero .sub-hero-bg {
  position: absolute !important;
  top: var(--header-h, 88px) !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  inset: var(--header-h, 88px) 0 0 0 !important;
  height: auto !important;
}
/* 画像の焦点を上寄りにして頭が切れないようにする (全サブページ共通) */
section.sub-hero .sub-hero-bg img,
.sub-hero .sub-hero-bg img,
.page-intern .sub-hero-bg img,
.page-career .sub-hero-bg img,
.page-voice .sub-hero-bg img,
.page-message .sub-hero-bg img,
.page-faq .sub-hero-bg img,
.page-contact .sub-hero-bg img,
.page-skills .sub-hero-bg img {
  object-position: center 18% !important;
}

/* === Experience-card-wide (05) — background.experience-card override fix 2026-06-25 ===
   .experience-card { background: #fff !important } (line 6726) が
   .experience-card-wide { background: var(--ink) !important } (line 4604) を後勝ちで上書き
   → 白背景に白文字で本気の仲間が見えなくなっていた問題の修正。
   ※ .experience-card.experience-card-wide で特異性を 2 classes に上げて確実に勝つ。
================================================================ */
.experience-card.experience-card-wide {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  /* 明示的なグリッド配置: 左カラム=「05」(縦中央)、右カラム=タイトル+本文 */
  grid-template-columns: minmax(80px, 1fr) 5fr !important;
  grid-template-rows: auto auto !important;
  column-gap: 36px !important;
  row-gap: 8px !important;
  align-items: start !important;
  padding: 40px 48px !important;
}
.experience-card.experience-card-wide .experience-num {
  color: var(--accent, #c8102e) !important;
  grid-column: 1 !important;
  grid-row: 1 / 3 !important;
  align-self: center !important;
  font-size: 2.4rem !important;
  margin: 0 !important;
}
.experience-card.experience-card-wide h3 {
  color: #fff !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
}
.experience-card.experience-card-wide p {
  color: rgba(255,255,255,0.88) !important;
  grid-column: 2 !important;
  grid-row: 2 !important;
  margin: 0 !important;
}
@media (max-width: 720px) {
  .experience-card.experience-card-wide {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    padding: 28px 22px !important;
  }
  .experience-card.experience-card-wide .experience-num {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
  }
  .experience-card.experience-card-wide h3 {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  .experience-card.experience-card-wide p {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }
}