:root {
  --ink: #0d1714;
  --ink-soft: #17241f;
  --forest: #0b5a3c;
  --forest-bright: #167654;
  --paper: #f2eee5;
  --paper-warm: #e7dfd0;
  --snow: #fcfaf5;
  --fuji: #7fa7b3;
  --fuji-deep: #315c68;
  --signal: #d7662f;
  --text: #17201d;
  --muted: #64706a;
  --border: rgba(13, 23, 20, 0.17);
  --white-border: rgba(255, 255, 255, 0.24);
  --display: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --wide: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --shell: 1280px;
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background: var(--snow);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

figure,
blockquote,
dl,
dd,
p,
h1,
h2,
h3 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button,
input,
textarea,
select {
  border-radius: 0;
}

:focus-visible {
  outline: 3px solid #f0a06e;
  outline-offset: 4px;
}

::selection {
  color: var(--snow);
  background: var(--forest);
}

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

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

.site-intro {
  display: none;
}

.js .site-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  overflow: hidden;
  color: var(--snow);
  pointer-events: none;
  animation: intro-hide 0.01s 2.08s forwards;
}

.intro-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.1%;
  background: var(--ink);
  will-change: transform;
}

.intro-panel-left {
  left: 0;
  transform-origin: left center;
  animation: intro-panel-left 1.02s 0.78s cubic-bezier(0.74, 0, 0.2, 1) forwards;
}

.intro-panel-right {
  right: 0;
  transform-origin: right center;
  animation: intro-panel-right 1.02s 0.78s cubic-bezier(0.74, 0, 0.2, 1) forwards;
}

.intro-wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(90vw, 900px);
  transform: translate(-50%, -50%);
  animation: intro-wordmark 0.42s 0.62s ease forwards;
}

