:root {
  color-scheme: dark;
  --ink: #131114;
  --ink-soft: #1b181c;
  --paper: #f5f2ec;
  --silver: #aaa5aa;
  --line: rgba(255, 255, 255, 0.18);
  --magenta: #e40070;
  --mx: 0;
  --my: 0;
  --spot-x: 62%;
  --spot-y: 31%;
  --spot-r: 190px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(h1, h2, h3) {
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
  word-break: auto-phrase;
  font-feature-settings: "palt" 1;
}

:where(p, li, dt, dd) {
  line-break: strict;
  text-wrap: pretty;
}

.heading-line {
  display: block;
}

.no-break {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 5px;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.08;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.58'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 12px clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(19, 17, 20, 0.1);
  background: #fff;
  color: #231815;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 134px;
  height: 62px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.nav-link {
  position: relative;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: rgba(35, 24, 21, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1);
}

.nav-link:hover {
  color: #231815;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.is-current {
  color: #231815;
}

.nav-link.is-current::after {
  transform: scaleX(1);
}

.nav-link-contact {
  color: #231815;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: #231815;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.menu-toggle-lines {
  display: grid;
  gap: 6px;
  width: 24px;
}

.menu-toggle-lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 260ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 77% 30%, rgba(228, 0, 112, 0.12), transparent 24%),
    linear-gradient(112deg, #131114 0%, #131114 40%, #19161a 64%, #111012 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 4%;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(228, 0, 112, 0.13);
  filter: blur(110px);
  opacity: 0.25;
  transform: translate3d(calc(var(--mx) * 14px), calc(var(--my) * 10px), 0) scale(0.82);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 76%;
  z-index: -1;
  perspective: 1200px;
}

.image-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.08) translate3d(2%, 0, 0);
  transition: opacity 1200ms ease 180ms, transform 2600ms cubic-bezier(.2, .72, .2, 1) 100ms;
}

body.is-ready .image-stage {
  opacity: 1;
  transform: scale(1);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.018) translate3d(0, 0, 0);
  transform-origin: 68% 56%;
  will-change: transform;
}

.hero-design-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.018);
  transform-origin: 68% 56%;
  -webkit-mask-image: radial-gradient(
    circle var(--spot-r) at var(--spot-x) var(--spot-y),
    #000 0%,
    rgba(0, 0, 0, 0.98) 52%,
    rgba(0, 0, 0, 0.62) 78%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle var(--spot-r) at var(--spot-x) var(--spot-y),
    #000 0%,
    rgba(0, 0, 0, 0.98) 52%,
    rgba(0, 0, 0, 0.62) 78%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: opacity 320ms ease;
}

body.is-exploring .hero-design-overlay {
  opacity: 1;
}

.image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(19, 17, 20, 0.96) 8%, rgba(19, 17, 20, 0.62) 28%, rgba(19, 17, 20, 0.05) 66%),
    linear-gradient(0deg, rgba(19, 17, 20, 0.72) 0%, transparent 25%, transparent 82%, rgba(19, 17, 20, 0.45) 100%);
}

.image-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--paper);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 980ms cubic-bezier(.77, 0, .18, 1) 300ms;
}

body.is-ready .image-reveal {
  transform: scaleX(0);
}

.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 520ms ease;
}

body.particles-active .particle-canvas {
  opacity: 1;
}

.magenta-flare {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22%;
  z-index: 3;
  width: 9vw;
  background: linear-gradient(90deg, transparent, rgba(228, 0, 112, 0.95), transparent);
  filter: blur(10px);
  opacity: 0;
  transform: translateX(-120vw) skewX(-8deg);
}

body.is-ready .magenta-flare {
  animation: light-sweep 1050ms cubic-bezier(.77, 0, .18, 1) 410ms 1 both;
}

.surface-glint {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: 0;
  z-index: 1;
  width: 14%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 28%,
    rgba(255, 255, 255, 0.34) 48%,
    rgba(228, 0, 112, 0.2) 58%,
    transparent 100%
  );
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-35vw) skewX(-12deg);
}

@keyframes light-sweep {
  0% { opacity: 0; transform: translateX(-90vw) skewX(-8deg); }
  20% { opacity: 0.7; }
  70% { opacity: 0.35; }
  100% { opacity: 0; transform: translateX(90vw) skewX(-8deg); }
}

.hero-copy {
  position: relative;
  z-index: 5;
  grid-column: 1 / 2;
  align-self: center;
  width: min(690px, 49vw);
  margin-left: clamp(24px, 7vw, 132px);
  padding-top: 82px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(22px, 3vh, 42px);
  color: var(--silver);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  overflow: hidden;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(.22, 1, .36, 1) 1200ms;
}

.eyebrow span {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 500ms ease 1180ms, transform 650ms cubic-bezier(.22, 1, .36, 1) 1180ms;
}

body.is-ready .eyebrow::before {
  transform: scaleX(1);
}

body.is-ready .eyebrow span {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 122px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: 0.06em 0.1em 0.08em 0;
}

.title-line > span {
  display: block;
  opacity: 0;
  transform: translateY(112%);
  transition: opacity 300ms ease, transform 940ms cubic-bezier(.16, 1, .3, 1);
}

.title-line:first-child > span {
  transition-delay: 720ms;
}

.title-line:nth-child(2) > span {
  transition-delay: 890ms;
}

body.is-ready .title-line > span {
  opacity: 1;
  transform: translateY(0);
}

.title-line-accent {
  color: var(--paper);
  text-shadow: 0 0 46px rgba(228, 0, 112, 0.16);
}

.title-line-accent::after {
  content: "";
  display: block;
  width: clamp(70px, 9vw, 154px);
  height: clamp(5px, 0.65vw, 10px);
  margin-top: 0.13em;
  margin-left: 0.02em;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 760ms cubic-bezier(.22, 1, .36, 1) 1450ms;
}

body.is-ready .title-line-accent::after {
  transform: scaleX(1);
}

.hero-description {
  margin: clamp(24px, 3.6vh, 44px) 0 0;
  color: rgba(245, 242, 236, 0.72);
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease 1500ms, transform 800ms cubic-bezier(.22, 1, .36, 1) 1500ms;
}

body.is-ready .hero-description {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-width: 210px;
  margin-top: clamp(28px, 4vh, 48px);
  padding: 19px 24px;
  border: 1px solid rgba(245, 242, 236, 0.9);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.11em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(22px);
  transition: color 250ms ease, background-color 250ms ease, border-color 250ms ease,
    opacity 700ms ease 1740ms, transform 800ms cubic-bezier(.22, 1, .36, 1) 1740ms;
}

