/* =========================================================
   Urban Treasure ConnectA — Corporate Site (叩き台)
   Aesthetic: refined editorial × warm luxury × quiet city grid
   Brand tokens: urban-treasure-connect-brand/tokens/brand-tokens.css 準拠
   ========================================================= */

:root {
  /* Brand palette */
  --charcoal: #1F282A;
  --deep-teal: #006A70;
  --bright-teal: #079B98;
  --gold: #CBA34A;
  --paper: #FAF9F5;
  --paper-soft: #FFFDF8;
  --ink: #111416;
  --white: #FFFFFF;

  /* Derived tones */
  --ink-soft: #4D5657;
  --ink-faint: #929895;
  --line: rgba(31, 40, 42, 0.10);
  --line-dark: rgba(248, 246, 240, 0.14);
  --teal-wash: rgba(0, 111, 116, 0.07);
  --gold-wash: rgba(203, 163, 74, 0.14);
  --shadow-soft: 0 18px 64px rgba(20, 28, 30, 0.06);
  --shadow-lift: 0 28px 80px rgba(20, 28, 30, 0.10);
  --liquid-glass-bg:
    linear-gradient(145deg, rgba(255,255,255,.76), rgba(255,255,255,.32) 38%, rgba(255,255,255,.18) 54%, rgba(7,155,152,.08) 72%, rgba(203,163,74,.13)),
    rgba(255,255,255,.26);
  --liquid-glass-bg-hover:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.38) 38%, rgba(255,255,255,.21) 54%, rgba(7,155,152,.10) 72%, rgba(203,163,74,.16)),
    rgba(255,255,255,.32);
  --liquid-glass-border: rgba(255,255,255,.56);
  --liquid-glass-shadow:
    inset 0 1px 1px rgba(255,255,255,.9),
    inset 0 -18px 28px rgba(255,255,255,.20),
    inset 0 0 18px rgba(255,255,255,.14),
    0 18px 44px rgba(20,28,30,.14);
  --liquid-glass-shadow-hover:
    inset 0 1px 1px rgba(255,255,255,.94),
    inset 0 -18px 30px rgba(255,255,255,.24),
    inset 0 0 22px rgba(255,255,255,.18),
    0 24px 58px rgba(20,28,30,.18);
  --liquid-glass-shine: linear-gradient(112deg, transparent 24%, rgba(255,255,255,.56) 40%, transparent 57%);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --gothic: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Zen Kaku Gothic New", sans-serif;
  --numeric: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;

  /* Spacing rhythm */
  --gutter: clamp(20px, 5vw, 96px);
  --section-y: clamp(80px, 11vw, 180px);
  --maxw: 1320px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --breath-cycle: 9.8s;
  --breath-cycle-slow: 13.6s;
  --pulse-cycle: 5.2s; /* サイト共通の鼓動リズム（トク、トク…休） */
  --luxury-light-x: 76%;
  --luxury-light-y: 24%;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--gothic);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.74), rgba(250,249,245,.94)),
    url("assets/luxury-paper-texture.jpg"),
    var(--paper);
  background-size: auto, 980px auto, auto;
  line-height: 1.85;
  font-feature-settings: "palt" 1, "kern" 1;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* グレインのテクスチャ層（チープさ回避・質感の底上げ） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .016;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after {
  content: "";
  position: fixed;
  inset: -12vh -10vw;
  z-index: 7;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(116deg, transparent 10%, rgba(255,255,255,.16) 38%, rgba(7,155,152,.055) 48%, transparent 66%),
    radial-gradient(58% 40% at 52% 34%, rgba(255,255,255,.24), transparent 72%),
    radial-gradient(42% 38% at 72% 28%, rgba(7,155,152,.13), transparent 74%),
    radial-gradient(44% 36% at 24% 72%, rgba(203,163,74,.15), transparent 76%);
  mix-blend-mode: soft-light;
  transform: scale(.965) translate3d(0,0,0);
  filter: blur(2px) saturate(1);
  transition: opacity 1.5s var(--ease);
  animation: page-lung var(--breath-cycle-slow) ease-in-out infinite;
  will-change: transform, opacity;
}
body.is-loaded::after,
body:not(.is-loading)::after {
  opacity: .66;
}

body.is-loading { overflow: hidden; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10001;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--deep-teal);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(7,155,152,.32);
  outline-offset: 2px;
}
main[tabindex="-1"]:focus { outline: none; }

.site-breath {
  position: fixed;
  inset: -18vh -14vw;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 1.4s var(--ease);
  /* 呼吸(子要素)とは別に、モヤ全体が雲のようにゆっくり漂う */
  animation: mist-drift 56s ease-in-out infinite;
  will-change: transform;
}
@keyframes mist-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(2.6%, -1.6%, 0); }
  55% { transform: translate3d(-2.2%, 1.3%, 0); }
  80% { transform: translate3d(1.4%, 1.9%, 0); }
}
body.is-loaded .site-breath,
body:not(.is-loading) .site-breath {
  opacity: .68;
}
.site-breath::before,
.site-breath::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform, opacity;
}
.site-breath::before {
  background:
    radial-gradient(44% 40% at 76% 22%, rgba(7,155,152,.18), transparent 68%),
    radial-gradient(38% 36% at 18% 76%, rgba(203,163,74,.17), transparent 72%),
    radial-gradient(36% 44% at 52% 50%, rgba(255,255,255,.22), transparent 70%);
  filter: blur(10px);
  transform: scale(.985);
  animation: page-breath var(--breath-cycle-slow) ease-in-out infinite;
}
.site-breath::after {
  opacity: .50;
  background:
    linear-gradient(115deg, transparent 12%, rgba(255,255,255,.32) 36%, rgba(7,155,152,.08) 46%, transparent 66%),
    linear-gradient(66deg, transparent 18%, rgba(203,163,74,.10) 42%, transparent 68%),
    radial-gradient(56% 48% at 62% 40%, rgba(203,163,74,.15), transparent 72%);
  transform: translate3d(-1.2%, 0, 0) scale(1);
  animation: page-breath-shimmer var(--breath-cycle) ease-in-out infinite;
}
.home-atmosphere-canvas {
  position: fixed;
  inset: 0;
  z-index: 9;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  filter: saturate(.86) contrast(1.08) brightness(1.04);
  transition: opacity 2.6s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity;
}
body.home-page.home-atmosphere-active .home-atmosphere-canvas {
  opacity: .40;
}
.home-atmosphere-canvas.is-unavailable {
  display: none;
}
@keyframes page-breath {
  0%, 100% { opacity: .38; transform: scale(.935) translate3d(-.8%, .4%, 0); }
  46% { opacity: 1; transform: scale(1.105) translate3d(2.2%, -1.5%, 0); }
  64% { opacity: .68; transform: scale(1.035) translate3d(.7%, -.4%, 0); }
}
@keyframes page-breath-shimmer {
  0%, 100% { opacity: .16; transform: translate3d(-4.8%, .8%, 0) scale(.975); }
  48% { opacity: .80; transform: translate3d(4.4%, -1.4%, 0) scale(1.07); }
  72% { opacity: .42; transform: translate3d(1.6%, -.5%, 0) scale(1.025); }
}
@keyframes page-lung {
  0%, 100% { opacity: .30; transform: scale(.945) translate3d(-.6%, .3%, 0); }
  42% { opacity: .86; transform: scale(1.065) translate3d(1.6%, -1.2%, 0); }
  68% { opacity: .50; transform: scale(1.02) translate3d(.5%, -.3%, 0); }
}
@keyframes page-breath-mobile {
  0%, 100% { opacity: .46; transform: scale(.925) translate3d(-2.6%, 1.2%, 0); }
  46% { opacity: 1; transform: scale(1.14) translate3d(4.2%, -2.6%, 0); }
  70% { opacity: .72; transform: scale(1.045) translate3d(1.4%, -.7%, 0); }
}
@keyframes page-breath-shimmer-mobile {
  0%, 100% { opacity: .22; transform: translate3d(-10%, 1.8%, 0) scale(.965); }
  48% { opacity: .86; transform: translate3d(9%, -2.4%, 0) scale(1.085); }
  72% { opacity: .50; transform: translate3d(3.4%, -1%, 0) scale(1.03); }
}
@keyframes page-lung-mobile {
  0%, 100% { opacity: .34; transform: scale(.925) translate3d(-1.8%, .8%, 0); }
  42% { opacity: .92; transform: scale(1.09) translate3d(3%, -2%, 0); }
  70% { opacity: .56; transform: scale(1.028) translate3d(1%, -.5%, 0); }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  color: var(--ink);
  background:
    radial-gradient(70% 62% at 50% 42%, rgba(255,255,255,.82), rgba(250,249,245,.92) 62%, rgba(250,249,245,.98)),
    url("assets/luxury-paper-texture.jpg"),
    var(--paper);
  background-size: auto, 980px auto, auto;
  transition: opacity .56s var(--ease), visibility .56s var(--ease), filter .56s var(--ease);
}
.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31,40,42,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31,40,42,.028) 1px, transparent 1px);
  background-size: clamp(54px, 7vw, 96px) clamp(54px, 7vw, 96px);
  -webkit-mask-image: radial-gradient(80% 68% at 50% 45%, #000 10%, transparent 78%);
          mask-image: radial-gradient(80% 68% at 50% 45%, #000 10%, transparent 78%);
  opacity: .62;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  pointer-events: none;
}
.loader__mark {
  position: relative;
  z-index: 1;
  width: clamp(38px, 4.8vw, 48px);
  aspect-ratio: 294 / 364;
  opacity: .96;
  filter: drop-shadow(0 22px 44px rgba(20,28,30,.10));
}
.loader__mark img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loader__star {
  position: absolute;
  z-index: 2;
  left: 49.5%;
  top: 49.4%;
  width: 29%;
  height: 36%;
  background:
    linear-gradient(135deg, #F7C95F 0%, #CBA34A 52%, #FFE39A 100%);
  clip-path: polygon(50% 0%, 62% 37%, 100% 50%, 62% 63%, 50% 100%, 38% 63%, 0% 50%, 38% 37%);
  filter:
    drop-shadow(0 0 12px rgba(203,163,74,.34))
    drop-shadow(0 7px 15px rgba(119,83,18,.16));
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg) scale(.82);
  transform-origin: center;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.loader.is-complete .loader__star {
  opacity: 1;
  animation: loader-star-spin .72s var(--ease) both;
}
@keyframes loader-star-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(.82); }
  36% { transform: translate(-50%, -50%) rotate(132deg) scale(1.12); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(.9); }
}
.loader__progress {
  position: relative;
  z-index: 1;
  width: min(176px, calc(100vw - 96px));
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31,40,42,.10);
}
.loader__bar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0,106,112,.74), rgba(203,163,74,.86), rgba(7,155,152,.74));
  box-shadow: 0 0 18px rgba(203,163,74,.22);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s var(--ease);
}
.loader__percent {
  position: relative;
  z-index: 1;
  min-width: 5ch;
  font-family: var(--gothic);
  font-size: .68rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1, "kern" 1;
  color: rgba(31,40,42,.48);
  text-align: center;
}

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

/* テキスト選択色 — 明るい紙面には金、暗い面には深緑の澄んだ光 */
::selection {
  background: rgba(203, 163, 74, 0.30);
  color: var(--ink);
}
.journey ::selection,
.contact ::selection,
.footer ::selection {
  background: rgba(7, 155, 152, 0.38);
  color: var(--paper);
}

/* スクロールバー — 触れたときだけ気づく濃度に */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 106, 112, 0.42) transparent;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section-y); position: relative; scroll-margin-top: 86px; }

/* Section eyebrow: 01 — Label */
.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin: 0 0 28px;
}
.eyebrow .num {
  font-family: var(--numeric);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1, "kern" 1;
  position: relative;
  padding-right: 14px;
}
.eyebrow .num::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 1px; height: 14px;
  background: currentColor;
  opacity: 0.4;
  transform: translateY(-50%);
  transition: opacity .5s var(--ease);
}
/* 番号に触れると、金がわずかに明るく差す */
@media (hover: hover) {
  .eyebrow .num { transition: color .5s var(--ease); }
  .eyebrow:hover .num { color: #E9BE62; }
  .eyebrow:hover .num::after { opacity: 0.7; }
}

.section-title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.34;
  letter-spacing: 0;
  margin: 0 0 0.7em;
  color: var(--ink);
  text-wrap: balance;
}

.lead {
  font-size: 1.04rem;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 2.05;
}

/* ===================================================
   Navigation
   =================================================== */
.nav {
  --scroll-progress: 0;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), padding 0.45s var(--ease);
}
.nav.scrolled {
  background: rgba(255, 253, 248, 0.995);
  backdrop-filter: saturate(120%) blur(12px);
  -webkit-backdrop-filter: saturate(120%) blur(12px);
  box-shadow:
    0 1px 0 rgba(31,40,42,.055),
    0 14px 34px rgba(31,40,42,.035);
  padding-block: 12px;
}
.nav__logo { height: 32px; width: auto; transition: height 0.45s var(--ease), opacity .3s var(--ease); }
.nav.scrolled .nav__logo { height: 28px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  font-size: 0.86rem;
  letter-spacing: 0;
}
.nav__menu a {
  color: var(--ink-soft);
  position: relative;
  isolation: isolate;
  padding-block: 6px;
  transition: color 0.38s var(--ease), opacity 0.38s var(--ease), text-shadow 0.38s var(--ease);
}
.nav__menu a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -12px;
  right: -12px;
  top: 50%;
  height: 2.15em;
  border-radius: 999px;
  background:
    radial-gradient(80% 120% at 50% 50%, rgba(255,255,255,.56), rgba(255,255,255,.16) 46%, rgba(7,155,152,.08) 74%, transparent),
    linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,255,255,.08));
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.48),
    0 0 20px rgba(7,155,152,.10),
    0 0 28px rgba(203,163,74,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(.86);
  transition: opacity .42s var(--ease), transform .42s var(--ease);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.nav__menu a::after {
  content: none;
}
.nav__menu a:hover {
  color: var(--ink);
}
.nav__menu a.is-active {
  color: var(--deep-teal);
  text-shadow:
    0 0 18px rgba(7,155,152,.22),
    0 0 28px rgba(203,163,74,.10);
}
.nav__menu a.is-active::before {
  opacity: .78;
  transform: translateY(-50%) scale(1);
}
.nav__story {
  color: rgba(17,20,22,.78);
  font-weight: 600;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: clamp(2px, .5vw, 8px);
  padding-left: clamp(10px, 1.2vw, 18px);
  border-left: 1px solid rgba(31,40,42,.12);
  font-family: var(--serif);
  font-size: .82rem;
  line-height: 1;
  color: rgba(31,40,42,.66);
}
.lang-switch span,
.lang-switch a {
  padding-block: 6px;
}
.lang-switch span[aria-current="page"] {
  color: var(--deep-teal);
}
.lang-switch a {
  color: rgba(31,40,42,.66);
  transition: color .3s var(--ease), text-shadow .3s var(--ease);
}
.lang-switch a:hover,
.lang-switch a:focus-visible {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(7,155,152,.18);
}
.lang-switch--top {
  display: none;
}
.nav__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(31,40,42,.08), transparent);
  transition: opacity .42s var(--ease);
}
.nav.scrolled .nav__progress {
  opacity: 1;
}
.nav__progress span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  background:
    linear-gradient(90deg, rgba(0,106,112,.86), rgba(7,155,152,.9) 45%, rgba(203,163,74,.92));
  box-shadow:
    0 0 14px rgba(7,155,152,.22),
    0 0 22px rgba(203,163,74,.16);
  transition: transform .12s linear;
}
.nav__progress span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 48px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(255,255,255,.78), rgba(203,163,74,.42) 46%, rgba(7,155,152,.2) 70%, transparent);
  filter: blur(2px);
  opacity: .74;
  transform: translate(50%, -50%);
}