.intro-wordmark span,
.intro-wordmark small {
  font-family: var(--wide);
  font-size: clamp(0.58rem, 0.8vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.3em;
}

.intro-wordmark strong {
  margin: 12px 0 10px;
  font-family: var(--wide);
  font-size: clamp(2.6rem, 7vw, 7.6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.intro-wordmark small {
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.48rem, 0.65vw, 0.62rem);
}

.intro-progress {
  position: absolute;
  bottom: max(32px, 6vh);
  left: 50%;
  z-index: 2;
  width: min(76vw, 560px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

.intro-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  animation: intro-progress 0.74s cubic-bezier(0.3, 0.7, 0.2, 1) forwards;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--snow);
  transition: background-color 0.35s ease, height 0.35s ease, box-shadow 0.35s ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(3, 11, 8, 0.72) 0%, rgba(3, 11, 8, 0) 100%);
  pointer-events: none;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(13, 23, 20, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1680px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 52px;
}

.brand-mark {
  width: 43px;
  height: 40px;
}

.logo-symbol {
  position: relative;
  display: block;
  overflow: hidden;
  background: transparent;
}

.logo-symbol > img {
  position: absolute;
  top: -3.2%;
  left: -6%;
  width: 111.7%;
  max-width: none;
  height: auto;
}

.brand-copy {
  display: grid;
  line-height: 1.25;
}

.brand-name {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.brand-en {
  margin-top: 4px;
  font-family: var(--wide);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  opacity: 0.72;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 38px);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.global-nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.global-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.global-nav > a:not(.nav-cta):hover::after,
.global-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0 22px;
  color: var(--snow);
  border: 1px solid rgba(255, 255, 255, 0.58);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink);
  background: var(--snow);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  min-width: 54px;
  min-height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle-label {
  font-family: var(--wide);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.menu-toggle-lines {
  position: relative;
  width: 28px;
  height: 18px;
}

.menu-toggle-lines i {
  position: absolute;
  right: 0;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, top 0.3s ease;
}

.menu-toggle-lines i:first-child {
  top: 4px;
}

.menu-toggle-lines i:last-child {
  top: 13px;
  width: 20px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
  top: 9px;
  width: 28px;
  transform: rotate(-45deg);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
}

.hero {
  --hero-grid-y: 0px;
  --hero-parallax-y: 0px;
  --hero-pointer-x: 0px;
  --hero-pointer-y: 0px;
  --hero-content-x: 0px;
  --hero-content-y: 0px;
  --contour-shift: 0px;
  position: relative;
  min-height: 780px;
  height: 100svh;
  max-height: 1080px;
  overflow: hidden;
  color: var(--snow);
  background: var(--ink);
}

.hero-slides,
.hero-slide,
.hero-slide::after {
  position: absolute;
  inset: 0;
}

.hero-slides {
  transform: translate3d(
    var(--hero-pointer-x),
    calc(var(--hero-parallax-y) + var(--hero-pointer-y)),
    0
  ) scale(1.055);
  transform-origin: center top;
  transition: transform 0.16s ease-out;
  will-change: transform;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  animation: hero-photo-reveal 1.32s cubic-bezier(0.72, 0, 0.2, 1) both;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
  transform: scale(1.03);
}

.hero-slide.is-active img {
  animation: hero-drift 7.2s ease-out both;
}

.hero-slide:nth-child(2) img {
  object-position: center 50%;
}

.hero-slide:nth-child(3) img {
  object-position: center 42%;
}

.hero-slide::after {
  content: "";
  background: linear-gradient(90deg, rgba(6, 16, 12, 0.85) 0%, rgba(6, 16, 12, 0.46) 43%, rgba(6, 16, 12, 0.08) 72%);
}

.hero-slide figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-atmosphere {
  position: absolute;
  inset: -18%;
  z-index: 2;
  overflow: hidden;
  opacity: 0.3;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-atmosphere::before,
.hero-atmosphere::after {
  position: absolute;
  width: 52vw;
  height: 52vw;
  min-width: 520px;
  min-height: 520px;
  content: "";
  border-radius: 50%;
  filter: blur(16px);
  will-change: transform, opacity;
}

.hero-atmosphere::before {
  top: -24%;
  left: 28%;
  background: radial-gradient(circle, rgba(143, 196, 204, 0.34), rgba(143, 196, 204, 0) 67%);
  animation: atmosphere-drift-a 8s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
  right: -4%;
  bottom: -32%;
  background: radial-gradient(circle, rgba(255, 187, 128, 0.22), rgba(255, 187, 128, 0) 66%);
  animation: atmosphere-drift-b 10s ease-in-out infinite alternate;
}

.hero-sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 2px;
  opacity: 0;
  background: linear-gradient(180deg, transparent 4%, #f49a61 30%, var(--signal) 70%, transparent 96%);
  box-shadow: 0 0 28px rgba(244, 154, 97, 0.72);
  pointer-events: none;
  transform: translate3d(-4px, 0, 0);
}

.hero-sweep.is-running {
  animation: hero-sweep 1.28s cubic-bezier(0.72, 0, 0.2, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 13, 10, 0.22) 0%, transparent 40%, rgba(4, 13, 10, 0.38) 100%),
    linear-gradient(90deg, rgba(7, 20, 15, 0.25) 1px, transparent 1px),
    linear-gradient(rgba(7, 20, 15, 0.18) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
  background-position: center, 0 var(--hero-grid-y), 0 var(--hero-grid-y);
  pointer-events: none;
}

.hero-contours {
  position: absolute;
  right: -5vw;
  bottom: -20vh;
  z-index: 3;
  width: min(68vw, 980px);
  opacity: 0.42;
  pointer-events: none;
  transform: translate3d(0, var(--contour-shift), 0);
  will-change: transform;
}

.hero-contours path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.54);
  stroke-width: 1.4;
}

body.enhanced .hero-contours path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: contour-draw 2.4s cubic-bezier(0.3, 0.72, 0.25, 1) forwards;
}

body.enhanced .hero-contours path:nth-child(2) { animation-delay: 0.12s; }
body.enhanced .hero-contours path:nth-child(3) { animation-delay: 0.24s; }
body.enhanced .hero-contours path:nth-child(4) { animation-delay: 0.36s; }
body.enhanced .hero-contours path:nth-child(5) { animation-delay: 0.48s; }

body.enhanced .hero-contours {
  animation: contour-breathe 4.8s 2.4s ease-in-out infinite alternate;
}

.hero-coordinate {
  position: absolute;
  top: 50%;
  right: 28px;
  z-index: 4;
  display: flex;
  gap: 22px;
  font-family: var(--wide);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  opacity: 0.72;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(6vw, calc((100vw - 1520px) / 2));
  z-index: 5;
  width: min(850px, 78vw);
  transform: translate3d(
    var(--hero-content-x),
    calc(-43% + var(--hero-content-y)),
    0
  );
  transition: transform 0.2s ease-out;
}

@media (min-width: 861px) {
  .hero-content {
    width: min(1120px, 78vw);
  }

  .hero-title-line {
    white-space: nowrap;
  }
}

.hero-eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--wide);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero-eyebrow span {
  width: 48px;
  height: 1px;
  background: var(--signal);
}

