/* ============================================================
   TWIN PEAKS TOKYO — Design System
   Dark / Editorial / High-Culture
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #0B0B0D;
  --surface:   #121216;
  --text:      #F2F2F2;
  --sub:       #A8A8B3;
  --line:      #2A2A33;
  --accent:    #B9FF2A;
  --radius:    16px;
  --radius-sm: 12px;
  --gutter:    24px;
  --max-w:     1280px;
  --section-gap: 96px;
  --font-en:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-jp:   'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { background: var(--bg); overflow-x: hidden; }

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Sub-page main (header offset) --- */
.page-main { padding-top: 64px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-en); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }

.hide-sp { }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s, backdrop-filter .4s;
}
.header.is-scrolled {
  background: rgba(18, 18, 22, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__link {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--sub);
  transition: color .25s;
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s;
}
.header__link:hover { color: var(--text); }
.header__link:hover::after { width: 100%; }
.header__link.active { color: var(--text); }
.header__link.active::after { width: 100%; }

.header__link--cta {
  color: var(--bg);
  background: var(--accent);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
}
.header__link--cta::after { display: none; }
.header__link--cta:hover { opacity: .85; color: var(--bg); }

/* Mobile menu button */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.header__menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}
.header__menu-btn.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.header__menu-btn.is-open span:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 64px;
  overflow: hidden;
}
.hero__badge {
  position: absolute;
  top: 96px;
  right: var(--gutter);
  z-index: 2;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.04em;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.6) brightness(.35) contrast(1.1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 50%, rgba(11,11,13,.4) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.hero__title {
  font-family: var(--font-jp);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.hero__tagline {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__lead {
  font-size: 15px;
  color: var(--sub);
  max-width: 540px;
  line-height: 1.9;
  margin-bottom: 32px;
}
.hero__cta { display: flex; gap: 12px; }

.hero__meta {
  text-align: right;
  flex-shrink: 0;
}
.hero__data {
  margin-bottom: 16px;
}
.hero__data-label {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sub);
}
.hero__data-value {
  display: block;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(242, 242, 242, .3);
}
.btn--secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}
.btn--full { width: 100%; }

/* Link arrow */
.link-arrow {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--sub);
  transition: color .25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow:hover { color: var(--accent); }
.link-arrow .arrow { transition: transform .25s; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* Capsule tags */
.capsule {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 4px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--sub);
  transition: all .25s;
  margin: 2px;
}
.capsule--clickable:hover {
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 12px rgba(185, 255, 42, .1);
}
.tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--sub);
  margin: 2px;
}

/* ============================================================
   SECTIONS — Common
   ============================================================ */