body.is-ready .hero-cta {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta svg {
  width: 44px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  transition: transform 250ms ease;
}

.hero-cta:hover {
  border-color: var(--magenta);
  background: var(--magenta);
  color: #fff;
}

.hero-cta:hover svg {
  transform: translateX(5px);
}

.hero-index {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: clamp(22px, 4vh, 42px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: rgba(245, 242, 236, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0;
  transition: opacity 700ms ease 2050ms;
}

body.is-ready .hero-index {
  opacity: 1;
}

.hero-index i {
  display: block;
  width: 46px;
  height: 1px;
  background: rgba(245, 242, 236, 0.38);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  background: rgba(19, 17, 20, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: grid;
  align-content: center;
  gap: 24px;
  width: 100%;
  min-height: 100dvh;
  padding: 100px 28px 40px;
}

.mobile-menu-kicker {
  margin: 0 0 20px;
  color: var(--magenta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.mobile-menu button,
.mobile-menu a {
  display: block;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-size: clamp(24px, 7vw, 34px);
  text-align: left;
  text-decoration: none;
}

.preview-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 60;
  width: max-content;
  max-width: calc(100vw - 40px);
  padding: 13px 18px;
  border-left: 3px solid var(--magenta);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.preview-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
}

@media (max-width: 900px) {
  body {
    overflow-y: auto;
  }

  .site-header {
    min-height: 72px;
    padding: 8px 24px;
  }

  .brand {
    width: 116px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .hero {
    display: block;
    min-height: 100dvh;
  }

  .hero-visual {
    top: 32%;
    width: 100%;
  }

  .image-stage {
    transform: scale(1.08);
  }

  body.is-ready .image-stage {
    transform: scale(1);
  }

  .hero-image {
    object-position: 59% center;
  }

  .hero-design-overlay {
    opacity: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .image-shade {
    background:
      linear-gradient(180deg, var(--ink) 0%, rgba(19, 17, 20, 0.9) 12%, rgba(19, 17, 20, 0.16) 40%, rgba(19, 17, 20, 0.42) 100%),
      linear-gradient(90deg, rgba(19, 17, 20, 0.68), transparent 70%);
  }

  .hero-copy {
    width: auto;
    margin: 0;
    padding: clamp(124px, 18vh, 170px) 24px 320px;
    transform: none;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(49px, 14vw, 84px);
    line-height: 1;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.82;
  }

  .hero-cta {
    min-width: 190px;
    margin-top: 26px;
    padding: 17px 20px;
  }

  .hero-index {
    right: 22px;
    bottom: 18px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: 108px;
  }

  .hero-copy {
    padding-inline: 20px;
    padding-bottom: 285px;
  }

  .title-line-accent::after {
    height: 6px;
  }

  .hero-description br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .image-reveal,
  .magenta-flare,
  .surface-glint {
    display: none;
  }

  .hero::after,
  .hero-image,
  .hero-copy {
    animation: none !important;
    transform: none !important;
  }

  .hero-design-overlay {
    opacity: 0 !important;
  }

  .particle-canvas {
    display: none;
  }
}

/* Multi-page corporate preview */

img {
  max-width: 100%;
}

.section-shell {
  width: min(100% - clamp(40px, 8vw, 144px), 1320px);
  margin-inline: auto;
}

.section-label {
  margin: 0;
  color: var(--magenta);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.26em;
}

.section-heading h2,
.home-about h2,
.contact-band h2,
.service-chapter h2,
.case-intro h2,
.principles h2,
.artifact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
}

.text-link span,
.text-arrow {
  color: var(--magenta);
  transition: transform 220ms ease;
}

.text-link:hover span,
.service-row:hover .text-arrow {
  transform: translateX(6px);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease, transform 900ms cubic-bezier(.16, 1, .3, 1);
}

body.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

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

.home-services {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(70px, 9vw, 160px);
  padding-block: clamp(120px, 16vw, 230px);
}

.section-heading {
  align-self: start;
  position: sticky;
  top: 150px;
}

.section-heading h2 {
  margin-top: 26px;
}

.section-heading > p:last-child {
  max-width: 31em;
  margin: 38px 0 0;
  color: rgba(245, 242, 236, 0.62);
  font-size: 15px;
  line-height: 2;
}

.service-ledger {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(110px, .58fr) minmax(220px, 1.42fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 150px;
  padding: 32px 12px 32px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  text-decoration: none;
  transition: padding-left 280ms ease, background-color 280ms ease;
}

.service-row:hover {
  padding-left: 22px;
  background: rgba(255,255,255,.025);
}

.service-name {
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.service-copy {
  color: rgba(245, 242, 236, 0.62);
  font-size: 14px;
  line-height: 1.9;
}

.service-row-featured {
  min-height: 196px;
}

.home-works {
  padding-block: clamp(110px, 14vw, 200px);
  overflow: hidden;
  background: #ece8e1;
  color: var(--ink);
}

.works-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(58px, 8vw, 110px);
}

.works-heading h2 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 540;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.work-ribbon {
  display: grid;
  grid-template-columns: .78fr 1.5fr .9fr;
  align-items: center;
  gap: clamp(16px, 2.7vw, 44px);
  width: min(94%, 1500px);
  margin: 0 auto;
}

.work-tile {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.work-tile-tall { aspect-ratio: .72; }
.work-tile-wide { aspect-ratio: 1.58; transform: translateY(7%); }
.work-tile-square { aspect-ratio: .88; transform: translateY(-9%); }

.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
  transition: transform 800ms cubic-bezier(.16,1,.3,1), filter 420ms ease;
}

.work-tile-wide img { object-position: center 38%; }

.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,12,15,.82), transparent 55%);
}

.work-tile:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }

.work-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.work-caption strong { font-size: clamp(25px, 2.8vw, 48px); font-weight: 560; letter-spacing: -.05em; }
.work-caption small { font-size: 9px; letter-spacing: .18em; }
.works-link-row { display: flex; justify-content: flex-end; margin-top: 74px; }

.home-about {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(70px, 11vw, 180px);
  padding-block: clamp(130px, 17vw, 240px);
}

.about-statement h2 { margin-top: 26px; }
.about-note { align-self: end; max-width: 540px; }
.about-note p { margin: 0 0 26px; color: rgba(245,242,236,.68); font-size: 15px; line-height: 2.1; }
.about-note .text-link { margin-top: 18px; }

.contact-band {
  overflow: hidden;
  background: var(--magenta);
  color: #fff;
}

.contact-band-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  min-height: 430px;
  padding-block: 90px;
}

.contact-band h2 { max-width: 13em; font-size: clamp(36px, 4.2vw, 64px); }

.light-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  min-width: 220px;
  padding: 20px 23px;
  border: 1px solid #fff;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.light-button:hover { background: transparent; color: #fff; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 55px;
  padding: 70px clamp(24px, 5vw, 80px) 32px;
  background: #fff;
  color: #231815;
}

.footer-brand { width: 124px; }
.footer-brand img { display: block; width: 100%; height: auto; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px 34px; }
.site-footer nav a { color: rgba(35,24,21,.68); font-size: 12px; text-decoration: none; }
.site-footer small { grid-column: 1 / -1; padding-top: 34px; border-top: 1px solid rgba(35,24,21,.12); color: rgba(35,24,21,.46); font-size: 9px; letter-spacing: .22em; }

/* Shared inner pages */

.inner-page main { padding-top: 84px; }

.page-hero {
  display: grid;
  align-content: end;
  min-height: min(78dvh, 790px);
  padding-block: clamp(100px, 13vw, 190px) clamp(80px, 10vw, 140px);
}

.page-hero h1 {
  max-width: 1120px;
  margin: 30px 0 0;
  font-size: clamp(48px, 5.8vw, 88px);
  font-weight: 540;
  line-height: .98;
  letter-spacing: -.075em;
}

.page-lead {
  max-width: 630px;
  margin: 46px 0 0 auto;
  color: rgba(245,242,236,.65);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 2;
}

.service-chapter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px, 4.5vw, 68px);
  align-items: center;
  min-height: 760px;
  padding-block: clamp(100px, 12vw, 180px);
  border-top: 1px solid var(--line);
}

