:root {
  --rock-blue: #465e73;
  --rock-blue-dark: #364b5d;
  --apricot: #c77a4d;
  --ink: #202526;
  --soft-white: #f6f7f4;
  --paper: #ffffff;
  --cool-gray: #a9afac;
  --muted: #646d6b;
  --line: rgba(32, 37, 38, 0.16);
  --line-light: rgba(255, 255, 255, 0.24);
  --container: 1280px;
  --header-height: 84px;
}

* { box-sizing: border-box; }

html {
  background: var(--soft-white);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--soft-white);
  font-family: "Noto Sans SC", "Noto Sans JP", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--apricot);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 128px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(calc(100% - 128px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand-link {
  width: 178px;
  flex: 0 0 auto;
}

.brand-link img { width: 100%; }

.header-panel {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }
.menu-open .menu-icon { background: transparent; }
.menu-open .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--apricot);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
}

.language-switch a {
  min-width: 44px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--rock-blue);
  background: transparent;
  border-left: 1px solid var(--line);
  font: 600 12px/1 Bahnschrift, Arial, sans-serif;
}

.language-switch a:first-child { border-left: 0; }

.language-switch a[aria-current="true"] {
  color: var(--paper);
  background: var(--rock-blue);
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--rock-blue);
  font: 600 13px/1.4 Bahnschrift, Arial, sans-serif;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  width: 28px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--apricot);
  content: "";
}

.home-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
}

.home-hero-inner {
  position: relative;
  width: min(calc(100% - 128px), var(--container));
  min-height: 610px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  gap: 70px;
}

.home-hero-copy { padding: 70px 0 74px; }
.home-hero .eyebrow { margin-bottom: 26px; }

.home-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.18;
  font-weight: 700;
}

.home-hero h1 span { color: var(--rock-blue); }

.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.hero-signature {
  margin: 12px 0 0;
  color: var(--rock-blue);
  font-size: 16px;
  font-weight: 600;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--rock-blue);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button::after { content: "→"; }

.button:hover { transform: translateX(3px); }

.button-primary {
  color: var(--paper);
  background: var(--rock-blue);
}

.button-secondary {
  color: var(--rock-blue);
  background: transparent;
}

.button-inverse {
  color: var(--paper);
  background: transparent;
  border-color: var(--paper);
}

.button[aria-disabled="true"] {
  color: var(--muted);
  background: transparent;
  border-color: var(--cool-gray);
  cursor: not-allowed;
  transform: none;
}

.button[aria-disabled="true"]::after { content: ""; }

.hero-mark-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-mark {
  width: 306px;
  height: 306px;
}

.hero-locator {
  position: absolute;
  right: 0;
  bottom: 58px;
  color: var(--rock-blue);
  text-align: right;
  font: 600 11px/1.45 Bahnschrift, Arial, sans-serif;
}

.facts-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  border-left: 1px solid var(--line);
}

.fact:last-child { border-right: 1px solid var(--line); }

.fact-index {
  position: relative;
  padding-left: 12px;
  color: var(--rock-blue);
  font: 600 12px/1 Bahnschrift, Arial, sans-serif;
}

.fact-index::before {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 0;
  width: 3px;
  background: var(--apricot);
  content: "";
}

.fact strong { display: block; font-size: 16px; }
.fact small { display: block; color: var(--muted); font: 500 11px/1.4 Bahnschrift, Arial, sans-serif; }

.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  position: relative;
  width: min(calc(100% - 128px), var(--container));
  min-height: 520px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 850px) 1fr;
  align-items: center;
  gap: 70px;
}

.page-hero-copy { padding: 76px 0; }
.page-hero .eyebrow { margin-bottom: 30px; }

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 54px;
  line-height: 1.22;
  font-weight: 700;
}

.page-hero-number {
  position: absolute;
  right: 0;
  color: rgba(70, 94, 115, 0.10);
  font: 700 230px/1 Bahnschrift, Arial, sans-serif;
}

