:root {
  --base: #0b0d10;
  --base-soft: #111317;
  --base-muted: #171a20;
  --text: #f4f4ef;
  --text-muted: #9a9a93;
  --accent: #161616;
  --teal: #f4f4ef;
  --line: #282d34;
  --navy: #0b0d10;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --edge: clamp(28px, 4vw, 56px);
  --content: min(1120px, calc(100% - var(--edge) * 2));
  --safe-top: env(safe-area-inset-top, 0px);
  --dot-color-rgb: 203, 170, 78;
  color-scheme: dark;
}

@font-face {
  font-family: "Proxima Nova Local";
  src: url("assets/fonts/Proxima Nova Bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova Local Italic";
  src: url("assets/fonts/Proxima Nova Bold It.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova Local Regular Italic";
  src:
    local("Proxima Nova Regular Italic"),
    local("ProximaNova-RegularIt"),
    local("Proxima Nova Reg It"),
    url("assets/fonts/Proxima Nova Reg It.woff2") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk Local Italic";
  src: url("assets/fonts/AktivGrotesk-Italic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Didot Local Italic";
  src:
    local("Didot Italic"),
    local("Didot-Italic"),
    local("Didot LT Std Italic"),
    url("assets/fonts/Didot Italic.woff2") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f6f6f6;
  overscroll-behavior-y: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  min-height: 100%;
  margin: 0;
  overscroll-behavior-y: none;
  color: var(--text);
  background:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px),
    var(--base);
  background-position:
    0 0,
    center;
  background-size:
    128px 128px,
    auto;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
  background: #05070a;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #05070a;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.58s ease,
    visibility 0.58s ease;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 24% 46%, rgba(216, 251, 255, 0.2), transparent 28%),
    radial-gradient(circle at 72% 38%, rgba(126, 177, 255, 0.16), transparent 30%),
    radial-gradient(circle at 52% 74%, rgba(242, 183, 232, 0.12), transparent 32%);
  filter: blur(28px);
  opacity: 0.7;
  animation: loader-drift 4s ease-in-out infinite alternate;
}

.site-loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(220px, calc(100vw - 56px));
  gap: 18px;
  justify-items: stretch;
}

.site-loader-brand {
  font-family: "Proxima Nova Local", "Inter", sans-serif;
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-align: center;
}

.site-loader-line {
  position: relative;
  display: block;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.site-loader-line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  animation: loader-line 1.15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

body.is-ready .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loader-line {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(260%);
  }
}

@keyframes loader-drift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader::before,
  .site-loader-line::before {
    animation: none;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: auto;
  bottom: clamp(24px, 5dvh, 56px);
  left: var(--edge);
  right: var(--edge);
  width: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  backdrop-filter: none;
  transform: none;
  will-change: transform, opacity;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-brand {
  position: absolute;
  top: clamp(20px, 4dvh, 40px);
  left: var(--edge);
  z-index: 6;
  color: #ffffff;
}

.brand-logo {
  display: block;
  width: clamp(112px, 11vw, 168px);
  height: auto;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(244, 244, 239, 0.42);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(244, 244, 239, 0.92), rgba(22, 22, 22, 0.86)),
    var(--accent);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.42);
}

.global-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-header .global-nav {
  display: grid;
  grid-column: 1 / 3;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.site-header .global-nav a {
  padding-top: 18px;
}

.site-header .global-nav a:nth-child(-n + 3) {
  grid-row: 1;
  grid-column: 1;
}

.site-header .global-nav a:nth-child(1) {
  justify-self: center;
  transform: translateX(calc(-100% - 34px));
}

.site-header .global-nav a:nth-child(2) {
  justify-self: center;
}

.site-header .global-nav a:nth-child(3) {
  justify-self: center;
  transform: translateX(calc(100% + 34px));
}

.site-header .global-nav a:nth-child(4) {
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
}

.global-nav a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}

.global-nav a:hover {
  color: var(--accent);
}

.page-timeline {
  position: fixed;
  top: 50%;
  right: clamp(10px, 1.5vw, 22px);
  z-index: 140;
  display: grid;
  gap: 12px;
  padding: 14px 10px;
  border: 1px solid rgba(14, 17, 22, 0.2);
  border-radius: 2px;
  background: rgba(246, 246, 246, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  will-change: opacity, transform;
}

.timeline-link {
  display: grid;
  grid-template-columns: auto 4px;
  gap: 10px;
  align-items: center;
  justify-items: end;
  min-height: clamp(58px, 11vh, 92px);
  color: rgba(14, 17, 22, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-label {
  opacity: 0.72;
  transition: color 0.25s ease, opacity 0.25s ease;
  writing-mode: vertical-rl;
}

.timeline-track {
  position: relative;
  display: block;
  width: 3px;
  height: clamp(58px, 11vh, 92px);
  overflow: hidden;
  border-radius: 0;
  background: rgba(14, 17, 22, 0.18);
}

.timeline-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #0b0d10;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.18);
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
}

.timeline-link.is-active {
  color: #0b0d10;
}

.timeline-link.is-active .timeline-label {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  height: calc(100dvh + var(--safe-top));
  min-height: calc(100dvh + var(--safe-top));
  margin-top: calc(var(--safe-top) * -1);
  padding-top: var(--safe-top);
  overflow: hidden;
  place-items: center;
  background: #05070a;
  touch-action: pan-y;
}

@supports (height: 100svh) {
  .hero {
    height: calc(100svh + var(--safe-top));
    min-height: calc(100svh + var(--safe-top));
  }
}

@supports (height: 100lvh) {
  .hero {
    height: calc(100lvh + var(--safe-top));
    min-height: calc(100lvh + var(--safe-top));
  }
}

@media (max-width: 769px) {
  .hero {
    height: calc(100svh + var(--safe-top));
    min-height: calc(100svh + var(--safe-top));
  }

  @supports (height: 100dvh) {
    .hero {
      height: calc(100dvh + var(--safe-top));
      min-height: calc(100dvh + var(--safe-top));
    }
  }
}

.hero-shader {
  position: absolute;
  top: calc(var(--safe-top) * -1);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  background: #05070a;
  pointer-events: none;
}

.hero-shader.is-static {
  background:
    radial-gradient(ellipse at 74% 30%, rgba(216, 251, 255, 0.24), transparent 42%),
    radial-gradient(ellipse at 28% 66%, rgba(126, 177, 255, 0.18), transparent 48%),
    radial-gradient(ellipse at 54% 42%, rgba(242, 183, 232, 0.12), transparent 46%),
    linear-gradient(120deg, rgba(169, 241, 255, 0) 24%, rgba(169, 241, 255, 0.16) 48%, rgba(242, 183, 232, 0.08) 58%, rgba(169, 241, 255, 0) 72%),
    #05070a;
  background-size:
    150% 150%,
    160% 160%,
    170% 170%,
    220% 220%,
    auto;
  animation: hero-static-shift 6.5s ease-in-out infinite alternate;
}

.hero-shader::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(5, 7, 10, 0.58) 0%, rgba(5, 7, 10, 0.32) 34%, rgba(5, 7, 10, 0) 68%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.28), rgba(5, 7, 10, 0.08) 42%, rgba(5, 7, 10, 0.36));
  content: "";
  pointer-events: none;
}