.section {
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--line);
}
.section__eyebrow {
  font-family: var(--font-en);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section__lead-text {
  font-size: 16px;
  color: var(--sub);
  max-width: 720px;
  line-height: 2;
}
.section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 40px;
}
.section__body {
  font-size: 15px;
  color: var(--sub);
  line-height: 2;
  max-width: 680px;
}
.section__cta {
  display: flex;
  gap: 12px;
  margin-top: 56px;
}
.subsection-title {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 24px;
}
.page-header { margin-bottom: 64px; }
.page-header__row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.page-header__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.page-header__note {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.page-header__lead {
  font-size: 15px;
  color: var(--sub);
  max-width: 720px;
  line-height: 2;
  margin-top: 20px;
}

/* ============================================================
   ECOSYSTEM — Pillar Cards
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar-card {
  background: var(--surface);
  padding: 40px 32px;
  position: relative;
  transition: background .3s;
}
.pillar-card:hover { background: #181820; }
.pillar-card__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 12px;
}
.pillar-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pillar-card__text {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.8;
}

/* ============================================================
   PROGRAMS TEASER (TOP)
   ============================================================ */
.teaser-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.teaser-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.teaser-row--reverse .teaser-row__img { order: 2; }
.teaser-row__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.teaser-row__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(.4) contrast(1.05);
  transition: transform .5s, filter .5s;
}
.teaser-row:hover .teaser-row__img img { transform: scale(1.02); filter: grayscale(.2); }
.teaser-row__caption {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}
.teaser-row__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.teaser-row__text {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ============================================================
   TEAM TEASER (TOP)
   ============================================================ */
.section--team-teaser { text-align: center; }
.team-teaser__words {
  font-family: var(--font-en);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.team-teaser__slash, .team-keywords__slash {
  color: var(--accent);
  font-weight: 300;
}
.team-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.team-teaser__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid var(--line);
}
.team-teaser__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.5);
  transition: filter .4s;
}
.team-teaser__member:hover .team-teaser__photo img { filter: grayscale(0); }
.team-teaser__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.team-teaser__link { margin-top: 40px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.about-block { margin-bottom: 40px; }
.about-block__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-block__text {
  font-size: 15px;
  color: var(--sub);
  line-height: 2;
}
.about-layout__photo {
  position: relative;
}
.about-layout__photo img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(.4) contrast(1.05);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.photo-caption {
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  color: var(--sub);
  letter-spacing: .04em;
  margin-top: 8px;
}

/* Stances */
.stances {
  margin-bottom: 64px;
  max-width: 600px;
}
.stance {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.stance:first-child { border-top: 1px solid var(--line); }
.stance__accent {
  display: block;
  width: 3px;
  min-height: 40px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}
.stance__word {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stance__desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.7;
}

/* Operator Flow */
.operator-flow {
  margin-bottom: 0;
}
.operator-flow__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.operator-flow__desc {
  font-size: 15px;
  color: var(--sub);
  line-height: 2;
  max-width: 680px;
  margin-bottom: 32px;
}
.flow-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.flow-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
}
.flow-step__label {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
}
.flow-step__arrow {
  font-family: var(--font-en);
  font-size: 18px;
  color: var(--accent);
  padding: 0 12px;
}

/* ============================================================
   BUSINESS
   ============================================================ */
.biz-pillars { margin-bottom: 64px; }
.biz-pillars__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.biz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform .25s, border-color .25s;
}
.biz-card:hover { transform: translateY(-1px); border-color: #3a3a44; }
.biz-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.biz-card__text {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.8;
  margin-bottom: 16px;
}
.biz-card__tags { display: flex; flex-wrap: wrap; gap: 4px; }

/* Brand Solutions */
.brand-solutions { margin-bottom: 64px; }
.solutions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.solution-item {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.solution-item__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.solution-item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.solution-item__text {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.7;
}

/* Typical Outputs */
.outputs { overflow: hidden; }
.outputs__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  max-width: 100%;
}
.outputs__scroll::-webkit-scrollbar { height: 4px; }
.outputs__scroll::-webkit-scrollbar-track { background: transparent; }
.outputs__scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.output-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 200px;
  flex-shrink: 0;
  position: relative;
  transition: border-color .25s;
}
.output-card:hover { border-color: #3a3a44; }
.output-card__arrow {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--sub);
}
.output-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.output-card__text {
  font-size: 13px;
  color: var(--sub);
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.program-block { margin-bottom: 64px; }
.program-block__hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.program-block__hero img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  filter: grayscale(.4) contrast(1.05);
}
.program-block__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.program-block__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}
.program-block__text {
  font-size: 15px;
  color: var(--sub);
  line-height: 2;
  max-width: 720px;
  margin-bottom: 32px;
}
.program-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.program-format {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.program-format__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.program-format__text {
  font-size: 13px;
  color: var(--sub);
}
.programs-note {
  font-size: 13px;
  color: var(--sub);
  padding: 16px 0;
  border-top: 1px solid var(--line);
  max-width: 600px;
}

/* ============================================================
   PARTNERSHIP
   ============================================================ */
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.partner-section {
  margin-bottom: 64px;
}
.partner-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.partner-section__photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.partner-section__photo img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(.4);
}
.capability-list li {
  font-size: 14px;
  color: var(--sub);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-jp);
}
.capability-list li:first-child { border-top: 1px solid var(--line); }