.hero h1 {
  margin-top: 25px;
  font-family: var(--display);
  font-size: clamp(4.6rem, 8.8vw, 9.8rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.055em;
  text-shadow: 0 5px 34px rgba(0, 0, 0, 0.3);
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero-title-line > span,
.hero-title-line > em {
  display: block;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.hero-lead {
  margin-top: 28px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.mobile-break {
  display: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

body.enhanced .hero-eyebrow,
body.enhanced .hero-lead,
body.enhanced .hero-actions {
  opacity: 0;
  animation: hero-enter 0.92s cubic-bezier(0.18, 0.72, 0.22, 1) forwards;
}

body.enhanced .hero-eyebrow { animation-delay: 0.88s; }
body.enhanced .hero-title-line > span,
body.enhanced .hero-title-line > em {
  transform: translateY(112%);
  animation: hero-title-rise 0.9s cubic-bezier(0.16, 0.72, 0.22, 1) forwards;
}

body.enhanced .hero-title-line:first-child > span { animation-delay: 0.98s; }
body.enhanced .hero-title-line:nth-child(2) > em { animation-delay: 1.12s; }
body.enhanced .hero-lead { animation-delay: 1.32s; }
body.enhanced .hero-actions { animation-delay: 1.48s; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 60px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.button svg {
  width: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button-primary {
  color: var(--snow);
  background: var(--forest);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-bottom {
  position: absolute;
  right: max(5vw, calc((100vw - 1520px) / 2));
  bottom: 38px;
  left: max(6vw, calc((100vw - 1520px) / 2));
  z-index: 5;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.hero-caption {
  max-width: 380px;
  padding-left: 15px;
  border-left: 2px solid var(--signal);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.slider-arrow,
.motion-toggle,
.slider-dots button {
  color: var(--snow);
  background: transparent;
  border: 0;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--white-border);
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  color: var(--ink);
  background: var(--snow);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dots button {
  position: relative;
  width: 34px;
  min-height: 44px;
  padding: 0;
}

.slider-dots button::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-50%);
}

.slider-dots button.is-active::after {
  background: var(--signal);
}

.slide-count {
  min-width: 64px;
  font-family: var(--wide);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.slide-count b {
  font-size: 0.94rem;
}

.motion-toggle {
  min-width: 48px;
  min-height: 44px;
  padding: 0 7px;
  border: 1px solid transparent;
  font-size: 0.68rem;
}

.motion-toggle:hover,
.motion-toggle:focus-visible {
  border-color: var(--white-border);
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 8px;
  font-family: var(--wide);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  display: block;
  width: 1px;
  height: 20px;
  content: "";
  background: var(--snow);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(100px, 11vw, 170px) 0;
}

.section-shell {
  width: min(100% - 80px, var(--shell));
  margin-inline: auto;
}

.section-heading h2,
.message h2,
.contact h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.section-index {
  color: var(--forest);
}

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

.heading-note {
  max-width: 520px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 2;
}

.about {
  overflow: hidden;
  isolation: isolate;
  background: #e9e7df;
}

.about::before {
  position: absolute;
  inset: -10px;
  z-index: -2;
  content: "";
  opacity: 0.48;
  background: url("assets/home-refresh-20260901/about-fuji.webp") center 62% / cover no-repeat;
  filter: grayscale(0.35) saturate(0.72) contrast(1.12) blur(0.7px);
  mix-blend-mode: multiply;
  transform: scale(1.025);
}

.about::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(242, 238, 229, 0.88) 0%, rgba(242, 238, 229, 0.58) 48%, rgba(242, 238, 229, 0.36) 100%),
    linear-gradient(180deg, rgba(242, 238, 229, 0.14), rgba(242, 238, 229, 0.46));
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 60px 28px;
}

.about .section-heading {
  grid-column: 1 / span 6;
}

.about-story {
  grid-column: 8 / -1;
  align-self: end;
  padding-bottom: 9px;
  color: #43504a;
}

.about-story p + p {
  margin-top: 22px;
}

.about-lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.8;
}

.manifesto {
  position: relative;
  grid-column: 1 / span 7;
  align-self: center;
  margin-top: 72px;
  padding: 40px 0 20px 48px;
}

.manifesto-rule {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: var(--forest);
}

.manifesto-rule::before {
  position: absolute;
  top: 0;
  left: -4px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--signal);
  border-radius: 50%;
}

.manifesto p {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  line-height: 1.65;
}

.manifesto em {
  color: var(--forest);
  font-style: normal;
}

.about-region {
  grid-column: 8 / -1;
  align-self: end;
  padding: 18px 0 18px 24px;
  border-left: 1px solid rgba(13, 23, 20, 0.3);
  color: rgba(13, 23, 20, 0.58);
  font-family: var(--wide);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-region span {
  margin: 0 10px;
  color: var(--signal);
}

.section-dark {
  color: var(--snow);
  background: var(--ink);
}

.business {
  overflow: hidden;
}

.business-backdrop {
  position: absolute;
  inset: 0 0 auto auto;
  width: 48%;
  height: 58%;
  opacity: 0.13;
  background: url("assets/home-refresh-20260901/business-civil.webp") center / cover no-repeat;
  filter: grayscale(1);
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.section-dark .section-index,
.section-deep .section-index,
.recruit .section-index {
  color: #e4996c;
}

.section-dark .heading-note,
.section-deep .heading-note {
  color: rgba(255, 255, 255, 0.64);
}

.service-list {
  margin: 100px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--white-border);
}

.service-list li {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(230px, 0.64fr) minmax(320px, 1.1fr) minmax(240px, 0.76fr);
  align-items: center;
  gap: 28px;
  min-height: 188px;
  border-bottom: 1px solid var(--white-border);
  transition: background-color 0.35s ease, padding 0.35s ease;
}

.service-list li:hover {
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.service-number {
  color: #e4996c;
  font-family: var(--wide);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-name span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--wide);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.service-name h3 {
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  font-weight: 500;
}

.service-list li > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.9;
}

.service-visual {
  position: relative;
  height: 136px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.5) contrast(1.04);
  transition: transform 0.55s ease, filter 0.4s ease;
}

.service-visual-demolition img {
  object-position: center 58%;
}

.service-list li:hover .service-visual img {
  filter: saturate(1.65) contrast(1.05);
  transform: scale(1.05);
}

.service-visual > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(6, 20, 14, 0.76);
  font-family: var(--wide);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-visual-pending {
  display: grid;
  place-items: center;
  min-height: 136px;
  padding: 20px;
  text-align: center;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.05) 48% 52%, transparent 53%) 0 0 / 22px 22px,
    #152b23;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.service-visual-pending > span {
  position: static;
  padding: 0;
  color: rgba(255, 255, 255, 0.42);
  background: transparent;
  font-size: 0.67rem;
  line-height: 1.65;
  letter-spacing: 0.16em;
}

.service-visual-pending small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.works {
  background: var(--snow);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 290px;
  gap: 16px;
  margin-top: 90px;
}

.project {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  color: var(--snow);
  background: var(--ink-soft);
  box-shadow: 0 18px 44px rgba(8, 24, 18, 0);
}

body.enhanced .project::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  background: var(--forest);
  pointer-events: none;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 1.02s cubic-bezier(0.72, 0, 0.2, 1) 0.08s;
}

body.enhanced .project.is-visible::before {
  transform: scaleX(0);
  transform-origin: right center;
}

.project-kirala {
  grid-column: span 7;
  grid-row: span 2;
}

.project-toki,
.project-yusan {
  grid-column: span 5;
  grid-row: span 1;
}

.project-kirala img {
  object-position: center 56%;
}

.project-toki img {
  object-position: center 52%;
}

.project-yusan img {
  object-position: center 48%;
}

.project-archive-item {
  grid-column: span 3;
  grid-row: span 1;
  min-height: 0;
}

.project-archive-item figcaption {
  gap: 11px;
  padding: 18px;
}

.project-archive-item figcaption h3 {
  font-size: clamp(0.86rem, 1.2vw, 1.12rem);
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.5s ease;
}

.project::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(3, 12, 8, 0.87) 100%);
  pointer-events: none;
}

