:root {
  --bg: #0b0b0a;
  --bg-soft: #12110f;
  --bg-elevated: #191714;
  --paper: #f2efe8;
  --paper-soft: #c6c0b5;
  --muted: #8f897f;
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.24);
  --accent: #b19563;
  --accent-2: #d2bf96;
  --danger: #ff614f;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-smooth: cubic-bezier(.76,0,.24,1);
  --page-pad: clamp(22px, 4vw, 72px);
  --radius: 26px;
  --radius-sm: 16px;
  --header-h: 88px;
  --mx: 50vw;
  --my: 50vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(900px circle at var(--mx) var(--my), rgba(177,149,99,.065), transparent 42%),
    var(--bg);
  font-family: Manrope, "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 10002;
  background: var(--paper);
  color: var(--bg);
  padding: 12px 16px;
  border-radius: 999px;
  transition: top .25s ease;
}
.skip-link:focus { top: 16px; }

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: #090908;
  transition: visibility 0s linear 1.05s;
}
.loader::before,
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
}
.loader::before { opacity: .22; }
.loader__inner { width: min(520px, calc(100vw - 48px)); }
.loader__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.loader__brand {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.06em;
}
.loader__count { font-variant-numeric: tabular-nums; color: var(--muted); }
.loader__track { height: 1px; background: rgba(255,255,255,.18); overflow: hidden; }
.loader__bar { height: 100%; width: 0; background: var(--paper); }
.is-loaded .loader { pointer-events: none; visibility: hidden; }
.is-loaded .loader__inner { opacity: 0; transform: translateY(-18px); transition: .55s var(--ease-out); }
.is-loaded .loader::before { transform: translateY(0); transition: transform .7s .12s var(--ease-smooth); }
.is-loaded .loader::after { transform: translateY(-100%); transition: transform .72s .3s var(--ease-smooth); }

/* Cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}
.cursor-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; mix-blend-mode: difference; }
.cursor-ring {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), background .35s, border-color .35s;
  mix-blend-mode: difference;
}
.cursor-ring span {
  opacity: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: opacity .2s;
}
.cursor-ring.is-active { width: 82px; height: 82px; background: #fff; border-color: #fff; color: #000; mix-blend-mode: normal; }
.cursor-ring.is-active span { opacity: 1; }
.cursor-ring.is-link { width: 68px; height: 68px; background: rgba(255,255,255,.12); }
@media (pointer: coarse), (max-width: 900px) { .cursor-dot, .cursor-ring { display: none !important; } }

/* Shared */
.shell { width: 100%; max-width: 1624px; padding-inline: var(--page-pad); margin-inline: auto; }
.section { position: relative; padding: clamp(110px, 14vw, 220px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.section-heading {
  margin: 26px 0 0;
  max-width: 1000px;
  font-size: clamp(50px, 7.4vw, 124px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 500;
}
.section-heading .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.42);
  text-stroke: 1px rgba(255,255,255,.42);
}
.section-copy {
  max-width: 690px;
  color: var(--paper-soft);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.85;
}
.kicker { color: var(--accent-2); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(44px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(30px); }
[data-stagger].is-visible > * { animation: item-in .8s var(--ease-out) forwards; animation-delay: calc(var(--i, 0) * 90ms); }
@keyframes item-in { to { opacity: 1; transform: none; } }
.split-line { display: block; overflow: hidden; }
.split-line > span { display: block; transform: translateY(110%); }
.is-loaded .hero .split-line > span,
.is-loaded .contact-title .split-line > span { transform: translateY(0); transition: transform 1.15s var(--ease-out); transition-delay: calc(.48s + var(--i, 0) * 120ms); }

.magnetic { display: inline-flex; will-change: transform; }
.circle-link {
  width: 154px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  position: relative;
  overflow: hidden;
  transition: border-color .35s;
}
.circle-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--paper);
  transform: scale(0);
  transition: transform .55s var(--ease-out);
}
.circle-link span, .circle-link svg { position: relative; z-index: 1; transition: color .35s, transform .35s; }
.circle-link svg { width: 18px; }
.circle-link:hover { border-color: var(--paper); }
.circle-link:hover::before { transform: scale(1); }
.circle-link:hover { color: var(--bg); }
.circle-link:hover svg { transform: translate(3px,-3px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s, backdrop-filter .35s, transform .45s var(--ease-out), border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(11,11,10,.78); backdrop-filter: blur(20px); border-color: rgba(255,255,255,.08); }
.site-header.is-hidden { transform: translateY(-105%); }
.header-inner { width: min(1540px, calc(100% - 44px)); margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; letter-spacing: -.055em; justify-self: start; }
.wordmark__mark { width: 24px; height: 24px; position: relative; transform: rotate(45deg); border: 1px solid var(--accent-2); }
.wordmark__mark::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); inset: 50% auto auto 50%; transform: translate(-50%,-50%); }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a { color: var(--paper-soft); font-size: 12px; font-weight: 700; letter-spacing: .05em; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--paper); transition: right .35s var(--ease-out); }
.desktop-nav a:hover { color: var(--paper); }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.lang-switch { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.lang-switch:hover { color: var(--paper); }
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.header-cta:hover { background: var(--paper); color: var(--bg); }
.menu-button { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 0; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 1px; background: var(--paper); margin: 7px auto; transition: transform .35s, opacity .35s; }
.menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .75s var(--ease-smooth), visibility 0s linear .75s;
}
.menu-open .mobile-menu { visibility: visible; clip-path: inset(0); transition: clip-path .75s var(--ease-smooth); }
.mobile-menu__nav { display: grid; gap: 8px; text-align: center; }
.mobile-menu__nav a { font-size: clamp(46px, 11vw, 100px); line-height: .95; letter-spacing: -.07em; font-weight: 600; transform: translateY(40px); opacity: 0; }
.menu-open .mobile-menu__nav a { animation: mobile-link .7s var(--ease-out) forwards; animation-delay: calc(.28s + var(--i) * 80ms); }
@keyframes mobile-link { to { transform: none; opacity: 1; } }
.mobile-menu__meta { position: absolute; left: var(--page-pad); right: var(--page-pad); bottom: 28px; display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.scroll-progress { position: fixed; top: 0; left: 0; z-index: 999; height: 2px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--accent); }

