/* ============================================================
   Aquamarine Tax Accountant Corporation — Design System
   Style refs: Apple / Bridge Consulting / Deloitte — Modern, Minimal, Corporate
   ============================================================ */

:root {
  --color-primary: #0B2F6B;      /* Navy */
  --color-primary-dark: #082349; /* Darken 5% approx for hover */
  --color-secondary: #4DA8DA;    /* Light Blue */
  --color-gold: #C9A66B;         /* Soft Gold — premium accent */
  --color-bg: #FFFFFF;
  --color-bg-light: #F7F9FC;
  --color-border: #E5E7EB;
  --color-text: #1A1F29;
  --color-text-muted: #5B6472;
  --color-white: #FFFFFF;

  --font-jp: "Libre Baskerville", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Libre Baskerville", "Noto Serif JP", Georgia, serif;
  --font-en-display: "Libre Baskerville", "Noto Serif JP", Georgia, serif;
  --font-en-serif: "Libre Baskerville", "Noto Serif JP", Georgia, "Times New Roman", serif;

  --max-width: 1440px;
  --content-width: 1200px;
  --section-padding: 120px;
  --gap: 32px;

  --radius-card: 16px;
  --radius-button: 8px;

  --shadow-soft: 0 4px 24px rgba(11, 47, 107, 0.06);
  --shadow-soft-hover: 0 12px 32px rgba(11, 47, 107, 0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-fade: 0.4s;
  --motion-hover: 0.3s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
:lang(en) body, :lang(vi) body { font-family: var(--font-en); }

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }
.section-padding { padding: var(--section-padding) 0; }

@media (max-width: 1024px) {
  :root { --section-padding: 80px; --gap: 24px; }
}
@media (max-width: 640px) {
  :root { --section-padding: 64px; --gap: 20px; }
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  display: inline-block;
  font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 18px;
  color: var(--color-text-muted);
  font-size: 17px;
}

/* ---------- Reveal animation (fade up) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--motion-fade) var(--ease), transform var(--motion-fade) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-button);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform var(--motion-hover) var(--ease),
              background-color var(--motion-hover) var(--ease),
              box-shadow var(--motion-hover) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-4px);
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-soft-hover);
}
.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  transform: translateY(-4px);
  background: var(--color-bg-light);
  box-shadow: var(--shadow-soft-hover);
}
.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-on-dark:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-sm { height: 46px; padding: 0 24px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 88px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 0;
  transition: background-color var(--motion-hover) var(--ease),
              box-shadow var(--motion-hover) var(--ease),
              height var(--motion-hover) var(--ease),
              width var(--motion-hover) var(--ease),
              top var(--motion-hover) var(--ease),
              border-radius var(--motion-hover) var(--ease),
              transform var(--motion-hover) var(--ease);
}
.navbar.is-hidden { transform: translate(-50%, -140%); }
.navbar.is-scrolled, .navbar--light {
  top: 14px;
  width: min(1240px, calc(100% - 32px));
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 10px 34px rgba(11,47,107,0.12);
  height: 72px;
}
.navbar.is-scrolled .container, .navbar--light .container { padding: 0 32px; }
@media (max-width: 640px) {
  .navbar.is-scrolled, .navbar--light { top: 8px; width: calc(100% - 16px); border-radius: 20px; }
  .navbar.is-scrolled .container, .navbar--light .container { padding: 0 18px; }
}
.navbar .container {
  max-width: var(--content-width);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo { display: flex; align-items: center; gap: 10px; margin-left: 20px; }
.navbar__logo img { height: 44px; width: auto; transition: height var(--motion-hover) var(--ease); }
.navbar.is-scrolled .navbar__logo img, .navbar--light .navbar__logo img { height: 38px; }
.navbar__logo .logo-white {
  display: block;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.35));
}
.navbar__logo .logo-navy { display: none; }
.navbar.is-scrolled .navbar__logo .logo-white, .navbar--light .navbar__logo .logo-white { display: none; }
.navbar.is-scrolled .navbar__logo .logo-navy, .navbar--light .navbar__logo .logo-navy { display: block; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}
.navbar__nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color var(--motion-hover) var(--ease);
}
.navbar.is-scrolled .navbar__nav a, .navbar--light .navbar__nav a { color: var(--color-text); }
.navbar__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-secondary);
  transition: width var(--motion-hover) var(--ease);
}
.navbar__nav a:hover::after { width: 100%; }

.navbar__actions { display: flex; align-items: center; gap: 18px; }

.lang-switch { position: relative; }
.lang-switch__btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--motion-hover) var(--ease), border-color var(--motion-hover) var(--ease), color var(--motion-hover) var(--ease);
}
.navbar.is-scrolled .lang-switch__btn, .navbar--light .lang-switch__btn {
  background: var(--color-bg-light);
  border-color: var(--color-border);
  color: var(--color-text);
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-soft-hover);
  border: 1px solid var(--color-border);
  min-width: 170px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--motion-hover) var(--ease), transform var(--motion-hover) var(--ease), visibility var(--motion-hover);
}
.lang-switch.is-open .lang-switch__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-switch__menu a {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
}
.lang-switch__menu a:hover { background: var(--color-bg-light); }
.lang-switch__menu a[aria-current="true"] { color: var(--color-secondary); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: #fff;
  transition: transform var(--motion-hover) var(--ease), opacity var(--motion-hover) var(--ease), background var(--motion-hover) var(--ease);
}
.navbar.is-scrolled .nav-toggle span, .navbar--light .nav-toggle span,
.navbar.is-scrolled .nav-toggle span::before, .navbar--light .nav-toggle span::before,
.navbar.is-scrolled .nav-toggle span::after, .navbar--light .nav-toggle span::after { background: var(--color-primary); }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.is-active span { background: transparent !important; }
.nav-toggle.is-active span::before { top: 0; transform: rotate(45deg); background: var(--color-primary) !important; }
.nav-toggle.is-active span::after { top: 0; transform: rotate(-45deg); background: var(--color-primary) !important; }

@media (max-width: 960px) {
  /* NOTE: .navbar uses transform + backdrop-filter, which makes it the containing
     block for positioned descendants. position:fixed here would resolve against the
     navbar (72-88px tall) and collapse the panel, so anchor it with position:absolute. */
  .navbar__nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0; bottom: auto;
    margin: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(11, 47, 107, 0.18);
    flex-direction: column;
    align-items: stretch;
    padding: 6px 22px;
    gap: 0;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--motion-hover) var(--ease),
                transform var(--motion-hover) var(--ease),
                visibility var(--motion-hover) var(--ease);
  }
  .navbar__nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .navbar__nav a { color: var(--color-primary); width: 100%; padding: 15px 2px; border-bottom: 1px solid var(--color-border); font-size: 16.5px; }
  .navbar__nav a:last-child { border-bottom: none; }
  .navbar__nav a::after { display: none; }
  .navbar .btn-on-dark, .navbar .btn-primary.nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,26,58,0.72) 0%, rgba(6,26,58,0.55) 38%, rgba(6,26,58,0.42) 62%, rgba(255,255,255,0) 100%),
    linear-gradient(90deg, rgba(6,26,58,0.55) 0%, rgba(6,26,58,0.18) 55%, rgba(6,26,58,0.1) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 88px;
}
.hero__text { max-width: 620px; color: #fff; margin-left: clamp(16px, 7vw, 110px); }
.hero__kicker {
  display: inline-block;
  font-family: var(--font-en-serif);
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
}
.brand-name-en {
  font-family: var(--font-en-serif);
  color: var(--color-gold);
}
.footer .brand-name-en { color: inherit; }
.hero__title {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.75);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-en-display);
  font-size: 11px; letter-spacing: 0.1em;
}
.hero__scroll .dot {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.hero__scroll .dot::after {
  content: "";
  position: absolute; top: -100%; left: 0; right: 0; height: 100%;
  background: #fff;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { to { top: 100%; } }

@media (max-width: 640px) {
  .hero { min-height: 92vh; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ============================================================
   Brand Message
   ============================================================ */
.brand-message {
  padding: 100px 0;
  background: var(--color-bg);
  text-align: center;
}
.brand-message__line {
  width: 56px; height: 3px; background: var(--color-secondary);
  margin: 0 auto 32px; border-radius: 2px;
}
.brand-message__jp {
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.brand-message__sub {
  margin-top: 24px;
  color: var(--color-text-muted);
  font-size: 16px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}

/* ============================================================
   Numbers
   ============================================================ */
.numbers { background: var(--color-bg-light); }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.number-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  text-align: center;
  transition: transform var(--motion-hover) var(--ease), box-shadow var(--motion-hover) var(--ease);
}
.number-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-soft-hover); }
.number-card__icon {
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  color: var(--color-secondary);
}
.number-card__value {
  font-family: var(--font-en-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.number-card__suffix { font-size: 24px; font-weight: 700; font-family: var(--font-jp); }
.number-card__label {
  margin-top: 12px;
  font-size: 14px;
  font-family: var(--font-jp);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.number-card__label-sub {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--color-text-muted);
  opacity: 0.82;
}
@media (max-width: 960px) {
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .numbers__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .number-card { padding: 28px 16px; }
  .number-card__value { font-size: 32px; }
}

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.about__grid > div:not(.about__media) { max-width: 820px; }
.about__media {
  order: 2;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about__media img { width: 100%; height: auto; max-height: 480px; object-fit: cover; display: block; }
.about__body .eyebrow { }
.about__body h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.about__body p { color: var(--color-text-muted); margin-bottom: 16px; }
.about__list { margin-top: 28px; display: grid; gap: 14px; }
.about__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--color-text);
}
.about__list li .check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.about__body { margin-top: 32px; }
@media (max-width: 960px) {
  .about__grid { gap: 32px; }
  .about__media img { max-height: 280px; }
}

/* ============================================================
   Strength
   ============================================================ */
.strength { background: var(--color-bg-light); }
.strength__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.strength-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px;
  transition: transform var(--motion-hover) var(--ease), box-shadow var(--motion-hover) var(--ease);
}
.strength-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-soft-hover); }
.strength-card__num {
  font-family: var(--font-en-display);
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.strength-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.strength-card p { color: var(--color-text-muted); font-size: 15px; }
@media (max-width: 960px) {
  .strength__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Services
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--motion-hover) var(--ease), box-shadow var(--motion-hover) var(--ease);
  height: 100%;
}
.service-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-soft-hover); }
.service-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.service-card__tag {
  font-family: var(--font-en-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: #1A1A1A; margin-bottom: 12px;
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--color-primary); margin-bottom: 12px; }
.service-card p { color: var(--color-text-muted); font-size: 14.5px; flex: 1; margin-bottom: 24px; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--color-primary);
}
.service-card__link svg { transition: transform var(--motion-hover) var(--ease); }
.service-card__link:hover svg { transform: translateX(4px); }
.services__more { text-align: center; margin-top: 56px; }
@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Experts
   ============================================================ */