.page-hero-mark {
  position: absolute;
  right: 12px;
  bottom: -28px;
  width: 190px;
  opacity: 0.08;
}

.page-hero-blue {
  color: var(--paper);
  background: var(--rock-blue);
  border-bottom-color: var(--line-light);
}

.page-hero-blue .eyebrow,
.page-hero-blue .hero-lede { color: var(--paper); }
.page-hero-blue .eyebrow::before { background: var(--apricot); }
.page-hero-blue .page-hero-number { color: rgba(255, 255, 255, 0.08); }
.page-hero-blue .page-hero-mark { opacity: 0.10; filter: grayscale(1) brightness(4); }

.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--line);
}

.section-paper { background: var(--paper); }
.section-soft { background: var(--soft-white); }
.section-blue { color: var(--paper); background: var(--rock-blue); border-bottom-color: var(--line-light); }
.section-ink { color: var(--paper); background: var(--ink); border-bottom-color: var(--line-light); }

.section-blue .section-label,
.section-ink .section-label { color: var(--paper); }

.section-heading {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.section-title {
  max-width: 920px;
  margin: 0;
  font-size: 44px;
  line-height: 1.32;
  font-weight: 700;
}

.section-copy {
  max-width: 840px;
  margin: 30px 0 0 320px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 58px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.section-copy p { margin: 0; }
.section-blue .section-copy,
.section-ink .section-copy { color: rgba(255, 255, 255, 0.78); }

.section-cta { margin: 42px 0 0 320px; }

.lined-list {
  margin-top: 66px;
  border-top: 1px solid currentColor;
}

.lined-row {
  min-height: 134px;
  display: grid;
  grid-template-columns: 72px 280px 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.section-blue .lined-row,
.section-ink .lined-row { border-bottom-color: var(--line-light); }

.lined-row-number {
  position: relative;
  padding-left: 14px;
  color: var(--rock-blue);
  font: 600 12px/1 Bahnschrift, Arial, sans-serif;
}

.lined-row-number::before {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 0;
  width: 3px;
  background: var(--apricot);
  content: "";
}

.section-blue .lined-row-number,
.section-ink .lined-row-number { color: var(--paper); }

.lined-row h3 { margin: 0; font-size: 22px; }
.lined-row p { max-width: 650px; margin: 0; color: var(--muted); }
.section-blue .lined-row p,
.section-ink .lined-row p { color: rgba(255, 255, 255, 0.74); }

.value-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.value-item {
  min-height: 280px;
  padding: 42px 38px;
  border-left: 1px solid var(--line-light);
}

.value-item:last-child { border-right: 1px solid var(--line-light); }
.value-item-index { color: var(--paper); font: 600 12px/1 Bahnschrift, Arial, sans-serif; }
.value-item-index::before { display: inline-block; width: 24px; height: 3px; margin-right: 12px; background: var(--apricot); content: ""; vertical-align: middle; }
.value-item h3 { margin: 42px 0 14px; font-size: 28px; }
.value-item p { margin: 0; color: rgba(255, 255, 255, 0.76); }

.profile-table {
  margin-top: 62px;
  border-top: 1px solid var(--ink);
}

.profile-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.profile-row dt { color: var(--rock-blue); font-weight: 700; }
.profile-row dd { margin: 0; font-size: 18px; }

.process-track {
  position: relative;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 280px;
  padding: 48px 34px 40px;
  border-left: 1px solid var(--line);
}

.process-step:last-child { border-right: 1px solid var(--line); }
.process-step::before { position: absolute; top: -5px; left: 32px; width: 9px; height: 9px; background: var(--apricot); content: ""; }
.process-step span { color: var(--rock-blue); font: 600 12px/1 Bahnschrift, Arial, sans-serif; }
.process-step h3 { margin: 34px 0 16px; font-size: 23px; }
.process-step p { margin: 0; color: var(--muted); }

.statement {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.statement-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.statement-copy p {
  margin: 0;
  font-size: 48px;
  line-height: 1.4;
  font-weight: 700;
}

.statement-copy small {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.statement-mark {
  position: absolute;
  right: -42px;
  bottom: -180px;
  width: 540px;
  opacity: 0.10;
  filter: grayscale(1) brightness(4);
}

.status-stage {
  margin-top: 72px;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--ink);
  overflow: hidden;
}

.status-copy {
  padding: 78px 70px;
  color: var(--paper);
}

.status-kicker {
  margin: 0;
  color: #e09a72;
  font: 600 13px/1 Bahnschrift, Arial, sans-serif;
}

.status-copy h2 { max-width: 620px; margin: 40px 0 24px; font-size: 50px; line-height: 1.24; }
.status-copy p { max-width: 620px; margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 17px; line-height: 1.9; }

.status-copy .status-contact {
  margin-top: 24px;
  color: #e6a27b;
  font-size: 14px;
  font-weight: 600;
}

.status-visual {
  position: relative;
  min-height: 520px;
  background: var(--rock-blue);
  overflow: hidden;
}

.status-visual img {
  position: absolute;
  right: -100px;
  bottom: -110px;
  width: 500px;
  opacity: 0.17;
  filter: grayscale(1) brightness(4);
}

.status-code {
  position: absolute;
  top: 66px;
  left: 56px;
  color: rgba(255, 255, 255, 0.86);
  font: 600 13px/1.7 Bahnschrift, Arial, sans-serif;
}

.status-code::before { display: block; width: 52px; height: 3px; margin-bottom: 22px; background: var(--apricot); content: ""; }

.timeline {
  margin-top: 70px;
  border-top: 1px solid var(--ink);
}

.timeline-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 180px 1fr 240px;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.timeline-row time { color: var(--rock-blue); font: 600 13px/1 Bahnschrift, Arial, sans-serif; }
.timeline-row h3 { margin: 0; font-size: 23px; }
.timeline-row p { margin: 0; color: var(--muted); text-align: right; }

.trait-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}

.trait {
  min-height: 240px;
  padding: 42px 52px 42px 0;
  border-bottom: 1px solid var(--line);
}

.trait:nth-child(odd) { border-right: 1px solid var(--line); }
.trait:nth-child(even) { padding-left: 52px; }
.trait span { color: var(--rock-blue); font: 600 12px/1 Bahnschrift, Arial, sans-serif; }
.trait h3 { margin: 28px 0 12px; font-size: 25px; }
.trait p { margin: 0; color: var(--muted); }

.page-cta {
  padding: 100px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.page-cta .section-label { margin-bottom: 24px; }
.page-cta h2 { max-width: 850px; margin: 0; font-size: 43px; line-height: 1.35; }
.page-cta p { max-width: 760px; margin: 18px 0 0; color: var(--muted); }
.page-cta .cta-actions { margin: 0; }

.not-found {
  min-height: 650px;
  display: flex;
  align-items: center;
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
}

.not-found h1 {
  max-width: 820px;
  margin: 30px 0 0;
  font-size: 64px;
  line-height: 1.2;
}

.not-found p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  min-height: 330px;
  padding: 68px 0 30px;
  color: var(--paper);
  background: var(--ink);
}

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

.footer-logo { width: 212px; }
.footer-company { margin: 22px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 13px; }

.footer-details {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-detail-label {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.footer-contact-placeholder { color: #e6a27b; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 18px 42px;
  font-size: 13px;
}

.footer-nav a:hover { color: #e09a72; }

.footer-bottom {
  margin-top: 58px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--line-light);
  font: 500 11px/1.5 Bahnschrift, Arial, sans-serif;
}

.projects-hero {
  min-height: 660px;
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
}

.projects-hero-grid {
  min-height: 538px;
  display: grid;
  grid-template-columns: minmax(0, 820px) 1fr;
  align-items: center;
  gap: 92px;
}

.projects-hero-copy { padding: 78px 0 66px; }
.projects-hero-copy .eyebrow { margin-bottom: 28px; }

.projects-hero-copy h1 {
  max-width: 830px;
  margin: 0;
  font-size: 58px;
  line-height: 1.2;
  font-weight: 700;
}

.projects-hero-copy h1 span { color: var(--rock-blue); }
.projects-hero-copy .hero-lede { max-width: 700px; }

.projects-hero-index {
  position: relative;
  height: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-right: 34px;
  color: rgba(70, 94, 115, 0.1);
}

.projects-hero-index::after {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 110px;
  height: 110px;
  border: 13px solid rgba(70, 94, 115, 0.08);
  border-radius: 50%;
  content: "";
}

.projects-hero-index strong { font: 700 142px/0.9 Bahnschrift, Arial, sans-serif; }
.projects-hero-index span { margin: 18px 6px 0 0; color: var(--rock-blue); font: 600 12px/1 Bahnschrift, Arial, sans-serif; }

.projects-facts-wrap { background: var(--paper); border-top: 1px solid var(--line); }
.projects-facts { min-height: 122px; display: grid; grid-template-columns: repeat(3, 1fr); }

.projects-facts > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-content: center;
  padding: 22px 38px;
  border-right: 1px solid var(--line);
}

.projects-facts > div:first-child { border-left: 1px solid var(--line); }
.projects-facts span { grid-row: 1 / 3; padding-top: 3px; color: var(--apricot); font: 600 11px/1.4 Bahnschrift, Arial, sans-serif; }
.projects-facts strong { font-size: 17px; }
.projects-facts small { margin-top: 3px; color: var(--muted); font: 600 10px/1.4 Bahnschrift, Arial, sans-serif; }

.projects-showcase {
  padding: 112px 0 124px;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.projects-sumikko { background: var(--paper); }
.projects-bank { color: var(--paper); background: #1f2728; }
.projects-reverse { background: #eef0ed; }

.projects-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.projects-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--rock-blue);
  font: 600 13px/1.4 Bahnschrift, Arial, sans-serif;
}

.projects-section-label > span { width: 28px; height: 3px; flex: 0 0 auto; background: var(--apricot); }
.projects-section-market { margin: 0; color: var(--muted); font: 600 11px/1 Bahnschrift, Arial, sans-serif; text-align: right; }
.projects-bank .projects-section-heading { border-color: var(--line-light); }
.projects-bank .projects-section-label { color: #a8bdcc; }
.projects-bank .projects-section-market { color: rgba(255, 255, 255, 0.58); }

.projects-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 96px;
  align-items: start;
  padding: 54px 0 58px;
}

.projects-title-lockup { display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 28px; align-items: center; }

.projects-icon {
  width: 108px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(32, 37, 38, 0.12);
}

.projects-overline { margin: 0 0 12px; color: var(--apricot); font: 600 11px/1 Bahnschrift, Arial, sans-serif; }
.projects-title-lockup h2 { margin: 0; font-size: 37px; line-height: 1.25; font-weight: 700; overflow-wrap: anywhere; }
.projects-bank .projects-title-lockup h2 { color: var(--paper); }
.projects-bank .projects-title-subline { color: #d3b090; }
.projects-title-subline { font-size: 1em; }
.projects-bank .projects-title-subline,
.projects-reverse .projects-title-subline { font-size: 0.76em; }
.projects-reverse .projects-title-lockup h2 { font-size: 34px; }

.projects-summary > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.projects-bank .projects-summary > p { color: rgba(255, 255, 255, 0.68); }

.projects-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.projects-meta span { display: flex; flex-direction: column; gap: 4px; min-width: 0; padding-left: 18px; border-left: 1px solid var(--line); font-size: 13px; font-weight: 600; overflow-wrap: anywhere; }
.projects-meta span:first-child { padding-left: 0; border-left: 0; }
.projects-meta small { color: var(--muted); font-size: 11px; font-weight: 500; }
.projects-bank .projects-meta { border-color: var(--line-light); }
.projects-bank .projects-meta span { border-color: var(--line-light); }
.projects-bank .projects-meta small { color: rgba(255, 255, 255, 0.52); }

.projects-store-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  color: var(--rock-blue);
  border-bottom: 2px solid var(--apricot);
  font-size: 13px;
  font-weight: 700;
}

.projects-store-link span { font-size: 17px; }
.projects-bank .projects-store-link { color: var(--paper); }

.projects-gallery { overflow: hidden; }
.projects-gallery figure { overflow: hidden; background: rgba(32, 37, 38, 0.06); }
.projects-gallery img { width: 100%; height: 100%; object-fit: cover; }

.projects-gallery-sumikko {
  position: relative;
  min-height: 544px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  padding: 48px;
  background: #dceef4;
  border: 1px solid rgba(70, 94, 115, 0.14);
}

.projects-gallery-sumikko::after { position: absolute; right: -52px; bottom: -90px; width: 360px; height: 360px; border: 42px solid rgba(255, 255, 255, 0.36); border-radius: 50%; content: ""; }
.projects-sumikko-feature { position: relative; z-index: 1; aspect-ratio: 16 / 9; border: 8px solid var(--paper); box-shadow: 0 20px 44px rgba(70, 94, 115, 0.14); }
.projects-sumikko-phones { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.projects-sumikko-phones figure { aspect-ratio: 9 / 16; border: 6px solid var(--paper); box-shadow: 0 18px 38px rgba(70, 94, 115, 0.16); }
.projects-sumikko-phones figure:nth-child(2) { transform: translateY(24px); }
.projects-sumikko-phones figure:nth-child(3) { transform: translateY(-14px); }
.projects-gallery-note { position: absolute; z-index: 1; bottom: 42px; left: 50px; margin: 0; color: var(--rock-blue); font: 600 11px/1 Bahnschrift, Arial, sans-serif; }

.projects-gallery-wide { display: grid; grid-template-columns: minmax(0, 2.08fr) minmax(0, 1fr); gap: 16px; }
.projects-wide-main { aspect-ratio: 16 / 9; }
.projects-wide-side { display: grid; grid-template-rows: repeat(2, 1fr); gap: 16px; min-height: 0; }
.projects-wide-side figure { min-height: 0; }

.projects-gallery-reverse { display: grid; grid-template-columns: minmax(0, 1.52fr) repeat(2, minmax(0, 0.74fr)); gap: 16px; padding: 16px; background: var(--paper); border: 1px solid var(--line); }
.projects-gallery-reverse figure { aspect-ratio: 16 / 9; align-self: start; }

.projects-index-section { padding: 118px 0 124px; background: var(--paper); border-top: 1px solid var(--line); }
.projects-index-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 100px; }
.projects-index-heading .projects-section-label { margin-bottom: 30px; }
.projects-index-heading h2 { margin: 0; font-size: 38px; line-height: 1.35; }
.projects-index-list { border-top: 1px solid var(--ink); }

.projects-index-list a {
  min-height: 118px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1.1fr) minmax(190px, 0.7fr) 32px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.projects-index-number { color: var(--apricot); font: 600 11px/1 Bahnschrift, Arial, sans-serif; }
.projects-index-list strong { font-size: 16px; line-height: 1.5; overflow-wrap: anywhere; }
.projects-index-list small { color: var(--muted); font: 600 10px/1.5 Bahnschrift, Arial, sans-serif; }
.projects-index-arrow { color: var(--rock-blue); font-size: 20px; }

.projects-closing { color: var(--paper); background: var(--rock-blue); }
.projects-closing-inner { min-height: 380px; display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.projects-closing-inner p { margin: 0 0 22px; color: rgba(255, 255, 255, 0.64); font: 600 11px/1 Bahnschrift, Arial, sans-serif; }
.projects-closing-inner h2 { margin: 0; font-size: 42px; line-height: 1.35; }

.projects-outline-link {
  min-width: 224px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 600;
}

.projects-outline-link span { font-size: 19px; }

@media (max-width: 1180px) {
  .container,
  .header-inner,
  .home-hero-inner,
  .page-hero-inner { width: min(calc(100% - 72px), var(--container)); }
  .nav-list { gap: 16px; }
  .header-panel { gap: 18px; }
  .brand-link { width: 160px; }
  .home-hero-inner { grid-template-columns: minmax(0, 650px) 1fr; gap: 30px; }
  .hero-mark { width: 260px; height: 260px; }
  .home-hero h1 { font-size: 52px; }
  .section-heading { grid-template-columns: 200px minmax(0, 1fr); gap: 50px; }
  .section-copy,
  .section-cta { margin-left: 250px; }
  .projects-hero-grid { grid-template-columns: minmax(0, 1fr) 250px; gap: 48px; }
  .projects-intro { gap: 58px; }
  .projects-title-lockup h2 { font-size: 33px; }
  .projects-reverse .projects-title-lockup h2 { font-size: 30px; }
  .projects-gallery-sumikko { gap: 28px; padding: 36px; }
}

@media (max-width: 980px) {
  :root { --header-height: 72px; }

  .container,
  .header-inner,
  .home-hero-inner,
  .page-hero-inner { width: min(calc(100% - 48px), var(--container)); }

  .brand-link { width: 172px; }
  .menu-toggle { display: inline-flex; }

  .header-panel {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
    overflow-y: auto;
    color: var(--ink);
    background: var(--soft-white);
    border-top: 1px solid var(--line);
  }

  .js .header-panel { display: none; }
  .js .menu-open .header-panel { display: flex; }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list li:nth-child(odd) { border-right: 1px solid var(--line); }

  .nav-link {
    width: 100%;
    min-height: 66px;
    padding: 0 18px;
    font-size: 16px;
  }

  .nav-link::after { right: 18px; bottom: 13px; left: 18px; }
  .language-switch { align-self: flex-start; }
  .language-switch a { min-width: 62px; min-height: 44px; }

  .home-hero,
  .home-hero-inner { min-height: 720px; }

  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 82px 0 170px;
  }

  .home-hero h1 { max-width: 650px; font-size: 48px; }
  .hero-mark-wrap { position: absolute; inset: 0; pointer-events: none; }
  .hero-mark { position: absolute; right: 0; bottom: 70px; width: 250px; height: 250px; opacity: 0.12; }
  .hero-locator { right: 0; bottom: 38px; }

  .page-hero,
  .page-hero-inner { min-height: 500px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-copy { position: relative; z-index: 2; max-width: 760px; padding: 72px 0 90px; }
  .page-hero h1 { max-width: 760px; font-size: 48px; }
  .page-hero-number { right: 0; font-size: 180px; }
  .page-hero-mark { width: 150px; }

  .projects-hero { position: relative; min-height: 0; }
  .projects-hero-grid { position: relative; min-height: 500px; grid-template-columns: 1fr; }
  .projects-hero-copy { position: relative; z-index: 2; max-width: 760px; padding: 72px 0 90px; }
  .projects-hero-copy h1 { max-width: 760px; font-size: 48px; }
  .projects-hero-index { position: absolute; z-index: 1; top: 80px; right: 0; height: 250px; opacity: 0.74; }
  .projects-intro { grid-template-columns: 1fr; gap: 40px; }
  .projects-gallery-sumikko { min-height: 0; grid-template-columns: 1fr; padding: 36px; }
  .projects-sumikko-phones { width: min(100%, 600px); justify-self: end; }
  .projects-gallery-note { position: static; grid-column: 1; margin-top: 16px; }
  .projects-index-layout { grid-template-columns: 1fr; gap: 56px; }
  .projects-closing-inner { min-height: 340px; }

  .section { padding: 92px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-title { font-size: 40px; }
  .section-copy { margin: 34px 0 0; }
  .section-cta { margin: 38px 0 0; }

  .lined-row { grid-template-columns: 60px 220px 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 1px solid var(--line); }
  .process-step:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .status-copy { padding: 64px 48px; }
  .status-copy h2 { font-size: 44px; }
  .page-cta-inner { grid-template-columns: 1fr; align-items: start; }
  .page-cta .cta-actions { margin-top: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { justify-content: start; }
}

@media (max-width: 640px) {
  :root { --header-height: 64px; }

  .container,
  .header-inner,
  .home-hero-inner,
  .page-hero-inner { width: min(calc(100% - 40px), var(--container)); }

  .brand-link { width: 164px; }
  .header-panel { padding: 28px 20px 48px; }
  .nav-list { grid-template-columns: 1fr; }
  .nav-list li:nth-child(odd) { border-right: 0; }
  .nav-link { min-height: 58px; }

  .home-hero,
  .home-hero-inner { min-height: 760px; }
  .home-hero-copy { padding: 64px 0 220px; }
  .home-hero .eyebrow { margin-bottom: 22px; }
  .home-hero h1 { font-size: 40px; line-height: 1.24; }
  .hero-lede { margin-top: 22px; font-size: 16px; line-height: 1.85; }
  .hero-signature { font-size: 14px; }
  .hero-actions,
  .cta-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .button { width: 100%; }
  .hero-mark { right: -36px; bottom: 52px; width: 236px; height: 236px; }
  .hero-locator { bottom: 24px; font-size: 10px; }

  .facts-grid { grid-template-columns: 1fr; }
  .fact { min-height: 102px; padding: 20px 0; border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-right: 0; border-bottom: 0; }

  .page-hero,
  .page-hero-inner { min-height: 540px; }
  .page-hero-copy { padding: 68px 0 130px; }
  .page-hero h1 { font-size: 39px; line-height: 1.28; }
  .page-hero-number { top: 50px; right: -8px; font-size: 130px; }
  .page-hero-mark { right: -18px; bottom: -16px; width: 126px; }

  .projects-hero-grid { min-height: 480px; }
  .projects-hero-copy { padding: 68px 0 110px; }
  .projects-hero-copy h1 { font-size: 39px; line-height: 1.28; }
  .projects-hero-index { top: 36px; right: -10px; height: 180px; padding-right: 16px; }
  .projects-hero-index strong { font-size: 104px; }
  .projects-hero-index span { margin-top: 12px; }
  .projects-hero-index::after { right: 0; bottom: 6px; width: 82px; height: 82px; border-width: 10px; }
  .projects-facts { grid-template-columns: 1fr; }
  .projects-facts > div { min-height: 94px; padding: 18px 0; border-right: 0; border-left: 0 !important; border-bottom: 1px solid var(--line); }
  .projects-facts > div:last-child { border-bottom: 0; }
  .projects-showcase { padding: 76px 0 82px; }
  .projects-section-heading { align-items: flex-start; }
  .projects-section-label { font-size: 11px; }
  .projects-section-market { max-width: 150px; line-height: 1.5; }
  .projects-intro { gap: 32px; padding: 40px 0 44px; }
  .projects-title-lockup { grid-template-columns: 76px minmax(0, 1fr); gap: 18px; }
  .projects-icon { width: 76px; border-radius: 16px; }
  .projects-title-lockup h2,
  .projects-reverse .projects-title-lockup h2 { font-size: 27px; }
  .projects-reverse .projects-title-lockup h2 { line-height: 1.35; }
  .projects-summary > p { font-size: 15px; }
  .projects-meta span { padding-left: 10px; font-size: 12px; }
  .projects-meta small { font-size: 10px; }
  .projects-gallery-sumikko { gap: 20px; padding: 14px 14px 22px; }
  .projects-sumikko-feature { border-width: 4px; }
  .projects-sumikko-phones { gap: 7px; }
  .projects-sumikko-phones figure { border-width: 3px; }
  .projects-sumikko-phones figure:nth-child(2),
  .projects-sumikko-phones figure:nth-child(3) { transform: none; }
  .projects-gallery-note { margin: 4px 2px 0; font-size: 9px; }
  .projects-gallery-wide { grid-template-columns: 1fr; gap: 8px; }
  .projects-wide-side { grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr; gap: 8px; }
  .projects-wide-side figure { aspect-ratio: 16 / 9; }
  .projects-gallery-reverse { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 8px; }
  .projects-reverse-main { grid-column: 1 / -1; }
  .projects-index-section { padding: 76px 0 84px; }
  .projects-index-layout { gap: 42px; }
  .projects-index-heading h2 { font-size: 32px; }
  .projects-index-list a { min-height: 112px; grid-template-columns: 36px minmax(0, 1fr) 24px; gap: 12px; padding: 18px 0; }
  .projects-index-list small { grid-column: 2; }
  .projects-index-arrow { grid-column: 3; grid-row: 1 / 3; }
  .projects-closing-inner { min-height: 360px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 34px; }
  .projects-closing-inner h2 { font-size: 34px; }
  .projects-outline-link { width: 100%; }

  .section { padding: 76px 0; }
  .section-heading { gap: 24px; }
  .section-title { font-size: 34px; line-height: 1.4; }
  .section-copy { grid-template-columns: 1fr; gap: 20px; font-size: 16px; }

  .lined-list { margin-top: 48px; }
  .lined-row {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  .lined-row p { grid-column: 2; }
  .lined-row h3 { font-size: 21px; }

  .value-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .value-item { min-height: 0; padding: 36px 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
  .value-item:last-child { border-bottom: 0; }
  .value-item h3 { margin-top: 28px; }

  .profile-table { margin-top: 46px; }
  .profile-row { min-height: 0; padding: 24px 0; grid-template-columns: 1fr; gap: 6px; }
  .profile-row dd { font-size: 16px; overflow-wrap: anywhere; }

  .process-track { margin-top: 48px; grid-template-columns: 1fr; }
  .process-step { min-height: 0; padding: 38px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }

  .statement { min-height: 360px; }
  .statement-copy p { font-size: 36px; line-height: 1.45; }
  .statement-mark { right: -100px; bottom: -120px; width: 400px; }

  .status-stage { min-height: 0; margin-top: 48px; grid-template-columns: 1fr; }
  .status-copy { padding: 48px 28px; }
  .status-copy h2 { margin-top: 30px; font-size: 36px; }
  .status-visual { min-height: 300px; }
  .status-visual img { right: -80px; bottom: -80px; width: 360px; }
  .status-code { top: 46px; left: 28px; }

  .timeline { margin-top: 48px; }
  .timeline-row { min-height: 0; padding: 30px 0; grid-template-columns: 1fr; gap: 12px; }
  .timeline-row p { text-align: left; }

  .trait-grid { margin-top: 48px; grid-template-columns: 1fr; }
  .trait { min-height: 0; padding: 34px 0; border-right: 0 !important; }
  .trait:nth-child(even) { padding-left: 0; }

  .page-cta { padding: 78px 0; }
  .page-cta h2 { font-size: 35px; }
  .not-found { min-height: 560px; }
  .not-found h1 { font-size: 44px; }
  .site-footer { padding-top: 56px; }
  .footer-top { gap: 44px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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

@media print {
  .skip-link { display: none; }
}