/* Hero */
.hero { min-height: 100svh; position: relative; display: flex; align-items: end; padding: calc(var(--header-h) + 50px) 0 42px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  width: min(74vw, 1080px);
  aspect-ratio: 1;
  border-radius: 50%;
  top: -36%;
  right: -12%;
  background: radial-gradient(circle at 35% 35%, rgba(177,149,99,.20), rgba(177,149,99,.045) 38%, transparent 68%);
  filter: blur(10px);
  animation: ambient 12s ease-in-out infinite alternate;
}
@keyframes ambient { to { transform: translate(-6%, 8%) scale(1.08); } }
.hero-grid { width: 100%; display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); align-items: end; gap: clamp(28px, 5vw, 90px); }
.hero-copy { position: relative; z-index: 3; padding-bottom: 6px; }
.hero-kicker { margin-bottom: clamp(28px, 4vw, 58px); opacity: 0; }
.is-loaded .hero-kicker { opacity: 1; transition: opacity .8s .85s; }
.hero-title { margin: 0; font-size: clamp(58px, 8.5vw, 142px); line-height: .88; letter-spacing: -.072em; font-weight: 500; }
.hero-title .accent { color: var(--accent); }
.hero-title small { display: inline-block; font-size: .18em; letter-spacing: .03em; font-weight: 500; vertical-align: top; margin: .45em 0 0 .5em; color: var(--muted); }
.hero-bottom { margin-top: clamp(42px, 6vw, 84px); display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.hero-intro { max-width: 480px; margin: 0; color: var(--paper-soft); font-size: clamp(15px, 1.3vw, 19px); line-height: 1.8; opacity: 0; }
.is-loaded .hero-intro { opacity: 1; transition: opacity 1s 1.05s; }
.hero-scroll { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; opacity: 0; }
.is-loaded .hero-scroll { opacity: 1; transition: opacity .8s 1.25s; }
.hero-scroll__line { width: 70px; height: 1px; background: var(--line-strong); overflow: hidden; }
.hero-scroll__line::after { content: ""; display: block; width: 40%; height: 100%; background: var(--paper); animation: scroll-line 1.9s ease-in-out infinite; }
@keyframes scroll-line { from { transform: translateX(-120%); } to { transform: translateX(280%); } }
.hero-visual-wrap { position: relative; min-height: min(72vh, 760px); perspective: 1200px; opacity: 0; transform: translateY(50px) scale(.95); }
.is-loaded .hero-visual-wrap { opacity: 1; transform: none; transition: opacity 1.1s .65s var(--ease-out), transform 1.2s .65s var(--ease-out); }
.hero-visual {
  position: absolute;
  inset: 0;
  border-radius: 5px;
  overflow: hidden;
  background: #111;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 38px 90px rgba(0,0,0,.28);
}
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,6,.04), rgba(7,7,6,.58)); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 50%; transform: scale(1.05); filter: saturate(.76) contrast(1.03); will-change: transform; }
.hero-orbit {
  display: none;
  position: absolute;
  z-index: 2;
  width: 134px;
  aspect-ratio: 1;
  right: -42px;
  top: 22%;
  border-radius: 50%;
  background: var(--paper);
  color: var(--bg);
  display: grid;
  place-items: center;
  animation: spin 16s linear infinite;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.hero-orbit svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-orbit__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-stamp { position: absolute; z-index: 3; left: 28px; bottom: 28px; display: flex; gap: 10px; align-items: center; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.hero-stamp::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #74ff8a; box-shadow: 0 0 0 7px rgba(116,255,138,.12); }

/* Marquee */
.marquee-section { position: relative; border-block: 1px solid var(--line); overflow: hidden; background: rgba(255,255,255,.015); }
.marquee { display: flex; width: max-content; padding: 19px 0; animation: marquee 24s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 30px; padding-right: 30px; font-size: clamp(17px, 1.6vw, 25px); letter-spacing: -.04em; white-space: nowrap; color: var(--paper-soft); }
.marquee i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* About */
.about-layout { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: clamp(60px, 12vw, 180px); align-items: start; }
.about-sticky { position: sticky; top: calc(var(--header-h) + 40px); }
.about-index { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; border-top: 1px solid var(--line); padding-top: 14px; }
.about-title { margin: 36px 0 0; font-size: clamp(52px, 6.4vw, 104px); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
.about-title em { display: block; color: transparent; font-style: normal; -webkit-text-stroke: 1px rgba(255,255,255,.45); }
.about-content { padding-top: clamp(80px, 10vw, 150px); }
.about-lead { margin: 0 0 48px; font-size: clamp(25px, 2.7vw, 43px); line-height: 1.45; letter-spacing: -.035em; font-weight: 500; }
.about-lead .soft { color: var(--muted); }
.about-content .section-copy { margin-left: auto; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 90px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--bg); padding: clamp(24px, 3vw, 42px); min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; }
.stat__value { font-size: clamp(44px, 6vw, 82px); line-height: 1; letter-spacing: -.07em; }
.stat__label { color: var(--muted); font-size: 12px; line-height: 1.55; }

/* Projects */
.projects {
  background: #eeeae1;
  color: var(--bg);
  overflow: clip;
}
.projects .eyebrow { color: #6e685f; }
.projects-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(42px, 8vw, 140px);
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 118px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(11,11,10,.18);
}
.works-title {
  margin: 24px 0 0;
  font-size: clamp(58px, 8.2vw, 132px);
  line-height: .9;
  letter-spacing: -.072em;
  font-weight: 500;
}
.works-title span { color: var(--accent); }
.projects-intro { justify-self: end; max-width: 420px; }
.projects-intro p { margin: 0; color: #555149; font-size: clamp(14px, 1.15vw, 17px); line-height: 1.9; }
.projects-intro > span { display: block; margin-top: 30px; color: #827b70; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.works-showcase {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(430px, 1.08fr);
  gap: clamp(46px, 7vw, 120px);
  align-items: start;
}
.works-preview { position: sticky; top: calc(var(--header-h) + 32px); }
.works-preview__frame {
  position: relative;
  aspect-ratio: 1.18;
  overflow: hidden;
  background: #d7d1c5;
  box-shadow: 0 26px 65px rgba(32,28,22,.12);
}
.works-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(.88) contrast(1.02);
  transition: opacity .28s ease, transform 1.1s var(--ease-out), filter .45s ease;
}
.works-preview__frame:hover .works-preview__image { transform: scale(1.045); filter: saturate(1) contrast(1.02); }
.works-preview__image.is-changing { opacity: 0; transform: scale(1.035); }
.works-preview__veil { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 62%, rgba(7,7,6,.46)); }
.works-preview__meta {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.9);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.works-list { border-top: 1px solid rgba(11,11,10,.25); }
.work-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) 42px;
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(11,11,10,.18);
  isolation: isolate;
  transition: padding .5s var(--ease-out), color .35s ease;
}
.work-row::before {
  content: "";
  position: absolute;
  inset: 0 -18px;
  z-index: -1;
  background: rgba(177,149,99,.11);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease-out);
}
.work-row:hover::before,
.work-row:focus-visible::before,
.work-row.is-active::before { transform: scaleY(1); }
.work-row:hover,
.work-row:focus-visible { padding-left: 12px; padding-right: 10px; }
.work-row__number { color: #8a8378; font-size: 10px; letter-spacing: .12em; font-variant-numeric: tabular-nums; }
.work-row__identity h3 {
  margin: 0;
  font-size: clamp(19px, 1.65vw, 27px);
  line-height: 1.25;
  letter-spacing: -.035em;
  font-weight: 500;
}
.work-row__identity span { display: block; margin-top: 9px; color: #777066; font-size: 9px; line-height: 1.5; letter-spacing: .12em; text-transform: uppercase; }
.work-row__arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(11,11,10,.23);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .35s, color .35s, transform .45s var(--ease-out);
}
.work-row__arrow svg { width: 14px; }
.work-row:hover .work-row__arrow,
.work-row:focus-visible .work-row__arrow,
.work-row.is-active .work-row__arrow { background: var(--bg); color: var(--paper); transform: rotate(45deg); }
.work-row__mobile-media { display: none; }
.projects-footer {
  margin-top: clamp(62px, 8vw, 110px);
  padding-top: 24px;
  border-top: 1px solid rgba(11,11,10,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.projects-footer > span { color: #7c756a; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.projects-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(11,11,10,.45);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.projects-link svg { width: 17px; transition: transform .35s var(--ease-out); }
.projects-link:hover svg { transform: translate(4px,-4px); }

/* Services */
.services-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; margin-bottom: 90px; }
.services-head .section-copy { justify-self: end; margin: 0; }
.services-list { border-top: 1px solid var(--line); }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0,1fr) minmax(240px,.75fr) 56px;
  gap: 30px;
  align-items: center;
  min-height: 158px;
  border-bottom: 1px solid var(--line);
  transition: padding .45s var(--ease-out), background .35s;
  overflow: hidden;
}
.service-row::before { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-101%); transition: transform .6s var(--ease-smooth); }
.service-row:hover::before { transform: translateX(0); }
.service-row > * { position: relative; z-index: 1; }
.service-row__number { color: var(--muted); font-size: 11px; }
.service-row__title { margin: 0; font-size: clamp(30px, 4.4vw, 66px); line-height: 1; letter-spacing: -.055em; font-weight: 500; }
.service-row__desc { color: var(--muted); font-size: 14px; line-height: 1.75; transition: color .35s; }
.service-row__icon { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: transform .4s var(--ease-out), border-color .35s; }
.service-row__icon svg { width: 18px; }
.service-row:hover .service-row__number,
.service-row:hover .service-row__desc { color: rgba(255,255,255,.75); }
.service-row:hover .service-row__icon { transform: rotate(45deg); border-color: rgba(255,255,255,.55); }