.project:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.project figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 24px;
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.project-number {
  color: #e4996c;
  font-family: var(--wide);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.project figcaption p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

.project figcaption h3 {
  margin-top: 3px;
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
}

.works-note,
.facts-source {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.74rem;
}

.section-deep {
  color: var(--snow);
  background: #10251d;
}

.company {
  overflow: hidden;
  padding-top: 190px;
}

.company::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.38;
  background:
    radial-gradient(circle at 78% 38%, transparent 0 90px, rgba(255, 255, 255, 0.06) 91px 92px, transparent 93px 150px, rgba(255, 255, 255, 0.04) 151px 152px, transparent 153px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 72px 72px;
  pointer-events: none;
}

.company-ridge {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 155px;
  color: var(--snow);
  opacity: 0.055;
}

.company-ridge svg {
  width: 100%;
  height: 100%;
}

.company-ridge path {
  fill: currentColor;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 100px;
  border-top: 1px solid var(--white-border);
  border-bottom: 1px solid var(--white-border);
}

.fact {
  min-height: 300px;
  padding: 45px 26px 34px;
  border-right: 1px solid var(--white-border);
}

.fact:last-child {
  border-right: 0;
}

.fact dt {
  min-height: 52px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.fact dd {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 20px;
}

.fact dd strong {
  font-family: var(--wide);
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.07em;
}

.fact dd span {
  color: #e4996c;
  font-size: 0.85rem;
  font-weight: 700;
}

.fact p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(300px, 1.3fr);
  gap: 38px;
  min-height: 390px;
  padding: 48px;
  background: #17352a;
}

.capability-panel:nth-child(2) {
  background: #132e25;
}

.capability-heading p {
  color: #e4996c;
  font-family: var(--wide);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.capability-heading h3 {
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.capability-heading h3 span {
  display: block;
  color: inherit;
  font: inherit;
  line-height: 0.96;
  margin: 0;
}

.capability-heading > .capability-description {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  line-height: 1.8;
}

.capability-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-list > div:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.capability-list dt {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.capability-list dd {
  display: flex;
  align-items: baseline;
  justify-content: end;
  gap: 4px;
  color: #e4996c;
  font-size: 0.72rem;
  white-space: nowrap;
}

.capability-list dd strong {
  color: var(--snow);
  font-family: var(--wide);
  font-size: 1.55rem;
  font-weight: 400;
}

.machinery-list > div {
  min-height: 72px;
}

.machinery-list dd {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: end;
  align-items: end;
  gap: 1px;
}

.machine-total {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  min-width: 58px;
}

.machinery-list dd small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6rem;
  line-height: 1.5;
  text-align: right;
  white-space: normal;
}

.company-summary {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 88px;
  padding: 52px 56px;
  overflow: hidden;
  color: var(--snow);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 36%, transparent 36%),
    #0b2018;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.company-logo-large {
  display: grid;
  place-items: center;
  height: 210px;
  background: #dfe8e1;
  box-shadow: 18px 18px 0 rgba(255, 255, 255, 0.035);
}

.company-logo-crop {
  width: 150px;
  height: 140px;
}

.company-summary dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.company-summary dl > div:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.company-summary dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
}

.company-summary dd {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.section-deep .facts-source {
  color: rgba(255, 255, 255, 0.48);
}

.company-access {
  display: grid;
  grid-template-columns: minmax(390px, 0.85fr) minmax(0, 1.15fr);
  margin-top: 76px;
  overflow: hidden;
  background: #0b2018;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.access-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 58px 52px;
}

.access-copy h3 {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.access-copy h3 span {
  display: block;
  white-space: nowrap;
}

.access-copy address {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.9;
}

.access-map-link {
  margin-top: 28px;
  color: var(--snow);
}

.access-map {
  min-height: 440px;
  background: rgba(255, 255, 255, 0.05);
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.message {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  padding: 0;
  background: var(--paper);
}

.message-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.message-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.message-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 62%, rgba(10, 20, 16, 0.25));
}

.message-copy {
  align-self: center;
  max-width: 640px;
  padding: 90px clamp(48px, 7vw, 120px);
}

.message-copy h2 {
  font-size: clamp(2.8rem, 4.6vw, 5rem);
}

.message-body {
  margin-top: 54px;
  color: #43504a;
}

.message-body p + p {
  margin-top: 22px;
}

.draft-label {
  margin-top: 46px;
  padding-top: 17px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.recruit {
  display: grid;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  color: var(--snow);
  background: var(--ink);
}

.recruit-media,
.recruit-overlay {
  position: absolute;
  inset: 0;
}

.recruit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.recruit-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 17, 12, 0.94) 0%, rgba(6, 17, 12, 0.75) 45%, rgba(6, 17, 12, 0.22) 76%),
    linear-gradient(180deg, rgba(6, 17, 12, 0.08), rgba(6, 17, 12, 0.52));
}