.nav__toggle { display: none; }

/* ===================================================
   Hero
   =================================================== */
.hero {
  --hero-pointer-x: var(--luxury-light-x);
  --hero-pointer-y: var(--luxury-light-y);
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(80% 65% at 86% 30%, rgba(7,155,152,.10), transparent 64%),
    radial-gradient(55% 42% at 14% 78%, rgba(203,163,74,.07), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(250,249,245,.96) 100%),
    url("assets/luxury-paper-texture.jpg"),
    var(--paper);
  background-size: auto, auto, auto, 1040px auto, auto;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -22% -28%;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 18%, rgba(255,255,255,.42) 38%, rgba(7,155,152,.065) 47%, transparent 66%),
    radial-gradient(38% 32% at 68% 38%, rgba(203,163,74,.11), transparent 72%);
  mix-blend-mode: soft-light;
  opacity: .28;
  transform: translate3d(-8%, 2%, 0) scale(.98);
  animation: hero-light-current 10.8s ease-in-out infinite;
  will-change: transform, opacity;
}
/* 都市グリッド背景 */
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(31,40,42,.038) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31,40,42,.032) 1px, transparent 1px);
  background-size: clamp(48px, 6vw, 88px) clamp(48px, 6vw, 88px);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 30%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 100% at 70% 30%, #000 35%, transparent 78%);
  transform: translate3d(calc(var(--hero-drift-x, 0) * -.12), calc(var(--hero-drift-y, 0) * -.10), 0);
  transition: transform 1.2s var(--ease);
}
.hero__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(7,155,152,.105), rgba(203,163,74,.045) 18%, transparent 38%),
    radial-gradient(circle at calc(var(--hero-pointer-x) + 12%) calc(var(--hero-pointer-y) + 10%), rgba(255,255,255,.36), transparent 30%);
  opacity: .72;
  animation: hero-grid-breath var(--breath-cycle-slow) ease-in-out infinite;
}
.hero__glow {
  position: absolute; z-index: 0;
  width: 52vw; height: 100%;
  right: 0; top: 0;
  background:
    radial-gradient(40% 42% at var(--hero-pointer-x) var(--hero-pointer-y), rgba(255,255,255,.34), transparent 68%),
    linear-gradient(110deg, transparent 0%, rgba(255,255,255,.58) 38%, rgba(7,155,152,.07) 100%);
  filter: blur(30px) saturate(1.06);
  pointer-events: none;
  transform: translate3d(calc(var(--hero-drift-x, 0) * -.18), calc(var(--hero-drift-y, 0) * -.14), 0);
  transition: transform 1.2s var(--ease);
  animation: hero-glow-breath var(--breath-cycle-slow) ease-in-out infinite;
}
.hero__signals {
  position: absolute;
  z-index: 1;
  right: clamp(26px, 9vw, 152px);
  top: clamp(126px, 22vh, 210px);
  width: min(38vw, 520px);
  aspect-ratio: 1.18;
  pointer-events: none;
  opacity: .78;
  transform: translate3d(calc(var(--hero-drift-x, 0) * -.34), calc(var(--hero-drift-y, 0) * -.28), 0);
  transition: transform 1.1s var(--ease);
}
.signal-node,
.signal-line {
  position: absolute;
  display: block;
}
.signal-node {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.96), rgba(203,163,74,.74) 36%, rgba(0,106,112,.7) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.62),
    0 0 22px rgba(7,155,152,.18),
    0 0 34px rgba(203,163,74,.12);
  animation: signal-pulse 5.8s ease-in-out infinite;
}
.signal-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,106,112,.32), rgba(203,163,74,.26), transparent);
  transform-origin: left center;
  animation: signal-flow 6.4s ease-in-out infinite;
}
/* 線を伝う光 — 点から点へ、縁が結ばれていくリレー */
.signal-line::after {
  content: "";
  position: absolute;
  inset: -1px 0;
  width: 34%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(7,155,152,.5) 28%, rgba(203,163,74,.92) 52%, rgba(0,106,112,.55) 72%, transparent);
  box-shadow:
    0 0 8px rgba(203,163,74,.38),
    0 0 14px rgba(7,155,152,.22);
  opacity: 0;
  transform: translateX(-105%) scaleX(.5);
  will-change: transform, opacity;
  animation: signal-light-run 8.4s cubic-bezier(.3, 0, .2, 1) infinite;
}
.signal-line.hl1::after { animation-delay: .4s; }
.signal-line.hl2::after { animation-delay: 3.2s; }
.signal-line.hl3::after { animation-delay: 6s; }
@keyframes signal-light-run {
  0% { opacity: 0; transform: translateX(-105%) scaleX(.5); }
  7% { opacity: .9; }
  22% { opacity: .8; transform: translateX(158%) scaleX(.85); }
  27%, 100% { opacity: 0; transform: translateX(205%) scaleX(.5); }
}
.signal-node.hn1 { left: 18%; top: 22%; animation-delay: .1s; }
.signal-node.hn2 { left: 68%; top: 14%; animation-delay: .8s; }
.signal-node.hn3 { left: 76%; top: 66%; animation-delay: 1.4s; }
.signal-node.hn4 { left: 34%; top: 78%; animation-delay: 2s; }
.signal-line.hl1 { left: 20%; top: 24%; width: 52%; rotate: -9deg; animation-delay: .2s; }
.signal-line.hl2 { left: 70%; top: 18%; width: 48%; rotate: 101deg; animation-delay: 1.1s; }
.signal-line.hl3 { left: 36%; top: 78%; width: 48%; rotate: -16deg; animation-delay: 1.8s; }
@keyframes signal-pulse {
  0%, 100% { opacity: .3; transform: scale(.72); }
  44% { opacity: .92; transform: scale(1); }
}
@keyframes signal-flow {
  0%, 100% { opacity: .16; transform: scaleX(.42); }
  48% { opacity: .82; transform: scaleX(1); }
}
/* シンボルマーク（素材活用：ヒーローのキービジュアル） */
.hero__symbol {
  position: absolute; z-index: 1;
  right: clamp(-56px, -2vw, 18px); top: 15%;
  width: min(520px, 52vw); height: auto;
  opacity: .062; pointer-events: none;
  transform: none;
  transition: none;
  animation: none;
}
@keyframes hero-grid-breath {
  0%, 100% { opacity: .34; }
  48% { opacity: .92; }
  66% { opacity: .58; }
}
@keyframes hero-glow-breath {
  0%, 100% { opacity: .50; translate: -.8% .4%; scale: .985; }
  50% { opacity: 1; translate: 1.2% -.8%; scale: 1.035; }
  68% { opacity: .76; translate: .4% -.2%; scale: 1.01; }
}
@keyframes hero-light-current {
  0%, 100% { opacity: .16; transform: translate3d(-10%, 2.2%, 0) scale(.97); }
  40% { opacity: .54; transform: translate3d(6%, -1.8%, 0) scale(1.035); }
  68% { opacity: .30; transform: translate3d(2%, -.6%, 0) scale(1.01); }
}
@keyframes hero-grid-breath-mobile {
  0%, 100% { opacity: .46; transform: translate3d(-2.8%, 1.2%, 0) scale(.975); }
  50% { opacity: 1; transform: translate3d(3%, -1.8%, 0) scale(1.05); }
  72% { opacity: .70; transform: translate3d(1%, -.5%, 0) scale(1.018); }
}
@keyframes hero-glow-breath-mobile {
  0%, 100% { opacity: .56; translate: -3.4% 1.2%; scale: .965; }
  48% { opacity: 1; translate: 4% -2.2%; scale: 1.075; }
  72% { opacity: .78; translate: 1.3% -.6%; scale: 1.025; }
}
@keyframes symbol-float {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
/* 濃色セクションのシンボル・ウォーターマーク（素材活用） */
.brand-watermark { position: absolute; z-index: 0; pointer-events: none; height: auto; }
.brand-watermark--int { width: min(440px, 58vw); right: -7%; bottom: -14%; opacity: .07; }
.brand-watermark--contact { width: min(420px, 56vw); left: -8%; top: -12%; opacity: .06; }
/* 宝＝ゴールドの星 */
.star {
  position: absolute; z-index: 1;
  background: #D8B45A;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0;
  filter: drop-shadow(0 4px 14px rgba(203,163,74,.16));
  animation: star-in .9s var(--ease) forwards, twinkle 6.8s ease-in-out infinite;
}
.star.s1 { width: 18px; height: 18px; right: 18%; top: 24%; animation-delay: .8s, 1.8s; }
.star.s2 { width: 10px; height: 10px; right: 40%; top: 16%; animation-delay: 1.1s, 2.4s; }
.star.s3 { width: 8px; height: 8px; right: 12%; top: 52%; animation-delay: 1.4s, 3.1s; }
.star.s4 { width: 12px; height: 12px; right: 9%; bottom: 12%; animation-delay: 1.0s, 2.0s; }

@keyframes star-in { to { opacity: .72; } }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .95; }
  50% { transform: scale(.72) rotate(8deg); opacity: .55; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  justify-items: start;
}

.hero__label {
  order: 3;
  display: grid;
  gap: 10px;
  color: rgba(0,106,112,.86);
  margin: clamp(46px, 4.7vw, 76px) 0 0;
  opacity: 0; transform: translateY(16px);
  animation: rise .9s var(--ease) 1.08s forwards;
}
.hero__kicker {
  order: 4;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(.96rem, 1.2vw, 1.16rem);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(0,106,112,.88);
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(16px);
  animation: rise .9s var(--ease) 1.18s forwards;
}
.hero__legal {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  line-height: 1.25;
  letter-spacing: 0;
}
.hero__company-ja {
  font-family: var(--mincho);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-weight: 600;
  color: rgba(0,106,112,.92);
}
.hero__company-en {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-weight: 600;
  color: rgba(31,40,42,.72);
}
.hero__company-en::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 14px 0 0;
  vertical-align: middle;
  background: currentColor;
  opacity: .24;
}
.hero__brand {
  font-family: var(--serif);
  font-size: clamp(.98rem, 1.1vw, 1.14rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  position: relative;
  color: rgba(31,40,42,.68);
}
.hero__brand::before {
  content: none;
}
.hero__title {
  order: 1;
  font-family: var(--mincho);
  font-weight: 600;
  font-size: 5.8rem;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255,255,255,.52);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block;
  transform: translateY(110%);
  animation: reveal-up 1.1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: .35s; }
.hero__title .line:nth-child(2) > span { animation-delay: .52s; }
.hero__title .accent { color: var(--gold); }

.hero__statement {
  order: 2;
  margin: clamp(40px, 4vw, 64px) 0 0;
  max-width: 42ch;
  font-size: 1.07rem;
  line-height: 2.12;
  color: var(--ink-soft);
  opacity: 0; transform: translateY(16px);
  animation: rise 1s var(--ease) .95s forwards;
}

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 58px;
  padding: 15px 32px;
  border: 1px solid rgba(31,40,42,.16);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.34) 42%, rgba(7,155,152,.045) 68%, rgba(203,163,74,.07)),
    rgba(255,255,255,.42);
  color: var(--ink);
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.76),
    inset 0 -10px 24px rgba(255,255,255,.26),
    0 16px 42px rgba(31,40,42,.09);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease), background .34s var(--ease), color .34s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,0) 44%),
    radial-gradient(120% 130% at 74% 0%, rgba(203,163,74,.12), transparent 58%);
  opacity: .7;
  pointer-events: none;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -42% -18%;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 24%, rgba(255,255,255,.42) 40%, transparent 56%);
  opacity: .28;
  transform: translateX(-44%) skewX(-10deg);
  transition: transform .8s var(--ease), opacity .34s var(--ease);
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-3px);
  border-color: rgba(31,40,42,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.42) 42%, rgba(7,155,152,.055) 68%, rgba(203,163,74,.09)),
    rgba(255,255,255,.5);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    inset 0 -10px 24px rgba(255,255,255,.3),
    0 20px 48px rgba(31,40,42,.12);
}
.btn:hover::after {
  opacity: .48;
  transform: translateX(38%) skewX(-10deg);
}

.liquid-link {
  --glass-x: 50%;
  --glass-y: 48%;
  --link-ink: var(--ink);
  --link-line: rgba(0,106,112,.52);
  --link-accent: rgba(203,163,74,.52);
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 2px 10px;
  color: var(--link-ink);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  isolation: isolate;
  transform: translate3d(0,0,0);
  transition: color .34s var(--ease), filter .34s var(--ease), transform .34s var(--ease);
}
.liquid-link > span {
  position: relative;
  z-index: 2;
}
.liquid-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -14px;
  right: -14px;
  top: 50%;
  height: 2.55em;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.58), rgba(255,255,255,.17) 46%, rgba(7,155,152,.06) 72%, rgba(203,163,74,.11)),
    radial-gradient(90% 120% at var(--glass-x, 22%) var(--glass-y, 8%), rgba(255,255,255,.64), transparent 52%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.7),
    inset 0 -10px 22px rgba(255,255,255,.13),
    0 16px 36px rgba(20,28,30,.08);
  opacity: .16;
  pointer-events: none;
  transform: translateY(-50%) scaleX(.18);
  transform-origin: center center;
  transition: opacity .34s var(--ease), transform .52s var(--ease), border-color .34s var(--ease);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
}
.liquid-link::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,106,112,.03), var(--link-line), var(--link-accent), rgba(0,106,112,.03));
  opacity: .5;
  transform: scaleX(.24);
  transform-origin: center center;
  transition: opacity .34s var(--ease), transform .52s var(--ease);
}
.liquid-link:hover,
.liquid-link:focus-visible,
.liquid-link.is-liquid-active {
  color: var(--link-ink);
  filter: saturate(1.06);
  transform: translateY(-2px);
}
.liquid-link:hover::before,
.liquid-link:focus-visible::before,
.liquid-link.is-liquid-active::before {
  opacity: .9;
  transform: translateY(-50%) scaleX(1);
}
.liquid-link:hover::after,
.liquid-link:focus-visible::after,
.liquid-link.is-liquid-active::after {
  opacity: .96;
  transform: scaleX(1);
}
.liquid-link:focus-visible {
  outline: 0;
}
.liquid-link:focus-visible::before {
  border-color: rgba(203,163,74,.44);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.72),
    inset 0 -10px 22px rgba(255,255,255,.14),
    0 0 0 2px rgba(203,163,74,.24),
    0 16px 36px rgba(20,28,30,.09);
}
.liquid-link--emphasis {
  font-size: clamp(1.04rem, 1.18vw, 1.12rem);
  font-weight: 700;
}
.liquid-link--emphasis > span {
  background: linear-gradient(108deg, var(--deep-teal), var(--bright-teal) 46%, var(--gold) 78%, var(--deep-teal));
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 28px rgba(0,106,112,.08);
  transition: background-position .72s var(--ease), filter .34s var(--ease);
}
.liquid-link--emphasis::before {
  opacity: .22;
  transform: translateY(-50%) scaleX(.24);
}
.liquid-link--emphasis::after {
  opacity: .64;
  transform: scaleX(.34);
}
.liquid-link--emphasis:hover > span,
.liquid-link--emphasis:focus-visible > span,
.liquid-link--emphasis.is-liquid-active > span {
  background-position: 100% 50%;
  filter: saturate(1.12);
}

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 30px; z-index: 2;
  font-family: var(--serif); font-size: 0.78rem; letter-spacing: 0;
  text-transform: uppercase; color: var(--ink-faint);
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: rise 1s var(--ease) 1.4s forwards;
}
.hero__scroll::before { content: ""; width: 46px; height: 1px; background: var(--ink-faint); display: inline-block; animation: scrollline 2.4s ease-in-out infinite; transform-origin: left; }
@keyframes scrollline { 0%,100% { transform: scaleX(.4); opacity:.5;} 50%{transform: scaleX(1); opacity:1;} }