.hero-shader canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

@keyframes hero-static-shift {
  from {
    background-position:
      68% 26%,
      22% 68%,
      52% 42%,
      0% 50%,
      center;
    filter: saturate(1.08) contrast(1);
  }

  to {
    background-position:
      82% 36%,
      34% 58%,
      42% 52%,
      100% 48%,
      center;
    filter: saturate(1.3) contrast(1.08);
  }
}

.hero-ambient-curtain {
  position: absolute;
  top: calc(-28% - var(--safe-top));
  right: -28%;
  bottom: -28%;
  left: -28%;
  z-index: 1;
  display: none;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  filter: saturate(1.24) contrast(1.05);
  transform: translate3d(0, 0, 0);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.hero-ambient-curtain::before {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(ellipse at 42% 34%, rgba(244, 244, 239, 0.3), transparent 46%),
    radial-gradient(ellipse at 58% 64%, rgba(244, 244, 239, 0.18), transparent 48%);
  content: "";
  filter: blur(54px);
  opacity: 0.9;
}

.curtain-blur {
  position: absolute;
  width: clamp(360px, 42vw, 760px);
  height: clamp(300px, 38vw, 700px);
  border-radius: 42% 58% 54% 46%;
  filter: blur(58px);
  mix-blend-mode: screen;
  opacity: 0.86;
  transform: translate3d(0, 0, 0) rotate(0deg);
  will-change: transform, opacity, border-radius;
}

.curtain-blur--a {
  top: 2%;
  left: -8%;
  background: radial-gradient(ellipse at 42% 45%, rgba(244, 244, 239, 0.62), rgba(244, 244, 239, 0.12) 44%, transparent 72%);
}

.curtain-blur--b {
  top: -8%;
  left: 18%;
  width: clamp(300px, 34vw, 640px);
  background: radial-gradient(ellipse at 50% 52%, rgba(244, 244, 239, 0.36), rgba(244, 244, 239, 0.14) 46%, transparent 76%);
  opacity: 0.82;
}

.curtain-blur--c {
  top: 34%;
  left: 36%;
  width: clamp(380px, 46vw, 820px);
  background: radial-gradient(ellipse at 50% 44%, rgba(244, 244, 239, 0.22), rgba(244, 244, 239, 0.34) 38%, transparent 72%);
  opacity: 0.88;
}

.curtain-blur--d {
  top: 8%;
  right: -9%;
  width: clamp(320px, 38vw, 700px);
  background: radial-gradient(ellipse at 46% 50%, rgba(244, 244, 239, 0.32), rgba(244, 244, 239, 0.1) 44%, transparent 72%);
  opacity: 0.82;
}

.curtain-blur--e {
  top: 56%;
  right: 8%;
  width: clamp(280px, 32vw, 620px);
  background: radial-gradient(ellipse at 52% 44%, rgba(244, 244, 239, 0.34), rgba(244, 244, 239, 0.12) 48%, transparent 76%);
  opacity: 0.76;
}

.curtain-blur--f {
  top: 48%;
  left: 4%;
  width: clamp(260px, 30vw, 560px);
  background: radial-gradient(ellipse at 48% 50%, rgba(244, 244, 239, 0.16), rgba(244, 244, 239, 0.26) 42%, transparent 74%);
  filter: blur(52px);
  opacity: 0.74;
}

.hero-visual {
  position: relative;
  flex: 0 0 auto;
  z-index: 4;
  width: var(--hero-visual-width, 0px);
  height: var(--hero-visual-height, calc(var(--hero-visual-width, 0px) * 0.5625));
  margin: 0;
  overflow: hidden;
  opacity: 0;
  border-radius: 0;
  box-shadow: 0 18px 48px rgba(14, 17, 22, 0.16);
  transform: translateY(0);
  transform-origin: 50% 50%;
  will-change: width, opacity, transform, border-radius;
}

.hero-visual-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: 50% 50%;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.78)),
    linear-gradient(180deg, rgba(18, 22, 27, 0.24), rgba(18, 22, 27, 0.66));
  pointer-events: none;
}

.hero-subcopy {
  position: absolute;
  top: calc(50% - clamp(14px, 2.2dvh, 26px));
  left: 50%;
  z-index: 6;
  color: #ffffff;
  font-family: "Aktiv Grotesk Local Italic", "Proxima Nova Local Italic", "Proxima Nova Local", "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.6rem, 4vw, 4.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  text-align: center;
  text-shadow: 0 10px 32px rgba(14, 17, 22, 0.32);
  white-space: nowrap;
  will-change: opacity, transform;
}

