:root {
  --ink: #161511;
  --paper: #f4f0e8;
  --muted: #82786b;
  --line: rgba(22, 21, 17, 0.16);
  --green: #21443a;
  --brass: #b88a4a;
  --clay: #9a5f4f;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  cursor: none;
}

a,
button {
  cursor: none;
}

button {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px);
  background-size: 18px 18px, 22px 22px;
  mix-blend-mode: soft-light;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 92px;
  height: 92px;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor__ring,
.cursor__dot,
.cursor__label {
  position: absolute;
  inset: 0;
  margin: auto;
}

.cursor__ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 240, 232, 0.72);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(22, 21, 17, 0.12),
    0 0 34px rgba(255, 244, 210, 0.32);
  transition:
    width 220ms ease,
    height 220ms ease,
    border-radius 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.cursor__ring::before,
.cursor__ring::after {
  content: "";
  position: absolute;
  background: rgba(244, 240, 232, 0.75);
}

.cursor__ring::before {
  width: 64px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.cursor__ring::after {
  width: 1px;
  height: 64px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}

.cursor__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
}

.cursor__label {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cursor.is-active .cursor__ring {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  border-color: rgba(184, 138, 74, 0.9);
  background: rgba(22, 21, 17, 0.34);
  backdrop-filter: blur(8px);
}

.cursor.is-active .cursor__label {
  opacity: 1;
  transform: scale(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 54px);
  color: var(--white);
  mix-blend-mode: difference;
}

.brand {
  color: inherit;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
}

nav a {
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 999px;
}

.language-switch button {
  min-width: 46px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.language-switch button.is-active {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0f1512;
  padding: 120px clamp(20px, 7vw, 96px) 78px;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax, 0), 0) scale(var(--hero-scale, 1.04));
  filter: saturate(0.95) contrast(1.04);
  will-change: transform;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 10, 0.74), rgba(11, 13, 10, 0.28) 48%, rgba(11, 13, 10, 0.18)),
    linear-gradient(0deg, rgba(11, 13, 10, 0.78), rgba(11, 13, 10, 0) 58%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(46px, 8vw, 108px);
  line-height: 1.05;
  font-weight: 700;
}

.hero__copy {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.9;
}

.hero__button,
.contact__link,
.case-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__button--ghost {
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(12px);
}

.hero__index {
  position: absolute;
  right: clamp(20px, 6vw, 76px);
  bottom: 74px;
  z-index: 2;
  color: var(--white);
  text-align: right;
}

.hero__index span {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(54px, 9vw, 124px);
  line-height: 0.9;
}

.hero__index small {
  color: rgba(255, 253, 248, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-mark {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  width: 1px;
  height: 58px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.24);
}

.scroll-mark::after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background: var(--white);
  animation: scrollLine 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.logo-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--green);
  color: var(--white);
}

.marquee {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 22px 0;
  animation: marquee 26s linear infinite;
}

.marquee span {
  color: rgba(255, 253, 248, 0.7);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 4vw, 44px);
  white-space: nowrap;
}

.zoom-experience {
  position: relative;
  height: 260vh;
  background: #141511;
}

.zoom-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.zoom-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 138, 74, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(20, 21, 17, 0.86), rgba(20, 21, 17, 0.3) 48%, rgba(20, 21, 17, 0.9));
  opacity: calc(1 - var(--zoom-progress, 0) * 0.48);
}

.zoom-frame {
  position: relative;
  width: min(74vw, 940px);
  height: min(62vh, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--zoom-radius, 34px);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
  transform: scale(var(--zoom-scale, 0.64));
  transform-origin: center;
  will-change: transform, border-radius;
}

.zoom-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--zoom-image-scale, 1.18));
  filter: saturate(0.92) contrast(1.08);
  will-change: transform;
}

.zoom-frame__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 10, 0.5), transparent 44%),
    linear-gradient(0deg, rgba(11, 13, 10, 0.62), transparent 54%);
  opacity: calc(0.82 - var(--zoom-progress, 0) * 0.32);
}

.zoom-copy {
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  bottom: clamp(54px, 9vw, 108px);
  max-width: 680px;
  opacity: var(--zoom-copy-opacity, 1);
  transform: translateY(var(--zoom-copy-y, 0));
  will-change: opacity, transform;
}

.zoom-copy h2 {
  margin-bottom: 0;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.showcase,
.studio,
.cms,
.seo,
.process-flow,
.pricing,
.contact {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 7vw, 96px);
}

.section-motion {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  opacity: var(--section-opacity, 1);
  transform: translateY(var(--section-fade-y, 0));
  transition:
    opacity 360ms ease,
    transform 360ms ease;
  will-change: opacity, transform;
}