@keyframes reveal-up { to { transform: translateY(0); } }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ===================================================
   Interlude（思想の一節）
   =================================================== */
.interlude {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,106,112,.14), rgba(17,20,22,.92) 46%, rgba(31,40,42,.98)),
    url("assets/luxury-dark-texture.jpg"),
    var(--charcoal);
  background-size: auto, 780px auto, auto;
  color: var(--paper);
  text-align: center;
  padding-block: clamp(96px, 14vw, 210px);
  overflow: hidden;
}
.interlude__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(248,246,240,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248,246,240,.045) 1px, transparent 1px);
  background-size: clamp(48px, 6vw, 88px) clamp(48px, 6vw, 88px);
  -webkit-mask-image: radial-gradient(80% 90% at 50% 50%, #000 10%, transparent 72%);
          mask-image: radial-gradient(80% 90% at 50% 50%, #000 10%, transparent 72%);
}
.interlude .star.s-int {
  position: absolute; z-index: 1;
  width: 22px; height: 22px; right: 16%; top: 22%;
  animation-delay: .2s, 1.6s;
}
.interlude__quote {
  position: relative; z-index: 2;
  font-family: var(--mincho); font-weight: 500;
  font-size: 3.15rem;
  line-height: 1.6; letter-spacing: 0;
  margin: 0 auto; max-width: 24ch;
  text-wrap: balance;
}
.interlude__quote span { display: block; }
.interlude__quote em { font-style: normal; color: var(--gold); }

/* ===================================================
   Scroll reveal (汎用)
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }
.reveal[data-delay="6"] { transition-delay: .6s; }

/* ===================================================
   Philosophy
   =================================================== */
.philosophy { background: linear-gradient(180deg, rgba(255,253,248,.80), rgba(250,249,245,.94)); }
.philosophy__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}
.philosophy__big {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 2.35rem;
  line-height: 1.55;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}
.philosophy__line {
  display: block;
  white-space: normal;
}
.philosophy__phrase {
  display: inline-block;
  white-space: nowrap;
}
.philosophy__line--mobile { display: none; }
.philosophy__big .mark { color: var(--deep-teal); }
.philosophy__big .gold { color: var(--gold); }
.philosophy__body p { margin: 0 0 1.5em; color: var(--ink-soft); }
.philosophy__body p:last-child { margin-bottom: 0; }
.philosophy__brand-copy {
  display: grid;
  gap: .16em;
  line-height: 1.92;
}
.philosophy__brand-copy span {
  display: block;
}
.philosophy__brand-name {
  font-family: var(--mincho);
  font-weight: 500;
  color: var(--ink);
}
.philosophy__brand-origin {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.35vw, 1.36rem);
  font-weight: 500;
  color: var(--deep-teal);
  white-space: nowrap;
}
.philosophy__statement {
  display: grid;
  gap: 2px;
  font-family: var(--mincho);
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  line-height: 1.95;
  color: var(--ink);
}
.philosophy__statement span {
  display: block;
}
.philosophy__statement .nowrap {
  white-space: nowrap;
}

/* keyword chips */
.keywords { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.keywords span {
  font-size: 0.82rem; letter-spacing: 0;
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft); background: var(--white);
}

/* ===================================================
   What we do — Practice
   =================================================== */
.work { background:
    linear-gradient(180deg, rgba(250,249,245,.98), rgba(246,247,243,.96)),
    url("assets/luxury-paper-texture.jpg");
  background-size: auto, 840px auto;
}
.work__head { max-width: 60ch; margin-bottom: clamp(48px, 6vw, 84px); }
.work__lead {
  display: grid;
  gap: 1px;
}
.work__lead span {
  display: block;
}
.work__lead .nowrap {
  white-space: nowrap;
}

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); }
.card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 40, 42, 0.08);
  border-radius: 8px;
  padding: clamp(26px, 2.6vw, 40px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 16px 56px rgba(20,28,30,.045);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s, background .5s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--deep-teal), rgba(203,163,74,.86));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: rgba(31,40,42,.12); background: rgba(255,255,255,.88); }
.card:hover::before { transform: scaleX(1); }
.card__kanji {
  font-family: var(--mincho); font-weight: 600;
  font-size: 3.1rem; line-height: 1;
  color: var(--charcoal); margin-bottom: 18px;
}
.card__kanji small { display:block; font-family: var(--serif); font-size: .9rem; letter-spacing: 0; color: var(--gold); margin-top: 12px; text-transform: uppercase; }
.card__title { font-family: var(--mincho); font-weight: 500; font-size: 1.22rem; margin: 0 0 12px; }
.card__text { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.95; margin: 0; }

/* 流儀 — メニューを置かない宣言（Practiceの結び） */
.work__creed {
  margin-top: clamp(72px, 9vw, 128px);
  text-align: center;
}
.work__creed::before {
  /* 金糸が上から静かに降りてくる */
  content: "";
  display: block;
  width: 1px;
  height: clamp(40px, 5vw, 64px);
  margin: 0 auto clamp(28px, 3.5vw, 44px);
  background: linear-gradient(180deg,
    rgba(203,163,74,0), rgba(203,163,74,.66) 55%, rgba(203,163,74,.92));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.5s var(--ease) .35s;
}
.work__creed.in::before { transform: scaleY(1); }
.work__creed-en {
  font-family: var(--serif);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .3em;
  text-indent: .3em; /* 中央揃えの光学補正 */
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 clamp(16px, 2vw, 22px);
}
.work__creed-title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: clamp(1.72rem, 2.6vw, 2.3rem);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--charcoal);
  margin: 0 0 clamp(18px, 2.4vw, 26px);
  text-wrap: balance;
}
.work__creed-title em { font-style: normal; color: var(--gold); }
.work__creed-text {
  max-width: 42ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 2.15;
}
.work__creed-text span { display: inline-block; } /* 文節単位でのみ折り返す */

/* ===================================================
   Network — global tech signal × quiet authority
   =================================================== */
.network {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(52% 58% at 76% 32%, rgba(7,155,152,.22), transparent 68%),
    radial-gradient(42% 40% at 18% 78%, rgba(203,163,74,.14), transparent 72%),
    linear-gradient(135deg, rgba(0,106,112,.16), rgba(17,20,22,.95) 44%, rgba(15,19,21,.99)),
    url("assets/luxury-dark-texture.jpg"),
    var(--charcoal);
  background-size: auto, auto, auto, 820px auto, auto;
}
.network__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(248,246,240,.065) 1px, transparent 1px),
    linear-gradient(0deg, rgba(248,246,240,.04) 1px, transparent 1px),
    radial-gradient(circle at 72% 35%, rgba(203,163,74,.16) 0 1px, transparent 2px);
  background-size:
    clamp(52px, 6vw, 92px) clamp(52px, 6vw, 92px),
    clamp(52px, 6vw, 92px) clamp(52px, 6vw, 92px),
    38px 38px;
  -webkit-mask-image: radial-gradient(90% 76% at 58% 42%, #000 12%, transparent 78%);
          mask-image: radial-gradient(90% 76% at 58% 42%, #000 12%, transparent 78%);
  opacity: .56;
}
.network .wrap {
  position: relative;
  z-index: 10;
}
.network .eyebrow {
  color: var(--bright-teal);
}
.network__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .8fr);
  gap: clamp(42px, 7vw, 116px);
  align-items: center;
}
.network__copy {
  max-width: 680px;
}
.network__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: .92;
  letter-spacing: 0;
  color: var(--white);
  margin: 0 0 .34em;
  text-wrap: balance;
}
.network__title span {
  display: block;
  margin-top: .42em;
  font-family: var(--mincho);
  font-size: clamp(1.6rem, 2.7vw, 2.65rem);
  line-height: 1.48;
  color: rgba(250,249,245,.9);
}
.network__title .network__subtitle > span {
  display: inline;
  margin-top: 0;
  font: inherit;
  line-height: inherit;
  color: inherit;
}
.network__title .network__subtitle .nowrap {
  white-space: nowrap;
}
.network__lead {
  color: rgba(245,246,244,.72);
  font-size: 1rem;
  line-height: 2.05;
  max-width: 58ch;
  margin: 0;
}
.network__lead span {
  display: block;
}
.network__lead .nowrap {
  white-space: nowrap;
}
.network__visual {
  position: relative;
  min-height: clamp(360px, 42vw, 540px);
  border-radius: 8px;
  background: rgba(250,249,245,.035);
  border: 1px solid rgba(203,163,74,.22);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.22),
    inset 0 -24px 48px rgba(255,255,255,.035),
    0 32px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  overflow: hidden;
  isolation: isolate;
  contain: paint;
}
.network__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05) brightness(.86);
  transform: scale(1.03);
  animation: network-art-drift 18s ease-in-out infinite;
  will-change: transform;
}
.network__visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,10,11,.10), rgba(6,10,11,.02) 45%, rgba(6,10,11,.38)),
    radial-gradient(78% 72% at 68% 44%, transparent 34%, rgba(0,0,0,.22) 100%),
    linear-gradient(105deg, rgba(255,255,255,.14), transparent 28%, rgba(7,155,152,.08) 72%, rgba(203,163,74,.12));
  mix-blend-mode: normal;
}
.network__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 28%, rgba(255,255,255,.34) 45%, rgba(203,163,74,.13) 50%, transparent 62%),
    radial-gradient(120% 80% at var(--luxury-light-x) 0%, rgba(255,255,255,.16), transparent 46%);
  background-size: 240% 100%, 100% 100%;
  background-position: 170% 0, 0 0;
  opacity: .24;
}
.network__visual.in::after {
  animation: network-specular-arrival 1.9s cubic-bezier(.16, 1, .3, 1) .42s both;
}
@keyframes network-specular-arrival {
  0% { opacity: .12; background-position: 170% 0, 0 0; }
  44% { opacity: .68; }
  100% { opacity: .30; background-position: -72% 0, 0 0; }
}
.network__flow {
  --flow-angle: 0deg;
  --flow-speed: 6.6s;
  --flow-stream-speed: 3.4s;
  --flow-shift-start: -10px;
  --flow-shift-mid: 8px;
  --flow-shift-end: 3px;
  --flow-scale-start: .7;
  --flow-scale-mid: 1;
  --flow-scale-end: .86;
  position: absolute;
  z-index: 3;
  display: block;
  height: 1px;
  pointer-events: none;
  opacity: .46;
  transform-origin: right center;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.06) 26%, rgba(255,255,255,.30) 58%, rgba(255,255,255,.48) 80%, rgba(203,163,74,.40) 91%, transparent),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.22) 52px, rgba(203,163,74,.2) 58px, transparent 72px);
  background-size: 100% 100%, 230px 100%;
  background-position: 0 0, -230px 0;
  box-shadow: 0 0 18px rgba(255,255,255,.16), 0 0 30px rgba(203,163,74,.08);
  mix-blend-mode: screen;
  overflow: visible;
  will-change: transform, opacity, background-position;
  transform: rotate(var(--flow-angle)) translate3d(var(--flow-shift-start), 0, 0) scaleX(var(--flow-scale-start));
  animation:
    network-flow-breathe var(--flow-speed) ease-in-out infinite,
    network-flow-stream var(--flow-stream-speed) linear infinite;
}
.network__flow::before {
  content: "";
  position: absolute;
  inset: -11px 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255,255,255,.96) 0 2px, rgba(203,163,74,.62) 3px, rgba(255,255,255,.16) 7px, transparent 11px) no-repeat;
  background-size: 30px 30px;
  background-position: -16% 50%;
  mix-blend-mode: screen;
  will-change: background-position, opacity;
  animation: network-flow-spark var(--flow-speed) cubic-bezier(.28, 0, .2, 1) infinite;
}
.network__flow::after {
  content: "";
  position: absolute;
  inset: -2px 0;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34) 24%, rgba(255,255,255,.9) 48%, rgba(203,163,74,.72) 62%, transparent);
  transform: translateX(-118%) scaleX(.38);
  opacity: 0;
  will-change: transform, opacity;
  animation: network-flow-run var(--flow-speed) cubic-bezier(.28, 0, .2, 1) infinite;
}
.network__flow--a {
  left: 6%;
  top: 47%;
  width: 69%;
  --flow-angle: 3deg;
  --flow-speed: 5.8s;
  --flow-stream-speed: 2.9s;
  --flow-shift-start: -18px;
  --flow-shift-mid: 15px;
  --flow-shift-end: 5px;
  --flow-scale-start: .76;
  --flow-scale-mid: 1.06;
  --flow-scale-end: .9;
}
.network__flow--b {
  left: 18%;
  top: 30%;
  width: 58%;
  --flow-angle: 17deg;
  --flow-speed: 6.6s;
  --flow-stream-speed: 3.4s;
  --flow-shift-start: -12px;
  --flow-shift-mid: 12px;
  --flow-shift-end: 2px;
  --flow-scale-start: .62;
  --flow-scale-mid: .92;
  --flow-scale-end: .7;
  opacity: .36;
  animation-delay: 1.7s;
}
.network__flow--b::before,
.network__flow--b::after { animation-delay: 1.7s; }
.network__flow--c {
  left: 16%;
  top: 70%;
  width: 61%;
  --flow-angle: -18deg;
  --flow-speed: 7.2s;
  --flow-stream-speed: 3.8s;
  --flow-shift-start: -14px;
  --flow-shift-mid: 13px;
  --flow-shift-end: 4px;
  --flow-scale-start: .58;
  --flow-scale-mid: .9;
  --flow-scale-end: .68;
  opacity: .34;
  animation-delay: 3.2s;
}
.network__flow--c::before,
.network__flow--c::after { animation-delay: 3.2s; }
.network__flow--d {
  left: 12%;
  top: 58%;
  width: 61%;
  --flow-angle: -9deg;
  --flow-speed: 8.4s;
  --flow-stream-speed: 4.2s;
  --flow-shift-start: -16px;
  --flow-shift-mid: 12px;
  --flow-shift-end: 4px;
  --flow-scale-start: .6;
  --flow-scale-mid: .9;
  --flow-scale-end: .7;
  opacity: .3;
  animation-delay: 2.4s;
}
.network__flow--d::before,
.network__flow--d::after { animation-delay: 2.4s; }
.network__flow--e {
  left: 28%;
  top: 38%;
  width: 47%;
  --flow-angle: 10deg;
  --flow-speed: 7s;
  --flow-stream-speed: 3.6s;
  --flow-shift-start: -12px;
  --flow-shift-mid: 10px;
  --flow-shift-end: 3px;
  --flow-scale-start: .64;
  --flow-scale-mid: .94;
  --flow-scale-end: .74;
  opacity: .28;
  animation-delay: 4.6s;
}
.network__flow--e::before,
.network__flow--e::after { animation-delay: 4.6s; }