.service-chapter-reverse { grid-template-columns: 1fr 1fr 1fr; }
.service-chapter-reverse .service-chapter-body { grid-column: 3; }
.service-chapter-reverse .chapter-visual { grid-column: 2; grid-row: 1; }
.service-chapter-reverse .business-visual { grid-column: 2; grid-row: 1; }
.service-chapter-title p { margin: 0 0 20px; color: var(--magenta); font-size: 10px; font-weight: 700; letter-spacing: .22em; }
.service-chapter-title h2 { font-size: clamp(30px, 3vw, 46px); line-height: 1.16; }
.service-chapter-body { align-self: center; }
.service-chapter-body > p { color: rgba(245,242,236,.62); font-size: 14px; line-height: 2; }
.service-chapter-body .chapter-lead { color: var(--paper); font-size: clamp(20px, 2vw, 28px); line-height: 1.65; }
.plain-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plain-list li { padding: 13px 0; border-bottom: 1px solid var(--line); color: rgba(245,242,236,.78); font-size: 13px; }
.chapter-link { display: inline-block; margin-top: 28px; color: var(--magenta); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-decoration: none; white-space: nowrap; }
.chapter-visual { margin: 0; overflow: hidden; background: #252126; }
.chapter-visual img { display: block; width: 100%; height: 560px; object-fit: cover; }
.chapter-visual-print img { object-position: center 20%; }
.chapter-visual-design { background: #e5e0d9; padding: 8%; }
.chapter-visual-design img { height: auto; box-shadow: 0 35px 80px rgba(0,0,0,.28); }
.business-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 900 / 1124;
  background: #0c0b0d;
  box-shadow: 0 45px 110px rgba(0,0,0,.32);
}
.business-visual img,
.business-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-video-fallback { display: none !important; }
.business-visual.is-video-blocked .business-video-fallback { display: block !important; }
.business-visual-base {
  filter: grayscale(1) brightness(.76) contrast(.72);
  transform: scale(1.012);
}
.business-visual-reveal {
  z-index: 1;
  will-change: clip-path, transform, opacity;
}
.business-visual-ink .business-visual-reveal { animation: ink-image-build 8s cubic-bezier(.22,.7,.2,1) infinite; }
.business-visual-web .business-visual-reveal { animation: web-image-build 9s cubic-bezier(.22,.7,.2,1) infinite; }
.business-visual-ai .business-visual-reveal { animation: ai-image-build 8.6s cubic-bezier(.22,.7,.2,1) infinite; }
.business-particles,
.business-particles::before {
  position: absolute;
  inset: -35% -20%;
  z-index: 2;
  content: "";
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,226,240,.96) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(228,0,112,.9) 0 1.4px, transparent 2.2px),
    radial-gradient(circle, rgba(190,10,74,.76) 0 .9px, transparent 1.7px);
  background-position: 8px 12px, 29px 38px, 17px 61px;
  background-size: 47px 59px, 71px 83px, 93px 107px;
  mix-blend-mode: screen;
  opacity: .72;
  will-change: transform, opacity;
}
.business-particles::before {
  inset: 0;
  opacity: .46;
  transform: scale(.86) rotate(7deg);
}
.business-visual-ink .business-particles { animation: ink-particles 4.1s linear infinite; }
.business-visual-web .business-particles { animation: web-particles 5.8s ease-in-out infinite alternate; }
.business-visual-ai .business-particles { animation: ai-particles 4.8s ease-in-out infinite alternate; }
.motion-paused .business-visual-reveal,
.motion-paused .business-particles { animation-play-state: paused; }