/* Process */
.process { background: var(--bg-soft); overflow: hidden; }
.process::before { content: "FLOW"; position: absolute; right: -2vw; top: 4vw; font-size: clamp(150px, 30vw, 520px); line-height: .7; letter-spacing: -.08em; font-weight: 800; color: rgba(255,255,255,.018); pointer-events: none; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); margin-top: 90px; }
.process-step { min-height: 380px; padding: 30px; border-right: 1px solid var(--line); position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.process-step:last-child { border-right: 0; }
.process-step__num { color: var(--accent-2); font-size: 11px; letter-spacing: .12em; }
.process-step__bottom h3 { margin: 0 0 22px; font-size: clamp(24px,2.4vw,38px); letter-spacing: -.04em; }
.process-step__bottom p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.process-step__line { position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px; background: var(--accent); transition: right .6s var(--ease-out); }
.process-step:hover .process-step__line { right: 0; }

/* CTA + Footer */
.cta { min-height: 92svh; display: grid; place-items: center; overflow: hidden; }
.cta::before { content: ""; position: absolute; width: min(80vw,1000px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.cta::after { content: ""; position: absolute; width: min(58vw,760px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-title { margin: 24px auto 50px; max-width: 1100px; font-size: clamp(58px, 8.8vw, 138px); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
.cta-title .accent { color: var(--accent); }
.cta-mail { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--line-strong); font-size: clamp(18px,2vw,29px); }
.cta-mail svg { width: 22px; transition: transform .35s; }
.cta-mail:hover svg { transform: translate(5px,-5px); }
.site-footer { padding: 0 var(--page-pad) 28px; }
.footer-line { border-top: 1px solid var(--line); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--paper); }


/* Japanese typography: quieter scale and more breathing room */
html[lang="ja"] .hero-title {
  font-size: clamp(50px, 7.25vw, 116px);
  line-height: .97;
  letter-spacing: -.058em;
}
html[lang="ja"] .hero-title small { margin-top: .6em; }
html[lang="ja"] .hero-intro { max-width: 510px; font-size: clamp(14px, 1.08vw, 17px); line-height: 2; }
html[lang="ja"] .about-lead { font-size: clamp(23px, 2.35vw, 37px); line-height: 1.62; letter-spacing: -.025em; }
html[lang="ja"] .section-copy { font-size: clamp(14px, 1.08vw, 17px); line-height: 2; }
html[lang="ja"] .service-row__title { font-size: clamp(28px, 3.55vw, 52px); }
html[lang="ja"] .service-row__desc { font-size: 13px; line-height: 1.9; }
html[lang="ja"] .cta-title { font-size: clamp(46px, 6.8vw, 102px); line-height: 1.02; letter-spacing: -.055em; }

/* Contact */
.contact-main { min-height: 100svh; padding-top: var(--header-h); }
.contact-hero { padding: clamp(90px, 10vw, 150px) 0 70px; }
.contact-title { margin: 30px 0 0; font-size: clamp(66px,12vw,190px); line-height: .78; letter-spacing: -.09em; font-weight: 600; }
.contact-title > .split-line:last-child > span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.5); }
.contact-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-top: 90px; }
.contact-intro p { max-width: 600px; margin: 0; color: var(--paper-soft); font-size: clamp(17px,1.7vw,24px); line-height: 1.8; }
.contact-status { justify-self: end; display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.contact-status i { width: 8px; height: 8px; border-radius: 50%; background: #76ff8c; box-shadow: 0 0 0 8px rgba(118,255,140,.12); }
.contact-form-section { padding: 70px 0 150px; }
.contact-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(50px,9vw,150px); }
.contact-aside { border-top: 1px solid var(--line); padding-top: 20px; }
.contact-aside h2 { margin: 0 0 60px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.contact-aside dl { margin: 0; display: grid; gap: 30px; }
.contact-aside dt { margin-bottom: 7px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.contact-aside dd { margin: 0; font-size: 14px; }
.modern-form { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 24px; }
.field { position: relative; padding-top: 20px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 11px; color: var(--muted); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; transition: color .25s; }
.field input, .field textarea, .field select {
  width: 100%;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0 0 18px;
  outline: 0;
  font-size: clamp(17px,1.5vw,22px);
  transition: border-color .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field:focus-within label { color: var(--accent-2); }
.field-honeypot { position: absolute !important; left: -9999px !important; }
.form-footer { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 30px; }
.form-note { max-width: 420px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.submit-button { width: 150px; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; position: relative; overflow: hidden; align-items: center; justify-content: center; gap: 8px; }
.submit-button::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--accent); transform: scale(0); transition: transform .45s var(--ease-out); }
.submit-button span, .submit-button svg { position: relative; z-index: 1; }
.submit-button svg { width: 18px; margin-left: 0; transition: transform .3s; }
.submit-button:hover::before { transform: scale(1); }
.submit-button:hover svg { transform: translate(4px,-4px); }
.submit-button[disabled] { cursor: wait; opacity: .65; }
.form-message { grid-column: 1 / -1; min-height: 24px; font-size: 13px; color: var(--paper-soft); }
.form-message.is-success { color: #8dffa0; }
.form-message.is-error { color: #ff8677; }

/* 404 */
.error-page { min-height: 100svh; display: grid; place-items: center; padding: var(--page-pad); text-align: center; }
.error-code { margin: 0; font-size: clamp(150px,31vw,520px); line-height: .65; letter-spacing: -.12em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.26); }
.error-copy { margin-top: 45px; color: var(--paper-soft); }
.error-back { margin-top: 34px; display: inline-flex; padding-bottom: 8px; border-bottom: 1px solid var(--line-strong); }

@media (max-width: 1100px) {
  :root { --header-h: 74px; }
  .desktop-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-actions { gap: 12px; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr .55fr; }
  .hero-visual-wrap { min-height: 57vh; }
  .hero-title { font-size: clamp(62px, 10vw, 112px); }
  .service-row { grid-template-columns: 50px minmax(0,1fr) 52px; }
  .service-row__desc { display: none; }

  .works-showcase { grid-template-columns: minmax(300px,.85fr) minmax(390px,1.15fr); gap: 42px; }
  .work-row { min-height: 102px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step { border-bottom: 1px solid var(--line); }
  .process-step:nth-child(2) { border-right: 0; }
}

@media (max-width: 760px) {
  :root { --page-pad: 20px; --radius: 18px; }
  body { background: var(--bg); }
  .header-inner { width: calc(100% - 28px); }
  .wordmark { font-size: 18px; }
  .lang-switch { display: none; }
  .hero { align-items: stretch; padding-top: calc(var(--header-h) + 58px); }
  .hero-grid { display: flex; flex-direction: column; gap: 46px; }
  .hero-copy { width: 100%; }
  .hero-title { font-size: clamp(56px, 16vw, 88px); line-height: .92; }
  .hero-title small { font-size: .18em; }
  .hero-bottom { align-items: start; flex-direction: column; margin-top: 38px; }
  .hero-scroll { display: none; }
  .hero-visual-wrap { width: calc(100% - 18px); align-self: flex-end; min-height: 58vh; }
  .hero-visual { border-radius: 4px; }
  .hero-orbit { width: 98px; right: -22px; }
  .hero-stamp { left: 18px; bottom: 18px; }
  .section { padding: 105px 0; }
  .section-heading { font-size: clamp(48px, 14vw, 78px); }
  .about-layout { display: block; }
  .about-sticky { position: relative; top: auto; }
  .about-content { padding-top: 90px; }
  .about-lead { font-size: clamp(23px, 6.8vw, 34px); }
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 150px; }
  .projects-head, .services-head { display: block; }
  .projects-intro, .services-head .section-copy { margin-top: 38px; justify-self: auto; }
  .works-title { font-size: clamp(52px, 15vw, 78px); }
  .works-showcase { display: block; }
  .works-preview { display: none; }
  .work-row {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr) 38px;
    min-height: 0;
    padding: 26px 0 30px;
    gap: 12px;
  }
  .work-row:hover, .work-row:focus-visible { padding-left: 0; padding-right: 0; }
  .work-row::before { display: none; }
  .work-row__identity h3 { font-size: clamp(18px, 5.5vw, 25px); }
  .work-row__mobile-media {
    grid-column: 1 / -1;
    display: block;
    margin-top: 18px;
    aspect-ratio: 1.42;
    overflow: hidden;
    background: #d7d1c5;
  }
  .work-row__mobile-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .8s var(--ease-out); }
  .work-row:hover .work-row__mobile-media img { transform: scale(1.035); }
  .projects-footer { align-items: flex-start; flex-direction: column; }
  .projects-link { align-self: flex-end; }
  .service-row { grid-template-columns: 38px minmax(0,1fr) 44px; gap: 14px; min-height: 120px; }
  .service-row__title { font-size: clamp(28px,8vw,44px); }
  .service-row__icon { width: 42px; height: 42px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(n) { min-height: 290px; border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 0; }
  .contact-title { font-size: clamp(66px,21vw,120px); }
  .contact-intro, .contact-layout { display: block; }
  .contact-status { justify-self: start; margin-top: 35px; }
  .contact-aside { margin-bottom: 80px; }
  .modern-form { grid-template-columns: 1fr; }
  .field, .field--full, .form-footer, .form-message { grid-column: 1; }
  .form-footer { align-items: start; flex-direction: column; }
  .submit-button { align-self: flex-end; }
  .cta { min-height: 78svh; }
  .cta-title { font-size: clamp(48px, 14vw, 78px); }
  .footer-line { align-items: flex-start; flex-direction: column; }
}


@media (max-width: 760px) {
  html[lang="ja"] .hero-title { font-size: clamp(45px, 13.2vw, 66px); line-height: 1.06; letter-spacing: -.045em; }
  html[lang="ja"] .hero-intro { font-size: 14px; line-height: 1.95; }
  html[lang="ja"] .about-lead { font-size: clamp(21px, 5.8vw, 28px); line-height: 1.72; }
  html[lang="ja"] .service-row__title { font-size: clamp(25px, 7vw, 36px); }
  html[lang="ja"] .cta-title { font-size: clamp(42px, 12vw, 64px); line-height: 1.12; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .split-line > span { transform: none !important; }
}

/* ========================================================================
   Luxury refinement — 2026-07-25
   ======================================================================== */
:root {
  --bg: #0a0a09;
  --bg-soft: #11100f;
  --bg-elevated: #171512;
  --paper: #f3f0e9;
  --paper-soft: #beb8ad;
  --muted: #827c72;
  --line: rgba(255,255,255,.105);
  --line-strong: rgba(255,255,255,.2);
  --accent: #a88d62;
  --accent-2: #cdbb98;
  --radius: 0px;
  --radius-sm: 0px;
}

body {
  background:
    radial-gradient(720px circle at var(--mx) var(--my), rgba(168,141,98,.038), transparent 48%),
    var(--bg);
  font-weight: 400;
}
body::before { opacity: .016; }

/* Preserve the original bemode. vertical logo artwork. */
.wordmark {
  width: 20px;
  height: 69px;
  display: block;
  justify-self: start;
  line-height: 0;
}
.wordmark__mark { display: none !important; }
.wordmark__logo {
  width: 20px;
  height: auto;
  display: block;
}

.site-header { height: 96px; }
.site-header.is-scrolled {
  background: rgba(10,10,9,.9);
  backdrop-filter: blur(22px) saturate(90%);
  border-color: rgba(255,255,255,.07);
}
.header-inner { width: min(1540px, calc(100% - 52px)); }
.desktop-nav { gap: 40px; }
.desktop-nav a,
.lang-switch,
.header-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.header-cta {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 0;
}

.mobile-menu { background: #11100e; color: var(--paper); }
.mobile-menu__nav a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
}

.eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
}
.eyebrow::before { width: 42px; opacity: .7; }
.section { padding: clamp(120px, 13vw, 205px) 0; }
.section-heading,
.about-title,
.works-title,
.cta-title,
.contact-title,
.error-code {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}
.section-heading {
  font-size: clamp(58px, 7.1vw, 112px);
  line-height: .88;
  letter-spacing: -.045em;
}
.section-copy {
  max-width: 620px;
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 2;
  letter-spacing: .015em;
}

/* Hero: less scale, more restraint. */
.hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
}
.hero::before {
  width: min(60vw, 920px);
  opacity: .68;
  background: radial-gradient(circle at 38% 35%, rgba(168,141,98,.14), rgba(168,141,98,.025) 44%, transparent 70%);
}
.hero-grid {
  grid-template-columns: minmax(0,1.22fr) minmax(340px,.78fr);
  gap: clamp(52px, 7vw, 112px);
}
.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(70px, 7.5vw, 116px);
  line-height: .9;
  letter-spacing: -.052em;
  font-weight: 500;
}
html[lang="ja"] .hero-title {
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(48px, 6.15vw, 92px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 500;
}
.hero-title small {
  font-family: Manrope, sans-serif;
  font-size: .13em;
  letter-spacing: .14em;
  margin-top: .72em;
}
.hero-bottom { margin-top: clamp(40px, 5vw, 68px); }
.hero-intro {
  max-width: 430px;
  font-size: clamp(13px, 1.02vw, 16px);
  line-height: 2;
  letter-spacing: .02em;
}
.hero-visual-wrap { min-height: min(70vh, 720px); }
.hero-visual {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 38px 90px rgba(0,0,0,.22);
}
.hero-visual img { filter: saturate(.58) contrast(1.035); }
.hero-orbit { display: none !important; }
.hero-stamp {
  left: 22px;
  bottom: 20px;
  font-size: 8px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.78);
}
.hero-stamp::before {
  width: 5px;
  height: 5px;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(205,187,152,.1);
}
.hero-scroll { font-size: 8px; letter-spacing: .2em; }

.marquee-section { background: transparent; }
.marquee { padding: 15px 0; }
.marquee span {
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: .015em;
  text-transform: uppercase;
}
.marquee i { width: 4px; height: 4px; background: var(--accent-2); }

/* About */
.about-layout { gap: clamp(72px, 11vw, 170px); }
.about-title {
  font-size: clamp(58px, 6.4vw, 96px);
  line-height: .84;
  letter-spacing: -.045em;
}
.about-lead {
  max-width: 810px;
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: 1.68;
  letter-spacing: -.02em;
  font-weight: 400;
}
html[lang="ja"] .about-lead {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.85;
  letter-spacing: .01em;
}
.stats { margin-top: 78px; }
.stat { min-height: 170px; padding: clamp(23px, 2.6vw, 36px); }
.stat__value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 500;
}
.stat__label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Recent Works — editorial catalogue, not a card grid. */
.projects {
  background: #f1ede4;
  color: #11100e;
}
.projects .eyebrow { color: #716b61; }
.projects-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  align-items: end;
  margin-bottom: clamp(72px, 8vw, 112px);
  padding-bottom: 28px;
  border-color: rgba(17,16,14,.16);
}
.works-title {
  margin-top: 18px;
  font-size: clamp(68px, 7.4vw, 112px);
  line-height: .78;
  letter-spacing: -.045em;
}
.works-title span { color: #92764d; }
.projects-intro { max-width: 380px; }
.projects-intro p {
  color: #514d46;
  font-size: clamp(12px, .98vw, 15px);
  line-height: 2;
  letter-spacing: .02em;
}
.projects-intro > span {
  margin-top: 22px;
  color: #847c70;
  font-size: 8px;
  letter-spacing: .2em;
}
.works-showcase {
  grid-template-columns: minmax(350px, .82fr) minmax(480px, 1.18fr);
  gap: clamp(64px, 8.5vw, 138px);
}
.works-preview { top: calc(var(--header-h) + 28px); }
.works-preview__frame {
  aspect-ratio: 4 / 5;
  background: #ddd6ca;
  border: 1px solid rgba(17,16,14,.14);
  box-shadow: 0 30px 65px rgba(31,26,19,.085);
}
.works-preview__image {
  object-position: top center;
  transform: scale(1.006);
  filter: saturate(.72) contrast(1.025);
  transition: opacity .34s ease, transform 1.35s var(--ease-out), filter .6s ease;
}
.works-preview__frame:hover .works-preview__image {
  transform: scale(1.022);
  filter: saturate(.82) contrast(1.025);
}
.works-preview__veil {
  background: linear-gradient(180deg, transparent 70%, rgba(9,8,7,.38));
}
.works-preview__meta {
  left: 18px;
  right: 18px;
  bottom: 16px;
  font-size: 7px;
  letter-spacing: .22em;
}
.works-list { border-color: rgba(17,16,14,.22); }
.work-row {
  grid-template-columns: 36px minmax(0,1fr) 34px;
  gap: 18px;
  min-height: 91px;
  padding: 17px 0;
  border-color: rgba(17,16,14,.14);
  transition: color .4s ease, transform .5s var(--ease-out);
}
.work-row::before {
  inset: auto 0 0;
  width: 100%;
  height: 1px;
  background: #8c7048;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.work-row:hover::before,
.work-row:focus-visible::before,
.work-row.is-active::before { transform: scaleX(1); }
.work-row:hover,
.work-row:focus-visible { padding-left: 0; padding-right: 0; transform: translateX(7px); }
.work-row.is-active .work-row__number,
.work-row.is-active .work-row__identity h3 { color: #806540; }
.work-row__number {
  color: #938b7f;
  font-size: 8px;
  letter-spacing: .2em;
}
.work-row__identity h3 {
  font-size: clamp(16px, 1.32vw, 21px);
  line-height: 1.35;
  letter-spacing: -.015em;
  font-weight: 500;
}
html[lang="ja"] .work-row__identity h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.2vw, 19px);
  letter-spacing: .01em;
  font-weight: 500;
}
.work-row__identity span {
  margin-top: 6px;
  color: #777064;
  font-size: 7px;
  letter-spacing: .18em;
}
.work-row__arrow {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.work-row__arrow svg { width: 13px; }
.work-row:hover .work-row__arrow,
.work-row:focus-visible .work-row__arrow,
.work-row.is-active .work-row__arrow {
  background: transparent;
  color: #806540;
  transform: translate(3px,-3px);
}
.projects-footer {
  margin-top: clamp(70px, 8vw, 105px);
  border-color: rgba(17,16,14,.16);
}
.projects-footer > span { font-size: 8px; letter-spacing: .2em; }
.projects-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  border-color: rgba(17,16,14,.38);
}

/* Supporting sections */
.services-head { margin-bottom: 76px; }
.service-row { min-height: 138px; }
.service-row__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.035em;
}
.service-row__desc { font-size: 13px; line-height: 1.85; }
.process-step h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; }
.process-step p { font-size: 13px; line-height: 1.85; }
.cta-title {
  font-size: clamp(68px, 8vw, 126px);
  line-height: .86;
  letter-spacing: -.045em;
}
html[lang="ja"] .cta-title {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(48px, 6.1vw, 88px);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 500;
}
.cta-mail { font-size: 11px; letter-spacing: .08em; }

