:root {
  --bg: #faf9f5;
  --bg2: #ebe7dd;
  --panel: #ffffff;
  --green: #1A3C30;
  --green2: #2B5846;
  --gold: #B07D2F;
  --text: #18160f;
  --mid: #575E5A;
  --light: #9a9790;
  --line: #dddbd3;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --header-height: 68px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 249, 245, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow .25s ease;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand img {
  height: 28px;
  width: auto;
}

.nav-brand:hover {
  opacity: .85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nl {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color .15s ease;
}

.nl:hover {
  color: var(--green);
}

/* subtle vertical divider before the Blog link to group it separately */
.nav-links .nav-blog {
  position: relative;
  padding-left: 16px; /* space for the divider */
}
.nav-links .nav-blog::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.15);
}

/* Perspective nav item — same separator treatment as Media */
.nav-links .nav-perspective {
  position: relative;
  padding-left: 16px;
}
.nav-links .nav-perspective::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.15);
}

/* HAMBURGER TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
  transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* LANG SWITCHER (ここを新しく追加しました) */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--line);
}

.lang-switcher a {
  color: var(--mid);
  text-decoration: none;
  transition: color .15s ease;
}

.lang-switcher a:hover {
  color: var(--green);
}

.lang-switcher .active-lang {
  color: var(--green);
  font-weight: 700;
}

/* SECTIONS */
section {
  padding: 120px 8%;
  position: relative;
  z-index: 1;
}

/* Max-width container: constrains section inner content on large screens */
section > .rev,
section > .ins-grid,
section > .nw-header,
section > .nw-list,
section > .nw-footer,
section > .ov-grid,
section > .ov-visual,
section > .fc-grid,
section > .ld-grid,
section > .blog-header {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  position: relative;
  z-index: 1;
}

footer .ft-in,
footer .ft-bot {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.sdiv {
  width: 100%;
  height: 1px;
  background: var(--line);
  position: relative;
  z-index: 1;
}

.s-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.s-h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 24px;
}

.s-h2 em {
  font-style: italic;
  color: var(--green2);
}

.s-p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  max-width: 580px;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 8% 90px;
  overflow: hidden;
  background:
    radial-gradient(1200px 620px at 80% 18%, rgba(176, 125, 47, 0.09), transparent 60%),
    radial-gradient(900px 520px at 12% 72%, rgba(29, 61, 47, 0.07), transparent 60%),
    linear-gradient(180deg, rgba(242, 240, 234, .25), transparent 45%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: .24;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .6) 18%, rgba(0, 0, 0, .6) 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .6) 18%, rgba(0, 0, 0, .6) 82%, transparent 100%);
}

.hero-in {
  position: relative;
  z-index: 3;
  max-width: 860px;
  text-align: center;
}

.hero-ey {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  display: block;
  opacity: 0;
  animation: hero-fade 0.8s ease 0.08s forwards;
}

.hero-h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(44px, 6.1vw, 80px);
  font-weight: 400;
  line-height: 1.30; /* adjusted to approximately 1.3× base spacing */
  color: var(--green);
  margin-bottom: 26px;
  opacity: 0;
  /* fast-out / slow-settle easing — the headline accelerates in then drifts to rest */
  animation: hero-title-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--green2);
}

.hero-sub {
  font-size: clamp(15px, 1.45vw, 17px);
  font-weight: 300; /* intentionally lighter than body for contrast */
  line-height: 1.9;
  color: var(--mid);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
  opacity: 0;
  animation: hero-up-soft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.88s forwards;
}

:lang(ja) .hero-sub {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid rgba(29, 61, 47, .75);
  border-radius: 2px;
  transition: transform .18s ease, background .25s ease, color .25s ease, gap .18s ease, box-shadow .25s ease;
  opacity: 0;
  animation: hero-fade 0.6s ease 1.16s forwards;
  background: rgba(255, 255, 255, .35);
}