/* Process Timeline */
.process { margin-bottom: 0; }
.process__timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 32px 0 16px;
  flex-wrap: wrap;
}
.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.process__num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.process__label {
  font-size: 13px;
  color: var(--sub);
  white-space: nowrap;
}
.process__line {
  width: 40px;
  height: 1px;
  background: var(--line);
  margin: 0 8px;
  margin-bottom: 28px;
}
.process__note {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 8px;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-keywords {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-family: var(--font-en);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
}

.member {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.member:first-of-type { border-top: 1px solid var(--line); }
.member__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.member__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(.5);
  transition: filter .5s;
}
.member:hover .member__photo img { filter: grayscale(.15); }

.member__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.member__name-en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--sub);
  margin-left: 12px;
}
.member__headline {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.member__text {
  font-size: 14px;
  color: var(--sub);
  line-height: 2;
  margin-top: 16px;
}
.member__works, .member__coverage {
  margin-top: 24px;
}
.member__works-title {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 12px;
}
.member__works-inline {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  color: var(--sub);
  line-height: 1.9;
  letter-spacing: .01em;
}
.member__coverage-list {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.8;
}

/* ============================================================
   COMPANY
   ============================================================ */
.company-table {
  max-width: 700px;
}
.company-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.company-row:first-child { border-top: 1px solid var(--line); }
.company-row__label {
  color: var(--sub);
  font-size: 13px;
}
.company-row__value {
  color: var(--text);
}
.company-note {
  font-size: 12px;
  color: var(--sub);
  margin-top: 24px;
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-form {
  max-width: 640px;
}

/* Form */
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: block;
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 8px;
  font-weight: 500;
}
.required { color: var(--accent); }
.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-jp);
  transition: border-color .25s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus {
  border-bottom-color: var(--accent);
}
.form-select {
  background: transparent;
  cursor: pointer;
}
.form-select option {
  background: var(--surface);
  color: var(--text);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-status {
  margin-top: 16px;
  font-size: 14px;
  min-height: 1.5em;
}
.form-status--success {
  color: var(--accent);
}
.form-status--error {
  color: #ff6b6b;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer__logo {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  display: block;
  margin-bottom: 8px;
}
.footer__address {
  font-size: 12px;
  color: var(--sub);
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--sub);
  transition: color .25s;
}
.footer__nav a:hover { color: var(--text); }
.footer__legal {
  margin-bottom: 24px;
}
.footer__legal p {
  font-size: 11px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer__copy {
  font-family: var(--font-en);
  font-size: 12px;
  color: #555;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
}
.anim-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NEWS
   ============================================================ */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.news-list { }
.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.news-item:first-child { border-top: 1px solid var(--line); }
.news-item__date {
  font-family: var(--font-en);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--sub);
  flex-shrink: 0;
  width: 72px;
}
.news-item__tag { flex-shrink: 0; }
.news-item__title {
  font-size: 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-layout__photo { order: -1; }
  .about-layout__photo img { aspect-ratio: 16/9; }
  .member { grid-template-columns: 160px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 64px;
    --gutter: 16px;
  }
  .hide-sp { display: none; }

  /* Header mobile */
  .header__menu-btn { display: flex; }
  .header__nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: #0B0B0D;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .header__nav.is-open {
    display: flex;
  }
  .header__nav .header__link {
    font-size: 20px;
    color: var(--text);
  }
  .header__nav .header__link--cta {
    font-size: 16px;
    padding: 10px 24px;
  }

  /* Hero mobile */
  .hero { align-items: flex-end; padding-bottom: 32px; }
  .hero__content { flex-direction: column; align-items: flex-start; }
  .hero__meta {
    text-align: left;
    display: flex;
    gap: 24px;
  }
  .hero__lead { font-size: 14px; }
  .hero__title { font-size: clamp(28px, 7.5vw, 44px); }

  /* Grids */
  .pillars-grid { grid-template-columns: 1fr; }
  .teaser-row { grid-template-columns: 1fr; gap: 24px; }
  .teaser-row--reverse .teaser-row__img { order: 0; }
  .team-teaser__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .team-teaser__photo { width: 80px; height: 80px; }
  .biz-pillars__grid { grid-template-columns: 1fr; }
  .solutions-row { grid-template-columns: 1fr; }
  .outputs__scroll {
    flex-direction: column;
    overflow-x: visible;
  }
  .output-card {
    min-width: 0;
    width: 100%;
  }
  .program-formats { grid-template-columns: 1fr; }
  .partner-section__layout { grid-template-columns: 1fr; }
  .member { grid-template-columns: 1fr; gap: 24px; }
  .member__photo { max-width: 240px; }

  /* Process vertical */
  .process__timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .process__step {
    flex-direction: row;
    gap: 16px;
  }
  .process__line {
    width: 1px;
    height: 24px;
    margin: 8px 0 8px 19px;
  }

  /* Contact */
  .contact-form { max-width: 100%; }

  /* Company */
  .company-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .company-row__label { font-size: 11px; }

  /* Footer */
  .footer__top { flex-direction: column; }
  .footer__nav { gap: 16px; }

  /* Flow steps */
  .flow-steps { flex-wrap: wrap; gap: 8px; }
  .flow-step { padding: 12px 16px; }
  .flow-step__arrow { padding: 0 4px; }
}

@media (max-width: 480px) {
  .team-teaser__grid { grid-template-columns: 1fr; max-width: 200px; margin: 0 auto; gap: 24px; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .section__cta { flex-direction: column; }
  .section__cta .btn { width: 100%; text-align: center; }
}