/* Contact and 404 also inherit the restrained scale. */
.contact-title {
  font-size: clamp(84px, 13vw, 190px);
  letter-spacing: -.055em;
}
.contact-lead { font-size: clamp(17px, 1.6vw, 24px); line-height: 1.8; }
.field label,
.contact-meta__label { font-size: 9px; letter-spacing: .18em; }

@media (max-width: 1100px) {
  .site-header { height: 82px; }
  .wordmark { width: 17px; height: 59px; }
  .wordmark__logo { width: 17px; }
  .works-showcase { grid-template-columns: minmax(300px,.78fr) minmax(390px,1.22fr); gap: 52px; }
  .work-row { min-height: 86px; }
}

@media (max-width: 760px) {
  :root { --page-pad: 21px; }
  .site-header { height: 76px; }
  .header-inner { width: calc(100% - 34px); }
  .wordmark { width: 15px; height: 52px; }
  .wordmark__logo { width: 15px; }
  .hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 30px; }
  .hero-grid { gap: 40px; }
  .hero-title { font-size: clamp(58px, 16vw, 78px); line-height: .92; }
  html[lang="ja"] .hero-title {
    font-size: clamp(40px, 11.4vw, 58px);
    line-height: 1.15;
    letter-spacing: -.02em;
  }
  .hero-title small { font-size: .15em; }
  .hero-intro { max-width: 340px; font-size: 13px; line-height: 1.95; }
  .hero-visual-wrap { width: calc(100% - 34px); min-height: 54vh; }
  .hero-stamp { left: 14px; bottom: 14px; font-size: 7px; }
  .section { padding: 104px 0; }
  .section-heading { font-size: clamp(54px, 14vw, 74px); }
  .about-title { font-size: clamp(54px, 15vw, 76px); }
  html[lang="ja"] .about-lead {
    font-size: clamp(19px, 5.2vw, 25px);
    line-height: 1.85;
  }
  .section-copy { font-size: 13px; line-height: 2; }
  .projects-head { margin-bottom: 52px; padding-bottom: 22px; }
  .projects-intro { margin-top: 28px; }
  .works-title { font-size: clamp(58px, 16vw, 78px); line-height: .82; }
  .work-row {
    grid-template-columns: 27px minmax(0,1fr) 28px;
    gap: 10px;
    padding: 23px 0 28px;
  }
  .work-row:hover,
  .work-row:focus-visible { transform: none; }
  .work-row__identity h3,
  html[lang="ja"] .work-row__identity h3 { font-size: 16px; }
  .work-row__identity span { font-size: 6.5px; }
  .work-row__arrow { width: 26px; height: 26px; }
  .work-row__mobile-media {
    margin-top: 16px;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(17,16,14,.12);
  }
  .work-row__mobile-media img {
    object-position: top center;
    filter: saturate(.74) contrast(1.02);
  }
  .services-head { margin-bottom: 54px; }
  .service-row { min-height: 104px; }
  .service-row__title { font-size: clamp(30px, 9vw, 42px); }
  .service-row__desc { font-size: 12px; }
  .cta-title { font-size: clamp(58px, 16vw, 78px); }
  html[lang="ja"] .cta-title {
    font-size: clamp(40px, 11.5vw, 58px);
    line-height: 1.18;
  }
  .contact-title { font-size: clamp(76px, 22vw, 108px); }
}