.recruit-inner {
  position: relative;
  z-index: 2;
  align-self: center;
}

.recruit h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7.2vw, 7.6rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.recruit h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.recruit-inner > p:not(.section-index):not(.recruit-draft) {
  max-width: 610px;
  margin-top: 32px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 2;
}

.button-outline {
  color: var(--snow);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(13, 23, 20, 0.22);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ink);
  background: var(--snow);
}

.recruit-link {
  margin-top: 42px;
}

.recruit-topics {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  max-width: 940px;
  margin-top: 34px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.recruit-topics li {
  display: grid;
  align-content: start;
  min-height: 112px;
  padding: 16px 14px 14px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.recruit-topics li + li {
  padding-left: 14px;
}

.recruit-topics li:last-child {
  border-right: 0;
}

.recruit-topics span,
.recruit-topics small {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--wide);
  font-size: 0.64rem;
}

.recruit-topics b {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 500;
}

.recruit-topics small {
  margin-top: 5px;
  line-height: 1.55;
}

.recruit-draft {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.contact {
  color: var(--snow);
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(70px, 9vw, 140px);
}

.contact h2 {
  font-size: clamp(3rem, 5.1vw, 5.4rem);
}

.contact-intro > p:not(.section-index) {
  max-width: 430px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-direct {
  margin-top: 70px;
  padding: 25px 0;
  border-top: 1px solid var(--white-border);
  border-bottom: 1px solid var(--white-border);
}

.contact-direct p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.contact-direct a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  font-family: var(--wide);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-direct a:hover {
  color: #e4996c;
}

.contact-direct .contact-email {
  min-height: 44px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  line-height: 1.55;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

.contact-direct span,
.contact address {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-style: normal;
}

.contact address {
  margin-top: 24px;
}

.contact-panel {
  min-height: 630px;
  padding: clamp(32px, 5vw, 66px);
  color: var(--ink);
  background: var(--paper);
}

.demo-notice {
  margin-bottom: 38px;
  padding: 12px 14px;
  border: 1px solid rgba(215, 102, 47, 0.38);
  font-size: 0.72rem;
}

.demo-notice strong {
  margin-right: 10px;
  color: var(--signal);
  font-family: var(--wide);
  letter-spacing: 0.13em;
}

#contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
}

#contact-form[hidden] {
  display: none;
}

.field-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field {
  display: grid;
  gap: 9px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.field label span {
  margin-left: 7px;
  color: var(--signal);
  font-size: 0.62rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 3px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13, 23, 20, 0.38);
  outline: 0;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--forest);
  box-shadow: 0 2px 0 var(--forest);
}

.field [aria-invalid="true"] {
  border-bottom-color: #b72d23;
  box-shadow: 0 2px 0 #b72d23;
}

.form-action {
  margin-top: 12px;
}

.form-action .button {
  width: 100%;
  border: 0;
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  color: #8e211a;
  background: #fff1ee;
  border-left: 3px solid #b72d23;
  font-size: 0.76rem;
  line-height: 1.7;
}

.form-error[hidden] {
  display: none;
}

.form-result {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 460px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.form-result[hidden] {
  display: none;
}

.form-result-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--snow);
  background: var(--forest);
  border-radius: 50%;
  font-size: 1.4rem;
}