.section-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--section-grid-opacity, 0.16);
  background:
    linear-gradient(90deg, rgba(184, 138, 74, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(33, 68, 58, 0.1) 1px, transparent 1px);
  background-position:
    calc(var(--section-drift, 0px) * -1) 0,
    0 var(--section-drift, 0px);
  background-size: 78px 78px;
  transform: translateY(calc(var(--section-drift, 0px) * -0.45));
  transition: opacity 420ms ease;
}

.section-motion::after {
  content: "";
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  right: clamp(20px, 7vw, 96px);
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(184, 138, 74, 0.72), transparent);
  transform: scaleX(var(--section-progress, 0));
  transform-origin: left center;
}

.section-motion--dark::before {
  opacity: var(--section-dark-grid-opacity, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 253, 248, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.section-motion--light::before {
  background:
    radial-gradient(circle at 14% 12%, rgba(184, 138, 74, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(22, 21, 17, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 21, 17, 0.04) 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head--center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-copy,
.zoom-copy p,
.studio__text p,
.contact__copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.zoom-copy p {
  max-width: 560px;
  color: rgba(255, 253, 248, 0.7);
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.22;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  transform-style: preserve-3d;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card::after,
.feature-card::after,
.price-card::after,
.timeline li::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 253, 248, 0.42), transparent 58%);
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover {
  border-color: rgba(184, 138, 74, 0.58);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(22, 21, 17, 0.18);
  transform: translateY(-14px) scale(1.045);
}

.work-card:hover::after,
.feature-card:hover::after,
.price-card:hover::after,
.timeline li:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.work-card img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: clamp(320px, 34vw, 430px);
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover img {
  filter: saturate(1.08) contrast(1.1);
  transform: scale(1.06);
}

.work-card__body {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  min-height: 190px;
  padding: 24px 26px 28px;
  background: rgba(255, 253, 248, 0.9);
}

.work-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--clay);
  font-weight: 700;
}

.work-card h3 {
  margin-bottom: 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
}

.work-card__body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(22, 21, 17, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(33, 68, 58, 0.1);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.work-card__body a::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 14px;
  margin-left: 12px;
  color: currentColor;
  background: linear-gradient(currentColor, currentColor) center / 22px 1px no-repeat;
  line-height: 1;
  transition:
    background 160ms ease,
    transform 180ms ease;
}

.work-card__body a:hover {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-1px);
}

.work-card__body a:hover::after {
  content: "→";
  background: none;
  transform: translateX(4px);
}

.work-card p,
.process__text p {
  color: var(--muted);
  line-height: 1.85;
}

.studio {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: var(--white);
}

.studio__text {
  max-width: 720px;
}

.studio__text h2 {
  margin-bottom: 26px;
  font-size: clamp(46px, 7vw, 92px);
}

.studio__panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(22, 21, 17, 0.92), rgba(33, 68, 58, 0.9)),
    radial-gradient(circle at 84% 12%, rgba(184, 138, 74, 0.26), transparent 30%);
  color: var(--white);
}

.studio__panel dl {
  margin: 0;
}

.studio__panel div {
  padding: 28px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.studio__panel div:last-child {
  border-bottom: 0;
}

.studio__panel dt {
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio__panel dd {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  line-height: 1.75;
}

.cms {
  background:
    linear-gradient(180deg, #f9f6ef, var(--paper));
}

.dashboard-demo {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 430px;
  max-width: 1080px;
  margin: 0 auto 22px;
  overflow: hidden;
  border: 1px solid rgba(22, 21, 17, 0.18);
  background: #151612;
  box-shadow: 0 34px 90px rgba(22, 21, 17, 0.18);
}

.dashboard-demo aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-right: 1px solid rgba(255, 253, 248, 0.1);
  color: var(--white);
}

.dashboard-demo aside strong {
  margin-bottom: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
}

.dashboard-demo aside span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.68);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-demo aside span:first-of-type {
  color: var(--ink);
  background: var(--brass);
}

.dashboard-demo__main {
  padding: clamp(20px, 4vw, 42px);
  background:
    radial-gradient(circle at 82% 10%, rgba(184, 138, 74, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0.02));
}

.dashboard-demo__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--white);
}

.dashboard-demo__bar span {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 4vw, 42px);
}

.dashboard-demo__bar button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-demo__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-demo__grid div {
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  background: rgba(255, 253, 248, 0.06);
}

.is-enhanced .dashboard-demo__grid div {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-demo.is-in .dashboard-demo__grid div {
  opacity: 1;
  transform: translateY(0);
}

.dashboard-demo.is-in .dashboard-demo__grid div:nth-child(2) {
  transition-delay: 90ms;
}

.dashboard-demo.is-in .dashboard-demo__grid div:nth-child(3) {
  transition-delay: 180ms;
}

.dashboard-demo.is-in .dashboard-demo__grid div:nth-child(4) {
  transition-delay: 270ms;
}

.dashboard-demo small {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 253, 248, 0.48);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-demo__grid strong {
  color: var(--white);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.2;
}

.dashboard-demo__rows {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.dashboard-demo__rows span {
  height: 42px;
  border: 1px solid rgba(255, 253, 248, 0.1);
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.03));
}