/* The work catalogue can exceed one viewport, so it must not depend on a
   percentage-based reveal threshold to become visible. */
.works-showcase.reveal { opacity: 1; transform: none; }


/* ========================================================================
   Immersive full-bleed hero — PC image first
   ======================================================================== */
.hero--immersive {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-scroll-y: 0px;
  --hero-zoom: 1.12;
  min-height: 100svh;
  padding: 0;
  display: block;
  isolation: isolate;
  background: #08090a;
}
.hero--immersive::before { display: none; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.025);
}
.is-loaded .hero-media {
  opacity: 1;
  transform: none;
  transition: opacity 1.35s .35s var(--ease-out), transform 1.6s .35s var(--ease-out);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,.86) 0%, rgba(5,6,7,.56) 27%, rgba(5,6,7,.14) 52%, rgba(5,6,7,.03) 75%),
    linear-gradient(180deg, rgba(4,5,6,.35) 0%, transparent 29%, transparent 61%, rgba(4,5,6,.74) 100%);
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 57% 59%;
  filter: saturate(.82) contrast(1.04) brightness(.78);
  transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + var(--hero-scroll-y)), 0) scale(var(--hero-zoom));
  transition: transform .18s linear;
  will-change: transform;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  box-shadow: inset 0 0 170px rgba(0,0,0,.55);
}
.hero-stage {
  min-height: 100svh;
  width: 100%;
  padding-top: calc(var(--header-h) + 70px);
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(320px, 590px) 1fr;
  align-items: end;
  gap: 64px;
}
.hero-copy--overlay {
  z-index: 2;
  align-self: end;
  padding: 0 0 42px;
  text-shadow: 0 2px 30px rgba(0,0,0,.28);
}
.hero-copy--overlay .hero-kicker {
  margin-bottom: 27px;
  color: rgba(243,240,233,.72);
}
.hero-title--compact {
  margin: 0;
  max-width: 620px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(58px, 6.1vw, 96px);
  line-height: .91;
  letter-spacing: -.048em;
  font-weight: 500;
}
html[lang="ja"] .hero-title--compact {
  max-width: 550px;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 4.15vw, 64px);
  line-height: 1.19;
  letter-spacing: -.025em;
  font-weight: 500;
}
.hero-title--compact .accent { color: var(--paper); }
.hero-copy--overlay .hero-intro {
  max-width: 460px;
  margin: 30px 0 0;
  color: rgba(243,240,233,.72);
  font-size: clamp(12px, .94vw, 15px);
  line-height: 1.95;
  letter-spacing: .035em;
}
.hero-project-link {
  width: max-content;
  margin-top: 34px;
  padding: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(243,240,233,.52);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-project-link svg { width: 15px; height: 15px; }
.hero-project-link:hover { border-color: var(--paper); }
.hero-rail {
  min-height: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: clamp(34px, 5vw, 80px);
  padding-bottom: 4px;
}
.hero-location {
  display: grid;
  gap: 7px;
  text-align: right;
  color: rgba(243,240,233,.58);
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero-location strong {
  color: rgba(243,240,233,.9);
  font-size: 10px;
  font-weight: 600;
}
.hero--immersive .hero-scroll {
  opacity: 0;
  padding-bottom: 1px;
}
.is-loaded .hero--immersive .hero-scroll { opacity: 1; transition: opacity .8s 1.2s; }
.hero--immersive + .marquee-section { border-top-color: rgba(255,255,255,.08); }

@media (min-width: 1500px) {
  .hero-media img { object-position: 58% 61%; }
  .hero-stage { grid-template-columns: minmax(380px, 650px) 1fr; }
}

@media (max-width: 900px) {
  .hero--immersive { --hero-zoom: 1.18; }
  .hero-media img { object-position: 62% 57%; }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(5,6,7,.82) 0%, rgba(5,6,7,.42) 56%, rgba(5,6,7,.08) 100%),
      linear-gradient(180deg, rgba(4,5,6,.28), transparent 42%, rgba(4,5,6,.78) 100%);
  }
  .hero-stage { grid-template-columns: 1fr; align-content: end; gap: 30px; }
  .hero-rail { min-height: 0; justify-content: space-between; }
}