.hero-section-wash {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 5;
  height: clamp(220px, 34dvh, 420px);
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(246, 246, 246, 0) 0%, rgba(246, 246, 246, 0.16) 26%, rgba(246, 246, 246, 0.68) 62%, #f6f6f6 100%),
    radial-gradient(ellipse at 50% 104%, rgba(246, 246, 246, 0.88) 0%, rgba(246, 246, 246, 0.42) 46%, rgba(246, 246, 246, 0) 78%);
  will-change: opacity;
}

.hero-grid {
  position: absolute;
  top: calc(var(--safe-top) * -1);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0.05;
  background-image:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px);
  background-position:
    center;
  background-size:
    128px 128px;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: var(--content);
  padding-top: 0;
  transform: translateY(var(--hero-content-y, 18dvh));
  will-change: transform;
}

.hero-title {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  column-gap: var(--hero-title-gap, clamp(10px, 2.2vw, 32px));
  margin: 0;
  color: #ffffff;
  font-size: clamp(4.2rem, 11vw, 13.5rem);
  font-weight: 800;
  line-height: 0.9;
  transform-origin: 50% 50%;
  white-space: nowrap;
  will-change: opacity;
}

.hero-title span {
  display: inline-block;
}

.hero-title > span {
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
}

.hero-title > span:first-child {
  justify-self: end;
}

.hero-copy-stack {
  position: relative;
  display: inline-block;
}

.hero-word {
  display: inline-block;
  font-family: "Proxima Nova Local", "Montserrat", "Inter", sans-serif;
  font-style: normal;
  font-weight: 800;
}

.hero-word-next {
  background:
    linear-gradient(105deg, #d8fbff 0%, #7eb1ff 32%, #f2b7e8 62%, #ffffff 84%, #8fdcff 100%);
  background-position: 0% 50%;
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-family: "Proxima Nova Local Regular Italic", "Proxima Nova Local Italic", "Proxima Nova Local", "Montserrat", "Inter", sans-serif;
  font-style: italic;
  font-weight: 400;
  margin-right: -0.2em;
  padding-right: 0.28em;
  text-shadow:
    0 16px 42px rgba(126, 177, 255, 0.22),
    0 4px 18px rgba(216, 251, 255, 0.16);
}

.hero-title > span:last-child {
  justify-self: start;
}

.hero-title > .hero-visual {
  justify-self: center;
}

.hero-lead {
  position: absolute;
  top: calc(100% + 28px);
  left: 0;
  width: min(620px, calc(100vw - var(--edge) * 2));
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.8;
  white-space: normal;
}

.section {
  position: relative;
  border: 0;
  padding: clamp(96px, 13vw, 160px) 0;
}

.section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px);
  background-position:
    center;
  background-repeat: repeat;
  background-size:
    128px 128px;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
}

.section-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.16;
}

.about,
.services,
.news {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.about::before,
.services::before,
.news::before,
.about::after,
.services::after,
.news::after {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.about {
  color: #161616;
  background: #f6f6f6;
  padding-top: clamp(16px, 2.5vw, 36px);
}

.about::before,
.services::before,
.news::before {
  opacity: 1;
  background-image:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px);
  background-position:
    center;
  background-size:
    128px 128px;
}

.about::after {
  position: absolute;
  top: clamp(-220px, -24dvh, -140px);
  right: 0;
  left: 0;
  z-index: 0;
  height: clamp(220px, 24dvh, 360px);
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(246, 246, 246, 0) 0%, rgba(246, 246, 246, 0.72) 54%, #f6f6f6 100%);
}

.about .section-inner {
  width: 100%;
  margin: 0;
}

.about .section-heading h2 {
  white-space: nowrap;
}

.heading-brace-reveal {
  position: relative;
  display: inline-grid;
  width: fit-content;
  min-width: clamp(140px, 18vw, 220px);
  height: clamp(34px, 5vw, 52px);
  margin-top: clamp(18px, 3vw, 30px);
  place-items: center;
  color: #161616;
  font-family: "Aktiv Grotesk Local Italic", "Proxima Nova Local Italic", "Proxima Nova Local", "Montserrat", "Inter", sans-serif;
  line-height: 1;
}

.heading-brace,
.heading-brace-word {
  grid-area: 1 / 1;
  display: inline-block;
  overflow: visible;
  will-change: transform, opacity;
}

.heading-brace {
  padding-inline: 0.08em;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
}

.heading-brace--left {
  transform: translateX(-8px);
}

.heading-brace--right {
  transform: translateX(8px);
}

.heading-brace-word {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.18em;
  opacity: 0;
  transform: scaleX(0.82);
  transform-origin: center;
}

.about .heading-brace-reveal {
  height: clamp(34px, 5vw, 52px);
  margin-top: clamp(18px, 3vw, 30px);
}

.about-heading-row {
  position: relative;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  overflow: visible;
}

.services-heading-row {
  position: relative;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  overflow: visible;
}

.news-heading-row {
  position: relative;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  overflow: visible;
}

.about-more-link {
  position: relative;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: clamp(18px, 3vw, 30px);
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: auto;
  touch-action: manipulation;
  transform: translateX(-8px);
  transition: color 0.25s ease;
  will-change: transform, opacity;
}

.services-more-link {
  position: relative;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: clamp(18px, 3vw, 30px);
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: auto;
  touch-action: manipulation;
  transform: translateX(-8px);
  transition: color 0.25s ease;
  will-change: transform, opacity;
}

.news-more-link {
  position: relative;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: clamp(18px, 3vw, 30px);
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: auto;
  touch-action: manipulation;
  transform: translateX(-8px);
  transition: color 0.25s ease;
  will-change: transform, opacity;
}

.about-more-link:hover,
.services-more-link:hover,
.news-more-link:hover {
  color: #cbaa4e;
}

.about-details {
  position: fixed;
  inset: 0;
  z-index: 180;
  overflow: hidden;
  color: #161616;
  background:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px),
    #f6f6f6;
  background-position: center;
  background-size: 128px 128px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-details-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
  align-content: stretch;
  padding: clamp(28px, 4vw, 56px) var(--edge);
}