.experts { background: var(--color-bg-light); }
.experts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 64px;
  gap: var(--gap);
}
.expert-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-align: center;
  transition: transform var(--motion-hover) var(--ease), box-shadow var(--motion-hover) var(--ease);
}
.expert-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-soft-hover); }
.expert-card__media { aspect-ratio: 3 / 4; overflow: hidden; background: #fff; }
.expert-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.expert-card__body { padding: 28px 24px 32px; }
.expert-card__role {
  font-family: var(--font-en-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: #1A1A1A; margin-bottom: 8px;
}
.expert-card h3 { font-size: 19px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.expert-card p { font-size: 14px; color: var(--color-text-muted); }

.experts__langs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 64px;
}
.lang-badge {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--color-border);
  border-radius: 999px; padding: 10px 20px;
  font-size: 14px; font-weight: 700; color: var(--color-primary);
}
.lang-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-secondary); }
a.lang-badge { text-decoration: none; cursor: pointer; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease; }
a.lang-badge:hover { border-color: var(--color-secondary); box-shadow: var(--shadow-soft); transform: translateY(-2px); }
a.lang-badge[aria-current="true"] { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
a.lang-badge[aria-current="true"] .lang-badge__dot { background: #fff; }

.experts__message {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}
/* The photo is a portrait (1600x2133) with the head in the top ~30%.
   object-fit: cover crops vertically, and centring (50%) cuts the head off —
   badly on wide phones and almost entirely on desktop. Anchor nearer the top. */
.experts__message img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.experts__message::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,26,58,0.78), rgba(6,26,58,0.6));
}
.experts__message blockquote {
  position: relative; z-index: 1;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  max-width: 760px;
  line-height: 1.8;
}
.experts__message cite {
  position: relative; z-index: 1;
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 640px) {
  .experts__grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* ============================================================
   News
   ============================================================ */
.news { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.news__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}
.news__label {
  flex: none;
  font-family: var(--font-en-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}
.news__list { flex: 1; display: grid; gap: 16px; }
.news__item {
  display: flex; align-items: baseline; gap: 20px;
  font-size: 14.5px;
  flex-wrap: wrap;
}
.news__item time { color: var(--color-text-muted); font-family: var(--font-en); flex: none; }
.news__item .news__tag {
  flex: none;
  font-size: 11px; font-weight: 700;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  border-radius: 999px; padding: 2px 10px;
}
@media (max-width: 720px) {
  .news__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================================
   Column (Articles)
   ============================================================ */
.column__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.article-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--motion-hover) var(--ease), box-shadow var(--motion-hover) var(--ease);
}
.article-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-soft-hover); }
.article-card__media { aspect-ratio: 16/10; overflow: hidden; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; }
.article-card__body { padding: 28px; }
.article-card__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.article-card__cat {
  font-family: var(--font-en-display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--color-primary); background: var(--color-bg-light);
  border-radius: 999px; padding: 4px 12px;
}
.article-card__meta time { font-size: 12.5px; color: var(--color-text-muted); font-family: var(--font-en); }
.article-card h3 { font-size: 17.5px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; line-height: 1.5; }
.article-card p { font-size: 14px; color: var(--color-text-muted); }
@media (max-width: 960px) { .column__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .column__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #fff;
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 28px;
  background: none; border: none;
  text-align: left;
  font-size: 16px; font-weight: 700; color: var(--color-primary);
}
.faq-item__q .chevron {
  flex: none;
  width: 22px; height: 22px;
  transition: transform var(--motion-hover) var(--ease);
}
.faq-item.is-open .faq-item__q .chevron { transform: rotate(180deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--motion-hover) var(--ease), padding var(--motion-hover) var(--ease);
  padding: 0 28px;
  color: var(--color-text-muted);
  font-size: 14.5px;
}
.faq-item.is-open .faq-item__a { padding: 0 28px 26px; }
.faq__cta { text-align: center; margin-top: 48px; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  overflow: hidden;
}
.contact__bg { position: absolute; inset: 0; z-index: 0; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.contact__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,26,58,0.92), rgba(6,26,58,0.97));
}
.contact__inner { position: relative; z-index: 1; }
.contact__head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.contact__head h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; margin-bottom: 18px; }
.contact__head p { color: rgba(255,255,255,0.78); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-card);
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: rgba(255,255,255,0.85); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 14.5px;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-row select option { color: var(--color-text); background: #fff; }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 16px; }

/* ---- Contact channels: premium, airy list layout (no filled boxes) ---- */
.contact-channels { display: flex; flex-direction: column; gap: 32px; }
.contact-block { padding: 40px 0; }
.contact-block:first-child { padding-top: 4px; }
.contact-channels > .contact-form + .contact-block { padding-top: 0; }
.contact-block + .contact-block { border-top: 1px solid rgba(255,255,255,0.12); }

.contact-block__title {
  font-family: var(--font-en-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 30px;
}

/* Icon rows — phone / fax / email / chat channels */
.info-list { display: flex; flex-direction: column; }
.info-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-list .info-row:first-child { padding-top: 0; }
.info-list .info-row:last-child { border-bottom: none; padding-bottom: 0; }
a.info-row, .info-row--wechat { transition: opacity var(--motion-hover) var(--ease); }
a.info-row:hover, .info-row--wechat:hover { opacity: 0.68; }

.info-row__icon {
  flex: none;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
}
.info-row__icon svg { width: 20px; height: 20px; }
.info-row__icon--brand { border-radius: 10px; overflow: hidden; }
.info-row__icon--brand svg { width: 100%; height: 100%; }

.info-row__body { display: flex; flex-direction: column; gap: 8px; }
.info-row__label {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}
.info-row__value {
  font-family: var(--font-en-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
.info-row--primary .info-row__value { font-size: 20px; font-weight: 700; line-height: 1.3; }

/* Plain rows — business info (hours / closed / address): stacked label + value, no icon */
.detail-list { display: flex; flex-direction: column; }
.detail-row { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.detail-list .detail-row:first-child { padding-top: 0; }
.detail-list .detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.detail-row__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.detail-row__value {
  font-size: 15.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
}

.contact-map { border-radius: var(--radius-card); overflow: hidden; border: 1px solid rgba(255,255,255,0.16); }
.contact-map iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

.wechat-pop {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow-soft-hover);
  z-index: 20;
  width: 180px;
  text-align: center;
}
.wechat-pop img { border-radius: 6px; }
.wechat-pop span { display: block; margin-top: 8px; font-size: 11px; color: var(--color-text-muted); }
.info-row--wechat { position: relative; cursor: pointer; }
.info-row--wechat:hover .wechat-pop,
.info-row--wechat:focus-within .wechat-pop { display: block; }

@media (max-width: 960px) {
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .info-row--primary .info-row__value { font-size: 18px; }
}

/* ============================================================
   Final CTA (between contact & footer, optional slim band)
   ============================================================ */
.cta-band {
  background: var(--color-bg-light);
  text-align: center;
  padding: 72px 0;
}
.cta-band h2 { font-size: clamp(22px, 2.6vw, 30px); color: var(--color-primary); font-weight: 700; margin-bottom: 28px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #071B3D; color: rgba(255,255,255,0.72); padding: 88px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand img { height: 32px; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; line-height: 1.9; max-width: 320px; }
.footer h5 {
  color: #fff; font-family: var(--font-en-display); font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.footer__list { display: grid; gap: 12px; }
.footer__list a { font-size: 14.5px; transition: color var(--motion-hover) var(--ease); }
.footer__list a:hover { color: #fff; }
.footer__sns { display: flex; gap: 12px; margin-top: 4px; }
.footer__sns a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--motion-hover) var(--ease), transform var(--motion-hover) var(--ease);
}
.footer__sns a:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.footer__sns svg { width: 18px; height: 18px; }
.footer__sns a.is-brand { background: none; overflow: hidden; }
.footer__sns a.is-brand svg { width: 100%; height: 100%; }
.footer__sns a.is-brand:hover { transform: translateY(-3px); opacity: 0.88; }
.footer__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
.footer__bottom a:hover { color: #fff; }
.footer__bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   Intro Loader (subtle logo fade — nods to brand logo motion)
   ============================================================ */
.intro-loader {
  position: fixed; inset: 0; z-index: 5000;
  background: #fff;
  overflow: hidden;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.intro-loader video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: introFadeIn 0.8s var(--ease) forwards;
}
@keyframes introFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.intro-loader.is-hidden { opacity: 0; visibility: hidden; }
.intro-loader__skip {
  position: absolute;
  z-index: 1;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  background: rgba(6,26,58,0.4);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  animation: introFadeIn 0.8s var(--ease) 0.6s forwards;
  transition: background var(--motion-hover) var(--ease), border-color var(--motion-hover) var(--ease);
}
.intro-loader__skip:hover { background: rgba(6,26,58,0.6); border-color: #fff; }

/* ============================================================
   Utilities
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
/* ============================================================
   Recruit Page — interior page hero + small helpers
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,26,58,0.75) 0%, rgba(6,26,58,0.6) 45%, rgba(6,26,58,0.88) 100%),
    linear-gradient(90deg, rgba(6,26,58,0.55) 0%, rgba(6,26,58,0.14) 55%, rgba(6,26,58,0.08) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 112px;
  padding-bottom: 56px;
}
@media (max-width: 640px) {
  .page-hero { min-height: 46vh; }
}

.candidate__list { max-width: 760px; margin: 32px auto 0; }

.entry-form-wrap { max-width: 640px; margin: 0 auto; }
.nowrap-desktop { white-space: nowrap; }
@media (max-width: 640px) { .nowrap-desktop { white-space: normal; } }
/* ============================================================
   Recruit Page — mockup-faithful layout
   ============================================================ */

/* HERO: text left on soft gradient, photo bleeding to right edge */
.recruit-hero {
  background: linear-gradient(118deg, #F5F8FC 0%, #EAF0F7 55%, #E2EAF4 100%);
  overflow: hidden;
}
.recruit-hero__inner {
  display: grid;
  grid-template-columns: minmax(340px, 42%) 1fr;
  align-items: stretch;
}
.recruit-hero__text {
  padding: 168px 56px 96px max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recruit-hero__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.recruit-hero__desc {
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 2.05;
  margin-bottom: 40px;
}
.recruit-hero__kicker {
  font-family: var(--font-en-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-gold);
}
.recruit-hero__media { position: relative; min-height: 520px; }
.recruit-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@media (max-width: 960px) {
  .recruit-hero__inner { grid-template-columns: 1fr; }
  .recruit-hero__text { padding: 136px 24px 48px; }
  .recruit-hero__media { min-height: 300px; }
}

/* FEATURE STRIP: 4 items, thin vertical dividers */
.feature-strip { background: #fff; padding: 72px 0; }
.feature-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-strip__item { text-align: center; padding: 4px 28px; }
.feature-strip__item + .feature-strip__item { border-left: 1px solid var(--color-border); }
.feature-strip__icon { width: 44px; height: 44px; margin: 0 auto 18px; color: var(--color-primary); }
.feature-strip__item h3 { font-size: 15.5px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.feature-strip__item p { font-size: 13px; color: var(--color-text-muted); line-height: 1.8; }
@media (max-width: 960px) {
  .feature-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .feature-strip__item:nth-child(3) { border-left: none; }
}
@media (max-width: 560px) {
  .feature-strip__grid { grid-template-columns: 1fr; }
  .feature-strip__item + .feature-strip__item { border-left: none; }
}

/* ABOUT BAND: navy content left, night cityscape right */
.about-band {
  background: var(--color-primary);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(360px, 54%) 1fr;
  overflow: hidden;
}
.about-band__content {
  padding: 88px 64px 88px max(24px, calc((100vw - var(--content-width)) / 2 + 24px));
}
.about-band h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 28px;
}
.about-band h2::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 52px; height: 2px;
  background: var(--color-gold);
}
.about-band p {
  color: rgba(255,255,255,0.84);
  font-size: 14.5px;
  line-height: 2.05;
  margin-bottom: 52px;
}
.about-band__stats { display: flex; flex-wrap: wrap; gap: 32px 56px; }
.about-band__stat-label {
  display: flex; align-items: center; gap: 8px;
  color: var(--color-gold);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.about-band__stat-label svg { flex: none; }
.about-band__stat-value { font-size: 21px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.about-band__media { position: relative; min-height: 380px; }
.about-band__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.about-band__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(6,26,58,0.25) 38%, rgba(6,26,58,0) 70%);
}
@media (max-width: 960px) {
  .about-band { grid-template-columns: 1fr; }
  .about-band__content { padding: 64px 24px; }
  .about-band__media { min-height: 240px; }
  .about-band__media::after { background: linear-gradient(180deg, var(--color-primary) 0%, rgba(6,26,58,0) 55%); }
}

/* CANDIDATE PROFILE + JOB POSITIONS: two bordered cards */
.profile-positions { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--gap); align-items: stretch; }
.profile-positions > * { min-width: 0; }
.profile-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 40px;
  display: flex; flex-direction: column;
}
.profile-card__title, .positions-card__title {
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 700;
  color: var(--color-primary); margin-bottom: 28px;
}
.profile-card__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; flex: 1; }
.profile-card__grid > * { min-width: 0; }
.profile-card .about__list { margin: 0; }
.profile-card__media { border-radius: 12px; overflow: hidden; height: 240px; }
.profile-card__media img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) { .profile-card__grid { grid-template-columns: 1fr; } }

.positions-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 40px;
  display: flex; flex-direction: column;
}
.positions-list { display: flex; flex-direction: column; flex: 1; }
.positions-item { border: none; border-radius: 0; background: none; overflow: hidden; border-bottom: 1px solid var(--color-border); }
.positions-row {
  width: 100%; display: flex; align-items: center; justify-content: flex-start; gap: 14px;
  padding: 18px 4px; background: none; border: none; text-align: left;
  cursor: pointer; font-family: inherit;
}
.positions-list .positions-item:first-child .positions-row { padding-top: 4px; }
.positions-row .chevron { flex: none; width: 18px; height: 18px; margin-left: auto; color: var(--color-text-muted); transition: transform var(--motion-hover) var(--ease); }
.positions-item .faq-item__a { padding: 0 4px; font-size: 13px; }
.positions-item.is-open .faq-item__a { padding: 0 4px 18px; }
.positions-detail dl { margin: 0; display: grid; gap: 12px; }
.positions-detail dt { font-size: 12px; font-weight: 700; color: #1A1A1A; margin-bottom: 3px; }
.positions-detail dd { margin: 0; font-size: 13px; color: var(--color-text-muted); line-height: 1.8; }
.positions-row__name { font-size: 15px; font-weight: 700; color: var(--color-text); }
.positions-row__tag {
  font-size: 11px; font-weight: 700; color: var(--color-secondary);
  background: var(--color-bg-light); border-radius: 999px; padding: 4px 12px;
  white-space: nowrap;
}
.positions-row__icon { margin-left: auto; flex: none; width: 18px; height: 18px; color: var(--color-text-muted); }
.positions-card .btn { margin-top: 28px; width: 100%; }
@media (max-width: 960px) { .profile-positions { grid-template-columns: 1fr; gap: 40px; } }

/* TRIPLE BAND: environment / flow / voice */
.triple-band { background: #fff; padding-top: 0; }
.triple-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: stretch; }
.triple-band__grid > * { min-width: 0; }
.triple-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card);
  padding: 36px 32px; display: flex; flex-direction: column;
}
.triple-card h3 { font-size: 18px; font-weight: 700; color: var(--color-primary); margin-bottom: 24px; }
.triple-card .btn { margin-top: auto; width: 100%; }

.env-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-bottom: 32px; }
.env-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.env-item svg { width: 30px; height: 30px; color: var(--color-primary); }
.env-item span { font-size: 12.5px; font-weight: 600; color: var(--color-text); line-height: 1.6; }

.flow-mini { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; }
.flow-mini__step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 54px; }
.flow-mini__circle {
  width: 50px; height: 50px; border: 1px solid var(--color-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); margin-bottom: 10px; background: #fff;
}
.flow-mini__circle svg { width: 21px; height: 21px; }
.flow-mini__num { font-family: var(--font-en-display); font-size: 10.5px; font-weight: 700; color: var(--color-gold); letter-spacing: 0.08em; margin-bottom: 4px; }
.flow-mini__label { font-size: 11.5px; color: var(--color-text-muted); line-height: 1.5; }
.flow-mini__arrow { flex: none; width: 13px; height: 13px; color: var(--color-border); margin: 19px 2px 0; }

.voice-card__grid { display: grid; grid-template-columns: 104px 1fr; gap: 16px; align-items: start; margin-bottom: 24px; }
.voice-card__grid > * { min-width: 0; }
.voice-card__media { border-radius: 12px; overflow: hidden; height: 140px; }
.voice-card__media img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; display: block; }
.voice-card blockquote { font-size: 13px; color: var(--color-text-muted); line-height: 1.9; margin-bottom: 12px; }
.voice-card cite { font-style: normal; font-size: 12.5px; font-weight: 700; color: var(--color-primary); display: block; text-align: right; }
@media (max-width: 960px) { .triple-band__grid { grid-template-columns: 1fr; } }