.is-enhanced .dashboard-demo__rows span {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-demo.is-in .dashboard-demo__rows span {
  transform: scaleX(1);
}

.dashboard-demo.is-in .dashboard-demo__rows span:nth-child(2) {
  transition-delay: 120ms;
}

.dashboard-demo.is-in .dashboard-demo__rows span:nth-child(3) {
  transition-delay: 240ms;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.74);
}

.feature-card {
  min-height: 230px;
  padding: 24px;
}

.feature-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
}

.feature-card p,
.timeline p,
.price-card span {
  color: var(--muted);
  line-height: 1.8;
}

.seo {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  background: var(--white);
}

.process__visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 21, 17, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 21, 17, 0.06) 1px, transparent 1px),
    #ebe4d8;
  background-size: 46px 46px;
}

.process__visual::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(33, 68, 58, 0.44);
  transform: rotate(-8deg);
}

.process__visual span {
  position: absolute;
  display: block;
  background: var(--green);
}

.process__visual span:nth-child(1) {
  width: 42%;
  height: 1px;
  left: 20%;
  top: 36%;
  animation: drawX 3s ease-in-out infinite alternate;
}

.process__visual span:nth-child(2) {
  width: 1px;
  height: 48%;
  left: 62%;
  top: 25%;
  animation: drawY 3s 0.4s ease-in-out infinite alternate;
}

.process__visual span:nth-child(3) {
  width: 130px;
  height: 130px;
  right: 14%;
  bottom: 15%;
  border-radius: 50%;
  border: 1px solid rgba(184, 138, 74, 0.88);
  background: rgba(184, 138, 74, 0.08);
  animation: pulsePlan 2.8s ease-in-out infinite;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 42px;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.process-flow {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 21, 17, 0.96), rgba(33, 68, 58, 0.94)),
    radial-gradient(circle at 82% 12%, rgba(184, 138, 74, 0.22), transparent 28%);
  color: var(--white);
}

.process-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 253, 248, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.service-hero,
.service-process {
  position: relative;
  z-index: 1;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.service-hero__copy h2 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 78px);
}

.process-flow .section-copy,
.process-flow .timeline p,
.service-list {
  color: rgba(255, 253, 248, 0.68);
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.75;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 14px;
  height: 1px;
  background: var(--brass);
}

.service-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-types article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: #161511;
}

.service-types article:nth-child(even) {
  transform: translateY(38px);
}

.service-types img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  opacity: 0.64;
  transform: scale(1.02);
  transition:
    opacity 360ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-types article:hover img {
  opacity: 0.8;
  transform: scale(1.12);
}

.service-types article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 21, 17, 0.08), rgba(22, 21, 17, 0.82)),
    linear-gradient(90deg, rgba(22, 21, 17, 0.42), transparent);
}

.service-types article div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.service-types span {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-types h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
}

.service-process {
  margin-top: clamp(70px, 9vw, 118px);
}

.service-process__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.service-process__head .eyebrow {
  margin-bottom: 0;
}

.service-process__head h3 {
  max-width: 680px;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.15;
  text-align: right;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.055);
  backdrop-filter: blur(12px);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

.timeline li:hover {
  border-color: rgba(184, 138, 74, 0.54);
  background: rgba(255, 253, 248, 0.09);
  transform: translateY(-8px);
}

.timeline span {
  color: var(--brass);
  font-weight: 800;
}

.timeline h3 {
  margin-top: 74px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 2.4vw, 30px);
}

.pricing {
  background: #ede6da;
}

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

.price-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.price-card p {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card strong {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.price-card--dark {
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(22, 21, 17, 0.94), rgba(33, 68, 58, 0.92)),
    radial-gradient(circle at 80% 15%, rgba(184, 138, 74, 0.2), transparent 26%);
}

.price-card--dark span {
  color: rgba(255, 253, 248, 0.72);
}

.contact {
  min-height: 58vh;
  display: grid;
  align-content: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(22, 21, 17, 0.86), rgba(33, 68, 58, 0.9)),
    url("assets/hero-interior.png") center / cover;
}

.contact h2 {
  max-width: 820px;
}

.contact__copy {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.72);
}

.contact__link {
  width: fit-content;
  margin-top: 20px;
}

.is-enhanced .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 780ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 780ms cubic-bezier(0.19, 1, 0.22, 1);
}

.is-enhanced .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.is-enhanced .work-card.reveal,
.is-enhanced .hero__button.reveal,
.is-enhanced .case-link.reveal,
.is-enhanced .contact__link.reveal {
  opacity: 1;
  transform: none;
}