.form-result h3 {
  margin-top: 30px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
}

.form-result p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
}

.form-result button {
  min-height: 48px;
  margin-top: 30px;
  padding: 0 18px;
  color: var(--forest);
  background: transparent;
  border: 1px solid var(--forest);
}

.form-confirm {
  align-content: start;
}

.form-confirm .form-step {
  margin: 0;
  color: var(--forest);
  font-family: var(--wide);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.form-confirm h3 {
  margin-top: 12px;
}

.form-confirm-summary {
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid rgba(13, 23, 20, 0.2);
}

.form-confirm-summary > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 23, 20, 0.15);
}

.form-confirm-summary dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.form-confirm-summary dd {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.form-confirm-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 30px;
}

.form-confirm-actions button {
  flex: 1;
  margin-top: 0;
}

.form-confirm-actions .button {
  color: var(--snow);
  background: var(--forest);
}

.form-confirm-actions button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-confirm .form-error {
  width: 100%;
}

.site-footer {
  padding: 70px max(40px, calc((100vw - var(--shell)) / 2)) 24px;
  color: var(--snow);
  background: #07100d;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

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

.footer-mark {
  width: 58px;
  height: 54px;
}

.footer-brand span {
  display: grid;
  line-height: 1.35;
}

.footer-brand b {
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.footer-brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--wide);
  letter-spacing: 0.16em;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 12px 32px;
  font-size: 0.72rem;
}

.footer-main nav a {
  min-height: 34px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.39);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--wide);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.prototype-badge {
  color: #e4996c;
}

body.enhanced [data-reveal] {
  opacity: 0;
  clip-path: inset(0 0 12% 0);
  transform: translateY(64px);
  transition: opacity 0.9s ease,
    clip-path 1s cubic-bezier(0.22, 0.72, 0.25, 1),
    transform 1s cubic-bezier(0.22, 0.72, 0.25, 1);
}