/* CTA BAND: light, text left / gold button right */
.cta-band { background: var(--color-bg-light); padding: 64px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(21px, 2.4vw, 28px); color: var(--color-primary); font-weight: 700; line-height: 1.7; margin-bottom: 12px; }
.cta-band p { color: var(--color-text-muted); font-size: 14px; }
.btn-gold { background: var(--color-gold); color: #fff; border-color: var(--color-gold); }
.btn-gold:hover { transform: translateY(-4px); background: #B8905A; box-shadow: var(--shadow-soft-hover); }
@media (max-width: 720px) { .cta-band__inner { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   Interior subpages (services / column / company / privacy)
   ============================================================ */
.subpage-hero { background: linear-gradient(118deg, #F5F8FC 0%, #EAF0F7 55%, #E2EAF4 100%); padding: 152px 0 60px; }
.subpage-hero h1 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--color-primary); line-height: 1.5; margin: 12px 0 16px; }
.subpage-hero .lead { color: var(--color-text-muted); font-size: 15px; line-height: 2; max-width: 760px; }

.subpage-section h2 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; color: var(--color-primary); margin-bottom: 28px; }

.split-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--gap); align-items: center; }
.split-grid > * { min-width: 0; }
.split-grid .about__list { margin: 0; }
.split-media { border-radius: var(--radius-card); overflow: hidden; height: 300px; }
.split-media img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .split-grid { grid-template-columns: 1fr; } .split-media { height: 220px; } }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.detail-grid > * { min-width: 0; }
.detail-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 32px; }
.detail-card h3 { font-size: 16px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.detail-card p { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.9; }
@media (max-width: 720px) { .detail-grid { grid-template-columns: 1fr; } }

.flow-wide { max-width: 760px; margin: 0 auto; }
.flow-wide .flow-mini { margin-bottom: 0; }
.flow-wide .flow-mini__circle { width: 62px; height: 62px; }
.flow-wide .flow-mini__circle svg { width: 26px; height: 26px; }
.flow-wide .flow-mini__label { font-size: 13px; }
.flow-wide .flow-mini__arrow { margin-top: 25px; }

.company-table { border-top: 1px solid var(--color-border); max-width: 860px; }
.company-table > div { display: grid; grid-template-columns: 190px 1fr; gap: 24px; padding: 22px 4px; border-bottom: 1px solid var(--color-border); }
.company-table dt { font-size: 13px; font-weight: 700; color: var(--color-primary); }
.company-table dd { margin: 0; font-size: 14px; color: var(--color-text-muted); line-height: 1.9; }
@media (max-width: 640px) { .company-table > div { grid-template-columns: 1fr; gap: 6px; } }

.expert-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); max-width: 860px; }
.expert-mini-grid > * { min-width: 0; }
.expert-mini { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); overflow: hidden; }
.expert-mini__media { height: 280px; overflow: hidden; }
.expert-mini__media img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; object-position: top; display: block; }
.expert-mini__body { padding: 26px 28px 30px; }
.expert-mini__role { font-size: 12px; font-weight: 700; color: #1A1A1A; margin-bottom: 6px; }
.expert-mini__name { font-size: 19px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.expert-mini__body p { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.9; }
@media (max-width: 720px) { .expert-mini-grid { grid-template-columns: 1fr; } }

.privacy-body { max-width: 800px; }
.privacy-body h2 { font-size: 17px; font-weight: 700; color: var(--color-primary); margin: 44px 0 14px; }
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body p, .privacy-body li { font-size: 14px; color: var(--color-text-muted); line-height: 2; }
.privacy-body ul, .privacy-body ol { padding-left: 24px; display: grid; gap: 6px; margin: 10px 0; }
.privacy-body .privacy-date { margin-top: 44px; font-size: 13px; text-align: right; }

.article-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.article-list > * { min-width: 0; }
@media (max-width: 960px) { .article-list { grid-template-columns: 1fr; } }
.column-note { margin-top: 40px; text-align: center; color: var(--color-text-muted); font-size: 14px; }

/* ============================================================
   Typography layer — ThoughtStream fonts only
   (Libre Baskerville / Noto Serif JP headings, Inter body)
   ============================================================ */
h1, h2 { font-family: var(--font-en-serif); }
.section-head h2, .cta-band h2, .subpage-hero h1, .recruit-hero__title, .about-band h2 { font-family: var(--font-en-serif); }

/* ============================================================
   Inheritance Tax LP (幸せ相続計画)
   ============================================================ */
.lp-hero { background: linear-gradient(118deg, #F5F8FC 0%, #EAF0F7 55%, #E2EAF4 100%); overflow: hidden; }
.lp-hero__inner { display: grid; grid-template-columns: minmax(340px, 48%) 1fr; align-items: stretch; }
.lp-hero__text { padding: 148px 48px 72px max(24px, calc((100vw - var(--content-width)) / 2 + 24px)); }
.lp-hero__kicker { font-size: 14px; font-weight: 700; color: #1A1A1A; margin-bottom: 14px; }
.lp-hero__title { font-size: clamp(24px, 2.9vw, 36px); font-weight: 700; color: var(--color-primary); line-height: 1.6; margin-bottom: 22px; }
.lp-brand { display: flex; gap: 6px; margin-bottom: 28px; align-items: center; flex-wrap: wrap; }
.lp-brand__char {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 8px;
  color: #fff; font-size: 24px; font-weight: 700; font-family: var(--font-jp);
}
.lp-brand__reg { font-size: 12px; color: var(--color-text-muted); align-self: flex-start; }
.lp-brand__gloss { font-size: 14px; font-weight: 700; color: var(--color-primary); letter-spacing: 0.01em; margin-left: 8px; line-height: 1.5; }
.lp-hero__checks { display: grid; gap: 10px; max-width: 420px; }
.lp-hero__checks li {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--color-border); border-radius: 10px;
  padding: 12px 18px; font-size: 14.5px; font-weight: 700; color: var(--color-text);
  box-shadow: var(--shadow-soft);
}
.lp-hero__checks .em { color: #C25E28; }
.lp-hero__media { position: relative; min-height: 480px; }
.lp-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-hero__badge {
  position: absolute; top: 108px; right: 28px; z-index: 2;
  background: #fff; border: 1px solid var(--color-border); border-radius: 14px;
  padding: 18px 20px; text-align: center; font-size: 13px; font-weight: 700;
  color: var(--color-text); box-shadow: var(--shadow-soft-hover); line-height: 1.7;
}
.lp-hero__badge .big { font-size: 22px; color: var(--color-primary); }
.lp-hero__badge .gold { color: var(--color-gold); }
@media (max-width: 960px) {
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-hero__text { padding: 128px 24px 40px; }
  .lp-hero__media { min-height: 300px; }
  .lp-hero__badge { top: 16px; right: 16px; }
}

.lp-free { background: var(--color-primary); color: #fff; text-align: center; padding: 44px 0; }
.lp-free h2 { font-size: clamp(20px, 2.4vw, 27px); font-weight: 700; margin-bottom: 20px; }
.lp-free h2 .free { color: var(--color-gold); font-size: 1.25em; }

.lp-worries { text-align: center; }
.lp-worries__sub { color: var(--color-gold); font-size: 13.5px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 12px; }
.lp-worries h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; color: var(--color-primary); margin-bottom: 44px; }
.lp-worries__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  padding: 0;
}
.lp-worries__list li {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #F7FAFD;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px 26px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.7;
  box-shadow: 0 6px 18px rgba(11, 47, 107, 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.lp-worries__list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 47, 107, 0.13);
  border-color: rgba(201, 166, 107, 0.55);
}
.lp-worries__ic {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E8F0FA, #D6E4F5);
  color: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-worries__ic svg { width: 25px; height: 25px; }
.lp-worries__list .em { color: var(--color-primary); border-bottom: 2px solid var(--color-gold); font-weight: 700; }
@media (max-width: 720px) {
  .lp-worries__list { grid-template-columns: 1fr; gap: 14px; max-width: 480px; }
  .lp-worries__list li { padding: 18px 20px; gap: 14px; }
  .lp-worries__ic { width: 42px; height: 42px; }
}

.lp-causes { background: var(--color-bg-light); }
.lp-causes h2 { text-align: center; font-size: clamp(19px, 2.2vw, 25px); font-weight: 700; color: var(--color-text); margin-bottom: 36px; }
.lp-causes h2 .em { color: var(--color-primary); }
.lp-causes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.lp-causes__grid > * { min-width: 0; }
.lp-cause { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 28px 20px; text-align: center; }
.lp-cause svg { width: 44px; height: 44px; color: var(--color-secondary); margin: 0 auto 14px; display: block; }
.lp-cause p { font-size: 13px; font-weight: 700; color: var(--color-text); line-height: 1.7; }
@media (max-width: 960px) { .lp-causes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-causes__grid { grid-template-columns: 1fr; } }

.lp-data { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 44px 40px; margin-top: var(--gap); }
.lp-data h3 { text-align: center; font-size: 19px; font-weight: 700; color: var(--color-primary); margin-bottom: 36px; }
.lp-data__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.lp-data__grid > * { min-width: 0; }
.lp-donut { width: 220px; height: 220px; border-radius: 50%; margin: 0 auto; position: relative;
  background: conic-gradient(var(--color-primary) 0 85%, #C9D6E8 85% 100%); }
.lp-donut::after { content: ""; position: absolute; inset: 34px; background: #fff; border-radius: 50%; }
.lp-donut__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1; text-align: center; }
.lp-donut__center .pct { font-size: 40px; font-weight: 700; color: var(--color-primary); line-height: 1; }
.lp-donut__center .pct span { font-size: 20px; }
.lp-donut__center .label { font-size: 11.5px; font-weight: 700; color: var(--color-text-muted); margin-top: 8px; line-height: 1.6; }
.lp-donut-caption { text-align: center; font-size: 12.5px; color: var(--color-text-muted); margin-top: 14px; }

.lp-bars { }
.lp-bars__title { text-align: center; font-size: 14px; font-weight: 700; color: var(--color-text); margin-bottom: 20px; }
.lp-bars__chart { display: flex; align-items: flex-end; justify-content: center; gap: 40px; height: 200px; }
.lp-bar { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.lp-bar__value { font-size: 13px; font-weight: 700; color: var(--color-primary); margin-bottom: 6px; }
.lp-bar__fill { width: 64px; background: linear-gradient(180deg, #7FA6D9, var(--color-primary)); border-radius: 6px 6px 0 0; }
.lp-bar__label { font-size: 12.5px; color: var(--color-text-muted); margin-top: 10px; }
.lp-bars__src { text-align: center; font-size: 12px; color: var(--color-text-muted); margin-top: 18px; }
.lp-data__note { text-align: center; font-size: 13.5px; color: var(--color-text-muted); margin-top: 32px; }
@media (max-width: 860px) { .lp-data__grid { grid-template-columns: 1fr; gap: 40px; } }

.lp-solution { position: relative; background: var(--color-primary); color: #fff; text-align: center; padding: 72px 0 64px; overflow: hidden; }
.lp-solution__lead { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.lp-solution__sub { font-size: 15px; font-weight: 700; color: var(--color-gold); margin-bottom: 18px; }
.lp-solution h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 700; line-height: 1.7; }

.lp-steps { display: grid; gap: var(--gap); }
.lp-step { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: center;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); overflow: hidden; }
.lp-step > * { min-width: 0; }
.lp-step__media { height: 100%; min-height: 210px; position: relative; }
.lp-step__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-step__body { padding: 30px 36px 30px 0; }
.lp-step__num { font-family: var(--font-en-display); font-size: 15px; font-weight: 700; color: var(--color-gold); letter-spacing: 0.08em; margin-bottom: 6px; }
.lp-step__body h3 { font-size: 19px; font-weight: 700; color: var(--color-primary); margin-bottom: 12px; }
.lp-step__body p { font-size: 14px; color: var(--color-text-muted); line-height: 2; }
@media (max-width: 780px) {
  .lp-step { grid-template-columns: 1fr; }
  .lp-step__media { min-height: 180px; }
  .lp-step__body { padding: 26px 28px 30px; }
}

.detail-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .detail-grid--3col { grid-template-columns: 1fr; } }

/* ============================================================
   Column articles
   ============================================================ */
.article-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.article-meta__cat {
  font-size: 12px; font-weight: 700; color: var(--color-primary);
  background: #fff; border: 1px solid var(--color-border); border-radius: 999px;
  padding: 5px 14px;
}
.article-meta time { font-size: 13px; color: var(--color-text-muted); font-family: var(--font-en-display); }
.article-body { max-width: 800px; }
.article-body > p:first-child { font-size: 15px; }
.article-disclaimer {
  margin-top: 52px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.9;
}
.article-back { margin-top: 36px; }
a.article-card { display: block; color: inherit; }
a.article-card h3 { transition: color var(--motion-hover) var(--ease); }
a.article-card:hover h3 { color: var(--color-secondary); }

/* ============================================================
   Privacy policy page (mockup layout)
   ============================================================ */
.policy-hero { position: relative; background: linear-gradient(118deg, #F5F8FC 0%, #EAF0F7 60%, #E2EAF4 100%); padding: 150px 0 72px; overflow: hidden; }
.policy-hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 55%; }
.policy-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.policy-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #EDF2F8 0%, rgba(237,242,248,0.55) 40%, rgba(237,242,248,0) 100%);
}
.policy-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-size: 12.5px; color: var(--color-text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--color-secondary); }
.breadcrumb .sep { margin: 0 8px; color: var(--color-border); }
.policy-hero h1 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.policy-en { font-family: var(--font-en-serif); font-size: 15px; letter-spacing: 0.08em; color: #1A1A1A; margin-bottom: 28px; }
.policy-hero .lead { max-width: 500px; color: var(--color-text); font-size: 14.5px; line-height: 2.1; }
@media (max-width: 860px) {
  .policy-hero__media { display: none; }
  .policy-hero { padding: 132px 0 48px; }
}

.policy-list { display: grid; gap: 56px; max-width: 920px; }
.policy-item { display: grid; grid-template-columns: 96px 1fr; gap: 30px; align-items: start; }
.policy-item > * { min-width: 0; }
.policy-item__icon {
  width: 78px; height: 78px; border-radius: 50%;
  background: #EDF2F8; color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.policy-item__icon svg { width: 32px; height: 32px; }
.policy-item__head { display: flex; align-items: center; gap: 20px; margin-bottom: 14px; }
.policy-item__head h2 { font-size: 19px; font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.policy-item__head .rule { flex: 1; height: 1px; background: var(--color-border); }
.policy-item__body p { font-size: 14px; color: var(--color-text); line-height: 2.05; }
.policy-item__body .muted { color: var(--color-text-muted); }
.policy-inline-list { display: flex; flex-wrap: wrap; gap: 4px 26px; margin: 8px 0; padding: 0; }
.policy-inline-list li { font-size: 14px; color: var(--color-text); line-height: 2; }
.policy-inline-list li::before { content: "・"; color: var(--color-primary); }
@media (max-width: 640px) {
  .policy-item { grid-template-columns: 1fr; gap: 14px; }
  .policy-item__icon { width: 60px; height: 60px; }
  .policy-item__icon svg { width: 26px; height: 26px; }
  .policy-item__head h2 { white-space: normal; }
}

.policy-contact {
  display: flex; flex-wrap: wrap; gap: 16px 44px; align-items: center;
  border: 1px solid var(--color-border); border-radius: 14px;
  background: #fff; padding: 24px 30px; margin-top: 18px;
}
.policy-contact__item { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 700; color: var(--color-text); }
.policy-contact__item a { color: inherit; }
.policy-contact__ic {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: #EDF2F8; color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.policy-contact__ic svg { width: 19px; height: 19px; }

.policy-date { max-width: 920px; text-align: right; margin-top: 56px; font-size: 13.5px; color: var(--color-text-muted); }

/* ============================================================
   Column index — magazine layout
   ============================================================ */
.colidx-cats { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.colidx-cat {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--color-border); border-radius: 12px;
  padding: 12px 20px; font-size: 13.5px; font-weight: 700; color: var(--color-text);
  cursor: pointer; transition: border-color var(--motion-hover) var(--ease), background var(--motion-hover) var(--ease);
  font-family: inherit;
}
.colidx-cat svg { width: 20px; height: 20px; color: var(--color-primary); }
.colidx-cat:hover { border-color: var(--color-secondary); }
.colidx-cat.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.colidx-cat.is-active svg { color: #fff; }

.colidx-layout { display: grid; grid-template-columns: 1fr 330px; gap: 48px; align-items: start; }
.colidx-layout > * { min-width: 0; }
.colidx-h3 { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; color: var(--color-primary); margin-bottom: 20px; }
.colidx-h3::before { content: ""; width: 4px; height: 18px; background: var(--color-primary); border-radius: 2px; }

.colidx-list { display: grid; gap: 18px; }
.colidx-item {
  display: grid; grid-template-columns: 220px 1fr; gap: 22px; align-items: center;
  background: #fff; border: 1px solid var(--color-border); border-radius: 14px;
  overflow: hidden; color: inherit;
  transition: border-color var(--motion-hover) var(--ease), box-shadow var(--motion-hover) var(--ease);
}
.colidx-item > * { min-width: 0; }
.colidx-item:hover { border-color: var(--color-secondary); box-shadow: var(--shadow-soft); }
.colidx-item__media { height: 100%; min-height: 148px; }
.colidx-item__media img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; display: block; }
.colidx-item__body { padding: 18px 20px 18px 0; }
.colidx-item__cat {
  display: inline-block; font-size: 11px; font-weight: 700; color: #fff;
  background: var(--color-primary); border-radius: 4px; padding: 3px 10px; margin-bottom: 8px;
}
.colidx-item__body h3 { font-size: 15.5px; font-weight: 700; color: var(--color-primary); line-height: 1.6; margin-bottom: 8px; }
.colidx-item__body p {
  font-size: 12.5px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.colidx-item__foot { display: flex; align-items: center; justify-content: space-between; }
.colidx-item__foot time { font-size: 12px; color: var(--color-text-muted); font-family: var(--font-en-display); }
.colidx-item__foot svg { width: 16px; height: 16px; color: var(--color-secondary); }
@media (max-width: 640px) {
  .colidx-item { grid-template-columns: 1fr; }
  .colidx-item__media { min-height: 150px; max-height: 170px; }
  .colidx-item__body { padding: 0 20px 18px; }
}

.colidx-side { display: grid; gap: 36px; position: sticky; top: 100px; }
.colidx-rank { display: grid; gap: 14px; }
.colidx-rank a { display: grid; grid-template-columns: 26px 72px 1fr; gap: 12px; align-items: center; color: inherit; }
.colidx-rank a > * { min-width: 0; }
.colidx-rank__num {
  width: 26px; height: 26px; background: var(--color-primary); color: #fff;
  font-family: var(--font-en-display); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border-radius: 6px;
}
.colidx-rank__thumb { width: 72px; height: 54px; border-radius: 8px; overflow: hidden; }
.colidx-rank__thumb img { width: 100%; height: 100%; max-width: 100%; object-fit: cover; display: block; }
.colidx-rank__title { font-size: 12.5px; font-weight: 700; color: var(--color-text); line-height: 1.6; }
.colidx-rank__title:hover { color: var(--color-secondary); }
.colidx-rank time { display: block; font-size: 11px; color: var(--color-text-muted); font-weight: 400; margin-top: 3px; font-family: var(--font-en-display); }

.colidx-consult {
  background: #EDF2F8; border-radius: 14px; padding: 28px 26px; text-align: center;
}
.colidx-consult__icon { width: 52px; height: 52px; margin: 0 auto 12px; color: var(--color-primary); }
.colidx-consult__sub { font-size: 12px; font-weight: 700; color: var(--color-text-muted); margin-bottom: 4px; }
.colidx-consult__title { font-size: 17px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.colidx-consult p { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.9; margin-bottom: 18px; }
.colidx-consult .btn { width: 100%; }

.colidx-band { background: var(--color-bg-light); padding: 64px 0; }
.colidx-band__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.colidx-band__head { flex: 1 1 260px; }
.colidx-band__head h2 { font-size: clamp(19px, 2.2vw, 25px); font-weight: 700; color: var(--color-primary); line-height: 1.7; margin-bottom: 10px; }
.colidx-band__head p { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.9; }
.colidx-band__features { display: flex; gap: 36px; flex: 2 1 400px; justify-content: center; flex-wrap: wrap; }
.colidx-band__feature { text-align: center; max-width: 150px; }
.colidx-band__feature svg { width: 40px; height: 40px; color: var(--color-primary); margin: 0 auto 10px; display: block; }
.colidx-band__feature h4 { font-size: 13.5px; font-weight: 700; color: var(--color-primary); margin-bottom: 6px; }
.colidx-band__feature p { font-size: 11.5px; color: var(--color-text-muted); line-height: 1.7; }
@media (max-width: 960px) { .colidx-layout { grid-template-columns: 1fr; } .colidx-side { position: static; } }

/* article sources */
.article-sources { margin-top: 48px; border-top: 1px solid var(--color-border); padding-top: 28px; }
.article-sources h2 { font-size: 15px !important; margin: 0 0 12px !important; }
.article-sources ul { padding-left: 22px; display: grid; gap: 6px; margin: 0; list-style: disc; }
.article-sources li { font-size: 13px; color: var(--color-text-muted); line-height: 1.9; word-break: break-all; }
.article-sources a { color: var(--color-secondary); text-decoration: underline; text-underline-offset: 3px; }

.expert-mini-grid--3col { grid-template-columns: repeat(3, 1fr); max-width: none; }
.expert-mini-grid--3col .expert-mini__media { height: 300px; }
@media (max-width: 960px) { .expert-mini-grid--3col { grid-template-columns: 1fr; } }
.philosophy-quote { font-family: var(--font-en-serif); font-size: clamp(20px, 2.6vw, 30px); font-weight: 700; color: var(--color-primary); line-height: 1.8; margin-bottom: 20px; }
.philosophy-body { max-width: 780px; color: var(--color-text-muted); font-size: 14.5px; line-height: 2.05; }

/* ============================================================
   About section — hero-style: photo behind, text on top
   ============================================================ */
.about { position: relative; overflow: hidden; background: var(--color-primary); }
.about .about__grid { display: block; }
.about .about__media {
  position: absolute; inset: 0;
  order: 0; border-radius: 0; box-shadow: none; z-index: 0;
}
.about .about__media img { width: 100%; height: 100%; max-height: none; object-fit: cover; display: block; }
.about .about__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,26,58,0.9) 0%, rgba(6,26,58,0.72) 50%, rgba(6,26,58,0.45) 100%);
}
.about .container { position: relative; z-index: 1; }
.about .container > div:not(.about__media) { max-width: 780px; }
.about .eyebrow { color: var(--color-gold); }
.contact .eyebrow { color: var(--color-gold); }
.about h2 { color: #fff; }
.about p { color: rgba(255,255,255,0.86); }
.about .about__list li { color: #fff; }

/* ============================================================
   WeChat QR modal (centered card, like old site)
   ============================================================ */
.info-row--wechat:hover .wechat-pop, .info-row--wechat:focus-within .wechat-pop { display: none; }
.qr-modal {
  position: fixed; inset: 0; z-index: 3000;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(6, 26, 58, 0.55);
  padding: 24px;
}
.qr-modal.is-open { display: flex; }
.qr-modal__card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 32px 36px 28px;
  width: 340px; max-width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
.qr-modal__close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none;
  font-size: 22px; line-height: 1; color: var(--color-text-muted);
  cursor: pointer; padding: 6px;
}
.qr-modal__head { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.qr-modal__head svg { flex: none; }
.qr-modal__name { font-size: 15px; font-weight: 700; color: var(--color-text); }
.qr-modal__card img { width: 220px; height: 220px; margin: 0 auto; display: block; border-radius: 8px; }
.qr-modal__hint { margin-top: 16px; font-size: 12px; color: var(--color-text-muted); line-height: 1.8; }

/* ============================================================
   Robustness & cinematic hero (added)
   ============================================================ */
/* Intro loader: hide entirely without JS; auto-dismiss even if script fails */
html:not(.js) .intro-loader { display: none; }
.intro-loader { animation: introAutoHide 0.8s var(--ease) 8s forwards; }
@keyframes introAutoHide { to { opacity: 0; visibility: hidden; } }

/* Hero: calm staged entrance (Scene 4-6 — quiet confidence) */
.hero__kicker,
.hero__title,
.hero__desc,
.hero__actions {
  opacity: 0;
  animation: heroRise 1.15s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero__kicker  { animation-delay: 0.15s; }
.hero__title   { animation-delay: 0.4s; }
.hero__desc    { animation-delay: 0.75s; }
.hero__actions { animation-delay: 1.05s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__kicker, .hero__title, .hero__desc, .hero__actions {
    opacity: 1; animation: none;
  }
  .intro-loader { display: none; }
}

/* Failsafe: if reveal never fires, content becomes visible on its own */
html.js .reveal { animation: revealFailsafe 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 3.2s forwards; }
@keyframes revealFailsafe { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   Contact / recruit form feedback (added)
   ============================================================ */
.aqmr-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.aqmr-form-msg {
  margin: 6px 0 2px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
.aqmr-form-msg.is-ok {
  background: rgba(77, 168, 218, 0.16);
  color: #eaf6ff;
  border: 1px solid rgba(77, 168, 218, 0.55);
}
.aqmr-form-msg.is-err {
  background: rgba(255, 107, 107, 0.14);
  color: #ffe2e0;
  border: 1px solid rgba(255, 107, 107, 0.5);
}

/* ============================================================
   Rich column article (added)
   ============================================================ */
.artx-breadcrumb { font-size: 13px; color: var(--color-text-muted); padding: 112px 0 0; }
@media (max-width: 800px) { .artx-breadcrumb { padding-top: 90px; } }
.artx-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.artx-breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.artx-breadcrumb a:hover { color: var(--color-secondary); }
.artx-breadcrumb li::after { content: "\203A"; margin-left: 6px; color: #aab2bf; }
.artx-breadcrumb li:last-child::after { content: ""; }
.artx-breadcrumb li:last-child { color: var(--color-text); font-weight: 600; }

.artx-wrap { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; align-items: start; padding-top: 28px; padding-bottom: 40px; }
@media (max-width: 980px) { .artx-wrap { grid-template-columns: 1fr; gap: 40px; } }

.artx-head { margin-bottom: 28px; }
.artx-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.artx-tag { font-size: 12px; font-weight: 600; color: var(--color-primary); background: #eef3fa; border: 1px solid #dbe6f4; border-radius: 6px; padding: 4px 12px; }
.artx-title { font-family: var(--font-en-serif), "Noto Serif JP", serif; font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; line-height: 1.5; color: var(--color-text); margin-bottom: 16px; }
.artx-lead { font-size: 16px; color: var(--color-text-muted); line-height: 1.9; margin-bottom: 20px; }
.artx-metabar { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.artx-metabar .m { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-text-muted); }
.artx-metabar svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.artx-share { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.artx-share span { font-size: 12px; color: var(--color-text-muted); }
.artx-share a { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.artx-share a svg { width: 15px; height: 15px; fill: #fff; }
.artx-share .s-fb { background: #1877F2; } .artx-share .s-x { background: #000; } .artx-share .s-line { background: #06C755; } .artx-share .s-copy { background: #8b95a3; }

.artx-keybox { background: var(--color-bg-light); border: 1px solid var(--color-border); border-radius: 14px; padding: 26px 28px; margin: 6px 0 34px; display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: center; }
@media (max-width: 720px) { .artx-keybox { grid-template-columns: 1fr; } }
.artx-keybox__h { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--color-primary); font-size: 16px; margin-bottom: 14px; }
.artx-keybox__h svg { width: 20px; height: 20px; stroke: var(--color-secondary); fill: none; stroke-width: 1.8; }
.artx-keybox ul { list-style: none; display: grid; gap: 10px; }
.artx-keybox li { position: relative; padding-left: 28px; font-size: 15px; line-height: 1.7; }
.artx-keybox li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--color-secondary); }
.artx-keybox li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 3px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.artx-keybox__img { border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; }
.artx-keybox__img img { width: 100%; height: 100%; object-fit: cover; }

.artx-body { font-size: 16px; line-height: 2; color: var(--color-text); }
.artx-body > p { margin: 0 0 22px; }
.artx-h2 { display: flex; align-items: flex-start; gap: 14px; font-size: clamp(20px, 2.4vw, 25px); font-weight: 700; color: var(--color-primary); line-height: 1.5; margin: 46px 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--color-bg-light); }
.artx-h2 .n { flex: none; font-family: var(--font-en-serif), serif; color: #1A1A1A; font-weight: 700; }
.artx-h3 { font-size: 18px; font-weight: 700; color: var(--color-text); margin: 32px 0 14px; padding-left: 12px; border-left: 4px solid var(--color-secondary); }
.artx-body ul, .artx-body ol { margin: 0 0 24px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.artx-body ul li { position: relative; padding-left: 22px; }
.artx-body ul li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--color-secondary); }
.artx-body ol { counter-reset: ol; }
.artx-body ol li { position: relative; padding-left: 34px; counter-increment: ol; }
.artx-body ol li::before { content: counter(ol); position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--color-primary); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.artx-table { width: 100%; border-collapse: collapse; margin: 8px 0 28px; font-size: 14.5px; overflow: hidden; border-radius: 10px; border: 1px solid var(--color-border); }
.artx-table th, .artx-table td { border: 1px solid var(--color-border); padding: 12px 16px; text-align: left; vertical-align: top; line-height: 1.7; }
.artx-table thead th { background: var(--color-primary); color: #fff; font-weight: 600; border-color: var(--color-primary); }
.artx-table tbody th { background: #eef3fa; color: var(--color-primary); font-weight: 600; white-space: nowrap; }
.artx-table tbody tr:nth-child(even) td { background: #fafbfd; }
.artx-tablewrap { overflow-x: auto; }

.artx-note, .artx-tip { border-radius: 12px; padding: 18px 22px 18px 20px; margin: 8px 0 28px; font-size: 15px; line-height: 1.85; }
.artx-note { background: #FFF8E6; border: 1px solid #F5E2A8; }
.artx-tip { background: #EAF4FB; border: 1px solid #C4E1F2; }
.artx-note__h, .artx-tip__h { display: flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 8px; }
.artx-note__h { color: #9A6A00; } .artx-tip__h { color: #1E6FA8; }
.artx-note__h svg, .artx-tip__h svg { width: 18px; height: 18px; fill: none; stroke-width: 1.8; }
.artx-note__h svg { stroke: #D9A521; } .artx-tip__h svg { stroke: #2E9BD6; }

.artx-summary { background: var(--color-bg-light); border-radius: 14px; padding: 26px 30px; margin: 40px 0 10px; }
.artx-summary h2 { font-size: 20px; font-weight: 700; color: var(--color-primary); margin-bottom: 14px; }
.artx-summary p { margin: 0 0 12px; }

.artx-sources { margin: 34px 0 0; padding: 18px 22px; background: #fafbfd; border: 1px solid var(--color-border); border-radius: 10px; font-size: 13.5px; }
.artx-sources h2 { font-size: 14px; color: var(--color-text-muted); margin-bottom: 8px; font-weight: 700; }
.artx-sources ul { list-style: none; display: grid; gap: 6px; }
.artx-sources a { color: var(--color-secondary); word-break: break-all; }
.artx-disc { font-size: 12.5px; color: var(--color-text-muted); line-height: 1.8; margin-top: 16px; }

.artx-inlinecta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; justify-content: space-between; background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark)); color: #fff; border-radius: 16px; padding: 28px 32px; margin: 40px 0; }
.artx-inlinecta h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.artx-inlinecta ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.artx-inlinecta li { font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }
.artx-inlinecta li::before { content: "\2713"; color: var(--color-gold); font-weight: 700; }

.artx-related { margin-top: 52px; }
.artx-related__h { font-size: 20px; font-weight: 700; color: var(--color-text); margin-bottom: 20px; padding-left: 12px; border-left: 4px solid var(--color-primary); }
.artx-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 720px) { .artx-related__grid { grid-template-columns: 1fr; } }
.artx-rel { display: block; text-decoration: none; border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.artx-rel:hover { box-shadow: 0 10px 30px rgba(11,47,107,.1); transform: translateY(-2px); }
.artx-rel__media { aspect-ratio: 16/10; overflow: hidden; }
.artx-rel__media img { width: 100%; height: 100%; object-fit: cover; }
.artx-rel__body { padding: 14px 16px; }
.artx-rel__cat { font-size: 11px; color: #1A1A1A; font-weight: 700; }
.artx-rel__date { font-size: 12px; color: var(--color-text-muted); font-family: var(--font-en-serif), serif; float: right; }
.artx-rel__t { font-size: 14px; font-weight: 600; color: var(--color-text); line-height: 1.6; margin-top: 6px; }

.artx-side { display: grid; gap: 26px; position: sticky; top: 96px; }
@media (max-width: 980px) { .artx-side { position: static; } }
.artx-side__box { border: 1px solid var(--color-border); border-radius: 14px; padding: 20px; }
.artx-side__h { font-size: 15px; font-weight: 700; color: var(--color-primary); margin-bottom: 14px; }
.artx-search { display: flex; border: 1px solid var(--color-border); border-radius: 10px; overflow: hidden; }
.artx-search input { flex: 1; border: 0; padding: 11px 14px; font: inherit; font-size: 14px; outline: none; min-width: 0; }
.artx-search button { border: 0; background: var(--color-primary); color: #fff; padding: 0 16px; cursor: pointer; }
.artx-search button svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.artx-catlist { list-style: none; display: grid; }
.artx-catlist li { border-bottom: 1px solid var(--color-border); }
.artx-catlist li:last-child { border-bottom: 0; }
.artx-catlist a { display: flex; justify-content: space-between; align-items: center; padding: 11px 2px; text-decoration: none; color: var(--color-text); font-size: 14px; }
.artx-catlist a:hover { color: var(--color-secondary); }
.artx-catlist .cnt { color: var(--color-text-muted); font-size: 13px; font-family: var(--font-en-serif), serif; }

/* === MOVIE section === */
.movie { background: var(--color-bg-light); }
.movie__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 44px; }
.ytvid { display: flex; flex-direction: column; gap: 16px; padding: 0; border: none; background: none; text-align: left; cursor: pointer; font: inherit; }
.ytvid__media { position: relative; display: block; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-soft); background: #0b1f3a; aspect-ratio: 16 / 9; }
.ytvid__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.ytvid__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,26,58,0) 40%, rgba(6,26,58,0.35)); opacity: 0; transition: opacity .35s ease; }
.ytvid:hover .ytvid__media img { transform: scale(1.05); }
.ytvid:hover .ytvid__media::after { opacity: 1; }
.ytvid__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 74px; height: 52px; display: grid; place-items: center; filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); transition: transform .3s ease; }
.ytvid__play svg { width: 100%; height: 100%; }
.ytvid__play svg path:first-child { opacity: .92; }
.ytvid:hover .ytvid__play { transform: translate(-50%, -50%) scale(1.08); }
.ytvid__title { font-size: 16px; font-weight: 700; color: var(--color-text); line-height: 1.6; letter-spacing: .01em; }
.ytvid:hover .ytvid__title { color: var(--color-primary); }
.movie__cta { text-align: center; margin-top: 40px; }
.btn-yt { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; border-radius: 999px; background: #fff; border: 1px solid var(--color-border); color: var(--color-text); font-weight: 700; font-size: 15px; box-shadow: var(--shadow-soft); transition: box-shadow .3s ease, transform .3s ease, color .3s ease; }
.btn-yt svg { width: 22px; height: 22px; color: #FF0000; }
.btn-yt:hover { box-shadow: var(--shadow-soft-hover); transform: translateY(-2px); color: var(--color-primary); }
.ytmodal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; }
.ytmodal[hidden] { display: none; }
.ytmodal__backdrop { position: absolute; inset: 0; background: rgba(6,20,45,0.82); backdrop-filter: blur(4px); }
.ytmodal__box { position: relative; width: min(960px, 100%); }
.ytmodal__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); background: #000; }
.ytmodal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ytmodal__close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,.15); color: #fff; font-size: 24px; line-height: 1; cursor: pointer; transition: background .25s ease; }
.ytmodal__close:hover { background: rgba(255,255,255,.28); }
@media (max-width: 640px) {
  .movie__grid { grid-template-columns: 1fr; gap: 22px; }
  .ytmodal__close { top: -44px; }
}
/* === MOVIE END === */