.about-details-close {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: var(--edge);
  z-index: 3;
  border: 0;
  padding: 0;
  color: #161616;
  background: transparent;
  font: inherit;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.about-details-label {
  position: relative;
  display: inline-block;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  width: max-content;
  z-index: 1;
  margin: 0;
  color: #161616;
  font-family: "Aktiv Grotesk Local Italic", "Proxima Nova Local Italic", "Proxima Nova Local", "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4.3vw, 5.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  transform-origin: left top;
  white-space: nowrap;
  will-change: transform, opacity;
}

.about-details-menu {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  width: 100%;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  margin-top: clamp(44px, 5vw, 76px);
  margin-bottom: 0;
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-details-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: clamp(56px, 5vw, 72px);
  border-top: 1px solid #161616;
  border-bottom: 1px solid #161616;
  color: inherit;
}

.about-details-menu a::after {
  content: none;
}

.about-details-menu a.is-current {
  color: #161616;
}

.about-details-content {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  align-content: start;
  padding-top: clamp(44px, 5vw, 76px);
  padding-right: clamp(8px, 1.2vw, 18px);
  padding-bottom: clamp(44px, 5vw, 76px);
  color: #161616;
}

.about-details-kicker {
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-details-content h2 {
  display: none;
  max-width: 900px;
  margin: 0 0 clamp(28px, 4vw, 52px);
  font-size: clamp(2.3rem, 5.6vw, 6.4rem);
  font-weight: 800;
  line-height: 1.02;
}

.about-details-grid {
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
  color: #161616;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 700;
  line-height: 1.9;
}

.about-details-grid p {
  margin: 0;
}

.company-table {
  display: grid;
  width: min(860px, 100%);
  margin: 0;
  color: #161616;
}

.company-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  border-top: 1px solid rgba(22, 22, 22, 0.72);
  padding: clamp(18px, 2.4vw, 28px) 0;
}

.company-table div:first-child {
  border-top: 0;
}

.company-table div:last-child {
  border-bottom: 1px solid rgba(22, 22, 22, 0.72);
}

.company-table dt,
.company-table dd {
  margin: 0;
}

.company-table dt {
  color: #6f6f6f;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.company-table dd {
  color: #161616;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 700;
  line-height: 1.7;
}

.company-table a {
  color: #cbaa4e;
  text-decoration: none;
}

.company-table a:hover {
  color: #161616;
}

.company-map {
  display: block;
  width: min(100%, 720px);
  aspect-ratio: 4 / 3;
  border: 0;
  filter: grayscale(0.08) contrast(0.98);
  pointer-events: none;
}

body.about-details-open {
  overflow: hidden;
}

.services-details {
  position: fixed;
  inset: 0;
  z-index: 180;
  overflow: hidden;
  color: #161616;
  background:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px),
    #f6f6f6;
  background-position: center;
  background-size: 128px 128px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.services-details-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
  align-content: stretch;
  padding: clamp(28px, 4vw, 56px) var(--edge);
}