.work-card.reveal,
.feature-card.reveal,
.price-card.reveal,
.timeline .reveal {
  transition-duration: 920ms;
}

.work-card.reveal.is-in:nth-child(2),
.feature-card.reveal.is-in:nth-child(2),
.price-card.reveal.is-in:nth-child(2),
.timeline .reveal.is-in:nth-child(2) {
  transition-delay: 120ms;
}

.work-card.reveal.is-in:nth-child(3),
.feature-card.reveal.is-in:nth-child(3),
.price-card.reveal.is-in:nth-child(3),
.timeline .reveal.is-in:nth-child(3) {
  transition-delay: 240ms;
}

.feature-card.reveal.is-in:nth-child(4),
.timeline .reveal.is-in:nth-child(4) {
  transition-delay: 360ms;
}

.is-in-section .section-head h2,
.is-in-section .service-hero__copy h2,
.is-in-section .process__text h2 {
  text-shadow: 0 18px 44px rgba(184, 138, 74, 0.1);
}

.case-hero {
  min-height: 82vh;
}

.case-hero .hero__content {
  max-width: 860px;
}

.case-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 960px;
  margin-top: clamp(38px, 7vw, 76px);
  background: rgba(255, 253, 248, 0.18);
}

.case-meta div {
  padding: 18px;
  background: rgba(22, 21, 17, 0.42);
  backdrop-filter: blur(12px);
}

.case-meta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 253, 248, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-meta strong {
  color: var(--white);
  font-size: clamp(15px, 2vw, 20px);
}

.case-section {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 7vw, 96px);
}

.case-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
  background: var(--white);
}

.case-intro__lead {
  position: sticky;
  top: 110px;
}

.case-intro__lead h2 {
  font-size: clamp(40px, 6vw, 80px);
}

.case-intro__copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.case-points {
  display: grid;
  gap: 16px;
}

.case-point {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.64);
}

.case-point span {
  display: block;
  margin-bottom: 34px;
  color: var(--clay);
  font-weight: 800;
}

.case-point h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3vw, 34px);
}

.case-point p {
  color: var(--muted);
  line-height: 1.85;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  background: #171713;
}

.case-gallery figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.case-gallery figure:nth-child(2) {
  min-height: 390px;
  align-self: end;
}

.case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.08) translateY(calc(var(--section-drift, 0px) * -0.45));
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-gallery figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: rgba(255, 253, 248, 0.74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-next {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(22, 21, 17, 0.9), rgba(33, 68, 58, 0.9)),
    url("assets/hero-interior.png") center / cover;
}

.case-next h2 {
  max-width: 820px;
  margin-bottom: 0;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-26px);
  }
  100% {
    transform: translateY(64px);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes drawX {
  from {
    transform: scaleX(0.18);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes drawY {
  from {
    transform: scaleY(0.22);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes pulsePlan {
  50% {
    transform: scale(1.12);
    background: rgba(184, 138, 74, 0.18);
  }
}

@media (max-width: 860px) {
  body,
  a,
  button {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .site-header {
    gap: 12px;
    flex-wrap: wrap;
    padding: 18px 20px;
    mix-blend-mode: normal;
    background: rgba(22, 21, 17, 0.78);
    backdrop-filter: blur(14px);
  }

  nav {
    gap: 14px;
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  nav a {
    font-size: 11px;
  }

  .hero {
    min-height: 88vh;
    padding: 110px 20px 54px;
  }

  .hero__index {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 52px;
    text-align: left;
  }

  .work-grid,
  .studio,
  .seo,
  .stats,
  .service-hero,
  .case-intro,
  .case-gallery,
  .case-next,
  .feature-grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .case-intro__lead {
    position: static;
  }

  .case-gallery figure,
  .case-gallery figure:nth-child(2) {
    min-height: 310px;
  }

  .dashboard-demo {
    grid-template-columns: 1fr;
  }

  .dashboard-demo aside {
    display: none;
  }

  .dashboard-demo__grid {
    grid-template-columns: 1fr;
  }

  .zoom-experience {
    height: 220vh;
  }

  .zoom-frame {
    width: 82vw;
    height: 58vh;
  }

  .work-card {
    min-height: 0;
  }

  .work-card img {
    height: clamp(230px, 68vw, 340px);
  }

  .work-card__body {
    min-height: 168px;
  }

  .service-types {
    grid-template-columns: 1fr;
  }

  .service-hero__copy h2 {
    font-size: 40px;
  }

  .service-types article,
  .service-types article:nth-child(even) {
    min-height: 220px;
    transform: none;
  }

  .service-process__head {
    display: block;
  }

  .service-process__head h3 {
    margin-top: 14px;
    text-align: left;
  }

  .process__visual {
    min-height: 340px;
  }

  .timeline li,
  .price-card {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