@keyframes ink-image-build {
  0%, 12% { clip-path: inset(100% 0 0 0); opacity: 0; transform: scale(1.04); }
  48%, 84% { clip-path: inset(0 0 0 0); opacity: 1; transform: scale(1.012); }
  100% { clip-path: inset(0 0 0 0); opacity: 0; transform: scale(1.012); }
}
@keyframes web-image-build {
  0%, 10% { clip-path: inset(0 100% 0 0); opacity: 0; transform: scale(1.035); }
  50%, 86% { clip-path: inset(0 0 0 0); opacity: 1; transform: scale(1.012); }
  100% { clip-path: inset(0 0 0 0); opacity: 0; transform: scale(1.012); }
}
@keyframes ai-image-build {
  0%, 12% { clip-path: circle(0 at 50% 56%); opacity: 0; transform: scale(1.04); }
  52%, 86% { clip-path: circle(76% at 50% 56%); opacity: 1; transform: scale(1.012); }
  100% { clip-path: circle(76% at 50% 56%); opacity: 0; transform: scale(1.012); }
}
@keyframes ink-particles {
  0% { transform: translate3d(0,-22%,0); opacity: 0; }
  16% { opacity: .78; }
  82% { opacity: .5; }
  100% { transform: translate3d(0,28%,0); opacity: 0; }
}
@keyframes web-particles {
  0% { transform: translate3d(-12%,-2%,0) rotate(-3deg); opacity: .3; }
  100% { transform: translate3d(12%,3%,0) rotate(3deg); opacity: .76; }
}
@keyframes ai-particles {
  0% { transform: translate3d(0,16%,0) scale(.88); opacity: .28; }
  100% { transform: translate3d(0,-12%,0) scale(1.04); opacity: .82; }
}
.goods-composition { position: relative; aspect-ratio: 1; border: 1px solid var(--line); background: radial-gradient(circle at 60% 40%, rgba(228,0,112,.22), transparent 32%); }
.goods-composition span { position: absolute; color: rgba(245,242,236,.8); font-size: clamp(17px,2vw,30px); letter-spacing: .15em; }
.goods-composition span:nth-child(1) { top: 20%; left: 14%; }
.goods-composition span:nth-child(2) { top: 48%; right: 10%; color: var(--magenta); }
.goods-composition span:nth-child(3) { bottom: 13%; left: 24%; }
.web-composition,
.ai-composition { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); background: #0f0e10; }
.service-chapter-reverse .web-composition { grid-column: 2; grid-row: 1; }
.web-composition::before { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(245,242,236,.32); box-shadow: 28px 28px 0 rgba(228,0,112,.22); }
.web-composition::after { content: ""; position: absolute; top: 26%; right: 7%; width: 56%; height: 1px; background: var(--magenta); box-shadow: 0 70px 0 rgba(245,242,236,.28), 0 140px 0 rgba(245,242,236,.18); }
.web-composition span { position: absolute; z-index: 1; color: rgba(245,242,236,.72); font-size: 9px; letter-spacing: .18em; }
.web-composition span:nth-child(1) { top: 16%; left: 16%; }
.web-composition span:nth-child(2) { top: 49%; left: 22%; }
.web-composition span:nth-child(3) { right: 12%; bottom: 11%; color: var(--magenta); }
.ai-composition { display: grid; place-items: center; background: radial-gradient(circle, rgba(228,0,112,.2), transparent 52%), #0f0e10; }
.ai-composition i { position: absolute; width: 58%; aspect-ratio: 1; border: 1px solid rgba(245,242,236,.22); border-radius: 50%; }
.ai-composition i:nth-child(2) { width: 40%; transform: translate(24%,-18%); border-color: rgba(228,0,112,.65); }
.ai-composition i:nth-child(3) { width: 22%; transform: translate(-42%,40%); }
.ai-composition span { position: relative; z-index: 1; color: var(--paper); font-size: clamp(13px,1.4vw,21px); letter-spacing: .16em; }
.process-line { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(70px,10vw,150px); padding-block: 80px 180px; }
.process-line h2 { margin: 24px 0 0; font-size: clamp(34px,4.2vw,60px); font-weight: 540; line-height: 1.12; letter-spacing: -.05em; }
.process-flow { border-top: 1px solid var(--line); }
.process-flow article { display: grid; grid-template-columns: .52fr 1fr; gap: 30px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.process-flow h3 { margin: 0; font-size: clamp(20px,2vw,29px); font-weight: 540; }
.process-flow p { margin: 0; color: rgba(245,242,236,.62); font-size: 14px; line-height: 1.9; }

/* Works index */

.works-index { padding-bottom: clamp(120px, 15vw, 220px); }
.project-row { display: grid; grid-template-columns: .45fr 1.2fr .8fr; gap: clamp(24px, 5vw, 78px); align-items: center; min-height: 620px; padding-block: 76px; border-top: 1px solid var(--line); color: var(--paper); text-decoration: none; }
.project-number { align-self: start; color: var(--magenta); font-size: 9px; font-weight: 700; letter-spacing: .22em; }
.project-image { overflow: hidden; height: 500px; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 850ms cubic-bezier(.16,1,.3,1); }
.project-row:hover .project-image img { transform: scale(1.035); }
.project-copy h2 { margin: 0; font-size: clamp(36px,4.2vw,64px); font-weight: 540; letter-spacing: -.055em; }
.project-copy p { margin: 26px 0 46px; color: rgba(245,242,236,.62); line-height: 1.9; }
.project-copy span { color: var(--magenta); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.project-row-fashion .project-image { width: 74%; justify-self: center; height: 570px; }
.project-row-fashion .project-image { padding: 5%; background: #e9e4dc; }
.project-row-fashion .project-image img { object-fit: contain; }
.project-row-editorial { grid-template-columns: .35fr 1.45fr .7fr; }
.project-row-editorial .project-image { height: 390px; transform: translateX(-4%); }
.project-row-editorial .project-image img { object-position: center 42%; }
.project-row-product { grid-template-columns: .55fr .85fr 1.05fr; }
.project-row-product .project-image { height: 440px; background: #efece6; }
.project-row-product .project-image img { object-fit: contain; }

/* About */

.page-hero-about { min-height: 90dvh; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 12vw, 190px); padding-block: clamp(100px, 14vw, 200px); border-top: 1px solid var(--line); }
.about-intro-lead p { margin: 0; color: var(--magenta); font-size: clamp(40px,6vw,86px); line-height: 1.08; letter-spacing: -.06em; }
.about-intro-copy p { margin: 0 0 30px; color: rgba(245,242,236,.68); font-size: clamp(15px,1.25vw,18px); line-height: 2.15; }
.principles { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px,10vw,150px); padding-block: clamp(100px,14vw,200px); }
.principles-title h2 { margin-top: 25px; }
.principle-list article { padding: 42px 0; border-top: 1px solid var(--line); }
.principle-list article:last-child { border-bottom: 1px solid var(--line); }
.principle-list h3 { margin: 0 0 17px; font-size: clamp(23px,2.5vw,36px); font-weight: 540; }
.principle-list p { max-width: 34em; margin: 0; color: rgba(245,242,236,.6); line-height: 1.9; }
.company-preview { display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; padding-block: 100px 150px; }
.company-preview dl { margin: 0; }
.company-preview dl > div { display: contents; }
.company-preview dt, .company-preview dd { margin: 0; padding: 22px 0; border-top: 1px solid var(--line); }
.company-preview dt { color: rgba(245,242,236,.5); font-size: 12px; }
.company-preview dd { color: var(--paper); font-size: 15px; }
.company-preview dd a, .legal-copy a { color: inherit; text-decoration-color: rgba(228,0,112,.6); text-underline-offset: 4px; }
.company-address { font-style: normal; line-height: 1.85; }
.draft-note { color: rgba(245,242,236,.48) !important; font-size: 12px !important; line-height: 1.75 !important; }

/* Contact and legal */

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px,11vw,170px); padding-bottom: clamp(120px,16vw,220px); }
.contact-guide { align-self: start; position: sticky; top: 140px; }
.contact-guide h2 { margin: 22px 0 34px; font-size: clamp(32px,3.6vw,52px); font-weight: 540; line-height: 1.14; letter-spacing: -.045em; }
.contact-guide ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.contact-guide li { padding: 15px 0; border-bottom: 1px solid var(--line); color: rgba(245,242,236,.7); }
.contact-guide > p:last-child { color: rgba(245,242,236,.5); font-size: 13px; line-height: 1.8; }
.contact-direct { display: grid; gap: 9px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); font-style: normal; }
.contact-direct span { margin-bottom: 5px; color: var(--magenta); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.contact-direct a { width: fit-content; color: var(--paper); font-size: 14px; text-decoration: none; }
.contact-direct a:hover { color: var(--magenta); }
.contact-direct p { margin: 9px 0 0; color: rgba(245,242,236,.52); font-size: 12px; line-height: 1.75; }
.contact-form { position: relative; overflow: hidden; padding: clamp(38px,5vw,76px); background: #f1eee8; color: var(--ink); box-shadow: 0 46px 120px rgba(0,0,0,.2); }
.contact-form::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--magenta); }
.contact-form::after { content: "DIGICATE"; position: absolute; top: 22px; right: -9px; pointer-events: none; color: rgba(19,17,20,.035); font-size: clamp(72px,10vw,142px); font-weight: 700; letter-spacing: -.08em; line-height: 1; }
.contact-form-head { position: relative; z-index: 1; padding-bottom: clamp(45px,6vw,78px); }
.contact-form-head > div { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-bottom: 17px; border-bottom: 1px solid rgba(19,17,20,.2); }
.contact-form-kicker, .contact-form-index { margin: 0; font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.contact-form-kicker { color: var(--magenta); }
.contact-form-index { color: rgba(19,17,20,.42); }
.contact-form-head h2 { max-width: 650px; margin: clamp(34px,5vw,60px) 0 22px; font-size: clamp(36px,4.6vw,66px); font-weight: 540; line-height: 1.05; letter-spacing: -.055em; }
.contact-form-head > p:last-child { max-width: 39em; margin: 0; color: rgba(19,17,20,.58); font-size: 14px; line-height: 1.9; }
.contact-form-section { position: relative; z-index: 1; min-width: 0; margin: 0; padding: clamp(42px,5vw,66px) 0 18px; border: 0; border-top: 1px solid rgba(19,17,20,.22); }
.contact-form-section legend { display: grid; grid-template-columns: 44px 1fr; align-items: baseline; width: 100%; padding: 0 0 34px; color: var(--ink); }
.contact-form-section legend span { color: var(--magenta); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.contact-form-section legend strong { font-size: clamp(20px,2vw,28px); font-weight: 560; letter-spacing: -.025em; }
.field { margin-bottom: 36px; }
.field label { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 8px; color: rgba(19,17,20,.76); font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.field label span { color: var(--magenta); font-size: 9px; letter-spacing: .12em; }
.field label .field-optional { color: rgba(19,17,20,.38); }
.field input, .field textarea, .field select { display: block; width: 100%; border: 0; border-bottom: 1px solid rgba(19,17,20,.32); border-radius: 0; padding: 16px 2px 15px; background: transparent; color: var(--ink); font: inherit; font-size: 16px; line-height: 1.65; transition: border-color 220ms ease, background-color 220ms ease; }
.field textarea { min-height: 190px; resize: vertical; }
.field select { cursor: pointer; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(19,17,20,.6); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--magenta); background: linear-gradient(90deg, rgba(228,0,112,.045), transparent 42%); }
.field [aria-invalid="true"] { border-color: #ba005b; }
.field-hint { margin: 10px 0 0; color: rgba(19,17,20,.45); font-size: 11px; line-height: 1.7; }
.field-error { min-height: 18px; margin: 7px 0 0; color: #a80050; font-size: 11px; font-weight: 600; line-height: 1.55; }
.contact-form-confirm { padding-bottom: 0; }
.consent { display: flex; align-items: flex-start; gap: 13px; margin: 0; padding: 18px 0; border-top: 1px solid rgba(19,17,20,.14); border-bottom: 1px solid rgba(19,17,20,.14); font-size: 13px; line-height: 1.7; }
.consent input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--magenta); }
.consent a { color: var(--ink); text-decoration-color: rgba(228,0,112,.65); text-underline-offset: 4px; }
.contact-trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.form-submit { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 32px; padding: 20px 22px; border-color: var(--ink); background: var(--ink); color: #fff; }
.form-submit:hover { border-color: var(--magenta); background: var(--magenta); }
.form-submit:focus-visible { outline: 3px solid rgba(228,0,112,.25); outline-offset: 4px; }
.form-submit:disabled { cursor: wait; border-color: rgba(19,17,20,.58); background: rgba(19,17,20,.58); }
.form-status { min-height: 24px; margin: 18px 0 0; color: var(--magenta); font-size: 12px; font-weight: 700; line-height: 1.7; }
.form-status.is-error { color: #a80050; }
.form-status.is-success { color: #465c40; }
.contact-form .draft-note { margin-top: 8px; color: rgba(19,17,20,.46) !important; }
.contact-complete { position: relative; z-index: 2; min-height: 620px; padding: clamp(55px,8vw,105px) 0; }
.contact-complete[hidden] { display: none; }
.contact-complete-mark { display: grid; place-items: center; width: 58px; height: 58px; margin: clamp(70px,10vw,130px) 0 34px; border: 1px solid var(--magenta); border-radius: 50%; color: var(--magenta); font-size: 22px; }
.contact-complete h2 { margin: 0 0 28px; font-size: clamp(40px,5.3vw,72px); font-weight: 540; line-height: 1.03; letter-spacing: -.06em; }
.contact-complete > p:last-child { max-width: 37em; margin: 0; color: rgba(19,17,20,.58); line-height: 1.9; }
.contact-form.is-complete .contact-form-head, .contact-form.is-complete .contact-form-section { display: none; }
.legal-page .page-hero { min-height: 62dvh; }
.legal-page .page-hero h1 { font-size: clamp(44px,5.2vw,76px); }
.legal-copy { max-width: 880px; padding-bottom: 160px; }
.legal-copy h2 { margin: 60px 0 18px; font-size: 23px; font-weight: 560; }
.legal-copy p { margin: 0; color: rgba(245,242,236,.66); line-height: 2; }
.preview-policy { margin-top: 70px; padding: 30px; border-left: 3px solid var(--magenta); background: rgba(255,255,255,.04); }
.preview-policy p { margin-top: 12px; }

/* Case studies */

.case-hero { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; min-height: 100dvh; padding-top: 84px; overflow: hidden; }
.case-hero-image { --work-x: 50%; --work-y: 40%; position: relative; height: calc(100dvh - 84px); overflow: hidden; }
.case-hero-image::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle 180px at var(--work-x) var(--work-y), rgba(255,255,255,.16), transparent 68%); mix-blend-mode: soft-light; opacity: .65; transition: opacity 300ms ease; }
.case-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(.78) contrast(1.05); transform: scale(1.02); transition: transform 900ms cubic-bezier(.16,1,.3,1), filter 500ms ease; }
.case-hero-image:hover img { transform: scale(1.055); filter: saturate(1) contrast(1.02); }
.case-fashion .case-hero-graphic { display: grid; place-items: center; padding: clamp(28px,6vw,90px); background: #e7e1d8; }
.case-fashion .case-hero-graphic img { height: auto; max-height: 100%; object-fit: contain; object-position: center; box-shadow: 0 38px 90px rgba(0,0,0,.3); }
.case-hero-copy { padding: 8vw clamp(30px,4vw,70px); }
.case-hero-copy h1 { margin: 24px 0; font-size: clamp(60px,8vw,118px); font-weight: 540; line-height: .9; letter-spacing: -.08em; white-space: nowrap; }
.case-hero-copy > p:last-child { color: rgba(245,242,236,.68); font-size: clamp(16px,1.5vw,21px); line-height: 1.9; }
.case-hero-paper { align-items: center; background: radial-gradient(circle at 30% 45%, rgba(228,0,112,.18), transparent 28%); }
.case-paper-object { justify-self: center; width: min(60%, 560px); margin-top: 84px; transform: rotate(-3deg); box-shadow: 0 60px 100px rgba(0,0,0,.48); }
.case-paper-object img { display: block; width: 100%; }
.case-hero-product { background: linear-gradient(130deg,#161316 0%,#20181d 50%,#0e0d0f 100%); }
.case-hero-product::after { content: ""; position: absolute; top: 12%; left: 8%; width: 44%; height: 58%; pointer-events: none; background-image: radial-gradient(circle, rgba(228,0,112,.92) 0 1px, transparent 1.8px), radial-gradient(circle, rgba(255,220,241,.7) 0 1px, transparent 1.7px); background-position: 0 0, 13px 17px; background-size: 29px 29px, 43px 43px; opacity: 0; mask-image: linear-gradient(160deg, transparent 8%, #000 44%, transparent 84%); }
body.is-ready .case-hero-product::after { animation: product-particles 1300ms cubic-bezier(.16,1,.3,1) 240ms 1 both; }
@keyframes product-particles { from { opacity: 0; transform: translateY(-80px) scale(.96); } 65% { opacity: .52; } to { opacity: .22; transform: translateY(0) scale(1); } }
.product-cover { align-self: center; justify-self: center; width: min(70%, 680px); margin-top: 84px; box-shadow: 0 60px 120px rgba(0,0,0,.5); }
.product-cover img { display: block; width: 100%; }
.case-intro { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(70px,12vw,180px); padding-block: clamp(120px,16vw,230px); }
.case-intro h2 { margin-top: 25px; }
.case-intro > div:last-child { align-self: end; }
.case-intro > div:last-child p { color: rgba(245,242,236,.65); line-height: 2.05; }
.fashion-sequence { position: relative; min-height: 1150px; padding-block: 80px 160px; }
.fashion-shot { position: relative; z-index: 1; width: min(39%, 480px); margin: 0; overflow: hidden; }
.fashion-shot img { display: block; width: 100%; transition: transform 800ms cubic-bezier(.16,1,.3,1); }
.fashion-shot:hover img { transform: scale(1.035); }
.fashion-shot-left { margin-left: 5%; }
.fashion-shot-right { margin: -42% 7% 0 auto; }
.fashion-word { position: absolute; top: 38%; left: 26%; z-index: 0; margin: 0; color: rgba(228,0,112,.7); font-size: clamp(82px,17vw,260px); font-weight: 700; letter-spacing: -.08em; }
.trendh-poster-stage { position: relative; display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(45px,8vw,120px); align-items: center; min-height: 900px; padding-block: 90px 180px; }
.trendh-poster-stage figure { position: relative; z-index: 1; margin: 0; padding: 6%; background: #e9e4dc; box-shadow: 0 50px 100px rgba(0,0,0,.35); }
.trendh-poster-stage figure img { display: block; width: 100%; }
.trendh-word { position: absolute; top: 7%; left: 0; z-index: 0; margin: 0; color: rgba(228,0,112,.58); font-size: clamp(64px,11vw,170px); font-weight: 700; line-height: .78; letter-spacing: -.08em; }
.trendh-notes { align-self: end; display: grid; gap: 13px; padding-bottom: 40px; }
.trendh-notes span { padding-bottom: 13px; border-bottom: 1px solid var(--line); color: rgba(245,242,236,.62); font-size: 9px; letter-spacing: .2em; }
.artifact-stage { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px,10vw,160px); align-items: center; padding-block: 120px 210px; }
.artifact-copy p:last-child { color: rgba(245,242,236,.62); line-height: 2; }
.artifact-copy h2 { margin: 24px 0 34px; }
.artifact-stage figure { margin: 0; padding: 8%; background: #e8e3db; }
.artifact-stage figure img { display: block; box-shadow: 0 35px 80px rgba(0,0,0,.28); }
.editorial-spreads { padding-block: 40px 180px; }
.spread-wide { width: 86%; margin: 0; padding: 4%; background: #e9e5de; box-shadow: 0 45px 100px rgba(0,0,0,.35); }
.spread-wide img { display: block; width: 100%; }
body.reveal-enabled .case-editorial .spread-wide[data-reveal] { clip-path: inset(0 12% 0 12%); }
body.reveal-enabled .case-editorial .spread-wide[data-reveal].is-visible { clip-path: inset(0 0 0 0); }
body.reveal-enabled .case-fashion .fashion-shot[data-reveal] { clip-path: inset(18% 0 18% 0); }
body.reveal-enabled .case-fashion .fashion-shot[data-reveal].is-visible { clip-path: inset(0 0 0 0); }
.case-editorial .spread-wide[data-reveal], .case-fashion .fashion-shot[data-reveal] { transition: opacity 720ms ease, transform 900ms cubic-bezier(.16,1,.3,1), clip-path 1050ms cubic-bezier(.16,1,.3,1); }
.spread-note { display: grid; grid-template-columns: .4fr 1fr; gap: 50px; width: 55%; margin: 70px 7% 110px auto; }
.spread-note p { margin: 0; color: var(--magenta); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.spread-note span { color: rgba(245,242,236,.64); line-height: 1.9; }
.spread-offset { margin-left: auto; }
.case-quote { padding-block: 90px 180px; }
.case-quote p { max-width: 1050px; margin: 0; color: var(--paper); font-size: clamp(46px,8vw,118px); line-height: 1.08; letter-spacing: -.065em; }
.product-artifacts { position: relative; display: grid; grid-template-columns: 1fr .7fr; gap: clamp(50px,9vw,130px); align-items: center; padding-block: 80px 200px; }
.product-artifacts figure { position: relative; z-index: 1; margin: 0; }
.product-artifacts img { display: block; width: 100%; }
.manual-stage { box-shadow: 0 50px 100px rgba(0,0,0,.45); }
.brochure-stage { padding: 8%; background: #e8e4de; transform: translateY(14%); box-shadow: 0 50px 100px rgba(0,0,0,.35); }
.product-artifacts figcaption { position: absolute; top: 100%; left: 0; padding-top: 16px; color: rgba(245,242,236,.55); font-size: 9px; letter-spacing: .2em; }
.brochure-stage figcaption { color: rgba(19,17,20,.6); left: 8%; }
.product-line { position: absolute; top: 8%; bottom: 8%; left: 56%; width: 1px; background: var(--magenta); }
.case-navigation { display: flex; justify-content: space-between; gap: 30px; padding-block: 60px; border-top: 1px solid var(--line); }
.case-navigation a { color: var(--paper); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-decoration: none; }

@media (max-width: 900px) {
  .section-shell { width: min(100% - 40px, 1320px); }
  .home-services, .home-about, .about-intro, .principles, .company-preview, .contact-layout, .case-intro, .artifact-stage, .process-line { grid-template-columns: 1fr; }
  .section-heading, .contact-guide { position: static; }
  .contact-layout { gap: 70px; }
  .service-row { grid-template-columns: 1fr auto; gap: 16px; min-height: 0; }
  .service-copy { grid-column: 1; }
  .text-arrow { grid-column: 2; grid-row: 1 / 3; }
  .works-heading { display: block; }
  .work-ribbon { grid-template-columns: .86fr 1.14fr; width: calc(100% - 40px); }
  .work-tile-wide { grid-column: 1 / -1; grid-row: 2; transform: none; }
  .work-tile-square { transform: translateY(-8%); }
  .home-about { gap: 60px; }
  .contact-band-inner { min-height: 360px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .inner-page main { padding-top: 72px; }
  .page-hero { min-height: 68dvh; }
  .service-chapter, .service-chapter-reverse { grid-template-columns: 1fr 1.2fr; gap: 30px; min-height: 0; }
  .service-chapter-title { grid-column: 1 / -1; }
  .service-chapter-body, .service-chapter-reverse .service-chapter-body { grid-column: 1; }
  .chapter-visual, .service-chapter-reverse .chapter-visual, .business-visual, .service-chapter-reverse .business-visual { grid-column: 2; grid-row: 2; }
  .goods-composition { grid-column: 2; grid-row: 2; }
  .web-composition, .ai-composition { grid-column: 2 !important; grid-row: 2 !important; }
  .project-row, .project-row-editorial, .project-row-product { grid-template-columns: .25fr 1fr; min-height: 0; }
  .project-number { grid-row: 1 / 3; writing-mode: vertical-rl; }
  .project-image, .project-row-fashion .project-image, .project-row-editorial .project-image, .project-row-product .project-image { grid-column: 2; width: 100%; height: 440px; transform: none; }
  .project-copy { grid-column: 2; }
  .case-hero { grid-template-columns: 1fr; padding-top: 72px; }
  .case-hero-image { height: 68dvh; }
  .case-hero-copy { padding: 60px 20px 90px; }
  .case-paper-object, .product-cover { margin-top: 70px; }
  .fashion-sequence { min-height: 900px; }
  .fashion-shot { width: 56%; }
  .fashion-shot-right { margin-top: -48%; }
  .fashion-word { left: 10%; }
  .trendh-poster-stage { grid-template-columns: 1fr; min-height: 0; }
  .trendh-poster-stage figure { width: 78%; margin-left: auto; }
  .trendh-word { position: static; margin-bottom: -5%; }
}

@media (max-width: 580px) {
  .section-shell { width: calc(100% - 36px); }
  .home-services, .home-about { padding-block: 110px; }
  .work-ribbon { grid-template-columns: 1fr; width: calc(100% - 36px); }
  .work-tile-tall, .work-tile-square { aspect-ratio: .88; transform: none; }
  .work-tile-tall img { object-position: center 20%; }
  .works-link-row { margin-top: 45px; }
  .site-footer { padding: 55px 20px 28px; }
  .site-footer nav { display: grid; grid-template-columns: 1fr 1fr; }
  .page-hero { min-height: 64dvh; }
  .page-hero h1 { font-size: clamp(46px,15vw,78px); }
  .page-lead { margin-left: 0; }
  .service-chapter, .service-chapter-reverse { display: flex; flex-direction: column; align-items: stretch; }
  .chapter-visual img { height: 430px; }
  .service-chapter-reverse .chapter-visual, .service-chapter-reverse .business-visual { order: 3; }
  .project-row, .project-row-editorial, .project-row-product { display: block; padding-block: 60px; }
  .project-number { margin-bottom: 26px; writing-mode: horizontal-tb; }
  .project-image, .project-row-fashion .project-image, .project-row-editorial .project-image, .project-row-product .project-image { height: 390px; }
  .project-copy { margin-top: 30px; }
  .about-intro { gap: 60px; }
  .company-preview { gap: 35px; }
  .contact-form { width: calc(100% + 40px); margin-left: -20px; padding: 44px 22px 54px; }
  .contact-form::after { top: 26px; right: -4px; font-size: 70px; }
  .contact-form-head > div { align-items: flex-start; }
  .contact-form-head h2 { font-size: clamp(38px,11.5vw,54px); }
  .contact-form-section { padding-top: 44px; }
  .contact-form-section legend { grid-template-columns: 36px 1fr; padding-bottom: 28px; }
  .field { margin-bottom: 31px; }
  .form-submit { padding: 19px 18px; }
  .contact-complete { min-height: 520px; }
  .case-hero-image { height: 58dvh; }
  .case-hero-copy h1 { font-size: 23vw; }
  .case-paper-object, .product-cover { width: 72%; padding-top: 20px; }
  .fashion-sequence { min-height: 760px; }
  .fashion-shot { width: 66%; }
  .fashion-shot-left { margin-left: 0; }
  .fashion-shot-right { margin: -32% 0 0 auto; }
  .fashion-word { top: 43%; left: 0; font-size: 24vw; }
  .trendh-poster-stage figure { width: 100%; }
  .artifact-stage { padding-bottom: 130px; }
  .spread-wide { width: 100%; }
  .spread-note { width: 90%; margin: 55px 0 80px auto; }
  .product-artifacts { grid-template-columns: 1fr; }
  .brochure-stage { width: 78%; margin-left: auto !important; transform: translateY(4%); }
  .product-line { display: none; }
  .case-navigation { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  .work-tile img, .project-image img, .case-hero-image img, .fashion-shot img { transition: none; }
  .business-video { display: none; }
  .business-video-fallback { display: block !important; }
  .business-visual-reveal { animation: none !important; clip-path: none !important; opacity: 1; transform: none; }
  .business-visual-base, .business-particles { display: none; }
}

/* 2026-09-11 service expansion */

.pricing-section {
  padding-block: clamp(110px, 14vw, 210px);
  border-top: 1px solid var(--line);
}

.pricing-intro {
  display: block;
  max-width: 920px;
  margin-bottom: clamp(70px, 9vw, 130px);
}

.pricing-intro h2 {
  margin: 0;
  max-width: 12em;
  margin-top: 26px;
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 540;
  line-height: 1.04;
  letter-spacing: -.065em;
}

.pricing-intro > p:last-child {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(245,242,236,.62);
  line-height: 1.9;
}

.pricing-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 7vw, 100px) clamp(48px, 7vw, 96px);
}

.price-group {
  align-self: start;
  padding-top: 20px;
  border-top: 1px solid rgba(228,0,112,.72);
}

.price-group-wide { padding-right: 0; }
.price-group h3 { margin: 0 0 30px; font-size: clamp(20px,2vw,29px); font-weight: 540; }
.price-group dl { margin: 0; }
.price-group dl > div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: baseline; padding: 12px 0; }
.price-group dt { color: rgba(245,242,236,.68); font-size: 13px; line-height: 1.65; }
.price-group dd { margin: 0; color: var(--paper); font-size: clamp(17px,1.5vw,22px); font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
.price-note { max-width: 760px; margin: clamp(70px,9vw,130px) 0 0 auto; padding-left: 25px; border-left: 2px solid var(--magenta); color: rgba(245,242,236,.56); font-size: 12px; line-height: 1.9; }

.detail-hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  min-height: min(100dvh, 940px);
  padding-block: clamp(120px, 12vw, 170px) 90px;
}

.detail-hero-copy h1 {
  max-width: 900px;
  margin: 30px 0 44px;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 540;
  line-height: .98;
  letter-spacing: -.075em;
}

.detail-hero-copy > p:not(.section-label) { max-width: 570px; color: rgba(245,242,236,.66); font-size: clamp(15px,1.4vw,19px); line-height: 2; }
.detail-hero-media { width: min(100%, 460px); justify-self: end; }

.featured-offer {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: clamp(70px, 11vw, 170px);
  padding-block: clamp(120px, 16vw, 230px);
  border-top: 1px solid var(--line);
}

.offer-heading h2,
.ai-service-title h2,
.bantou-statement h2,
.creative-copy h2,
.lesson-heading h2,
.senior-copy h2,
.member-benefit h2,
.member-rules h2,
.member-flow h2 {
  margin: 24px 0 0;
  font-size: clamp(34px, 4.3vw, 64px);
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -.065em;
}

.offer-heading h2 {
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.16;
}

.offer-body { padding-top: 10px; }
.offer-body > h3 { margin: 0 0 24px; font-size: clamp(26px,3vw,42px); font-weight: 540; }
.offer-body > p { max-width: 620px; color: rgba(245,242,236,.64); line-height: 2; }
.offer-scope { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0; }
.offer-scope span { padding: 10px 14px; border: 1px solid rgba(245,242,236,.2); color: rgba(245,242,236,.72); font-size: 11px; }
.offer-price { display: grid; grid-template-columns: minmax(95px,.32fr) 1fr; gap: 6px 24px; align-items: baseline; margin: 50px 0 40px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-price > span { color: var(--magenta); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.offer-price strong { grid-column: 2; grid-row: 1 / 3; color: var(--paper); font-size: clamp(34px,4.2vw,62px); font-variant-numeric: tabular-nums; font-weight: 540; letter-spacing: -.055em; }
.offer-price small { color: rgba(245,242,236,.55); }
.dark-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 38px; min-width: 240px; padding: 17px 20px; border: 1px solid var(--paper); background: var(--paper); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-decoration: none; transition: background 220ms ease, color 220ms ease, border-color 220ms ease; }
.dark-button:hover { border-color: var(--magenta); background: var(--magenta); color: #fff; }

.web-offer-split { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 9vw, 135px); padding-bottom: clamp(140px, 18vw, 250px); }
.web-offer-split article { padding-top: 34px; border-top: 1px solid var(--line); }
.web-offer-split h2 { margin: 0 0 30px; font-size: clamp(30px,3.2vw,48px); font-weight: 540; line-height: 1.16; letter-spacing: -.045em; }
.web-offer-split p { color: rgba(245,242,236,.62); line-height: 1.95; }
.web-offer-primary ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 40px; margin: 42px 0 0; padding: 0; list-style: none; color: rgba(245,242,236,.72); font-size: 13px; }
.web-offer-primary li::before { content: "/"; margin-right: 10px; color: var(--magenta); }
.offer-price-compact { grid-template-columns: auto 1fr; margin-top: 55px; }
.offer-price-compact strong { font-size: clamp(31px,3.5vw,50px); }
.monthly-number { display: grid; gap: 8px; margin: 42px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.monthly-number strong { color: var(--paper); font-size: clamp(30px,3.2vw,46px); font-variant-numeric: tabular-nums; font-weight: 540; letter-spacing: -.05em; }
.monthly-number span { color: rgba(245,242,236,.46); font-size: 11px; }
.web-offer-monthly dl { margin: 0 0 42px; }
.web-offer-monthly dl > div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.web-offer-monthly dt { color: rgba(245,242,236,.5); font-size: 12px; }
.web-offer-monthly dd { margin: 0; font-size: 13px; }
.scope-note { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(50px, 10vw, 160px); padding-block: 80px 150px; border-top: 1px solid var(--line); }
.scope-note h2 { margin: 0; font-size: clamp(28px,2.7vw,42px); font-weight: 540; line-height: 1.16; }
.scope-note p { max-width: 760px; margin: 0; color: rgba(245,242,236,.6); line-height: 2; }

.ai-service-index { display: grid; grid-template-columns: repeat(5, 1fr); padding-block: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ai-service-index a { padding: 8px 18px; border-right: 1px solid var(--line); color: rgba(245,242,236,.64); font-size: 11px; line-height: 1.6; text-align: center; text-decoration: none; }
.ai-service-index a:last-child { border-right: 0; }
.ai-service-index a:hover { color: var(--magenta); }
.ai-service-section { padding-block: clamp(120px, 16vw, 230px); border-bottom: 1px solid var(--line); scroll-margin-top: 84px; }
.ai-consulting-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 150px); }
.ai-service-title > p:last-child, .lesson-heading > p:last-child, .senior-copy > p { max-width: 570px; color: rgba(245,242,236,.62); line-height: 2; }
.ai-price-cluster { align-self: end; }
.ai-price-cluster article { display: grid; grid-template-columns: minmax(170px,.8fr) auto; gap: 10px 34px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--line); }
.ai-price-cluster article:first-child { border-top: 1px solid var(--line); }
.ai-price-cluster h3 { margin: 0; font-size: clamp(18px,2vw,28px); font-weight: 540; }
.ai-price-cluster strong { color: var(--magenta); font-size: clamp(18px,1.8vw,24px); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ai-price-cluster p { grid-column: 1 / -1; max-width: 58ch; margin: 0; color: rgba(245,242,236,.54); font-size: 12px; line-height: 1.8; }
.ai-consulting-section > .chapter-link { grid-column: 2; }
.ai-bantou-section { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(70px, 12vw, 180px); background: radial-gradient(circle at 12% 45%, rgba(228,0,112,.15), transparent 31%); }
.bantou-content { align-self: end; }
.bantou-content > p { color: rgba(245,242,236,.62); line-height: 2; }
.bantou-prices { margin: 45px 0; }
.bantou-prices > div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid var(--line); }
.bantou-prices > div:first-child { border-top: 1px solid var(--line); }
.bantou-prices span { color: rgba(245,242,236,.52); font-size: 12px; }
.bantou-prices strong { color: var(--paper); font-size: clamp(26px,3vw,44px); font-variant-numeric: tabular-nums; font-weight: 540; letter-spacing: -.05em; white-space: nowrap; }
.small-note { color: rgba(245,242,236,.5) !important; font-size: 12px !important; line-height: 1.8 !important; }
.ai-creative-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 11vw, 170px); align-items: center; }
.creative-copy > p:not(.section-label) { color: rgba(245,242,236,.62); line-height: 2; }
.creative-orbit { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 1px; background: var(--line); }
.creative-orbit span, .creative-orbit strong { display: grid; place-items: center; min-height: 150px; padding: 25px; background: var(--ink); color: rgba(245,242,236,.7); text-align: center; }
.creative-orbit span:nth-child(3) { color: var(--magenta); font-size: clamp(22px,2.5vw,36px); }
.creative-orbit strong { background: rgba(228,0,112,.12); color: var(--paper); font-size: 14px; font-weight: 540; }
.ai-lesson-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 11vw, 170px); }
.lesson-layout { align-self: end; }
.lesson-topics { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.lesson-topics span { padding: 10px 13px; border: 1px solid var(--line); color: rgba(245,242,236,.68); font-size: 11px; }
.lesson-prices { margin: 0; }
.lesson-prices > div { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.lesson-prices > div:first-child { border-top: 1px solid var(--line); }
.lesson-prices dt { color: rgba(245,242,236,.54); font-size: 12px; }
.lesson-prices dd { margin: 0; color: var(--paper); font-size: clamp(18px,1.8vw,24px); font-variant-numeric: tabular-nums; font-weight: 600; text-align: right; }
.ai-lesson-section > .chapter-link { grid-column: 2; }
.senior-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 12vw, 180px); align-items: center; }
.senior-number { color: rgba(228,0,112,.72); font-size: clamp(150px,23vw,350px); font-weight: 700; line-height: .7; letter-spacing: -.1em; }
.senior-paths { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 44px 0 30px; background: var(--line); }
.senior-paths span { min-height: 110px; padding: 22px; background: var(--ink); color: rgba(245,242,236,.68); font-size: 12px; line-height: 1.7; }

.home-members { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 13vw, 190px); align-items: center; padding-block: clamp(100px, 15vw, 220px); border-top: 1px solid var(--line); }
.home-members-number { display: flex; align-items: flex-end; color: var(--magenta); }
.home-members-number strong { font-size: clamp(120px,20vw,300px); font-weight: 620; line-height: .72; letter-spacing: -.11em; }
.home-members-number span { margin: 0 0 2% 18px; font-size: clamp(20px,3vw,44px); font-weight: 700; }
.home-members-copy h2 { margin: 24px 0 30px; font-size: clamp(36px,4.5vw,68px); font-weight: 540; line-height: 1.1; letter-spacing: -.06em; }
.home-members-copy > p:not(.section-label) { max-width: 540px; color: rgba(245,242,236,.62); line-height: 2; }

.members-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 11vw, 170px); align-items: center; min-height: min(100dvh, 940px); padding-block: clamp(120px, 14vw, 200px) 90px; }
.members-hero-copy h1 { margin: 28px 0 38px; font-size: clamp(48px,5.4vw,82px); font-weight: 540; line-height: 1.06; letter-spacing: -.065em; }
.members-hero-copy > p:not(.section-label) { max-width: 580px; color: rgba(245,242,236,.64); font-size: clamp(15px,1.4vw,19px); line-height: 2; }
.members-discount { position: relative; display: grid; justify-items: center; padding: clamp(50px,7vw,100px) 25px; border: 1px solid rgba(228,0,112,.72); background: radial-gradient(circle at 50% 45%, rgba(228,0,112,.2), transparent 55%); text-align: center; }
.members-discount > span { color: rgba(245,242,236,.58); font-size: 12px; letter-spacing: .12em; }
.members-discount strong { color: var(--magenta); font-size: clamp(130px,18vw,270px); font-weight: 650; line-height: .82; letter-spacing: -.12em; }
.members-discount em { margin-left: auto; color: var(--paper); font-size: clamp(24px,3vw,42px); font-style: normal; font-weight: 700; }
.members-discount p { margin: 40px 0 0; color: rgba(245,242,236,.58); font-size: 12px; }
.member-benefit { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 11vw, 170px); padding-block: clamp(120px,16vw,230px); border-top: 1px solid var(--line); }
.member-benefit-lead > p { max-width: 540px; color: rgba(245,242,236,.6); line-height: 2; }
.member-benefit-list article { padding: 35px 0; border-bottom: 1px solid var(--line); }
.member-benefit-list article:first-child { border-top: 1px solid var(--line); }
.member-benefit-list h3 { margin: 0 0 14px; font-size: clamp(23px,2.4vw,34px); font-weight: 540; }
.member-benefit-list p { margin: 0; color: rgba(245,242,236,.58); line-height: 1.9; }
.member-rules { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px, 11vw, 170px); padding-block: clamp(110px,15vw,210px); border-top: 1px solid var(--line); }
.member-rule-columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(35px,5vw,70px); }
.member-rule-columns section { padding-top: 25px; border-top: 1px solid var(--line); }
.member-rule-columns section:first-child { border-top-color: var(--magenta); }
.member-rule-columns h3 { margin: 0 0 28px; font-size: 22px; font-weight: 540; }
.member-rule-columns ul { margin: 0; padding-left: 1.1em; color: rgba(245,242,236,.62); line-height: 2; }
.member-rule-note { grid-column: 2; margin: 20px 0 0; padding-left: 20px; border-left: 2px solid var(--magenta); color: rgba(245,242,236,.5); font-size: 12px; line-height: 1.8; }
.member-flow { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(70px,10vw,150px); padding-block: 110px 180px; border-top: 1px solid var(--line); }
.members-preview-note { width: min(calc(100% - 48px), 900px); margin-bottom: 130px; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 22px; }
  .nav-link { font-size: 12px; }
  .ai-price-cluster article { grid-template-columns: minmax(150px,1fr) auto; }
}