.hero-cta:hover {
  background: var(--green);
  color: #fff;
  gap: 18px;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Headline: scale + fade + translate, settles slowly into place */
@keyframes hero-title-in {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(1.034);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Supporting elements: gentle translate-up */
@keyframes hero-up-soft {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow / CTA: pure fade, no motion */
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Legacy — used by scroll-reveal elsewhere */
@keyframes up {
  from {
    opacity: 0;
    transform: translateY(18px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-ey,
  .hero-h1,
  .hero-sub,
  .hero-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* OVERVIEW */
#overview {
  background: var(--bg);
}

.ov-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 80px;
  align-items: start;
}

.ov-grid>div:last-child {
  background: transparent;
  padding: 4px 0 0;
  border: none;
  box-shadow: none;
}

.ov-stat {
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.ov-stat:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.st-n {
  font-family: 'Libre Baskerville', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 8px;
}

.st-l {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(87, 94, 90, 0.65);
  line-height: 1.65;
}

/* FOCUS */
#focus {
  background: var(--bg2);
}

.fc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.fc {
  background: var(--panel);
  padding: 36px 34px;
  border: 1px solid rgba(0, 0, 0, 0.09);
}

/* Enterprise card — background matched to left card */
.fc-grid > .fc:last-child {
  background: var(--panel);
  border-color: rgba(0, 0, 0, 0.09);
}

.fc-tag {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.fc-h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--green);
  margin-bottom: 14px;
}

.fc-p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
}

.fc-ul {
  margin-top: 18px;
  list-style: none;
}

.fc-ul li {
  font-size: 12px;
  color: var(--mid);
  padding: 9px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fc-ul li::before {
  content: none;
}

/* LEADERSHIP */
#leadership {
  background: var(--bg);
}

.ld-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 52px;
}

.ld-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--line);
}

.ld-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--green);
  line-height: 1.12;
  margin-bottom: 8px;
}

.ld-role {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.ld-bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 14px;
}

/* INSIGHTS */
#insights {
  background: var(--bg2);
}

.ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.ic {
  background: var(--panel);
  padding: 34px 30px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.ic.article-card {
  display: flex;
  flex-direction: column;
}

.ic:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.article-meta-list {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--light);
  margin-bottom: 12px;
  display: block;
}

.ic-type {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.ic-h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--green);
  margin-bottom: 10px;
}

.ic-exc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 18px;
  flex-grow: 1;
}

.ic-rd {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .15s ease;
}

.ic:hover .ic-rd {
  gap: 12px;
}

/* MODAL */
.mo {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18, 14, 8, .55);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mo.open {
  display: block;
}

.mo-inner {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
}

.mo-box {
  background: var(--bg);
  max-width: 760px;
  width: 100%;
  padding: 56px 56px;
  position: relative;
  animation: mi .35s ease forwards;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .14);
}

@keyframes mi {
  from {
    opacity: 0;
    transform: translateY(14px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.mo-close {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--light);
  transition: color .15s ease;
}

.mo-close:hover {
  color: var(--green);
}

.mo-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.mo-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 22px;
}

.mo-rule {
  width: 42px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 26px;
  border-radius: 1px;
}

.mo-body h2 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin: 26px 0 10px;
}

.mo-body p {
  font-size: 15px;
  line-height: 2.0;
  color: var(--text);
  margin-bottom: 16px;
}

.mo-body strong {
  color: var(--text);
  font-weight: 600;
}

/* CONNECT */
#connect {
  background: var(--bg);
}

.cn-email {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color .15s ease;
}

.cn-email:hover {
  color: var(--green2);
}

.cn-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-top: 44px;
  gap: 6px;
}

.ct {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .15s ease;
}

.ct.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.fw {
  display: none;
  padding-top: 34px;
}

.fw.active {
  display: block;
}

.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.fg-g {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fg-g.full {
  grid-column: 1/-1;
}

.fl {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--mid);
}

.fi2,
.fta,
.fsel {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .2s ease;
  outline: none;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.fi2:focus,
.fta:focus,
.fsel:focus {
  border-color: rgba(29, 61, 47, .6);
  box-shadow: 0 0 0 3px rgba(29, 61, 47, .08);
}

.fsel {
  cursor: pointer;
  appearance: none;
}

.f-file {
  background: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .2s ease;
}

.f-file:hover {
  border-color: rgba(29, 61, 47, .6);
  box-shadow: 0 0 0 3px rgba(29, 61, 47, .08);
}

.fsub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  border: none;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 4px;
  transition: transform .18s ease, background .2s ease, gap .18s ease, box-shadow .25s ease;
}