body.enhanced [data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

body.enhanced .project-grid .project.is-visible {
  transition: opacity 0.85s ease,
    clip-path 0.85s cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 0.48s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.48s ease;
}

@media (hover: hover) and (pointer: fine) {
  body.enhanced .project-grid .project.is-visible:hover {
    box-shadow: 0 24px 54px rgba(8, 24, 18, 0.2);
    transform: translateY(-8px);
  }

  .project:hover figcaption {
    transform: translateY(-5px);
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-progress {
  to { transform: scaleX(1); }
}

@keyframes intro-wordmark {
  to {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 18px));
  }
}

@keyframes intro-panel-left {
  to { transform: translateX(-101%); }
}

@keyframes intro-panel-right {
  to { transform: translateX(101%); }
}

@keyframes intro-hide {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes hero-photo-reveal {
  from { clip-path: inset(0 0 0 100%); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes hero-sweep {
  0% {
    opacity: 0;
    transform: translate3d(-4px, 0, 0);
  }
  12% { opacity: 1; }
  84% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(calc(100vw + 4px), 0, 0);
  }
}

@keyframes hero-title-rise {
  from { transform: translateY(112%); }
  to { transform: translateY(0); }
}

@keyframes atmosphere-drift-a {
  from {
    opacity: 0.38;
    transform: translate3d(-8%, -3%, 0) scale(0.88);
  }
  to {
    opacity: 0.84;
    transform: translate3d(13%, 8%, 0) scale(1.16);
  }
}

@keyframes atmosphere-drift-b {
  from {
    opacity: 0.31;
    transform: translate3d(8%, 6%, 0) scale(0.92);
  }
  to {
    opacity: 0.7;
    transform: translate3d(-12%, -8%, 0) scale(1.2);
  }
}

@keyframes contour-breathe {
  from { opacity: 0.3; }
  to { opacity: 0.55; }
}

@keyframes contour-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes hero-drift {
  from { transform: scale(1.035) translate3d(-0.6%, -0.4%, 0); }
  to { transform: scale(1.13) translate3d(0.8%, 0.6%, 0); }
}

@keyframes scroll-line {
  0% { transform: translateY(-110%); }
  50% { transform: translateY(90%); }
  100% { transform: translateY(220%); }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    width: min(100% - 42px, 1680px);
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 102;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 7px;
    padding: 96px max(28px, 8vw) 60px;
    background: rgba(7, 18, 13, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .global-nav > a {
    width: min(620px, 100%);
    min-height: 61px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--display);
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 500;
  }

  .global-nav > a::after {
    display: none;
  }

  .global-nav .nav-cta {
    width: auto;
    min-height: 52px;
    margin-top: 22px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 700;
  }

  .hero-content {
    left: 6vw;
  }

  .hero-bottom {
    right: 5vw;
    left: 6vw;
  }

  .scroll-cue {
    display: none;
  }

  .service-list li {
    grid-template-columns: 54px minmax(190px, 0.62fr) minmax(280px, 1fr) 210px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--white-border);
  }

  .message {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .section-shell {
    width: min(100% - 48px, var(--shell));
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .heading-note {
    padding: 0;
  }

  .about-grid {
    gap: 48px 20px;
  }

  .about .section-heading,
  .about-story,
  .manifesto,
  .about-region {
    grid-column: 1 / -1;
  }

  .about-story {
    padding: 0;
  }

  .manifesto {
    max-width: 620px;
    margin-top: 22px;
  }

  .about-region {
    max-width: 620px;
  }

  .service-list {
    margin-top: 70px;
  }

  .service-list li {
    grid-template-columns: 48px 1fr 190px;
    gap: 18px;
    min-height: 190px;
    padding: 22px 0;
  }

  .service-list li > p {
    grid-column: 2 / 3;
  }

  .service-visual {
    grid-column: 3;
    grid-row: 1 / span 2;
    height: 148px;
  }

  .project-grid {
    grid-auto-rows: 220px;
  }

  .project,
  .project-kirala,
  .project-toki,
  .project-yusan {
    grid-column: span 6;
    grid-row: span 1;
  }

  .project-kirala {
    grid-row: span 2;
  }

  .company-summary {
    grid-template-columns: 160px 1fr;
    gap: 38px;
    padding: 42px;
  }

  .company-access {
    grid-template-columns: 1fr;
  }

  .access-copy {
    padding: 48px 42px;
  }

  .company-logo-large {
    height: 170px;
  }

  .message {
    grid-template-columns: 1fr;
  }

  .message-image {
    min-height: 520px;
  }

  .message-copy {
    max-width: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    max-width: 660px;
  }

  .footer-main {
    display: grid;
  }
}

@media (max-width: 600px) {
  .intro-wordmark {
    width: calc(100vw - 36px);
  }

  .intro-wordmark span,
  .intro-wordmark small {
    letter-spacing: 0.18em;
  }

  .intro-wordmark strong {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    white-space: nowrap;
  }

  :root {
    --header-height: 70px;
  }

  body {
    font-size: 16px;
    line-height: 1.7;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 32px;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-en {
    font-size: 0.52rem;
  }

  .menu-toggle-label {
    display: none;
  }

  .global-nav {
    padding-inline: 24px;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
    max-height: 920px;
  }

  .hero-slide img,
  .hero-slide:nth-child(2) img,
  .hero-slide:nth-child(3) img {
    object-position: 55% center;
  }

  .hero-slide::after {
    background: linear-gradient(180deg, rgba(6, 16, 12, 0.38) 0%, rgba(6, 16, 12, 0.32) 32%, rgba(6, 16, 12, 0.89) 100%);
  }

  .hero-shade {
    background-size: auto, 52px 52px, 52px 52px;
  }

  .hero-contours {
    right: -55vw;
    bottom: -12vh;
    width: 150vw;
  }

  .hero-coordinate {
    display: none;
  }

  .hero-content {
    top: auto;
    right: 24px;
    bottom: 154px;
    left: 24px;
    width: auto;
    transform: none;
  }

  .hero-eyebrow {
    gap: 10px;
    font-size: 0.56rem;
    letter-spacing: 0.15em;
  }

  .hero-eyebrow span {
    width: 30px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3.05rem, 15.5vw, 4.2rem);
    line-height: 1.18;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .mobile-break {
    display: block;
  }

  .hero-actions {
    align-items: stretch;
    gap: 15px;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1;
    min-height: 54px;
    padding: 0 16px;
    font-size: 0.72rem;
  }

  .hero-actions .button svg {
    width: 36px;
  }

  .hero-actions .text-link {
    display: none;
  }

  .hero-bottom {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: center;
  }

  .hero-caption {
    display: none;
  }

  .slider-controls {
    width: 100%;
    justify-content: space-between;
    gap: 7px;
  }

  .slider-dots button {
    width: 22px;
  }

  .slide-count {
    min-width: 54px;
  }

  .section {
    padding: 92px 0;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .section-heading h2,
  .message h2,
  .contact h2 {
    margin-top: 18px;
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: 1.25;
  }

  .section-index {
    font-size: 0.61rem;
  }

  .about::before {
    inset: -8px;
    opacity: 0.39;
    background-position: 57% center;
    filter: grayscale(0.36) saturate(0.7) contrast(1.1) blur(0.7px);
  }

  .about::after {
    background: linear-gradient(180deg, rgba(242, 238, 229, 0.78) 0%, rgba(242, 238, 229, 0.54) 48%, rgba(242, 238, 229, 0.72) 100%);
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .about .section-heading,
  .about-story,
  .manifesto,
  .about-region {
    grid-column: 1;
  }

  .about-lead {
    font-size: 1.25rem;
  }

  .manifesto {
    margin-top: 18px;
    padding: 30px 0 6px 24px;
  }

  .manifesto p {
    font-size: 1.65rem;
  }

  .about-region {
    padding: 14px 0 14px 18px;
    font-size: 0.55rem;
    line-height: 1.8;
  }

  .about-region span {
    margin: 0 5px;
  }

  .business-backdrop {
    width: 100%;
    height: 36%;
  }

  .service-list li,
  .service-list li:hover {
    grid-template-columns: 35px 1fr;
    gap: 12px;
    min-height: 0;
    padding: 27px 0;
  }

  .service-list li > p {
    grid-column: 2;
    font-size: 0.82rem;
  }

  .service-visual {
    grid-column: 2;
    grid-row: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 8px;
  }

  .service-visual-pending {
    min-height: 190px;
  }

  .service-name h3 {
    font-size: 1.7rem;
  }

  .project-grid {
    display: block;
    margin-top: 58px;
  }

  .project {
    min-height: 360px;
    margin-bottom: 14px;
  }

  .project-kirala {
    min-height: 470px;
  }

  .project-toki,
  .project-yusan {
    min-height: 340px;
  }

  .project-archive-item {
    min-height: 270px;
    margin-bottom: 14px;
  }

  .project figcaption {
    padding: 20px 16px;
  }

  .project figcaption h3 {
    font-size: 1.18rem;
  }

  .company {
    padding-top: 130px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .fact,
  .fact:nth-child(2),
  .fact:last-child {
    min-height: 220px;
    padding: 32px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--white-border);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .fact dt {
    min-height: 0;
  }

  .fact dd strong {
    font-size: 4.7rem;
  }

  .capability-grid {
    margin-top: 48px;
  }

  .capability-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 34px 22px;
  }

  .capability-heading > .capability-description {
    margin-top: 14px;
  }

  .capability-list dt {
    font-size: 0.74rem;
  }

  .machinery-list dd small {
    max-width: 190px;
  }

  .company-summary {
    display: block;
    margin-top: 58px;
    padding: 26px 20px;
  }

  .company-logo-large {
    height: 150px;
    margin-bottom: 30px;
  }

  .company-logo-crop {
    width: 112px;
    height: 104px;
  }

  .company-summary dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0;
  }

  .company-access {
    margin-top: 58px;
  }

  .access-copy {
    padding: 38px 24px 42px;
  }

  .access-copy h3 {
    font-size: 2.45rem;
  }

  .access-copy address {
    margin-top: 22px;
  }

  .access-map,
  .access-map iframe {
    min-height: 360px;
  }

  .message-image {
    min-height: 380px;
  }

  .message-copy {
    padding: 72px 20px 84px;
  }

  .message-body {
    margin-top: 36px;
  }

  .recruit {
    min-height: 720px;
  }

  .recruit-media img {
    object-position: 62% center;
  }

  .recruit-overlay {
    background: linear-gradient(180deg, rgba(6, 17, 12, 0.28) 0%, rgba(6, 17, 12, 0.92) 82%);
  }

  .recruit-inner {
    align-self: end;
    padding-bottom: 72px;
  }

  .recruit h2 {
    font-size: clamp(3rem, 14.5vw, 4.4rem);
  }

  .recruit-link {
    width: 100%;
  }

  .recruit-topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-topics li,
  .recruit-topics li + li {
    min-height: 98px;
    padding: 14px 12px 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .recruit-topics li:nth-child(even) {
    padding-left: 12px;
  }

  .contact-grid {
    gap: 58px;
  }

  .contact-direct {
    margin-top: 48px;
  }

  .contact-direct a {
    font-size: 2.5rem;
  }

  .contact-panel {
    min-height: 0;
    padding: 28px 20px;
  }

  #contact-form {
    grid-template-columns: 1fr;
  }

  .form-result h3 {
    font-size: 1.65rem;
    line-height: 1.45;
  }

  .form-confirm-summary > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-confirm-actions {
    flex-direction: column-reverse;
  }

  .field-full {
    grid-column: auto;
  }

  .site-footer {
    padding: 56px 20px 22px;
  }

  .footer-main nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.enhanced [data-reveal] {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .js .site-intro,
  .hero-atmosphere,
  .hero-sweep {
    display: none;
  }

  .hero-slide.is-active,
  .hero-slide.is-active img,
  body.enhanced .hero-contours {
    animation: none !important;
  }

  .hero-slide.is-active img {
    transform: scale(1.04);
  }

  body.enhanced .hero-title-line > span,
  body.enhanced .hero-title-line > em {
    animation: none !important;
    transform: none;
  }

  body.enhanced .project::before {
    transform: scaleX(0);
  }

  body.enhanced .hero-eyebrow,
  body.enhanced .hero-lead,
  body.enhanced .hero-actions {
    opacity: 1;
    transform: none;
  }

  body.enhanced .hero-contours path {
    stroke-dashoffset: 0;
  }

  .hero-contours {
    transform: none;
  }
}