/* ロゴへ吸い込まれていく光の粒 */
.network__mote {
  position: absolute;
  z-index: 3;
  left: 74%;
  top: 47%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.95), rgba(203,163,74,.6) 55%, transparent);
  box-shadow:
    0 0 8px rgba(255,255,255,.5),
    0 0 16px rgba(203,163,74,.32);
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate(var(--mote-x, -180px), var(--mote-y, -60px)) scale(.55);
  animation: network-mote-gather var(--mote-speed, 7s) cubic-bezier(.3, 0, .2, 1) var(--mote-delay, 0s) infinite;
}
.network__mote--1 { --mote-x: -215px; --mote-y: -95px; --mote-speed: 6.8s; --mote-delay: .6s; }
.network__mote--2 { --mote-x: -265px; --mote-y: 75px; --mote-speed: 7.8s; --mote-delay: 2.3s; }
.network__mote--3,
.network__mote--4 { display: none; }
@keyframes network-mote-gather {
  0%, 5% {
    opacity: 0;
    transform: translate(var(--mote-x, -180px), var(--mote-y, -60px)) scale(.55);
  }
  20% { opacity: .85; }
  56% { opacity: .8; }
  68%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(.35);
  }
}
.network__glint {
  position: absolute;
  z-index: 3;
  left: 74%;
  top: 47%;
  width: clamp(92px, 12vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .42;
  transform: translate(-50%, -50%) scale(.82);
  background:
    radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,.18), transparent 58%),
    radial-gradient(circle, rgba(203,163,74,.12), transparent 72%);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  animation: network-glint 6.6s ease-in-out infinite;
}
.network__logo-aura {
  position: absolute;
  z-index: 3;
  left: 74%;
  top: 47%;
  width: clamp(86px, 10vw, 128px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .28;
  transform: translate(-50%, -50%) scale(.86);
  background:
    radial-gradient(circle, rgba(255,255,255,.30), rgba(203,163,74,.16) 34%, rgba(7,155,152,.10) 58%, transparent 72%);
  box-shadow:
    0 0 34px rgba(255,255,255,.16),
    0 0 64px rgba(203,163,74,.12);
  mix-blend-mode: screen;
  will-change: transform, opacity;
  animation: network-logo-aura var(--breath-cycle) ease-in-out infinite;
}
.network__art-logo {
  position: absolute;
  z-index: 4;
  left: 74%;
  top: 47%;
  width: clamp(54px, 7vw, 86px);
  height: auto;
  opacity: .82;
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 0 14px rgba(255,255,255,.28))
    drop-shadow(0 0 30px rgba(203,163,74,.22))
    drop-shadow(0 18px 36px rgba(0,0,0,.34));
  mix-blend-mode: screen;
}
@keyframes network-art-drift {
  0%, 100% { transform: scale(1.03) translate3d(0,0,0); }
  50% { transform: scale(1.07) translate3d(-1.8%, -1.2%, 0); }
}
@keyframes network-logo-aura {
  0%, 100% { opacity: .18; }
  46% { opacity: .52; }
  60% { opacity: .30; }
}
@keyframes network-flow-breathe {
  0%, 100% {
    opacity: .18;
    transform: rotate(var(--flow-angle)) translate3d(var(--flow-shift-start), 0, 0) scaleX(var(--flow-scale-start));
  }
  42% {
    opacity: .52;
    transform: rotate(var(--flow-angle)) translate3d(var(--flow-shift-mid), 0, 0) scaleX(var(--flow-scale-mid));
  }
  70% {
    opacity: .42;
    transform: rotate(var(--flow-angle)) translate3d(var(--flow-shift-end), 0, 0) scaleX(var(--flow-scale-end));
  }
}
@keyframes network-flow-run {
  0%, 8% { opacity: 0; transform: translateX(-122%) scaleX(.38); }
  30% { opacity: .72; transform: translateX(28%) scaleX(1.06); }
  54% { opacity: .64; transform: translateX(104%) scaleX(.52); }
  64%, 100% { opacity: 0; transform: translateX(112%) scaleX(.2); }
}
@keyframes network-flow-spark {
  0%, 10% { opacity: 0; background-position: -20% 50%; }
  26% { opacity: .56; }
  50% { opacity: .72; background-position: 86% 50%; }
  62%, 100% { opacity: 0; background-position: 97% 50%; }
}
@keyframes network-flow-stream {
  0% { background-position: 0 0, -230px 0; }
  100% { background-position: 0 0, 230px 0; }
}
@keyframes network-glint {
  0%, 100% { opacity: .30; transform: translate(-50%, -50%) scale(.94); }
  48% { opacity: .56; transform: translate(-50%, -50%) scale(1.03); }
}

/* ===================================================
   Founder
   =================================================== */
.founder {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(246,247,243,.90), rgba(250,249,245,.98)),
    url("assets/luxury-paper-texture.jpg");
  background-size: auto, 860px auto;
  isolation: isolate;
}
.founder__grid { display: grid; grid-template-columns: minmax(0, 320px) minmax(0,1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.founder__intro {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .64fr);
  gap: clamp(38px, 5.2vw, 86px);
  align-items: center;
  min-height: clamp(620px, 74vh, 820px);
  position: relative;
  isolation: isolate;
}
.founder__copy {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  padding: clamp(20px, 3vw, 42px) 0;
}
.founder__identity-copy {
  min-width: 0;
  padding-top: 0;
}
.founder__name-jp { font-family: var(--mincho); font-weight: 500; font-size: clamp(3.6rem, 6vw, 5.9rem); line-height: 1.04; letter-spacing: 0; margin: 0; color: var(--ink); }
.founder__name-en { font-family: var(--serif); font-size: .94rem; letter-spacing: 0; text-transform: uppercase; color: var(--ink-faint); margin: 1.1em 0 0; }
.founder__role { margin: 1.5em 0 0; padding-top: 1.45em; border-top: 1px solid var(--line); color: var(--deep-teal); font-size: .95rem; }
.founder__portrait {
  position: relative;
  width: 100%;
  max-width: min(42vw, 520px);
  aspect-ratio: 427 / 640;
  margin: 0 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(203,163,74,.52);
  border-radius: clamp(22px, 2.2vw, 32px);
  background: rgba(255,255,255,.34);
  box-shadow:
    0 34px 84px rgba(20,28,30,.16),
    0 12px 26px rgba(7,155,152,.08),
    0 2px 18px rgba(203,163,74,.10);
  transform: translateY(-6px) rotate(.24deg);
}
.founder__portrait::before,
.founder__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.founder__portrait::before {
  z-index: 2;
  background:
    radial-gradient(
      110% 86% at calc(6% + var(--founder-light, 0) * 34%) calc(-8% + var(--founder-light, 0) * 18%),
      rgba(255,241,214,.30), rgba(255,255,255,.07) 44%, transparent 64%),
    linear-gradient(145deg, rgba(255,255,255,.13), transparent 34%),
    radial-gradient(90% 70% at 18% 0%, rgba(255,255,255,.10), transparent 58%);
  mix-blend-mode: screen;
  opacity: calc(.30 + var(--founder-light, 0) * .42);
}
.founder__portrait::after {
  z-index: 3;
  inset: 6px;
  border: 1px solid rgba(203,163,74,.40);
  border-radius: calc(clamp(22px, 2.2vw, 32px) - 6px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.34),
    inset 0 -20px 34px rgba(5,42,45,.08);
}
.founder__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.94) contrast(1.03) brightness(1.01);
  transform: scale(calc(1 + var(--founder-light, 0) * 0.04));
  transform-origin: 50% 34%;
}
.founder__message {
  margin-top: clamp(42px, 5vw, 70px);
  max-width: 38rem;
}
.founder__message .founder__greeting { font-family: var(--mincho); font-weight: 500; font-size: clamp(1.85rem, 2.7vw, 2.45rem); line-height: 1.55; letter-spacing: 0; color: var(--ink); margin: 0 0 1em; text-wrap: balance; }
.founder__message p { color: var(--ink-soft); margin: 0 0 1.6em; line-height: 1.95; }
.founder__message .liquid-link { margin-top: 4px; }
.journey-bridge {
  position: absolute;
  left: 50%;
  bottom: clamp(-68px, -5vw, -48px);
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0;
  padding: 8px 24px 0;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: .94rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  isolation: isolate;
  transform: translateX(-50%);
  transition: color .34s var(--ease), transform .34s var(--ease), filter .34s var(--ease);
}
.journey-bridge.reveal {
  transform: translate(-50%, 28px);
}
.journey-bridge.reveal.in {
  transform: translate(-50%, 0);
}
.journey-bridge__label {
  display: block;
  color: currentColor;
  opacity: .72;
  text-shadow: 0 0 18px rgba(7,155,152,.14);
  transition: opacity .34s var(--ease), text-shadow .34s var(--ease);
}
.journey-bridge__node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(255,255,255,.98), rgba(203,163,74,.82) 34%, rgba(7,155,152,.82));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.68),
    0 0 18px rgba(7,155,152,.26),
    0 0 34px rgba(203,163,74,.24);
  animation: bridge-node-pulse 2.9s ease-in-out infinite;
}
.journey-bridge__rail {
  position: relative;
  display: block;
  width: 1px;
  height: clamp(94px, 10vw, 138px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,106,112,.24), rgba(203,163,74,.44) 42%, rgba(7,155,152,.34) 72%, rgba(0,106,112,0));
}
.journey-bridge__rail::before,
.journey-bridge__rail::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}
.journey-bridge__rail::before {
  inset-block: 0;
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,.58) 38%, rgba(203,163,74,.58) 58%, transparent),
    radial-gradient(circle at 50% 72%, rgba(7,155,152,.54), transparent 66%);
  opacity: .46;
}
.journey-bridge__rail::after {
  top: -34%;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.98), rgba(203,163,74,.86), rgba(7,155,152,.54), transparent);
  filter:
    drop-shadow(0 0 10px rgba(203,163,74,.48))
    drop-shadow(0 0 18px rgba(7,155,152,.28));
  animation: bridge-light-fall 3.1s cubic-bezier(.28, 0, .2, 1) infinite;
}
.journey-bridge__rail span {
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(7,155,152,.3), transparent 70%);
  opacity: .7;
  animation: bridge-arrival-glow 2.75s ease-in-out infinite;
}
.journey-bridge:hover,
.journey-bridge:focus-visible {
  color: var(--bright-teal);
  filter: saturate(1.1);
  transform: translate(-50%, 2px);
}
.journey-bridge:hover .journey-bridge__label,
.journey-bridge:focus-visible .journey-bridge__label {
  opacity: 1;
  text-shadow:
    0 0 20px rgba(7,155,152,.22),
    0 0 34px rgba(203,163,74,.16);
}
.journey-bridge:focus-visible {
  outline: 0;
}
.journey-bridge:focus-visible::before {
  content: "";
  position: absolute;
  inset: -8px 4px -2px;
  border-radius: 999px;
  border: 1px solid rgba(203,163,74,.38);
}
@keyframes bridge-node-pulse {
  0%, 100% {
    opacity: .64;
    transform: scale(.82);
    box-shadow:
      0 0 0 1px rgba(255,255,255,.58),
      0 0 14px rgba(7,155,152,.2),
      0 0 24px rgba(203,163,74,.18);
  }
  48% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(255,255,255,.82),
      0 0 24px rgba(7,155,152,.34),
      0 0 46px rgba(203,163,74,.3);
  }
}
@keyframes bridge-light-fall {
  0% { opacity: 0; transform: translate(-50%, 0); }
  18% { opacity: .94; }
  68% { opacity: .9; transform: translate(-50%, 292%); }
  100% { opacity: 0; transform: translate(-50%, 430%); }
}
@keyframes bridge-arrival-glow {
  0%, 54%, 100% { opacity: .14; transform: translateX(-50%) scale(.65); }
  72% { opacity: .82; transform: translateX(-50%) scale(1.2); }
}
@keyframes journey-flow-spark {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(.72);
  }
  18% {
    opacity: .9;
  }
  64% {
    opacity: .68;
    transform: translate(-50%, 86px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 142px) scale(.82);
  }
}
@keyframes section-glow-breath {
  0%, 100% {
    opacity: .28;
    transform: scale(.94) translate3d(0,0,0);
  }
  48% {
    opacity: .94;
    transform: scale(1.085) translate3d(1.2%, -1.2%, 0);
  }
  66% {
    opacity: .56;
    transform: scale(1.025) translate3d(.4%, -.3%, 0);
  }
}
.founder__card {
  background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 8px;
  padding: 38px 30px; text-align: center; position: sticky; top: 110px;
  box-shadow: var(--shadow-soft);
}
.founder__symbol { width: 78px; margin: 0 auto 22px; }
.founder__name { font-family: var(--mincho); font-weight: 700; font-size: 1.7rem; margin: 0 0 6px; }
.founder__name small { display: block; font-family: var(--serif); font-size: .82rem; letter-spacing: 0; color: var(--ink-faint); margin-top: 10px; text-transform: uppercase; }
.founder__role { color: var(--deep-teal); font-size: 0.92rem; margin: 0; }
/* ===================================================
   Journey — screenless founder story
   =================================================== */