.fsub:hover {
  background: var(--green2);
  gap: 16px;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.fnote {
  font-size: 12px;
  color: var(--light);
  margin-top: 14px;
  line-height: 1.75;
}

/* FOOTER */
footer {
  background: var(--bg2);
  padding: 64px 8% 40px;
  border-top: 1px solid var(--line);
}

.ft-in {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.ft-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ft-brand img {
  height: 24px;
  width: auto;
}

.ft-brand span {
  font-family: 'Libre Baskerville', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
}

.ft-tag {
  font-size: 15px;
  color: var(--light);
  line-height: 1.85;
  max-width: 220px;
}

.ft-ct {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.ft-ul {
  list-style: none;
}

.ft-ul li {
  margin-bottom: 9px;
}

.ft-ul a {
  font-size: 15px;
  color: var(--mid);
  text-decoration: none;
  transition: color .15s ease;
}

.ft-ul a:hover {
  color: var(--green);
}

/* Blog/Media link in footer nav — no separator, just spacing */
.ft-ul .ft-blog {
  margin-top: 6px;
}

.ft-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-copy {
  font-size: 14px;
  color: var(--light);
}

.ft-leg {
  display: flex;
  gap: 18px;
}

.ft-leg a {
  font-size: 14px;
  color: var(--light);
  text-decoration: none;
  transition: color .15s ease;
}

.ft-leg a:hover {
  color: var(--mid);
}

/* REVEAL */
.rev {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.rev.on {
  opacity: 1;
  transform: translateY(0);
}

/* HERO — subtle motion layer */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: .18;
  mix-blend-mode: multiply;
}

.orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(176, 125, 47, .55), rgba(176, 125, 47, 0) 65%),
    radial-gradient(circle at 70% 60%, rgba(29, 61, 47, .45), rgba(29, 61, 47, 0) 70%);
}

.o1 {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 14%;
  animation: floatA 34s ease-in-out infinite;
}

.o2 {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 8%;
  animation: floatB 42s ease-in-out infinite;
}

.o3 {
  width: 260px;
  height: 260px;
  left: 18%;
  bottom: -110px;
  animation: floatC 38s ease-in-out infinite;
}

.o4 {
  width: 360px;
  height: 360px;
  right: 18%;
  bottom: -140px;
  animation: floatD 46s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0) }
  50% { transform: translate3d(70px, 22px, 0) }
}
@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0) }
  50% { transform: translate3d(-80px, 34px, 0) }
}
@keyframes floatC {
  0%, 100% { transform: translate3d(0, 0, 0) }
  50% { transform: translate3d(40px, -34px, 0) }
}
@keyframes floatD {
  0%, 100% { transform: translate3d(0, 0, 0) }
  50% { transform: translate3d(-52px, -26px, 0) }
}

/* Overview — visual strip */
.ov-visual {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ov-vcard {
  background: var(--panel);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: none;
}

.ov-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  display: block;
  filter: grayscale(0.55) saturate(0.55) contrast(0.88) brightness(1.06);
  opacity: .84;
}

.ov-cap {
  padding: 11px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ov-cap-t {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.ov-cap-s {
  font-size: 12px;
  line-height: 1.6;
  color: var(--mid);
}

.lead-flex {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.lead-flex img[alt="Emi Yoshikawa"] {
  flex: 0 0 360px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  object-fit: cover;
  float: none !important;
  margin: 0 !important;
  display: block;
}

.ov-p-margin {
  margin-top: 14px;
}

.ov-stat-last {
  border-bottom: 1px solid var(--line);
}

.leadership-header {
  /* revert to normal block flow so the eyebrow label sits above the headline,
     matching the pattern used in other sections (e.g. Insights) */
  display: block;
}

/* ensure default spacing between label and heading remains consistent */
.leadership-header .s-lbl {
  margin-bottom: 16px;
}

.lead-img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
}

.ld-cfa {
  font-size: .65em;
  color: var(--gold);
}

.f-file-text {
  font-size: 13px;
  color: var(--light);
  display: block;
  margin-bottom: 4px;
}

.f-file-input {
  display: none;
}

.f-file-name {
  font-size: 12px;
  color: var(--green);
}

.ft-loc {
  font-size: 15px;
  color: var(--mid);
}

.ft-ul a[href^="mailto:"] {
  word-break: break-all;
}

/* NEWS */
#news {
  background: var(--bg);
  padding-top: 80px;
  padding-bottom: 80px;
}

.nw-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 0;
}