@media (max-width: 760px) {
  .hero--immersive { min-height: 94svh; --hero-zoom: 1.44; }
  .hero-media img { object-position: 61% 49%; transform-origin: 60% 62%; filter: saturate(.78) contrast(1.04) brightness(.68); }
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(4,5,6,.36) 0%, rgba(4,5,6,.08) 30%, rgba(4,5,6,.22) 53%, rgba(4,5,6,.9) 100%),
      linear-gradient(90deg, rgba(4,5,6,.56), rgba(4,5,6,.05) 82%);
  }
  .hero-stage {
    min-height: 94svh;
    padding-top: calc(var(--header-h) + 54px);
    padding-bottom: 27px;
  }
  .hero-copy--overlay { padding-bottom: 0; }
  .hero-copy--overlay .hero-kicker { margin-bottom: 18px; }
  .hero-title--compact { font-size: clamp(46px, 14vw, 66px); }
  html[lang="ja"] .hero-title--compact { font-size: clamp(31px, 9.7vw, 46px); line-height: 1.24; }
  .hero-copy--overlay .hero-intro { max-width: 330px; margin-top: 22px; font-size: 12px; line-height: 1.85; }
  .hero-project-link { margin-top: 25px; }
  .hero-location { text-align: left; }
  .hero--immersive .hero-scroll { display: none; }
}

/* 2026-07-25: lock the Japanese FV headline to the intended two-line composition. */
html[lang="ja"] .hero-title--compact .hero-title-line {
  display: block;
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  html[lang="ja"] .hero-title--compact {
    font-size: clamp(27px, 8.45vw, 40px);
    letter-spacing: -.035em;
  }
}

@media (max-width: 360px) {
  html[lang="ja"] .hero-title--compact {
    font-size: 25px;
  }
}