.journey {
  --journey-progress: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 48% at 82% 12%, rgba(7,155,152,.16), transparent 66%),
    linear-gradient(136deg, rgba(0,106,112,.22), rgba(17,20,22,.96) 38%, rgba(31,40,42,.99)),
    url("assets/luxury-dark-texture.jpg"),
    var(--charcoal);
  background-size: auto, auto, 900px auto, auto;
  color: var(--paper);
}
.journey::before,
.journey::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%);
}
.journey::before {
  top: -1px;
  z-index: 1;
  width: 1px;
  height: clamp(124px, 13vw, 190px);
  background:
    linear-gradient(180deg, rgba(203,163,74,.48), rgba(7,155,152,.36) 52%, rgba(203,163,74,.15) 78%, transparent),
    linear-gradient(180deg, rgba(255,255,255,.38), transparent 62%);
  box-shadow:
    0 0 16px rgba(203,163,74,.24),
    0 0 34px rgba(7,155,152,.16);
  opacity: .86;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 54%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 54%, transparent 100%);
}
.journey::after {
  top: clamp(18px, 3vw, 42px);
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.98) 0 15%, rgba(203,163,74,.88) 32%, rgba(7,155,152,.46) 56%, transparent 72%);
  box-shadow:
    0 0 14px rgba(203,163,74,.46),
    0 0 28px rgba(7,155,152,.24);
  opacity: 0;
  animation: journey-flow-spark 8.8s cubic-bezier(.28, 0, .2, 1) infinite;
}
.journey__glow {
  position: absolute;
  inset: 8% -18% auto auto;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203,163,74,.16), rgba(7,155,152,.07) 34%, transparent 68%);
  filter: blur(10px);
  opacity: .72;
  pointer-events: none;
  transform: scale(.98);
  animation: section-glow-breath var(--breath-cycle-slow) ease-in-out infinite;
}
.journey__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .09;
  background-image:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 78%, transparent);
}
.journey .wrap { position: relative; z-index: 10; }
.journey .eyebrow { color: var(--bright-teal); }
.journey__head {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(300px, 420px);
  gap: 78px;
  align-items: center;
}
.journey__headline {
  position: relative;
  min-width: 0;
}
.journey__headline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 18%;
  bottom: -22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(7,155,152,.7), rgba(203,163,74,.48), transparent);
  opacity: .68;
}
.journey__title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 4.72rem;
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0;
  color: var(--white);
  text-wrap: balance;
}
.journey__title-line {
  display: block;
  white-space: nowrap;
}
.journey__title-line--intro {
  font-size: .54em;
  line-height: 1.18;
  color: rgba(250,249,245,.58);
}
.journey__title-line--core {
  color: var(--white);
}
.journey__title-line--tail {
  padding-left: .66em;
  color: rgba(250,249,245,.9);
}
.journey__lead-wrap {
  align-self: end;
  max-width: 38ch;
  padding: 26px 0 8px 34px;
  border-left: 1px solid rgba(203,163,74,.32);
}
.journey__lead-label {
  margin: 0 0 18px;
  font-family: var(--serif);
  color: var(--gold);
  font-size: .88rem;
  line-height: 1;
  text-transform: uppercase;
}
.journey__lead {
  margin: 0;
  color: rgba(245,246,244,.72);
  font-size: 1.04rem;
  line-height: 2.05;
}
.journey__manifesto {
  display: grid;
  gap: 10px;
  margin: clamp(56px, 7vw, 96px) 0;
  padding: clamp(26px, 4vw, 44px) 0;
  border-top: 1px solid rgba(245,246,244,.16);
  border-bottom: 1px solid rgba(245,246,244,.16);
  font-family: var(--mincho);
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  line-height: 1.48;
  color: rgba(250,249,245,.94);
}
.journey__manifesto span:nth-child(2) { color: rgba(250,249,245,.78); }
.journey__manifesto span:nth-child(3) { color: var(--gold); }
.journey__layout {
  display: grid;
  grid-template-columns: minmax(210px, 320px) minmax(0,1fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: start;
}
.journey__signal {
  position: sticky;
  top: 112px;
  padding: 4px 0 0;
}
.journey__signal-number {
  display: block;
  font-family: var(--numeric);
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  font-weight: 500;
  line-height: .9;
  color: var(--gold);
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1, "kern" 1;
}
.journey__signal-label {
  display: block;
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  line-height: 1.08;
  color: rgba(250,249,245,.88);
}
.journey__signal-line {
  display: block;
  width: 1px;
  height: clamp(70px, 13vw, 150px);
  margin: 30px 0;
  background: linear-gradient(180deg, var(--bright-teal), var(--gold), transparent);
}
.journey__signal-caption {
  display: block;
  max-width: 21ch;
  color: rgba(245,246,244,.48);
  font-size: .86rem;
  line-height: 1.8;
}
.journey__chapters {
  position: relative;
  display: grid;
}
.journey__chapters::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, var(--bright-teal), rgba(203,163,74,.86), rgba(255,255,255,.06));
}
.journey__chapters::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 30px;
  width: 1px;
  pointer-events: none;
  transform: scaleY(var(--journey-progress));
  transform-origin: top center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(7,155,152,.72) 38%, rgba(203,163,74,.92) 76%, rgba(255,255,255,.18));
  box-shadow:
    0 0 12px rgba(7,155,152,.34),
    0 0 24px rgba(203,163,74,.22);
  opacity: .9;
  transition: transform .18s linear;
  will-change: transform;
}
.journey__chapter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0,1fr);
  gap: clamp(22px, 4vw, 60px);
  padding: 0 0 clamp(34px, 5.5vw, 68px) 40px;
}
.journey__chapter:last-child { padding-bottom: 8px; }
.journey__chapter::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 2px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow:
    0 0 0 4px rgba(203,163,74,.16),
    0 0 22px rgba(7,155,152,.28);
  transition: box-shadow .6s var(--ease), background .6s var(--ease);
}
.journey__chapter.in::before {
  background: var(--white);
  box-shadow:
    0 0 0 4px rgba(203,163,74,.22),
    0 0 22px rgba(7,155,152,.34),
    0 0 34px rgba(203,163,74,.22);
}
.journey__meta {
  display: grid;
  align-content: start;
  gap: 10px;
}
.journey__year {
  font-family: var(--numeric);
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1, "kern" 1;
}
.journey__chapter.in .journey__year {
  animation: journey-year-glint 1.45s cubic-bezier(.16, 1, .3, 1) .16s both;
}
@keyframes journey-year-glint {
  0% {
    color: rgba(203,163,74,.54);
    text-shadow: none;
  }
  42% {
    color: #F5D783;
    text-shadow: 0 0 18px rgba(203,163,74,.30);
  }
  100% {
    color: var(--gold);
    text-shadow: none;
  }
}
.journey__year--ppp {
  display: inline-block;
  font-size: clamp(.94rem, 1.25vw, 1.24rem);
  line-height: 1.12;
  letter-spacing: 0;
}
.journey__year--ppp span {
  display: block;
}
.journey__tag {
  color: rgba(245,246,244,.46);
  font-size: .78rem;
  text-transform: uppercase;
  line-height: 1.45;
}
.journey__body {
  padding-bottom: clamp(22px, 4vw, 44px);
  border-bottom: 1px solid rgba(245,246,244,.12);
}
.journey__chapter:last-child .journey__body { border-bottom: 0; }
.journey__body h3 {
  margin: 0 0 12px;
  font-family: var(--mincho);
  font-weight: 500;
  font-size: clamp(1.32rem, 2.2vw, 2.35rem);
  line-height: 1.42;
  letter-spacing: 0;
  color: var(--white);
  text-wrap: balance;
}
.journey__body p {
  margin: 0;
  max-width: 58ch;
  color: rgba(245,246,244,.70);
  font-size: clamp(.96rem, 1.05vw, 1.04rem);
  line-height: 2.05;
}
.journey__closing {
  --closing-pad-x: clamp(26px, 4vw, 58px);
  margin: clamp(58px, 7vw, 98px) 0 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0,1fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(34px, 5vw, 58px) var(--closing-pad-x) clamp(30px, 4vw, 48px);
  border-top: 1px solid rgba(203,163,74,.36);
  border-bottom: 1px solid rgba(245,246,244,.13);
  border-radius: 0;
  background:
    radial-gradient(60% 160% at 82% 8%, rgba(203,163,74,.16), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,.055), rgba(255,255,255,.018) 46%, transparent);
}
.journey__closing::before {
  content: "";
  position: absolute;
  left: var(--closing-pad-x);
  top: -1px;
  width: min(360px, 38%);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(7,155,152,.7), transparent);
  box-shadow: 0 0 22px rgba(203,163,74,.32);
}
.journey__closing-aside {
  min-width: 0;
}
.journey__closing-label {
  margin: 0;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.18rem;
  line-height: 1.08;
  text-transform: uppercase;
}
.journey__closing-label::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 22px;
  background: rgba(203,163,74,.62);
}
.journey__closing-title {
  margin: 0 0 18px;
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 2.55rem;
  line-height: 1.42;
  letter-spacing: 0;
  color: var(--white);
}
.journey__closing-title span {
  display: inline;
}
.journey__closing-title .nowrap {
  white-space: nowrap;
}
.journey__closing-body {
  margin: 0;
  max-width: 70ch;
  color: rgba(245,246,244,.74);
  line-height: 2.05;
}
.journey__closing-body > span {
  display: inline;
}
.journey__closing-body .highlight {
  color: var(--gold);
}

/* Shared liquid glass button treatment */
.btn {
  --glass-x: 22%;
  --glass-y: 8%;
  color: var(--ink) !important;
  border-color: var(--liquid-glass-border);
  background: var(--liquid-glass-bg);
  box-shadow: var(--liquid-glass-shadow);
  backdrop-filter: blur(30px) saturate(185%) brightness(1.04);
  -webkit-backdrop-filter: blur(30px) saturate(185%) brightness(1.04);
  transform: translate3d(0,0,0);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease), background .34s var(--ease), color .34s var(--ease);
  will-change: transform;
}

.btn::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,0) 45%),
    radial-gradient(90% 120% at var(--glass-x, 22%) var(--glass-y, 8%), rgba(255,255,255,.52), transparent 46%),
    radial-gradient(100% 140% at 82% 86%, rgba(203,163,74,.18), transparent 62%);
  opacity: .86;
}

.btn::after {
  background: var(--liquid-glass-shine);
  opacity: .26;
  transform: translateX(-46%) skewX(-12deg);
}

.btn:hover,
.btn.is-liquid-active {
  color: var(--ink) !important;
  border-color: rgba(255,255,255,.68);
  background: var(--liquid-glass-bg-hover);
  box-shadow: var(--liquid-glass-shadow-hover);
  transform: translateY(-3px) scale(1.012);
}

.btn:hover::after,
.btn.is-liquid-active::after {
  opacity: .52;
  transform: translateX(38%) skewX(-12deg);
}

/* ===================================================
   Footer
   =================================================== */
.footer {
  position: relative;
  background:
    linear-gradient(180deg, #151A1C, #111517),
    var(--ink);
  color: rgba(245,246,244,.62); padding-block: 56px;
}
/* 上辺の金糸 — サイト共通の鼓動リズムでほのかに照る */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 72%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,
    rgba(203,163,74,0), rgba(203,163,74,.52) 30%, rgba(247,201,95,.78) 50%, rgba(203,163,74,.52) 70%, rgba(203,163,74,0));
  opacity: .85;
  animation: heartbeat-soft var(--pulse-cycle) ease-in-out infinite;
}
body.creative-page .footer::before { display: none; }
.footer__grid { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.footer__home-link {
  display: inline-flex;
  align-items: center;
}
.footer__home-link:focus-visible {
  outline: 1px solid rgba(143,222,217,.56);
  outline-offset: 8px;
}
.footer__logo {
  height: 30px;
  opacity: .92;
  transition: opacity .6s var(--ease), filter .6s var(--ease);
}
.footer__logo:hover {
  opacity: 1;
  filter: brightness(1.08) drop-shadow(0 0 14px rgba(203,163,74,.22));
}
.footer__tag { font-family: var(--mincho); color: var(--paper); font-size: 1rem; letter-spacing: 0; }
.footer__small {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(246,241,230,.58);
  font-family: var(--numeric);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .018em;
  font-variant-numeric: tabular-nums lining-nums;
  white-space: nowrap;
}
.footer__small span:last-child {
  color: rgba(246,241,230,.46);
  font-weight: 400;
  letter-spacing: .014em;
}
.footer__small span + span::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 10px 2px 0;
  border-radius: 50%;
  background: rgba(203,163,74,.68);
}

/* ===================================================
   Invitation
   =================================================== */
.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(0,106,112,.18), rgba(17,20,22,.94) 48%, rgba(31,40,42,.98)),
    url("assets/luxury-dark-texture.jpg"),
    var(--charcoal);
  background-size: auto, 820px auto, auto;
  color: var(--paper);
  text-align: center;
}
.contact::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18% -12%;
  pointer-events: none;
  background:
    radial-gradient(42% 50% at 54% 28%, rgba(255,255,255,.10), transparent 68%),
    radial-gradient(48% 46% at 58% 46%, rgba(203,163,74,.12), transparent 72%),
    radial-gradient(42% 40% at 34% 66%, rgba(7,155,152,.12), transparent 72%);
  opacity: .44;
  filter: blur(8px);
  transform: scale(.98);
  animation: invitation-aperture 17.6s cubic-bezier(.45, 0, .2, 1) infinite;
}
.contact .wrap {
  position: relative;
  z-index: 10;
}
@keyframes invitation-aperture {
  0%, 100% { opacity: .28; transform: scale(.94) translate3d(-.6%, .3%, 0); }
  44% { opacity: .66; transform: scale(1.055) translate3d(.8%, -.8%, 0); }
  70% { opacity: .42; transform: scale(1.012) translate3d(.2%, -.2%, 0); }
}
.contact .eyebrow {
  color: var(--gold);
  justify-content: center;
  display: flex;
}
.contact__invitation-line {
  position: relative;
  display: block;
  width: min(320px, 58vw);
  height: 1px;
  margin: 0 auto clamp(30px, 4vw, 48px);
  overflow: hidden;
}
.contact__invitation-line::before,
.contact__invitation-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: center;
}
.contact__invitation-line::before {
  background: linear-gradient(90deg, transparent, rgba(203,163,74,.72), rgba(255,255,255,.42), rgba(7,155,152,.38), transparent);
  transform: scaleX(0);
  opacity: .86;
  transition: transform 1.35s var(--ease) .08s;
}
.contact__invitation-line::after {
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), rgba(203,163,74,.64), transparent);
  opacity: 0;
  transform: translateX(-120%);
}
.contact__invitation-line.in::before {
  transform: scaleX(1);
}
.contact__invitation-line.in::after {
  animation: invitation-glint 1.55s cubic-bezier(.28, 0, .2, 1) .28s both;
}
@keyframes invitation-glint {
  0% { opacity: 0; transform: translateX(-120%); }
  24% { opacity: .88; }
  100% { opacity: 0; transform: translateX(320%); }
}
.contact__title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 3.45rem;
  line-height: 1.22;
  margin: 0 0 .5em;
  color: var(--white);
  letter-spacing: 0;
  text-wrap: balance;
}
.contact__title span {
  display: block;
}
.contact__title .contact__title-line--mobile {
  display: none;
}
.contact__lead {
  display: grid;
  gap: .42em;
  color: rgba(245,246,244,.78);
  max-width: 62ch;
  margin: 0 auto;
  line-height: 2.05;
}
.contact__lead span {
  display: block;
}
.contact__meta {
  margin: 36px auto 0;
  max-width: 58ch;
  font-size: 0.86rem;
  color: rgba(245,246,244,.6);
}
.contact__meta a {
  color: var(--bright-teal);
}