@media (max-width: 900px) {
  .pricing-intro, .featured-offer, .ai-consulting-section, .ai-bantou-section, .ai-creative-section, .ai-lesson-section, .senior-section, .home-members, .member-benefit, .member-rules, .member-flow, .scope-note { grid-template-columns: 1fr; }
  .pricing-intro { align-items: start; }
  .detail-hero { grid-template-columns: 1fr .55fr; gap: 40px; }
  .detail-hero-copy h1 { font-size: clamp(44px,7vw,64px); }
  .web-offer-split { grid-template-columns: 1fr; }
  .ai-service-index { grid-template-columns: 1fr 1fr; }
  .ai-service-index a { border-bottom: 1px solid var(--line); }
  .ai-consulting-section > .chapter-link, .ai-lesson-section > .chapter-link, .member-rule-note { grid-column: 1; }
  .senior-number { font-size: 32vw; }
  .members-hero { grid-template-columns: 1fr .75fr; gap: 40px; }
}

@media (max-width: 580px) {
  .pricing-mosaic, .detail-hero, .members-hero { grid-template-columns: 1fr; }
  .pricing-intro { margin-bottom: 70px; }
  .pricing-mosaic { gap: 58px; }
  .price-group dl > div, .lesson-prices > div { grid-template-columns: minmax(0,1fr) auto; gap: 16px; }
  .price-group dd, .lesson-prices dd { text-align: right; white-space: nowrap; }
  .detail-hero { min-height: 0; padding-top: 130px; }
  .page-hero h1 { font-size: clamp(38px, 10.5vw, 50px); line-height: 1.1; }
  .detail-hero-copy h1 { font-size: clamp(38px,10vw,48px); line-height: 1.1; }
  .section-heading h2, .home-about h2, .contact-band h2, .service-chapter h2, .principles h2, .process-line h2, .contact-guide h2, .scope-note h2, .home-members-copy h2, .offer-heading h2, .ai-service-title h2, .bantou-statement h2, .creative-copy h2, .lesson-heading h2, .senior-copy h2, .member-benefit h2, .member-rules h2, .member-flow h2 { font-size: clamp(31px, 8.8vw, 40px); line-height: 1.16; }
  .contact-band h2 { max-width: 100%; }
  .detail-hero-media { width: 82%; margin-top: 30px; justify-self: end; }
  .offer-price { grid-template-columns: 1fr; gap: 8px; }
  .offer-price strong { grid-column: 1; grid-row: auto; font-size: clamp(38px,12vw,52px); }
  .offer-heading .no-break { white-space: normal; }
  .ai-price-cluster article, .bantou-prices > div { grid-template-columns: 1fr; gap: 8px; }
  .ai-price-cluster strong, .bantou-prices strong { white-space: normal; }
  .web-offer-primary ul { grid-template-columns: 1fr; }
  .ai-service-index { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .ai-service-index a { flex: 0 0 64%; border-bottom: 0; scroll-snap-align: start; }
  .ai-creative-section, .ai-lesson-section, .ai-bantou-section { padding-block: 120px; }
  .creative-orbit { grid-template-columns: 1fr; }
  .creative-orbit span, .creative-orbit strong { min-height: 105px; }
  .senior-paths, .member-rule-columns { grid-template-columns: 1fr; }
  .home-members-number strong { font-size: 42vw; }
  .members-hero { padding-top: 130px; }
  .members-discount { width: 88%; margin-left: auto; }
  .members-discount strong { font-size: 31vw; }
}