.services-details-close {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: var(--edge);
  z-index: 3;
  border: 0;
  padding: 0;
  color: #161616;
  background: transparent;
  font: inherit;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.services-details-label {
  position: relative;
  display: inline-block;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  width: max-content;
  z-index: 1;
  margin: 0;
  color: #161616;
  font-family: "Aktiv Grotesk Local Italic", "Proxima Nova Local Italic", "Proxima Nova Local", "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4.3vw, 5.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  transform-origin: left top;
  white-space: nowrap;
  will-change: transform, opacity;
}

.services-details-menu {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  width: 100%;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  margin-top: clamp(44px, 5vw, 76px);
  margin-bottom: 0;
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.96rem, 1.25vw, 1.15rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.services-details-menu a {
  display: flex;
  align-items: center;
  min-height: clamp(54px, 4.7vw, 68px);
  border-top: 1px solid #161616;
  color: inherit;
}

.services-details-menu a:last-child {
  border-bottom: 1px solid #161616;
}

.services-details-menu a.is-current {
  color: #161616;
}

.services-details-content {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  align-content: start;
  padding-top: clamp(44px, 5vw, 76px);
  padding-right: clamp(8px, 1.2vw, 18px);
  padding-bottom: clamp(44px, 5vw, 76px);
  color: #161616;
}

.services-detail-panel {
  display: none;
  width: min(880px, 100%);
}

.services-detail-panel.is-current {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

.services-details-kicker {
  margin: 0;
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-detail-panel h3 {
  margin: 0;
  max-width: 940px;
  color: #161616;
  font-size: clamp(2rem, 4.3vw, 5.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.services-detail-panel p {
  margin: 0;
  max-width: 760px;
  color: #333;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.9;
}

.services-detail-panel ul {
  display: grid;
  width: min(760px, 100%);
  gap: 0;
  margin: clamp(8px, 1.2vw, 14px) 0 0;
  padding: 0;
  list-style: none;
  color: #161616;
}

.services-detail-panel li {
  border-top: 1px solid rgba(22, 22, 22, 0.56);
  padding: clamp(14px, 1.6vw, 20px) 0;
  font-size: clamp(0.94rem, 1.16vw, 1.08rem);
  font-weight: 700;
}

.services-detail-panel li:last-child {
  border-bottom: 1px solid rgba(22, 22, 22, 0.56);
}

.news-details {
  position: fixed;
  inset: 0;
  z-index: 180;
  overflow: hidden;
  color: #161616;
  background:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px),
    #f6f6f6;
  background-position: center;
  background-size: 128px 128px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.news-details-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
  align-content: stretch;
  padding: clamp(28px, 4vw, 56px) var(--edge);
}

.news-details-close {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: var(--edge);
  z-index: 3;
  border: 0;
  padding: 0;
  color: #161616;
  background: transparent;
  font: inherit;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.news-details-label {
  position: relative;
  display: inline-block;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  width: max-content;
  z-index: 1;
  margin: 0;
  color: #161616;
  font-family: "Aktiv Grotesk Local Italic", "Proxima Nova Local Italic", "Proxima Nova Local", "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4.3vw, 5.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  transform-origin: left top;
  white-space: nowrap;
  will-change: transform, opacity;
}

.news-details-menu {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  width: 100%;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  margin-top: clamp(44px, 5vw, 76px);
  margin-bottom: 0;
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.news-details-menu a {
  display: none;
  gap: 8px;
  border-top: 1px solid #161616;
  padding: clamp(16px, 2vw, 22px) 0;
  color: inherit;
  backface-visibility: hidden;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.news-details-menu a.is-page-visible {
  display: grid;
}

.news-details-menu a.is-page-last {
  border-bottom: 1px solid #161616;
}

.news-details-menu time {
  color: #666;
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.news-details-meta,
.news-detail-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.news-details-menu .news-details-title {
  font-size: clamp(0.92rem, 1.15vw, 1.04rem);
  font-weight: 700;
  line-height: 1.55;
}

.news-detail-tag {
  display: inline-grid;
  min-height: 24px;
  place-items: center;
  border: 1px solid rgba(22, 22, 22, 0.42);
  padding: 0 9px;
  color: #161616;
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.news-details-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: clamp(18px, 2.4vw, 28px);
  color: #161616;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.news-pager-button {
  border: 0;
  padding: 0;
  color: #161616;
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.news-pager-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.news-details-content {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  align-content: start;
  padding-top: clamp(44px, 5vw, 76px);
  padding-right: clamp(8px, 1.2vw, 18px);
  padding-bottom: clamp(44px, 5vw, 76px);
  color: #161616;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.news-detail-panel {
  display: none;
  width: min(880px, 100%);
}

.news-detail-panel.is-current {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  align-content: start;
}

.news-details-kicker {
  margin: 0;
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-detail-meta time {
  color: #666;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.news-detail-panel h3 {
  margin: 0;
  max-width: 940px;
  color: #161616;
  font-size: clamp(2rem, 4.3vw, 5.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.news-detail-panel p {
  margin: 0;
  max-width: 760px;
  color: #333;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.9;
}

.news-detail-visual {
  display: grid;
  width: min(760px, 100%);
  min-height: clamp(180px, 22vw, 280px);
  margin: clamp(4px, 1vw, 12px) 0;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(203, 170, 78, 0.18), transparent 34%),
    #0b0d10;
}

.news-detail-visual img {
  width: min(320px, 54%);
  height: auto;
  display: block;
}

.about-details-menu,
.about-details-content,
.services-details-menu,
.services-details-content,
.news-details-menu,
.news-details-content,
.contact-forms-menu,
.contact-forms-content {
  scrollbar-width: none;
}

.about-details-menu::-webkit-scrollbar,
.about-details-content::-webkit-scrollbar,
.services-details-menu::-webkit-scrollbar,
.services-details-content::-webkit-scrollbar,
.news-details-menu::-webkit-scrollbar,
.news-details-content::-webkit-scrollbar,
.contact-forms-menu::-webkit-scrollbar,
.contact-forms-content::-webkit-scrollbar {
  display: none;
}

.news-detail-panel > * {
  backface-visibility: hidden;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.about-details-content,
.services-details-content,
.news-details-content,
.contact-forms-content {
  touch-action: pan-y;
}

.about-layout {
  display: grid;
  width: 100%;
  padding-left: var(--edge);
  padding-right: 0;
  grid-template-columns: 6.5fr 5.8fr;
  column-gap: clamp(34px, 5.5vw, 82px);
  row-gap: clamp(0px, 0.4vw, 6px);
  margin: 0;
  align-items: start;
}

.about-text {
  grid-column: 1;
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  row-gap: clamp(28px, 3.2vw, 44px);
}

.about-copy {
  display: grid;
  width: min(66ch, 78%);
  justify-self: center;
  gap: clamp(16px, 1.5vw, 24px);
  margin-top: clamp(26px, 4.6vw, 88px);
  color: #161616;
  font-size: clamp(1.08rem, 1.45vw, 1.56rem);
  font-weight: 700;
  line-height: 1.72;
}

.about-copy p {
  margin: 0;
}

.about-panel {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  position: relative;
  z-index: 1;
  height: clamp(520px, 48vw, 820px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 56px) 0 0 clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow);
}

.about-panel img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: center top;
  filter: blur(14px);
  transform: scale(1.04);
  transform-origin: 50% 50%;
  will-change: transform, filter, opacity;
}

.news {
  position: relative;
  z-index: 1;
  color: #161616;
  background: #f6f6f6;
}

.news-list {
  margin-top: clamp(38px, 6vw, 64px);
}

.news-item {
  position: relative;
  display: grid;
  grid-template-columns: 126px 92px minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  color: #161616;
  overflow: hidden;
  isolation: isolate;
  --news-bg-scale: 0;
}

.news-item::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 22, 22, 0.06), rgba(22, 22, 22, 0.03)),
    rgba(255, 255, 255, 0.72);
  content: "";
  transform: scaleX(var(--news-bg-scale));
  transform-origin: left center;
}

.news-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d7d7d7;
  content: "";
  transform: scaleX(var(--line-scale, 0));
  transform-origin: left;
}

.news-item time {
  color: #6f6f6f;
  font-size: 0.92rem;
  font-weight: 600;
  will-change: transform, opacity;
}

.news-category {
  display: inline-grid;
  min-width: 74px;
  min-height: 28px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 2px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  will-change: transform, opacity;
}

.news-title {
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 600;
  transition: color 0.25s ease;
  will-change: transform, opacity;
}

.news-arrow {
  color: var(--accent);
  font-size: 1.15rem;
  transition: transform 0.25s ease;
  will-change: transform, opacity;
}

.news-item:hover .news-title {
  color: var(--accent);
}

.news-item:hover .news-arrow {
  transform: translateX(5px);
}

.contact {
  position: relative;
  z-index: 40;
  isolation: isolate;
  min-height: 100dvh;
  overflow: visible;
  color: #ffffff;
  background:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px),
    #f6f6f6;
  background-position: center;
  background-size: 128px 128px;
  padding-top: clamp(56px, 8vw, 96px);
}

.contact::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: var(--contact-grid-opacity, 0);
  background-image:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px);
  background-size: 128px 128px;
  background-position: center;
}

.contact-reveal-dot {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: var(--contact-dot-size, 148px);
  height: var(--contact-dot-size, 148px);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 18px 54px rgba(14, 17, 22, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: width, height, opacity, visibility;
  pointer-events: none;
}

.contact .section-inner {
  z-index: 60;
  width: min(920px, calc(100% - var(--edge) * 2));
  margin-inline: auto;
}

.contact-layout {
  display: grid;
  min-height: calc(100dvh - clamp(192px, 26vw, 320px));
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-content: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  text-align: center;
}

.contact-copy {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 4vw, 42px);
}

.contact-copy .section-heading h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.16;
}

.contact-heading-row {
  position: relative;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  overflow: visible;
}

.contact .heading-brace-reveal {
  color: #ffffff;
}

.contact .heading-brace-word {
  color: #ffffff;
}

.contact-heading-cta {
  position: relative;
  z-index: 12;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: clamp(42px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  margin-top: clamp(18px, 3vw, 30px);
  padding: 0 clamp(16px, 2.2vw, 22px) 0 clamp(24px, 3vw, 36px);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  pointer-events: auto;
  touch-action: manipulation;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  font-size: clamp(0.92rem, 1.2vw, 1.06rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  will-change: transform;
}

.contact-heading-cta::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.contact-heading-cta::after {
  position: absolute;
  inset: 6px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.contact-heading-cta__text,
.contact-heading-cta__icon {
  position: relative;
  z-index: 2;
}

.contact-heading-cta__icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  line-height: 1;
  will-change: transform;
}

.contact-heading-cta__shine {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -28%;
  z-index: 1;
  width: 22%;
  background: rgba(255, 255, 255, 0.52);
  filter: blur(10px);
  opacity: 0;
  transform: skewX(-18deg) translateX(-160%);
  pointer-events: none;
  will-change: transform, opacity;
}

.contact-heading-cta:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    0 26px 62px rgba(0, 0, 0, 0.32),
    0 0 36px rgba(255, 255, 255, 0.12);
}

.contact-copy > p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.contact .section-label {
  color: rgba(255, 255, 255, 0.62);
}

.contact-panel {
  display: grid;
  max-width: 720px;
  justify-items: center;
  gap: clamp(26px, 4vw, 44px);
  padding-bottom: clamp(8px, 2vw, 24px);
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.contact-details div {
  padding-top: 18px;
}

.contact-details dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.contact-forms {
  position: fixed;
  inset: 0;
  z-index: 180;
  overflow: hidden;
  color: #161616;
  background:
    radial-gradient(circle, rgb(var(--dot-color-rgb)) 1.2px, transparent 2px),
    #f6f6f6;
  background-position: center;
  background-size: 128px 128px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.contact-forms-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
  align-content: stretch;
  padding: clamp(28px, 4vw, 56px) var(--edge);
}

.contact-forms-close {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: var(--edge);
  z-index: 3;
  border: 0;
  padding: 0;
  color: #161616;
  background: transparent;
  font: inherit;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-forms-label {
  position: relative;
  display: inline-block;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
  width: max-content;
  z-index: 1;
  margin: 0;
  color: #161616;
  font-family: "Aktiv Grotesk Local Italic", "Proxima Nova Local Italic", "Proxima Nova Local", "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4.3vw, 5.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  transform-origin: left top;
  white-space: nowrap;
  will-change: transform, opacity;
}

.contact-forms-menu {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  width: 100%;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  margin-top: clamp(44px, 5vw, 76px);
  margin-bottom: 0;
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.96rem, 1.25vw, 1.15rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-forms-menu a {
  display: flex;
  align-items: center;
  min-height: clamp(54px, 4.7vw, 68px);
  border-top: 1px solid #161616;
  color: inherit;
}

.contact-forms-menu a:last-child {
  border-bottom: 1px solid #161616;
}

.contact-forms-menu a.is-current {
  color: #161616;
}

.contact-forms-content {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  align-content: start;
  padding-top: clamp(44px, 5vw, 76px);
  padding-right: clamp(8px, 1.2vw, 18px);
  padding-bottom: clamp(44px, 5vw, 76px);
  color: #161616;
}

.contact-form-panel {
  display: none;
  width: min(880px, 100%);
}

.contact-form-panel.is-current {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  align-content: start;
}

.contact-forms-kicker {
  margin: 0;
  color: #161616;
  font-family: "Zen Kaku Gothic Antique", "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form-panel h3 {
  margin: 0;
  max-width: 940px;
  color: #161616;
  font-size: clamp(2rem, 4.3vw, 5.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-form-panel p {
  margin: 0;
  max-width: 760px;
  color: #333;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.9;
}

.contact-form {
  display: grid;
  width: min(760px, 100%);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(8px, 1.2vw, 16px);
}

.contact-field {
  display: grid;
  gap: 10px;
  color: #161616;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(22, 22, 22, 0.48);
  border-radius: 0;
  padding: 14px 0;
  color: #161616;
  background: transparent;
  font: inherit;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-weight: 700;
  letter-spacing: 0;
  outline: none;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #161616;
}

.contact-form-submit {
  width: fit-content;
  min-height: 48px;
  border: 0;
  margin-top: clamp(8px, 1.4vw, 18px);
  padding: 0 clamp(24px, 3vw, 36px);
  color: #f6f6f6;
  background: #161616;
  font: inherit;
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
}


.services {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  overflow: visible;
  padding-top: clamp(44px, 5.5vw, 76px);
  padding-bottom: clamp(72px, 8vw, 108px);
  color: #161616;
  background: #f6f6f6;
}

.services .section-inner {
  width: auto;
  margin: 0;
  padding-inline: var(--edge);
}

.services .section-heading {
  position: relative;
  z-index: 3;
}

.service-layout {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: start;
  margin-top: clamp(22px, 3.2vw, 40px);
  padding-top: 0;
}

.service-list {
  position: relative;
  width: 100%;
  max-width: none;
  height: clamp(360px, 42vw, 500px);
  margin-inline: 0;
  overflow: visible;
}

.pin-spacer {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.service-item {
  position: absolute;
  inset: 0;
  display: grid;
  min-height: 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-content: center;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 2px;
  color: #161616;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  transform-origin: center top;
  will-change: transform, opacity, filter;
}

.service-item-label {
  grid-column: 2;
  position: relative;
  z-index: 2;
  display: block;
  font-size: clamp(2.7rem, 8vw, 7.2rem);
  font-weight: 800;
  line-height: 0.9;
}

.service-item-tags {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(-10px, -1vw, -4px);
}

.service-item-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  color: rgba(22, 22, 22, 0.68);
  background: rgba(22, 22, 22, 0.06);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 700;
  line-height: 1;
}

.service-item-index {
  grid-column: 1;
  align-self: start;
  color: var(--accent);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-item-text {
  grid-column: 2;
  max-width: 620px;
  color: #666;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 500;
  line-height: 1.85;
}

.service-item:nth-child(2) {
  background-color: #f7f7f7;
}

.service-item:nth-child(3) {
  background-color: #ffffff;
}

.service-item:nth-child(4) {
  background-color: #eeeeee;
}

.footer {
  position: relative;
  z-index: 90;
  padding: clamp(54px, 8vw, 92px) 0 38px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  width: auto;
  margin-inline: var(--edge);
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: start;
}

.footer-inner::after {
  grid-column: 1 / -1;
  content: "CREATE NEXT";
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(3rem, 12vw, 12rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: 0;
}

.footer-brand {
  color: #fff;
}

.footer-logo {
  width: clamp(116px, 10vw, 156px);
}

.footer p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}

.footer .footer-nav {
  justify-self: end;
  margin-right: clamp(76px, 8vw, 128px);
}

.footer-nav a:hover {
  color: #fff;
}

.footer small {
  grid-column: 1 / -1;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.48);
}

.reveal,
.reveal-line,
.news-item,
.service-item {
  will-change: transform, opacity;
}

@media (max-width: 769px) {
  .global-nav {
    gap: 18px;
  }

  .about .section-inner {
    width: 100%;
    margin: 0;
  }

  .about-layout {
    width: 100%;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
    margin: 0;
    padding-left: var(--edge);
    padding-right: var(--edge);
  }

  .about-text,
  .about-panel {
    grid-column: 1;
  }

  .about .section-heading h2 {
    white-space: normal;
  }

  .about-copy {
    width: 100%;
    justify-self: stretch;
    margin-top: clamp(14px, 4vw, 24px);
    font-size: clamp(1rem, 4vw, 1.12rem);
    font-weight: 600;
  }

  .about-panel {
    grid-row: auto;
    width: calc(100% + var(--edge));
    height: clamp(360px, 70vw, 520px);
    min-height: 360px;
    margin-right: calc(var(--edge) * -1);
    border-radius: clamp(22px, 8vw, 38px) 0 0 clamp(22px, 8vw, 38px);
  }

  .about-heading-row {
    gap: 16px;
  }

  .services-heading-row {
    gap: 16px;
  }

  .news-heading-row {
    gap: 16px;
  }

  .about-more-link,
  .services-more-link,
  .news-more-link {
    font-size: 0.95rem;
  }

  .about-details-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    row-gap: 18px;
    height: 100%;
    padding: 28px var(--edge);
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .about-details-menu a,
  .services-details-menu a,
  .news-details-menu a,
  .contact-forms-menu a {
    position: relative;
    min-height: 58px;
    padding-right: 46px;
  }

  .about-details-menu a::after,
  .services-details-menu a::after,
  .news-details-menu a::after,
  .contact-forms-menu a::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 2px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #161616;
    font-family: "Inter", sans-serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
  }

  .about-details.is-sp-detail-open .about-details-menu a.is-current::after,
  .services-details.is-sp-detail-open .services-details-menu a.is-current::after,
  .news-details.is-sp-detail-open .news-details-menu a.is-current::after,
  .contact-forms.is-sp-detail-open .contact-forms-menu a.is-current::after {
    content: "-";
  }

  .about-details-label {
    grid-column: 1;
    grid-row: auto;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .about-details-content {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    align-content: start;
    padding-top: 0;
    padding-bottom: 44px;
  }

  .about-details-kicker {
    display: none;
  }

  .about-details:not(.is-sp-detail-open) .about-details-content,
  .services-details:not(.is-sp-detail-open) .services-details-content,
  .news-details:not(.is-sp-detail-open) .news-details-content,
  .contact-forms:not(.is-sp-detail-open) .contact-forms-content {
    display: none;
  }

  .about-details.is-sp-detail-open .about-details-menu a:not(.is-current),
  .services-details.is-sp-detail-open .services-details-menu a:not(.is-current),
  .news-details.is-sp-detail-open .news-details-menu a:not(.is-current),
  .contact-forms.is-sp-detail-open .contact-forms-menu a:not(.is-current) {
    display: none !important;
  }

  .about-details-menu {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-height: min(28dvh, 220px);
    overflow-y: auto;
    margin-bottom: 0;
    font-size: 0.95rem;
  }

  .about-details-content h2 {
    font-size: clamp(2rem, 11vw, 4rem);
  }

  .about-details-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    font-size: 0.98rem;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .services-details-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    row-gap: 18px;
    height: 100%;
    padding: 28px var(--edge);
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .services-details-label {
    grid-column: 1;
    grid-row: auto;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .services-details-menu {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-height: min(28dvh, 220px);
    overflow-y: auto;
    margin-bottom: 0;
    font-size: 0.92rem;
  }

  .services-details-content {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    align-content: start;
    padding-top: 0;
    padding-bottom: 44px;
  }

  .services-details-kicker {
    display: none;
  }

  .services-detail-panel h3 {
    font-size: clamp(1.8rem, 9vw, 3.6rem);
  }

  .news-details-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    row-gap: 18px;
    height: 100%;
    padding: 28px var(--edge);
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .news-details-label {
    grid-column: 1;
    grid-row: auto;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .news-details-menu {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-height: calc(100dvh - 180px);
    overflow-y: auto;
    margin-bottom: 0;
  }

  .news-details-menu a.is-page-visible {
    display: grid;
  }

  .news-details-menu a {
    display: grid;
  }

  .news-details-menu a.is-page-last {
    border-bottom: 0;
  }

  .news-details-menu a.is-current {
    display: grid;
  }

  .news-details-menu a:last-of-type {
    border-bottom: 1px solid #161616;
  }

  .news-details-pager {
    display: none;
  }

  .news-details-content {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    align-content: start;
    padding-top: 0;
    padding-bottom: 44px;
  }

  .news-detail-panel .news-details-kicker,
  .news-detail-panel .news-detail-meta,
  .news-detail-panel h3 {
    display: none;
  }

  .news-detail-panel h3 {
    font-size: clamp(1.8rem, 9vw, 3.6rem);
  }

  .contact-forms-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr);
    row-gap: 18px;
    height: 100%;
    padding: 28px var(--edge);
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .contact-forms-label {
    grid-column: 1;
    grid-row: auto;
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .contact-forms-menu {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    max-height: min(28dvh, 220px);
    overflow-y: auto;
    margin-bottom: 0;
    font-size: 0.92rem;
  }

  .contact-forms-content {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    align-content: start;
    padding-top: 0;
    padding-bottom: 44px;
  }

  .contact-forms-kicker {
    display: none;
  }

  .contact-form-panel h3 {
    font-size: clamp(1.8rem, 9vw, 3.6rem);
  }

  .service-list {
    width: 100%;
    max-width: none;
    height: clamp(440px, 64dvh, 620px);
  }

  .service-item {
    min-height: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-heading-row {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .contact-heading-cta {
    margin-top: 10px;
  }
}

@media (max-width: 720px) {
  :root {
    --edge: 20px;
  }

  .site-header {
    left: 20px;
    right: 20px;
    bottom: 24px;
    justify-content: center;
  }

  .global-nav {
    display: none;
  }

  .site-header .global-nav {
    display: none;
  }

  .page-timeline {
    right: 8px;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .timeline-link {
    grid-template-columns: 3px;
    min-height: 48px;
    gap: 0;
  }

  .timeline-label {
    display: none;
  }

  .timeline-track {
    width: 3px;
    height: 48px;
    background: rgba(14, 17, 22, 0.18);
  }

  .hero-title {
    display: grid;
    width: calc(100vw - 40px);
    grid-template-columns: auto auto auto;
    column-gap: var(--hero-title-gap, clamp(1px, 0.6vw, 4px));
    font-size: clamp(2.35rem, 13.9vw, 3.55rem);
    line-height: 0.94;
    justify-self: center;
    justify-content: center;
  }

  .hero-word-next {
    margin-right: -0.08em;
    padding-right: 0.12em;
  }

  .hero-title > span:first-child {
    justify-self: start;
  }

  .hero-title > .hero-visual {
    justify-self: center;
  }

  .hero-title > span:last-child {
    justify-self: start;
  }

  .hero-content {
    --hero-content-y: 14dvh;
  }

  .hero-visual {
    height: var(--hero-visual-height, calc(var(--hero-visual-width, 0px) * 0.5625));
  }

  .news-item {
    grid-template-columns: 1fr 32px;
    gap: 8px 14px;
  }

  .news-item time,
  .news-category,
  .news-title {
    grid-column: 1;
  }

  .news-category {
    justify-self: start;
    width: fit-content;
    min-width: 0;
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.68rem;
    line-height: 1;
  }

  .news-arrow {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: clamp(30px, 8vw, 42px) 26px;
  }

  .service-item-index,
  .service-item-label,
  .service-item-tags,
  .service-item-text {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
    justify-self: start;
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    opacity: 0;
    pointer-events: none;
  }

  .hero-content {
    --hero-content-y: 0dvh;
  }

  .hero-visual {
    --hero-visual-width: clamp(120px, 28vw, 420px);
    --hero-visual-height: calc(var(--hero-visual-width) * 0.5625);
    opacity: 1;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