/* English edition: cleaner, more global, less literal. */
html[lang="en"] .hero__title,
html[lang="en"] .section-title,
html[lang="en"] .philosophy__big,
html[lang="en"] .network__title,
html[lang="en"] .founder__message .founder__greeting,
html[lang="en"] .journey__title,
html[lang="en"] .contact__title {
  font-family: var(--gothic);
  font-weight: 500;
  letter-spacing: 0;
}

html[lang="en"] .hero__title {
  max-width: 12ch;
  font-size: clamp(5rem, 8.8vw, 8rem);
  line-height: .98;
}

html[lang="en"] .hero__title .accent {
  color: transparent;
  background: linear-gradient(96deg, var(--gold) 0%, var(--bright-teal) 54%, var(--deep-teal) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

html[lang="en"] .hero__statement {
  max-width: 34ch;
  line-height: 1.92;
}

html[lang="en"] .philosophy__big,
html[lang="en"] .contact__title {
  line-height: 1.14;
}

html[lang="en"] .interlude__quote {
  font-family: var(--gothic);
  font-weight: 500;
  line-height: 1.32;
}

html[lang="en"] .journey__title {
  line-height: 1.04;
}

html[lang="en"] .work__creed-title {
  font-family: var(--gothic);
  font-weight: 500;
}
html[lang="en"] .work__creed-text {
  max-width: 52ch;
}

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 1200px) {
  .founder__intro {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: clamp(34px, 5vw, 54px);
  }
  .founder__portrait {
    order: -1;
    width: min(480px, 68vw);
    max-width: none;
    margin: 0 auto;
    transform: translateY(0) rotate(.24deg);
  }
  .founder__copy {
    max-width: 48rem;
    padding-top: 0;
  }
  .journey__head {
    gap: 58px;
  }
  .journey__title {
    font-size: 4.1rem;
  }
}
@media (max-width: 960px) {
  .philosophy__grid, .founder__grid, .founder__intro, .network__grid, .journey__head, .journey__layout { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .founder__card { position: static; max-width: 360px; }
  .founder__intro {
    min-height: 0;
    gap: clamp(32px, 7vw, 52px);
  }
  .founder__copy {
    max-width: 100%;
    padding-bottom: 0;
  }
  .founder__portrait {
    order: -1;
    width: min(430px, 70vw);
    max-width: none;
    margin: 0 auto;
    transform: translateY(0) rotate(.24deg);
  }
  .network__copy { max-width: 100%; }
  .network__visual { min-height: 430px; }
  .journey__head { gap: 38px; }
  .journey__headline::after { left: 0; right: 24%; bottom: -18px; }
  .journey__title { font-size: 3.72rem; }
  .journey__title-line--tail { padding-left: .48em; }
  .journey__lead-wrap {
    max-width: 56ch;
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(203,163,74,.28);
  }
  .journey__signal { position: static; display: grid; grid-template-columns: auto minmax(0,1fr); gap: 16px 24px; align-items: end; }
  .journey__signal-line { grid-column: 1 / -1; width: min(220px, 100%); height: 1px; margin: 8px 0 0; }
  .journey__signal-caption { grid-column: 1 / -1; max-width: 34ch; }
  .journey__closing {
    --closing-pad-x: clamp(22px, 6vw, 34px);
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .journey__closing-label::after { margin-top: 16px; }
  .section-title { font-size: 2.3rem; }
  .hero__title { font-size: 5.35rem; }
  .interlude__quote { font-size: 2.75rem; }
  .philosophy__big { font-size: 2.08rem; }
  .founder__name-jp { font-size: clamp(3.05rem, 7vw, 4.2rem); }
  .contact__title { font-size: 3rem; }
}
@media (max-width: 680px) {
  body::after {
    inset: -18vh -22vw;
    filter: blur(1.6px) saturate(1.04);
    animation-name: page-lung-mobile;
  }
  body.is-loaded::after,
  body:not(.is-loading)::after {
    opacity: .72;
  }
  .site-breath {
    inset: -26vh -30vw;
  }
  body.is-loaded .site-breath,
  body:not(.is-loading) .site-breath {
    opacity: .74;
  }
  .site-breath::before {
    filter: blur(7px);
    animation-name: page-breath-mobile;
  }
  .site-breath::after {
    opacity: .52;
    animation-name: page-breath-shimmer-mobile;
  }
  body.home-page.home-atmosphere-active .home-atmosphere-canvas {
    opacity: .28;
  }
  .nav__menu { display: none; }
  .nav__menu.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; right: 0; left: 0;
    background: var(--paper-soft); backdrop-filter: blur(16px);
    padding: 20px var(--gutter) 28px; gap: 18px;
    box-shadow: 0 12px 24px rgba(47,58,62,.12);
  }
  .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    justify-content: center;
  }
  .lang-switch--top {
    display: inline-flex;
    margin-left: auto;
    margin-right: 2px;
    padding: 7px 10px;
    border: 1px solid rgba(31,40,42,.10);
    border-radius: 999px;
    background:
      linear-gradient(145deg, rgba(255,255,255,.70), rgba(255,255,255,.28) 55%, rgba(7,155,152,.055)),
      rgba(255,255,255,.40);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.72),
      0 12px 28px rgba(31,40,42,.07);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    font-family: var(--numeric);
    font-size: .78rem;
    gap: 7px;
    color: rgba(31,40,42,.66);
  }
  .lang-switch--top span,
  .lang-switch--top a {
    padding-block: 0;
  }
  .lang-switch--top span[aria-current="page"] {
    color: var(--deep-teal);
    text-shadow: 0 0 16px rgba(7,155,152,.16);
  }
  .nav__toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav__toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }
  .hero {
    min-height: 100svh;
    padding-top: max(112px, calc(env(safe-area-inset-top) + 104px));
    padding-bottom: max(104px, calc(env(safe-area-inset-bottom) + 92px));
    align-items: center;
  }
  .hero__inner {
    display: grid;
    align-content: center;
    min-height: calc(100svh - max(112px, calc(env(safe-area-inset-top) + 104px)) - max(104px, calc(env(safe-area-inset-bottom) + 92px)));
    transform: translateY(-1svh);
  }
  .hero__title {
    order: 1;
    font-size: clamp(3.56rem, 15.4vw, 4rem);
    line-height: 1.06;
  }
  html[lang="en"] .hero__title {
    max-width: 10.6ch;
    font-size: clamp(3.1rem, 12.8vw, 3.7rem);
    line-height: 1.04;
  }
  .section-title { font-size: 2rem; }
  .lead { font-size: 1rem; }
  .hero__kicker {
    order: 4;
    margin: 10px 0 0;
    max-width: 27ch;
    font-size: .92rem;
    line-height: 1.45;
    color: rgba(0,106,112,.58);
    animation-delay: 1.16s;
  }
  .hero__statement {
    order: 2;
    max-width: 29ch;
    margin-top: clamp(46px, 6.6svh, 64px);
    font-size: .98rem;
    line-height: 2.08;
  }
  html[lang="en"] .hero__statement {
    max-width: 24ch;
    line-height: 1.9;
  }
  .hero__label {
    order: 3;
    gap: 9px;
    margin: clamp(42px, 6.6svh, 64px) 0 0;
    color: rgba(0,106,112,.82);
    animation-delay: 1.08s;
  }
  .hero__legal {
    gap: 12px;
  }
  .hero__company-ja,
  .hero__company-en {
    font-size: .96rem;
  }
  .hero__company-en::before {
    width: 18px;
    margin-right: 10px;
  }
  .hero__brand {
    font-size: .92rem;
  }
  .hero__scroll { display: none; }
  .hero::after {
    inset: -26% -46%;
    opacity: .40;
    animation-duration: 8.8s;
  }
  .hero__grid::before {
    opacity: .86;
    animation-name: hero-grid-breath-mobile;
  }
  .hero__glow {
    width: 78vw;
    right: -20vw;
    filter: blur(22px) saturate(1.05);
    animation-name: hero-glow-breath-mobile;
  }
  .hero__signals { width: 70vw; right: -14vw; top: 15%; opacity: .32; }
  .hero__symbol { width: min(250px, 58vw); opacity: .068; top: auto; right: -18vw; bottom: 7%; }
  .star.s4 { display: none; }
  .star.s1 { width: 16px; height: 16px; right: 10%; top: 14.5%; }
  .star.s2 { width: 10px; height: 10px; right: 50%; top: 16.5%; }
  .star.s3 { width: 8px; height: 8px; right: 6%; top: 48%; }
  .cards { grid-template-columns: 1fr; }
  .journey__manifesto {
    margin: clamp(44px, 13vw, 64px) 0;
  }
  .journey__title {
    font-size: 2.58rem;
    line-height: 1.12;
  }
  .journey__title-line--intro { font-size: .56em; }
  .journey__title-line--tail { padding-left: .42em; }
  .journey__lead-wrap { padding-top: 22px; }
  .journey__lead-label { margin-bottom: 14px; }
  .journey__chapter {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 30px;
  }
  .journey__chapters::before { left: 5px; }
  .journey__chapter::before { left: 0; }
  .journey__tag { font-size: .74rem; }
  .journey__closing {
    --closing-pad-x: 20px;
    border-radius: 0;
    padding-top: 32px;
    padding-bottom: 34px;
    gap: 24px;
  }
  .journey__closing-title {
    margin-bottom: 18px;
    font-size: clamp(1.62rem, 7vw, 1.78rem);
    line-height: 1.48;
  }
  .journey__closing-title span {
    display: block;
  }
  .journey__closing-title .nowrap {
    white-space: nowrap;
  }
  .journey__closing-body {
    max-width: 100%;
    font-size: .95rem;
    line-height: 2.02;
    color: rgba(245,246,244,.72);
  }
  .journey__closing-body > span {
    display: block;
  }
  .journey__closing-body > span + span {
    margin-top: .18em;
  }
  .network__visual { min-height: 360px; }
  .network__title .network__subtitle {
    font-size: clamp(1.42rem, 6vw, 1.6rem);
    line-height: 1.62;
  }
  .network__title .network__subtitle > span {
    display: block;
  }
  .network__art { object-position: 62% center; }
  .network__art-logo { left: 73%; top: 47%; width: clamp(46px, 13vw, 62px); }
  .network__logo-aura { left: 73%; top: 47%; width: clamp(72px, 22vw, 104px); }
  .network__flow--b { opacity: .24; }
  .network__flow--c { opacity: .22; }
  .network__glint { left: 73%; width: clamp(76px, 24vw, 112px); }
  .interlude {
    padding-block: clamp(112px, 30vw, 152px);
  }
  .interlude__quote {
    font-size: clamp(1.72rem, 7.4vw, 2rem);
    line-height: 1.72;
    letter-spacing: 0;
    max-width: min(100%, 15em);
  }
  html[lang="en"] .interlude__quote {
    max-width: min(100%, 13em);
    line-height: 1.42;
  }
  .interlude__quote span { white-space: nowrap; }
  .philosophy__big {
    font-size: clamp(1.38rem, 5.8vw, 1.62rem);
    line-height: 1.72;
    max-width: 100%;
  }
  .philosophy__line--desktop { display: none; }
  .philosophy__line--mobile { display: block; }
  .card__kanji { font-size: 2.75rem; }
  .founder__identity-copy { padding-top: 0; }
  .founder__name-jp { font-size: clamp(2.75rem, 13vw, 3.45rem); }
  html[lang="en"] .founder__name-jp { font-size: clamp(1.95rem, 7.2vw, 2.35rem); }
  .founder__portrait {
    width: min(350px, 86vw);
    border-radius: 18px;
  }
  .founder__message {
    margin-top: 34px;
  }
  .founder__message .founder__greeting { font-size: 1.42rem; }
  .journey-bridge {
    bottom: -58px;
    padding-inline: 18px;
    font-size: .88rem;
  }
  .journey-bridge__rail {
    height: 104px;
  }
  .journey::before {
    height: 112px;
  }
  .journey::after {
    top: 16px;
  }
  .contact__title {
    font-size: 2.28rem;
    line-height: 1.34;
  }
  .contact__title .contact__title-line--desktop {
    display: none;
  }
  .contact__title .contact__title-line--mobile {
    display: block;
  }
  .contact__title span {
    white-space: nowrap;
  }
  html[lang="en"] .contact__title {
    font-size: clamp(2.02rem, 8.6vw, 2.22rem);
    line-height: 1.22;
  }
  .footer__small {
    flex-wrap: wrap;
    row-gap: 4px;
    white-space: normal;
  }
}