.nw-header .s-lbl {
  margin-bottom: 0;
}

.nw-item {
  display: grid;
  grid-template-columns: 96px 120px 1fr 20px;
  align-items: center;
  gap: 28px;
  padding: 22px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  transition: background .22s ease, color .22s ease;
}

.nw-item:hover {
  background: var(--green);
}

.nw-item:hover .nw-date,
.nw-item:hover .nw-cat,
.nw-item:hover .nw-headline,
.nw-item:hover .nw-arrow {
  color: #fff;
}

.nw-item:hover .nw-arrow {
  transform: translateX(5px);
}

.nw-date {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light);
  flex-shrink: 0;
}

.nw-cat {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.nw-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--text);
  transition: color .15s ease;
}

.nw-arrow {
  font-size: 13px;
  color: var(--light);
  transition: transform .15s ease, color .15s ease;
  text-align: right;
}

.nw-footer {
  margin-top: 36px;
  display: flex;
  justify-content: flex-end;
}

.nw-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  padding: 13px 28px;
  border: 1px solid rgba(29, 61, 47, .65);
  border-radius: 2px;
  transition: background .22s ease, color .22s ease, transform .18s ease, box-shadow .25s ease, gap .18s ease;
}

.nw-more:hover {
  background: var(--green);
  color: #fff;
  gap: 16px;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* RESPONSIVE */

/* Tablet and below: mobile nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    padding: calc(var(--header-height) + 24px) 32px 32px;
    border-left: 1px solid var(--line);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 105;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .nl {
    display: block;
    padding: 14px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-links .nav-blog::before,
  .nav-links .nav-perspective::before {
    display: none;
  }

  .nav-links .nav-blog,
  .nav-links .nav-perspective {
    padding-left: 0;
    margin-top: 8px;
    padding-top: 8px;
  }

  .lang-switcher {
    position: fixed;
    top: 0;
    right: 60px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 110;
  }

  /* Nav overlay backdrop */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99;
  }

  .nav-overlay.open {
    display: block;
  }
}

@media(max-width: 1000px) {
  section {
    padding: 78px 6%;
  }
  .ov-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ov-grid>div:last-child {
    padding: 28px;
  }
  .fc-grid, .ins-grid, .ld-grid, .fg, .ft-in {
    grid-template-columns: 1fr;
  }
  .ld-grid {
    gap: 28px;
  }
  .ft-bot {
    flex-direction: column;
    gap: 10px;
  }
  .ov-visual {
    grid-template-columns: 1fr;
  }
  .nw-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
  .nw-arrow {
    display: none;
  }
  .nw-footer {
    justify-content: flex-start;
  }
  .ov-img {
    aspect-ratio: 16 / 11;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  section {
    padding: 60px 5%;
  }
  .hero-in {
    max-width: 100%;
  }
  #hero {
    padding: 120px 5% 70px;
  }
}

/* ==========================================
  Cookie Popup Styles
  ========================================== */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cookie-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-container {
  background: var(--panel);
  margin: auto auto 0 auto;
  padding: 32px;
  border-top: 2px solid var(--line);
  width: 100%;
  max-width: 500px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  margin-bottom: 24px;
}

.cookie-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
  background: var(--green);
  color: var(--bg);
}

.cookie-btn-accept:hover {
  background: var(--green2);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.cookie-btn-decline:hover {
  background: var(--bg2);
}

@media (max-width: 768px) {
  .cookie-container {
    padding: 24px;
  }

  .cookie-title {
    font-size: 18px;
  }

  .cookie-text {
    font-size: 13px;
  }
}

/* JP TYPOGRAPHY — explicit Japanese font stack */
html[lang="ja"] body {
  font-family: 'Inter', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

/* Responsive line-break utilities — toggle <br> visibility per breakpoint */
.br-d { display: inline; }
.br-m { display: none; }

@media (max-width: 768px) {
  .br-d { display: none; }
  .br-m { display: inline; }
}