@media (hover: none) and (pointer: coarse) {
  body::after,
  .site-breath,
  .site-breath::before,
  .site-breath::after,
  .home-atmosphere-canvas,
  .creative-flow-canvas {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  body.is-touch-scrolling::after,
  body.is-touch-scrolling .site-breath,
  body.is-touch-scrolling .site-breath::before,
  body.is-touch-scrolling .site-breath::after,
  body.is-touch-scrolling.creative-page .creative-hero::after,
  body.is-touch-scrolling .creative-entry__cta-state,
  body.is-touch-scrolling .creative-entry__cta-state::before {
    animation-play-state: paused !important;
  }
}

@media (min-width: 1120px) {
  .section-title { font-size: 3.05rem; }
  .hero__title { font-size: 7.6rem; }
  .hero__statement { font-size: 1.16rem; }
  .interlude__quote { font-size: 3.75rem; }
  .philosophy__big { font-size: 2.72rem; }
  .founder__name-jp { font-size: clamp(4.2rem, 6vw, 5.9rem); }
  .founder__message .founder__greeting { font-size: clamp(2rem, 2.7vw, 2.45rem); }
  .contact__title { font-size: 3.9rem; }
}

@media (min-width: 1440px) {
  .hero__title { font-size: 8.7rem; }
}

/* ===================================================
   UTC Creative — homepage entry and service page
   =================================================== */
.creative-entry {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(31,40,42,.07);
  border-bottom: 1px solid rgba(31,40,42,.07);
  background:
    linear-gradient(180deg, rgba(255,253,248,.96), rgba(250,249,245,.98)),
    url("assets/luxury-paper-texture.jpg"),
    var(--paper);
  background-size: auto, 900px auto, auto;
}
.creative-entry::before {
  content: none;
}
.creative-entry__link {
  display: block;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
}
.creative-entry__link:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(0,106,112,.42);
}
.creative-entry__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(500px, 41vw, 570px);
  padding-block: clamp(72px, 6.5vw, 94px);
}
.creative-entry__thread {
  position: absolute;
  inset: 0 var(--gutter) auto;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0,106,112,.72), rgba(7,155,152,.44) 58%, rgba(203,163,74,.78));
  transform-origin: left center;
}
.creative-entry__thread::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 92px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.92), rgba(203,163,74,.54) 44%, transparent 78%);
  opacity: 0;
  transform: translateX(-110px);
  transition: opacity .4s var(--ease);
}
.creative-entry__link:hover .creative-entry__thread::after,
.creative-entry__link:focus-visible .creative-entry__thread::after {
  opacity: .78;
  animation: creative-thread-run 1.7s var(--ease) both;
}
@keyframes creative-thread-run {
  from { transform: translateX(-110px); }
  to { transform: translateX(calc(100vw - 40px)); }
}
.creative-entry__copy {
  max-width: 1040px;
}
.creative-entry__label,
.creative-hero__kicker {
  margin: 0 0 clamp(22px, 2.4vw, 32px);
  color: var(--deep-teal);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.creative-entry__name {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 6.1vw, 5.7rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .9;
  color: var(--ink);
  transition: color .55s var(--ease), transform .7s var(--ease);
}
.creative-entry__statement {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .18em;
  margin: clamp(24px, 2.8vw, 38px) 0 0;
  font-family: var(--mincho);
  font-size: clamp(1.65rem, 2.15vw, 2.06rem);
  font-weight: 500;
  line-height: 1.58;
  color: var(--charcoal);
}
.creative-entry__statement span { display: inline; }
.creative-entry__statement .nowrap { white-space: nowrap; }
.creative-entry__lead {
  max-width: 72ch;
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 2;
}
.creative-entry__scope {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  margin: clamp(32px, 3.4vw, 46px) 0 0;
  padding: 0;
  list-style: none;
  color: rgba(31,40,42,.70);
  font-family: var(--serif);
  font-size: clamp(.96rem, 1.2vw, 1.16rem);
  font-weight: 500;
}
.creative-entry__scope li {
  position: relative;
  padding-right: clamp(24px, 3vw, 44px);
  margin-right: clamp(24px, 3vw, 44px);
}
.creative-entry__scope li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  background: rgba(203,163,74,.46);
  transform: translateY(-50%);
}
.creative-entry__cta {
  position: absolute;
  z-index: 3;
  top: clamp(126px, 10vw, 150px);
  right: var(--gutter);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: min(430px, 38vw);
  min-height: 118px;
  padding: 18px 0 16px;
  color: var(--ink);
}
.creative-entry__cta-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.creative-entry__cta-copy small {
  color: var(--deep-teal);
  font-family: var(--gothic);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.creative-entry__cta-copy strong {
  color: var(--ink);
  font-family: var(--mincho);
  font-size: clamp(1.22rem, 1.65vw, 1.48rem);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.3;
  white-space: nowrap;
  transition: color .45s var(--ease), transform .55s var(--ease);
}
html[lang="en"] .creative-entry__cta-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.7vw, 1.52rem);
  letter-spacing: 0;
}
.creative-entry__cta-state {
  position: relative;
  justify-self: start;
  margin-top: 2px;
  padding-bottom: 8px;
  color: var(--deep-teal);
  font-family: var(--gothic);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .45s var(--ease), transform .55s var(--ease);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .creative-entry__cta-state::before {
    content: attr(data-text);
    position: absolute;
    inset: 0 auto auto 0;
    z-index: 1;
    pointer-events: none;
    color: transparent;
    background-image: linear-gradient(
      108deg,
      transparent 0%,
      transparent 41%,
      rgba(51,131,132,.28) 44%,
      rgba(203,163,74,.74) 47%,
      rgba(255,255,255,.99) 49.5%,
      rgba(245,228,177,.96) 51%,
      rgba(203,163,74,.82) 54%,
      rgba(46,128,130,.24) 57%,
      transparent 61%,
      transparent 100%
    );
    background-size: 310% 100%;
    background-position: 135% center;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
  }
}
.creative-entry__cta-state::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 1px;
  background: var(--deep-teal);
  transform-origin: left center;
  opacity: .72;
  transition: width .55s var(--ease);
}
.creative-entry__cta-state.is-shimmer-intro {
  animation: creative-open-presence-intro 1.5s cubic-bezier(.2,.72,.24,1) .42s both;
}
.creative-entry__cta-state.is-shimmer-loop {
  animation: creative-open-presence-loop 3.8s linear infinite;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .creative-entry__cta-state.is-shimmer-intro::before {
    animation: creative-open-foil-intro 1.5s cubic-bezier(.2,.72,.24,1) .42s both;
  }
  .creative-entry__cta-state.is-shimmer-loop::before {
    animation: creative-open-foil-loop 3.8s linear infinite;
  }
}
@keyframes creative-open-foil-intro {
  0% {
    background-position: 135% center;
    opacity: 0;
  }
  12% {
    background-position: 128% center;
    opacity: 0;
  }
  27% {
    opacity: 1;
  }
  72% {
    background-position: -34% center;
    opacity: 1;
  }
  88%, 100% {
    background-position: -42% center;
    opacity: 0;
  }
}
@keyframes creative-open-foil-loop {
  0%, 57% {
    background-position: 135% center;
    opacity: 0;
  }
  62% {
    background-position: 128% center;
    opacity: 0;
  }
  68% {
    opacity: .82;
  }
  79% {
    background-position: -34% center;
    opacity: .82;
  }
  84%, 100% {
    background-position: -42% center;
    opacity: 0;
  }
}
@keyframes creative-open-presence-intro {
  0%, 12%, 88%, 100% {
    color: var(--deep-teal);
    text-shadow: none;
  }
  40%, 72% {
    color: #16797A;
    text-shadow:
      0 1px 0 rgba(255,255,255,.72),
      0 0 8px rgba(203,163,74,.22);
  }
}
@keyframes creative-open-presence-loop {
  0%, 57%, 84%, 100% {
    color: var(--deep-teal);
    text-shadow: none;
  }
  68%, 79% {
    color: #197879;
    text-shadow:
      0 1px 0 rgba(255,255,255,.54),
      0 0 7px rgba(203,163,74,.17);
  }
}
.creative-entry__link:hover .creative-entry__name,
.creative-entry__link:focus-visible .creative-entry__name {
  color: var(--deep-teal);
  transform: translateX(3px);
}
.creative-entry__link:hover .creative-entry__cta-copy strong,
.creative-entry__link:focus-visible .creative-entry__cta-copy strong {
  color: var(--deep-teal);
  transform: translateX(3px);
}
.creative-entry__link:hover .creative-entry__cta-state,
.creative-entry__link:focus-visible .creative-entry__cta-state {
  color: var(--bright-teal);
  animation: none;
  transform: translateX(3px);
}
.creative-entry__link:hover .creative-entry__cta-state::before,
.creative-entry__link:focus-visible .creative-entry__cta-state::before {
  animation: none;
  opacity: 0;
}
.creative-entry__link:hover .creative-entry__cta-state::after,
.creative-entry__link:focus-visible .creative-entry__cta-state::after {
  width: 34px;
  opacity: 1;
}

.creative-page main {
  position: relative;
  z-index: 10;
}
.creative-page .nav__creative {
  color: var(--deep-teal);
  font-weight: 600;
}
.creative-hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(132px, 13vw, 186px) 0 clamp(84px, 8vw, 118px);
  background:
    radial-gradient(54% 54% at 82% 58%, rgba(7,155,152,.075), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(250,249,245,.97)),
    url("assets/luxury-paper-texture.jpg"),
    var(--paper);
  background-size: auto, auto, 980px auto, auto;
}
.creative-hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(31,40,42,.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31,40,42,.020) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.80), transparent 88%);
  opacity: .72;
}
.creative-hero__watermark {
  position: absolute;
  right: clamp(-90px, -3vw, -24px);
  bottom: clamp(-126px, -7vw, -74px);
  z-index: -1;
  width: clamp(310px, 38vw, 620px);
  opacity: .033;
  pointer-events: none;
}
.creative-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: clamp(60px, 8vw, 132px);
  align-items: center;
}
.creative-hero__copy { max-width: 790px; }
.creative-hero__name {
  display: grid;
  gap: 14px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: 0;
}
.creative-hero__name span,
.creative-hero__name small { display: block; }
.creative-hero__name small {
  color: rgba(31,40,42,.54);
  font-size: .62em;
  font-weight: 400;
  line-height: 1;
}
.creative-hero__statement {
  display: grid;
  gap: .08em;
  max-width: 28ch;
  margin: clamp(42px, 5vw, 66px) 0 0;
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 1px solid rgba(0,106,112,.22);
  font-family: var(--mincho);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.58;
  color: var(--charcoal);
}
.creative-hero__statement span { display: block; }
.creative-hero__statement .nowrap { white-space: nowrap; }
.creative-hero__lead {
  max-width: 58ch;
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 2;
}
.creative-copy-phrase,
.creative-heading__phrase { display: inline-block; }
.creative-hero__index {
  display: grid;
  border-top: 1px solid rgba(31,40,42,.11);
  border-bottom: 1px solid rgba(31,40,42,.11);
}
.creative-hero__index > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(31,40,42,.08);
}
.creative-hero__index > div:last-child { border-bottom: 0; }
.creative-hero__index b {
  color: var(--deep-teal);
  font-family: var(--numeric);
  font-size: .72rem;
  font-variant-numeric: tabular-nums;
}
.creative-hero__index span {
  display: block;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}
.creative-hero__index small {
  display: block;
  margin-top: 6px;
  color: rgba(77,86,87,.82);
  font-family: var(--gothic);
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.55;
}
.creative-hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(31,40,42,.40);
  font-family: var(--serif);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.creative-hero__scroll::after {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,106,112,.72), rgba(203,163,74,.62));
}
.creative-two-col {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(56px, 8vw, 132px);
  align-items: start;
}
.creative-heading {
  max-width: 13.5em;
  margin: 0;
  font-family: var(--mincho);
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0;
  text-wrap: balance;
}
.creative-heading--wide { max-width: 16em; }
.creative-heading__line { display: block; }
.creative-copy {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 2.12;
}
.creative-copy p { margin: 0 0 1.35em; }
.creative-copy p:last-child { margin-bottom: 0; }
.creative-copy--intro { margin-top: clamp(30px, 3.5vw, 50px); }
.creative-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(72px, 8vw, 118px);
  border-top: 1px solid rgba(31,40,42,.12);
  border-bottom: 1px solid rgba(31,40,42,.12);
}
.creative-signals article {
  min-height: 230px;
  padding: clamp(30px, 3.5vw, 50px);
}
.creative-signals article + article { border-left: 1px solid rgba(31,40,42,.10); }
.creative-signals span,
.creative-foundations__en {
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.3;
}
.creative-signals h3 {
  margin: 24px 0 14px;
  font-family: var(--mincho);
  font-size: 1.5rem;
  font-weight: 500;
}
.creative-signals p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.9;
}
.creative-why,
.creative-continuity {
  background: rgba(255,253,248,.72);
}
.creative-approach,
.creative-closing {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(48% 52% at 78% 34%, rgba(7,155,152,.17), transparent 72%),
    linear-gradient(135deg, rgba(0,106,112,.12), rgba(17,20,22,.97) 46%, rgba(15,19,21,.995)),
    url("assets/luxury-dark-texture.jpg"),
    var(--charcoal);
  background-size: auto, auto, 820px auto, auto;
}
.creative-approach .eyebrow,
.creative-closing .eyebrow { color: #8fded9; }
.creative-approach .eyebrow .num,
.creative-closing .eyebrow .num { color: #E3BA60; }
.creative-dark__mark {
  position: absolute;
  right: -9vw;
  bottom: -22%;
  width: min(54vw, 760px);
  opacity: .035;
  pointer-events: none;
}
.creative-two-col--dark { align-items: center; }
.creative-two-col--dark .creative-copy { color: rgba(250,249,245,.68); }
.creative-process {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(250,249,245,.16);
  border-bottom: 1px solid rgba(250,249,245,.16);
}
.creative-process li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(250,249,245,.12);
}
.creative-process li:last-child { border-bottom: 0; }
.creative-process b {
  color: #E3BA60;
  font-family: var(--numeric);
  font-size: .78rem;
  font-variant-numeric: tabular-nums;
}
.creative-process h3 {
  margin: 0 0 8px;
  font-family: var(--mincho);
  font-size: 1.24rem;
  font-weight: 500;
}
.creative-process p {
  margin: 0;
  color: rgba(250,249,245,.62);
  font-size: .9rem;
  line-height: 1.85;
}
.creative-structure {
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(246,247,243,.88)),
    url("assets/luxury-paper-texture.jpg");
  background-size: auto, 900px auto;
}
.creative-foundations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(72px, 8vw, 118px);
  border-top: 1px solid rgba(31,40,42,.12);
  border-bottom: 1px solid rgba(31,40,42,.12);
}
.creative-foundations article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  min-height: 420px;
  padding: clamp(36px, 4vw, 58px);
}
.creative-foundations article + article { border-left: 1px solid rgba(31,40,42,.10); }
.creative-foundations__num {
  display: block;
  color: var(--gold);
  font-family: var(--numeric);
  font-size: .76rem;
  font-weight: 600;
}
.creative-foundations__en { margin: 52px 0 0; }
.creative-foundations h3 {
  margin: 18px 0 22px;
  font-family: var(--mincho);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.5;
}
.creative-foundations article > p:not(.creative-foundations__en) {
  margin: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 2;
}
.creative-foundations small {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,106,112,.18);
  color: rgba(0,106,112,.82);
  font-family: var(--serif);
  font-size: .82rem;
  line-height: 1.45;
  letter-spacing: .045em;
}
.creative-intelligence {
  color: var(--paper);
  background:
    radial-gradient(44% 52% at 76% 48%, rgba(203,163,74,.12), transparent 72%),
    linear-gradient(145deg, rgba(0,106,112,.22), rgba(17,20,22,.96) 58%),
    url("assets/luxury-dark-texture.jpg"),
    var(--charcoal);
  background-size: auto, auto, 820px auto, auto;
}
.creative-intelligence .eyebrow { color: #8fded9; }
.creative-intelligence .eyebrow .num { color: #E3BA60; }
.creative-intelligence__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: center;
}
.creative-intelligence__copy {
  color: rgba(250,249,245,.70);
  font-size: 1rem;
  line-height: 2.05;
}
.creative-intelligence__copy > p { margin: 0 0 1.4em; }
.creative-intelligence__points {
  display: grid;
  margin-top: clamp(38px, 4vw, 58px);
  border-top: 1px solid rgba(250,249,245,.16);
  border-bottom: 1px solid rgba(250,249,245,.16);
}
.creative-intelligence__points span {
  padding: 18px 0;
  border-bottom: 1px solid rgba(250,249,245,.11);
  color: var(--paper);
  font-family: var(--mincho);
  font-size: 1.08rem;
}
.creative-intelligence__points span:last-child { border-bottom: 0; }
.creative-engagement {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(72px, 8vw, 112px);
  border-top: 1px solid rgba(31,40,42,.12);
  border-bottom: 1px solid rgba(31,40,42,.12);
}
.creative-engagement span {
  min-height: 140px;
  padding: 30px clamp(24px, 3vw, 42px);
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.85;
}
.creative-engagement span + span { border-left: 1px solid rgba(31,40,42,.10); }
.creative-engagement b {
  display: block;
  margin-bottom: 16px;
  color: var(--deep-teal);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}
.creative-closing { padding: clamp(130px, 13vw, 210px) 0 0; }
.creative-dark__mark--closing {
  right: -4vw;
  bottom: -28%;
  width: min(58vw, 820px);
}
.creative-closing__title {
  max-width: 11em;
  margin: 0;
  font-family: var(--mincho);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
}
.creative-closing__title span { display: block; }
.creative-closing__lead {
  display: grid;
  gap: .18em;
  max-width: 54ch;
  margin: clamp(42px, 5vw, 70px) 0 0;
  color: rgba(250,249,245,.70);
  font-size: 1rem;
  line-height: 2;
}
.creative-closing__lead span { display: block; }
.creative-closing__invitation {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  max-width: 760px;
  margin-top: clamp(76px, 8vw, 120px);
  padding-top: 30px;
  border-top: 1px solid rgba(250,249,245,.18);
}
.creative-closing__invitation > span {
  color: #8fded9;
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 600;
}
.creative-closing__invitation p {
  margin: 0;
  color: rgba(250,249,245,.66);
  font-size: .94rem;
  line-height: 2;
}
.creative-closing__afterglow {
  position: relative;
  height: 1px;
  width: 100%;
  margin-top: clamp(112px, 11vw, 168px);
  overflow: hidden;
  background: rgba(250,249,245,.12);
}
.creative-closing__afterglow span {
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(72px, 14vw, 164px);
  background: rgba(143,222,217,.84);
  box-shadow: 0 0 14px rgba(143,222,217,.42);
  opacity: 0;
  transform: translate3d(-130%, 0, 0);
}
@supports (animation-timeline: view()) {
  .creative-closing__afterglow span {
    animation: creative-afterglow-pass 1ms linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 82%;
  }
}
@keyframes creative-afterglow-pass {
  0% { opacity: 0; transform: translate3d(-130%, 0, 0); }
  12% { opacity: .16; }
  34% { opacity: .88; }
  78% { opacity: .22; }
  100% { opacity: 0; transform: translate3d(calc(100vw - 20px), 0, 0); }
}
.creative-mobile-break { display: none; }

html[lang="en"] .creative-entry__statement,
html[lang="en"] .creative-hero__statement,
html[lang="en"] .creative-heading,
html[lang="en"] .creative-signals h3,
html[lang="en"] .creative-process h3,
html[lang="en"] .creative-foundations h3,
html[lang="en"] .creative-intelligence__points span,
html[lang="en"] .creative-closing__title {
  font-family: var(--serif);
}
html[lang="en"] .creative-entry__statement { line-height: 1.32; }
html[lang="en"] .creative-heading { line-height: 1.12; }
html[lang="en"] .creative-hero__statement { max-width: 21ch; line-height: 1.28; }
html[lang="en"] .creative-foundations h3 { line-height: 1.22; }
html[lang="en"] .creative-closing__title { line-height: 1.02; }

html[lang="ja"] .creative-page p,
html[lang="ja"] .creative-page h2,
html[lang="ja"] .creative-page h3 {
  word-break: auto-phrase;
  text-wrap: pretty;
}

@media (max-width: 1100px) {
  .creative-entry__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .creative-entry__cta {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 430px);
    margin-top: 38px;
  }
  .creative-hero__layout,
  .creative-two-col,
  .creative-intelligence__layout {
    grid-template-columns: 1fr;
  }
  .creative-hero__layout { gap: 64px; }
  .creative-hero__index { max-width: 700px; }
  .creative-two-col { gap: 44px; }
  .creative-intelligence__layout { gap: 52px; }
  .creative-foundations article { min-height: 470px; }
}

@media (max-width: 680px) {
  .creative-entry__inner {
    padding-block: clamp(84px, 24vw, 116px);
  }
  .creative-entry__thread { inset-inline: var(--gutter); }
  .creative-entry__name { font-size: clamp(3.35rem, 16vw, 4.15rem); }
  .creative-entry__statement {
    display: grid;
    gap: .08em;
    font-size: clamp(1.42rem, 6.2vw, 1.68rem);
    line-height: 1.62;
  }
  .creative-entry__statement span { display: block; }
  .creative-entry__lead { font-size: .92rem; line-height: 1.95; }
  .creative-entry__scope {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    border-top: 1px solid rgba(31,40,42,.10);
  }
  .creative-entry__scope li {
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid rgba(31,40,42,.08);
    font-size: .92rem;
  }
  .creative-entry__scope li:nth-child(even) { padding-left: 20px; border-left: 1px solid rgba(31,40,42,.08); }
  .creative-entry__scope li:last-child { grid-column: 1 / -1; }
  .creative-entry__scope li::after { display: none; }
  .creative-entry__cta {
    width: 100%;
    min-height: 104px;
    margin-top: clamp(54px, 16vw, 64px);
    padding: 0 0 22px;
  }
  .creative-entry__cta-copy { gap: 9px; }
  .creative-entry__cta-copy small { font-size: .62rem; }
  .creative-entry__cta-copy strong { font-size: 1.28rem; }
  html[lang="en"] .creative-entry__cta-copy strong { font-size: 1.34rem; }
  .creative-entry__cta-state {
    margin-top: 1px;
    font-size: .64rem;
  }

  .creative-hero {
    min-height: auto;
    padding-top: max(116px, calc(env(safe-area-inset-top) + 104px));
    padding-bottom: 78px;
  }
  .creative-hero__layout { gap: 48px; }
  .creative-hero__kicker { margin-bottom: 24px; }
  .creative-hero__name {
    gap: 10px;
    font-size: clamp(3.6rem, 17vw, 4.5rem);
    line-height: .9;
  }
  .creative-hero__name small { font-size: .48em; }
  .creative-hero__statement {
    max-width: 100%;
    margin-top: 38px;
    padding-top: 26px;
    font-size: clamp(1.44rem, 6.5vw, 1.76rem);
    line-height: 1.62;
  }
  .creative-hero__lead { font-size: .92rem; line-height: 1.95; }
  .creative-hero__index > div { padding: 14px 0; }
  .creative-hero__index span { font-size: 1rem; }
  .creative-hero__index small { display: none; }
  .creative-hero__scroll { display: none; }
  .creative-hero__watermark { width: 76vw; right: -32vw; bottom: 4%; }

  .creative-heading { font-size: clamp(2.2rem, 10.5vw, 2.85rem); line-height: 1.44; }
  .creative-copy { font-size: .95rem; line-height: 2.02; }
  .creative-signals,
  .creative-foundations,
  .creative-engagement { grid-template-columns: 1fr; }
  .creative-signals article {
    min-height: 0;
    padding: 34px 0;
  }
  .creative-signals article + article { border-left: 0; border-top: 1px solid rgba(31,40,42,.10); }
  .creative-process li { grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; }
  .creative-process h3 { font-size: 1.16rem; }
  .creative-process p { font-size: .86rem; }
  .creative-foundations article {
    min-height: 0;
    padding: 42px 0 46px;
  }
  .creative-foundations article + article { border-left: 0; border-top: 1px solid rgba(31,40,42,.10); }
  .creative-foundations__en { margin-top: 30px; }
  .creative-foundations h3 { font-size: 1.46rem; }
  .creative-foundations small { margin-top: 28px; padding-top: 18px; }
  .creative-intelligence__points span { font-size: 1rem; }
  .creative-engagement span {
    min-height: 0;
    padding: 28px 0;
  }
  .creative-engagement span + span { border-left: 0; border-top: 1px solid rgba(31,40,42,.10); }
  .creative-closing { padding: 112px 0 0; }
  .creative-closing__title { font-size: clamp(3.15rem, 14vw, 4rem); line-height: 1.22; }
  .creative-closing__lead { font-size: .92rem; }
  .creative-closing__lead span { display: inline; }
  .creative-closing__invitation {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 68px;
  }
  .creative-closing__invitation p { font-size: .9rem; }
  .creative-closing__afterglow { margin-top: 100px; }
  .creative-dark__mark { width: 96vw; right: -40vw; bottom: -6%; }
  .creative-dark__mark--closing { bottom: -8%; }
  .creative-mobile-break { display: block; }

  html[lang="en"] .creative-entry__statement,
  html[lang="en"] .creative-hero__statement { line-height: 1.3; }
  html[lang="en"] .creative-heading { line-height: 1.08; }
  html[lang="en"] .creative-closing__title { line-height: 1; }
}

/* ===================================================
   Luxury FX — 箔押し / 墨入れ / 落款 / 金糸
   =================================================== */

/* 1. 金文字の箔押し（一度だけ光が走る） */
.hero__title .accent,
.philosophy__big .gold,
.interlude__quote em {
  background: linear-gradient(115deg,
    #B98F3C 0%, #CBA34A 18%, #E9BE62 34%, #FFE9A8 46%, #F7C95F 54%, #CBA34A 72%, #A97F2E 100%);
  background-size: 280% 100%;
  background-position: 118% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  transition: background-position 2.1s var(--ease);
}
/* ヒーローの「宝。」は、初回だけ静かな箔の反射を通す */
.hero__title .accent {
  background-size: 320% 100%;
  background-position: 118% 0;
  transition: none;
}
.hero__title .line:nth-child(2) > .accent {
  animation:
    reveal-up 1.1s var(--ease) .52s forwards,
    hero-foil-arrival 1.45s cubic-bezier(.16, 1, .3, 1) 1.55s both;
}
@keyframes hero-foil-arrival {
  0% { background-position: 118% 0; }
  46% { background-position: 54% 0; }
  100% { background-position: 18% 0; }
}
.philosophy__big .gold { transition-delay: .7s; }
.interlude__quote em { transition-delay: .9s; }
.philosophy__big.in .gold,
.interlude__quote.in em {
  background-position: 18% 0;
}

/* 2. 見出しの墨入れリビール（左から筆が入る） */
.philosophy__phrase,
.journey__title-line {
  clip-path: inset(-0.3em 100% -0.3em -0.15em);
  transition: clip-path 1.15s var(--ease);
}
.reveal.in .philosophy__phrase,
.reveal.in .journey__title-line {
  clip-path: inset(-0.3em -0.15em -0.3em -0.15em);
}
.reveal.in .philosophy__line:nth-child(1) .philosophy__phrase:nth-of-type(2) { transition-delay: .26s; }
.reveal.in .philosophy__line:nth-child(2) .philosophy__phrase:nth-of-type(1) { transition-delay: .52s; }
.reveal.in .philosophy__line:nth-child(2) .philosophy__phrase:nth-of-type(2) { transition-delay: .78s; }
.reveal.in .journey__title-line--core { transition-delay: .28s; }
.reveal.in .journey__title-line--tail { transition-delay: .56s; }

/* 8. Interludeの金糸ライン（縁が引かれる） */
.interlude__quote::after {
  content: "";
  display: block;
  width: min(340px, 64%);
  height: 1px;
  margin: clamp(30px, 4vw, 48px) auto 0;
  background: linear-gradient(90deg,
    rgba(203,163,74,.06), rgba(203,163,74,.82) 28%, #F7C95F 50%, rgba(203,163,74,.82) 72%, rgba(203,163,74,.06));
  opacity: .85;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.9s var(--ease) .55s;
}
.interlude__quote.in::after {
  transform: scaleX(1);
  animation:
    gold-thread-glint 2.4s ease-out 2.3s 1,
    heartbeat-soft var(--pulse-cycle) ease-in-out 4.9s infinite;
}
@keyframes gold-thread-glint {
  0% { filter: brightness(1); }
  32% { filter: brightness(1.7) drop-shadow(0 0 7px rgba(247,201,95,.55)); }
  100% { filter: brightness(1); }
}

/* ===================================================
   Heartbeat — サイト共通の鼓動（トク、トク…休のリズム）
   =================================================== */

/* 明滅系の共通鼓動（opacityのみ・低負荷） */
@keyframes heartbeat-soft {
  0%, 34%, 100% { opacity: .85; }
  6% { opacity: 1; }
  14% { opacity: .88; }
  20% { opacity: .96; }
}

/* セクション番号の鼓動ドット */
.eyebrow::after {
  content: "";
  align-self: center;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(203,163,74,.4);
  animation: heartbeat-dot var(--pulse-cycle) ease-in-out infinite;
}
@keyframes heartbeat-dot {
  0%, 34%, 100% { opacity: .38; transform: scale(1); }
  6% { opacity: .95; transform: scale(1.5); }
  14% { opacity: .48; transform: scale(1); }
  20% { opacity: .8; transform: scale(1.3); }
}

/* Founder額装の金縁がほのかに照る */
@keyframes frame-breath {
  0%, 34%, 100% { border-color: rgba(203,163,74,.44); }
  6% { border-color: rgba(203,163,74,.74); }
  14% { border-color: rgba(203,163,74,.50); }
  20% { border-color: rgba(203,163,74,.64); }
}
.founder__portrait,
.founder__portrait::after {
  animation: none;
}

/* 金箔は到達時の一度だけ。常時の照り返しは行わない。 */
.philosophy__big.in .gold,
.interlude__quote.in em {
  animation: none;
}

/* Invitationの線を、一拍おきに光が渡る */
@keyframes invitation-heartbeat {
  0% { opacity: 0; transform: translateX(-120%); }
  7% { opacity: .5; }
  30% { opacity: 0; transform: translateX(320%); }
  100% { opacity: 0; transform: translateX(320%); }
}
.contact__invitation-line.in::after {
  animation: invitation-glint 1.55s cubic-bezier(.28, 0, .2, 1) .28s 1 both;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-delay: 0s !important; transition-duration: .001s !important; }
  .site-breath,
  .home-atmosphere-canvas,
  body::after { display: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero__title .line > span { transform: none; }
  .loader.is-complete .loader__star { transform: translate(-50%, -50%) rotate(0deg) scale(.9); }
  .philosophy__phrase,
  .journey__title-line { clip-path: none; }
  .interlude__quote::after { transform: scaleX(1); }
  .work__creed::before { transform: scaleY(1); }
  .founder__portrait img { transform: none; }
  .founder__portrait::before { opacity: .32; }
  .eyebrow::after,
  .founder__portrait,
  .founder__portrait::after,
  .interlude__quote.in::after,
  .interlude__quote.in em,
  .philosophy__big.in .gold,
  .network__mote,
  .signal-line::after,
  .contact__invitation-line.in::after,
  .footer::before,
  .creative-entry__cta-state,
  .creative-entry__cta-state::before,
  .creative-entry__cta-state::after,
  .creative-closing__afterglow span { animation: none !important; }
  .creative-entry__cta-state::before { display: none; }
  .creative-closing__afterglow span { opacity: 0; }
}
