:root {
  --color-primary: #FFEE00;
  --color-ink: #20211E;
  --color-paper: #FFFDF7;
  --color-cream: #FFF9EC;
  --color-accent: #C7DBEC;
  --radius: 30px;
}

/* 404 */
.not-found-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 140px) 24px;
  background: var(--color-primary);
}

.not-found-card {
  width: min(760px, 100%);
  padding: clamp(36px, 7vw, 72px);
  border: 3px solid var(--color-ink);
  border-radius: 28px;
  background: var(--color-paper);
  box-shadow: 10px 10px 0 var(--color-ink);
  text-align: center;
}

.not-found-code {
  margin: 0 0 8px;
  font-size: clamp(72px, 14vw, 144px);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.08em;
}

.not-found-card h1 {
  margin: 24px 0 16px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.25;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.not-found-card > p:not(.not-found-code) {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.9;
}

.not-found-card .btn-pill {
  display: inline-flex;
}

@media (max-width: 680px) {
  .not-found-page {
    min-height: 68vh;
    padding: 56px 20px 72px;
  }

  .not-found-card {
    padding: 36px 22px 40px;
    border-radius: 22px;
    box-shadow: 7px 7px 0 var(--color-ink);
  }

  .not-found-card h1 {
    white-space: normal;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: "Noto Sans JP", YuGothic, YuGothicM,
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
    メイリオ, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.85;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.sp-only { display: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

p, h2, h3, dd {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: auto-phrase;
  text-wrap: pretty;
}

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

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--color-ink);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
  transform: translateY(calc(-100% - 20px));
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 32px; }
.section-cream { background: var(--color-cream); }
.section-primary { background: var(--color-primary); }

.section-heading { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-heading h2 {
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 700;
  line-height: 1.35;
}
.section-heading > p {
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
}

/* ---------- eyebrow pill ---------- */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ---------- underline mark ---------- */
.underline-mark { position: relative; z-index: 0; display: inline-block; white-space: nowrap; }
.underline-mark::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 0.05em;
  height: 0.28em;
  background: var(--color-primary);
  z-index: -1;
  transform: rotate(-1deg);
}

/* ---------- buttons ---------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-ink);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-pill:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 rgba(32,33,30,.18); }
.btn-pill svg { flex: none; }
.btn-consult { position: relative; min-width: 260px; justify-content: center; padding: 18px 58px; font-size: 17px; text-align: center; }
.btn-consult svg {
  position: absolute; top: 0; right: 24px; bottom: 0; margin: auto 0;
  width: 18px; height: 18px;
}
.btn-consult svg path { stroke: #fff; stroke-width: 2.2; }
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-bottom: 2px solid var(--color-ink);
  padding-bottom: 4px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 247, .92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--color-ink);
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; padding: 0 max(4vw, 28px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--color-primary); border: 2px solid var(--color-ink);
  display: grid; place-items: center; font-weight: 900; font-size: 18px;
}
.brand-text { font-weight: 900; font-size: 17px; line-height: 1.2; }
.brand-text small { display: block; font-weight: 700; font-size: 10px; letter-spacing: .1em; color: #5b5c57; }
nav.main { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: 14.5px; }
@media (min-width: 821px) {
  nav.main a {
    position: relative;
    transition: transform .18s cubic-bezier(.2, .8, .3, 1.2);
  }
  nav.main a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    width: 9px;
    height: 9px;
    border: 1.5px solid var(--color-ink);
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 1px 1px 0 var(--color-ink);
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transition: opacity .18s ease, transform .18s cubic-bezier(.2, .8, .3, 1.4);
  }
  nav.main a:hover::before,
  nav.main a:focus-visible::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  nav.main a:hover,
  nav.main a:focus-visible { transform: translateX(3px); }
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-btn {
  display: none; background: #fff; border: 2px solid var(--color-ink); border-radius: 12px;
  width: 46px; height: 42px; align-items: center; justify-content: center;
}
.menu-btn i { display: block; width: 18px; height: 2px; background: var(--color-ink); position: relative; }
.menu-btn i::before, .menu-btn i::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--color-ink); }
.menu-btn i::before { top: -6px; } .menu-btn i::after { top: 6px; }
body.menu-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--color-primary); overflow: hidden; }
.hero-grid {
  position: relative; z-index: 1;
  width: 100%; margin: 0;
  padding: 88px 0 80px max(32px, calc((100vw - 1180px) / 2));
  display: grid; grid-template-columns: minmax(520px, .9fr) minmax(0, 1.1fr); gap: 28px; align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero .eyebrow-pill {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  letter-spacing: .04em;
  font-weight: 900;
}
.hero .eyebrow-pill::before { content: none; }
.hero-title {
  font-size: clamp(38px, 3.7vw, 54px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.03em;
  margin: 18px 0 26px;
}
.hero-title > span { display: block; white-space: nowrap; }
.hero-pricing {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  width: min(100%, 500px); margin: -4px 0 22px; padding: 15px 18px;
  border: 2px solid var(--color-ink); border-radius: 20px; background: #fff;
  box-shadow: 5px 5px 0 var(--color-ink); line-height: 1.25;
}
.hero-pricing p { margin: 0; text-align: center; }
.hero-pricing small,
.hero-pricing strong,
.hero-pricing i { display: block; }
.hero-pricing small { margin-bottom: 4px; font-size: 11px; font-weight: 900; }
.hero-pricing strong { white-space: nowrap; font-size: clamp(20px, 2.2vw, 28px); font-weight: 900; }
.hero-pricing i { margin-top: 2px; font-size: 9px; font-style: normal; font-weight: 700; }
.hero-pricing > span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--color-primary); font-size: 18px; font-weight: 900; }
.hero-lead { font-size: 17px; font-weight: 700; max-width: 460px; margin-bottom: 30px; }
.hero-note { margin-top: 16px; font-size: 13px; font-weight: 700; }
.hero-art {
  position: relative;
  width: 100%;
  align-self: end;
  margin: 0 0 -80px;
  z-index: 1;
}
.hero-art img {
  display: block;
  width: 115%;
  max-width: none;
  margin-left: -15%;
  height: auto;
  mix-blend-mode: normal;
}

/* ---------- PC hero entrance ---------- */
@media (min-width: 1025px) and (prefers-reduced-motion: no-preference),
       (max-width: 680px) and (prefers-reduced-motion: no-preference) {
  body.hero-motion-pending .hero .eyebrow-pill,
  body.hero-motion-pending .hero-title > span,
  body.hero-motion-pending .hero-pricing,
  body.hero-motion-pending .hero-lead,
  body.hero-motion-pending .hero .cta-row {
    opacity: 0;
    transform: translateY(18px);
  }

  body.hero-motion-pending .hero-art {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transform: translateX(24px);
  }

  body.hero-motion-pending .hero-pricing {
    transform: translateY(12px) scale(.96);
  }

  body.hero-motion-ready .hero .eyebrow-pill,
  body.hero-motion-ready .hero-title > span,
  body.hero-motion-ready .hero-pricing,
  body.hero-motion-ready .hero-lead,
  body.hero-motion-ready .hero .cta-row {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .48s ease, transform .58s cubic-bezier(.2, .75, .25, 1);
  }

  body.hero-motion-ready .hero .eyebrow-pill { transition-delay: .04s; }
  body.hero-motion-ready .hero-title > span:nth-child(1) { transition-delay: .14s; }
  body.hero-motion-ready .hero-title > span:nth-child(2) { transition-delay: .24s; }
  body.hero-motion-ready .hero-title > span:nth-child(3) { transition-delay: .34s; }

  body.hero-motion-ready .hero-pricing {
    transform: translateY(0) scale(1);
    transition-delay: .46s;
    transition-duration: .5s;
  }

  body.hero-motion-ready .hero-lead { transition-delay: .58s; }
  body.hero-motion-ready .hero .cta-row { transition-delay: .68s; }

  body.hero-motion-ready .hero-art {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
    transition:
      clip-path .78s cubic-bezier(.65, 0, .2, 1) .78s,
      transform .78s cubic-bezier(.2, .75, .25, 1) .78s,
      opacity .2s ease .78s;
  }
}

@media (max-width: 820px) {
  .hero-title { font-size: clamp(32px, 10vw, 44px); }
}

/* ---------- illustration placeholder ---------- */
.illust-placeholder {
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  background: var(--color-cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 30px;
  aspect-ratio: 4/3;
}
.illust-placeholder .ico { font-size: 40px; }
.illust-placeholder .label { font-weight: 700; font-size: 14px; }
.illust-placeholder .note { font-size: 12px; color: #6b6c66; }
/* ---------- badge / card ---------- */
.badge-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-ink); color: #fff;
  font-weight: 900; font-size: 20px;
  transform: rotate(-6deg);
  margin-bottom: 18px;
}
.card {
  background: #FFF;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--color-ink);
  padding: 36px;
}
.card h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.card p { font-size: 15px; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.steps-grid .card:nth-child(2) { transform: rotate(1deg); }
.steps-grid .card:nth-child(3) { transform: rotate(-1deg); }

.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4vw; align-items: start; }
.process-art {
  position: sticky;
  top: 126px;
  width: 110%;
  margin: -48px 0 -48px -10%;
}
.process-art img {
  display: block;
  width: 100%;
  height: auto;
}
.split .stack { display: grid; gap: 22px; }
.split .stack .card:nth-child(2) { transform: rotate(.8deg); }
.split .stack .card:nth-child(3) { transform: rotate(-.8deg); }

.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.persona-grid .card { text-align: left; }
.persona-grid .card:nth-child(2) { transform: rotate(.5deg); }
.persona-grid .card:nth-child(3) { transform: rotate(-.5deg); }
.persona-art {
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
  margin: -18px -18px 18px;
}
.persona-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.persona-section .section-heading h2::after {
  content: '';
  display: block;
  width: 132px;
  height: 8px;
  margin: 20px auto 0;
  border-top: 2px solid var(--color-ink);
  border-bottom: 2px solid var(--color-ink);
  transform: rotate(-1deg);
}
.persona-section .underline-mark::after { background: var(--color-accent); }

/* ---------- PC section entrances ---------- */
@media (min-width: 1025px) and (prefers-reduced-motion: no-preference),
       (max-width: 680px) and (prefers-reduced-motion: no-preference) {
  body.scroll-motion #service .process-art {
    opacity: 0;
    translate: 0 34px;
  }

  body.scroll-motion #service .stack .card {
    opacity: 0;
    translate: 0 24px;
  }

  body.scroll-motion #service .badge-num {
    opacity: 0;
    scale: .72;
  }

  body.scroll-motion #service.is-revealed .process-art {
    opacity: 1;
    translate: 0 0;
    transition: opacity .82s ease, translate .94s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion #service.is-revealed .stack .card {
    opacity: 1;
    translate: 0 0;
    transition: opacity .48s ease, translate .6s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion #service.is-revealed .stack .card:nth-child(1) { transition-delay: .24s; }
  body.scroll-motion #service.is-revealed .stack .card:nth-child(2) { transition-delay: .46s; }
  body.scroll-motion #service.is-revealed .stack .card:nth-child(3) { transition-delay: .68s; }

  body.scroll-motion #service.is-revealed .badge-num {
    opacity: 1;
    scale: 1;
    transition: opacity .2s ease, scale .38s cubic-bezier(.2, 1.4, .45, 1);
  }

  body.scroll-motion #service.is-revealed .card:nth-child(1) .badge-num { transition-delay: .66s; }
  body.scroll-motion #service.is-revealed .card:nth-child(2) .badge-num { transition-delay: .88s; }
  body.scroll-motion #service.is-revealed .card:nth-child(3) .badge-num { transition-delay: 1.1s; }

  body.scroll-motion .persona-section .card {
    opacity: 0;
    translate: 0 22px;
  }

  body.scroll-motion .persona-section .persona-art {
    opacity: 0;
  }

  body.scroll-motion .persona-section.is-revealed .card {
    opacity: 1;
    translate: 0 0;
    transition: opacity .46s ease, translate .58s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion .persona-section.is-revealed .card:nth-child(1) { transition-delay: .08s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(2) { transition-delay: .3s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(3) { transition-delay: .52s; }

  body.scroll-motion .persona-section.is-revealed .persona-art {
    opacity: 1;
    transition: opacity .5s ease;
  }

  body.scroll-motion .persona-section.is-revealed .card:nth-child(1) .persona-art { transition-delay: .38s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(2) .persona-art { transition-delay: .6s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(3) .persona-art { transition-delay: .82s; }

  body.scroll-motion .statement .statement-main,
  body.scroll-motion .statement .statement-inner > p {
    opacity: 0;
    translate: 0 14px;
  }

  body.scroll-motion .statement.is-revealed .statement-main,
  body.scroll-motion .statement.is-revealed .statement-inner > p {
    opacity: 1;
    translate: 0 0;
    transition: opacity .62s ease, translate .7s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion .statement.is-revealed .statement-main { transition-delay: .08s; }
  body.scroll-motion .statement.is-revealed .statement-inner > p { transition-delay: .32s; }

  body.scroll-motion .service-grid .service-item {
    opacity: 0;
    translate: 0 26px;
  }

  body.scroll-motion .service-grid .service-card-art {
    opacity: 0;
  }

  body.scroll-motion .service-grid.is-revealed .service-item {
    opacity: 1;
    translate: 0 0;
    transition: opacity .5s ease, translate .64s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(1) { transition-delay: .08s; }
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(2) { transition-delay: .3s; }
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(3) { transition-delay: .68s; }

  body.scroll-motion .service-grid.is-revealed .service-card-art {
    opacity: 1;
    transition: opacity .52s ease;
  }

  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(1) .service-card-art { transition-delay: .38s; }
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(2) .service-card-art { transition-delay: .6s; }
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(3) .service-card-art { transition-delay: .98s; }

  body.scroll-motion .closing .closing-grid > div:first-child > :not(.btn-pill) {
    opacity: 0;
    translate: 0 16px;
  }

  body.scroll-motion .closing .closing-art {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    translate: 22px 0;
  }

  body.scroll-motion .closing .btn-pill {
    opacity: 0;
    translate: 0 14px;
  }

  body.scroll-motion .closing.is-revealed .closing-grid > div:first-child > :not(.btn-pill) {
    opacity: 1;
    translate: 0 0;
    transition: opacity .58s ease, translate .68s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion .closing.is-revealed .closing-grid > div:first-child > .eyebrow-pill { transition-delay: .06s; }
  body.scroll-motion .closing.is-revealed h2 { transition-delay: .14s; }
  body.scroll-motion .closing.is-revealed p { transition-delay: .22s; }

  body.scroll-motion .closing.is-revealed .closing-art {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    translate: 0 0;
    transition:
      clip-path .76s cubic-bezier(.65, 0, .2, 1) .38s,
      translate .76s cubic-bezier(.2, .75, .25, 1) .38s,
      opacity .2s ease .38s;
  }

  body.scroll-motion .closing.is-revealed .btn-pill {
    opacity: 1;
    translate: 0 0;
    transition: opacity .46s ease .92s, translate .56s cubic-bezier(.2, .75, .25, 1) .92s;
  }

  body.scroll-motion #price .section-heading > *,
  body.scroll-motion #price .price-includes,
  body.scroll-motion #price .price-detail-trigger {
    opacity: 0;
    translate: 0 15px;
  }

  body.scroll-motion #price .price-box {
    opacity: 0;
    scale: .97;
    translate: 0 12px;
  }

  body.scroll-motion #price .price-box .row strong {
    opacity: 0;
    translate: 0 10px;
  }

  body.scroll-motion #price.is-revealed .section-heading > *,
  body.scroll-motion #price.is-revealed .price-includes,
  body.scroll-motion #price.is-revealed .price-detail-trigger {
    opacity: 1;
    translate: 0 0;
    transition: opacity .5s ease, translate .62s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion #price.is-revealed .section-heading h2 { transition-delay: .06s; }
  body.scroll-motion #price.is-revealed .section-heading p { transition-delay: .18s; }

  body.scroll-motion #price.is-revealed .price-box {
    opacity: 1;
    scale: 1;
    translate: 0 0;
    transition:
      opacity .46s ease .3s,
      scale .58s cubic-bezier(.2, 1.15, .4, 1) .3s,
      translate .58s cubic-bezier(.2, .75, .25, 1) .3s;
  }

  body.scroll-motion #price.is-revealed .price-box .row strong {
    opacity: 1;
    translate: 0 0;
    transition: opacity .38s ease, translate .48s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion #price.is-revealed .price-box .row:first-child strong { transition-delay: .62s; }
  body.scroll-motion #price.is-revealed .price-box .row:last-child strong { transition-delay: .8s; }
  body.scroll-motion #price.is-revealed .price-includes { transition-delay: .9s; }
  body.scroll-motion #price.is-revealed .price-detail-trigger { transition-delay: 1.04s; }

  body.scroll-motion #faq .section-heading h2 {
    opacity: 0;
    translate: 0 14px;
  }

  body.scroll-motion #faq.is-revealed .section-heading h2 {
    opacity: 1;
    translate: 0 0;
    transition: opacity .56s ease, translate .66s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion .faq-grid details {
    opacity: 0;
    translate: 0 16px;
  }

  body.scroll-motion .faq-grid.is-revealed details {
    opacity: 1;
    translate: 0 0;
    transition: opacity .42s ease, translate .52s cubic-bezier(.2, .75, .25, 1);
  }

  body.scroll-motion .faq-grid.is-revealed details:nth-child(-n+3) { transition-delay: .12s; }
  body.scroll-motion .faq-grid.is-revealed details:nth-child(n+4):nth-child(-n+6) { transition-delay: .34s; }
  body.scroll-motion .faq-grid.is-revealed details:nth-child(n+7) { transition-delay: .56s; }

  body.scroll-motion .work-featured .work-image {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  body.scroll-motion .work-featured .work-copy > * {
    opacity: 0;
    translate: 0 16px;
  }

  body.scroll-motion .work-featured.is-revealed .work-image {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition: clip-path .78s cubic-bezier(.65, 0, .2, 1), opacity .2s ease;
  }

  body.scroll-motion .work-featured.is-revealed .work-copy > :not(.btn-pill) {
    opacity: 1;
    translate: 0 0;
    transition: opacity .52s ease .42s, translate .64s cubic-bezier(.2, .75, .25, 1) .42s;
  }

  body.scroll-motion .work-featured.is-revealed .work-copy > .btn-pill {
    opacity: 1;
    translate: 0 0;
    transition: opacity .46s ease .82s, translate .56s cubic-bezier(.2, .75, .25, 1) .82s;
  }
}

/* ---------- SP motion tuning ---------- */
@media (max-width: 680px) and (prefers-reduced-motion: no-preference) {
  body.hero-motion-pending .hero-art {
    clip-path: inset(0 0 100% 0);
    transform: translateY(12px);
  }
  body.hero-motion-ready .hero-art {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
    transition: clip-path .5s cubic-bezier(.65, 0, .2, 1), transform .5s cubic-bezier(.2, .75, .25, 1), opacity .18s ease;
  }
  body.hero-motion-ready .hero .eyebrow-pill { transition-delay: .38s; }
  body.hero-motion-ready .hero-title > span:nth-child(1) { transition-delay: .44s; }
  body.hero-motion-ready .hero-title > span:nth-child(2) { transition-delay: .5s; }
  body.hero-motion-ready .hero-title > span:nth-child(3) { transition-delay: .56s; }
  body.hero-motion-ready .hero-pricing { transition-delay: .64s; transition-duration: .46s; }
  body.hero-motion-ready .hero-lead { transition-delay: .7s; }
  body.hero-motion-ready .hero .cta-row { transition-delay: .76s; }

  body.hero-motion-pending .hero .eyebrow-pill,
  body.hero-motion-pending .hero-title > span,
  body.hero-motion-pending .hero-lead,
  body.hero-motion-pending .hero .cta-row { transform: translateY(18px); }

  body.scroll-motion #service .process-art { translate: 0 20px; }
  body.scroll-motion #service .stack .card { translate: 0 18px; }
  body.scroll-motion #service.is-revealed .process-art { transition-duration: .52s, .58s; }
  body.scroll-motion #service.is-revealed .stack .card { transition-duration: .42s, .5s; }
  body.scroll-motion #service.is-revealed .stack .card:nth-child(1) { transition-delay: .1s; }
  body.scroll-motion #service.is-revealed .stack .card:nth-child(2) { transition-delay: .22s; }
  body.scroll-motion #service.is-revealed .stack .card:nth-child(3) { transition-delay: .34s; }
  body.scroll-motion #service.is-revealed .card:nth-child(1) .badge-num { transition-delay: .34s; }
  body.scroll-motion #service.is-revealed .card:nth-child(2) .badge-num { transition-delay: .46s; }
  body.scroll-motion #service.is-revealed .card:nth-child(3) .badge-num { transition-delay: .58s; }

  body.scroll-motion .persona-section .card,
  body.scroll-motion .service-grid .service-item { translate: 0 18px; }
  body.scroll-motion .persona-section.is-revealed .card,
  body.scroll-motion .service-grid.is-revealed .service-item { transition-duration: .42s, .52s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(1),
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(1) { transition-delay: .06s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(2),
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(2) { transition-delay: .18s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(3),
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(3) { transition-delay: .3s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(1) .persona-art,
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(1) .service-card-art { transition-delay: .24s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(2) .persona-art,
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(2) .service-card-art { transition-delay: .36s; }
  body.scroll-motion .persona-section.is-revealed .card:nth-child(3) .persona-art,
  body.scroll-motion .service-grid.is-revealed .service-item:nth-child(3) .service-card-art { transition-delay: .48s; }

  body.scroll-motion .statement .statement-main,
  body.scroll-motion .statement .statement-inner > p,
  body.scroll-motion .closing .closing-grid > div:first-child > :not(.btn-pill),
  body.scroll-motion #price .section-heading > *,
  body.scroll-motion #price .price-includes,
  body.scroll-motion #price .price-detail-trigger,
  body.scroll-motion #faq .section-heading h2,
  body.scroll-motion .faq-grid details,
  body.scroll-motion .work-featured .work-copy > * { translate: 0 14px; }

  body.scroll-motion .statement.is-revealed .statement-main,
  body.scroll-motion .statement.is-revealed .statement-inner > p,
  body.scroll-motion .closing.is-revealed .closing-grid > div:first-child > :not(.btn-pill),
  body.scroll-motion #price.is-revealed .section-heading > *,
  body.scroll-motion #price.is-revealed .price-includes,
  body.scroll-motion #price.is-revealed .price-detail-trigger,
  body.scroll-motion #faq.is-revealed .section-heading h2,
  body.scroll-motion .faq-grid.is-revealed details { transition-duration: .46s, .54s; }

  body.scroll-motion .closing.is-revealed .closing-art {
    transition: clip-path .54s cubic-bezier(.65, 0, .2, 1) .26s, translate .54s cubic-bezier(.2, .75, .25, 1) .26s, opacity .18s ease .26s;
  }
  body.scroll-motion .closing.is-revealed .btn-pill { transition-delay: .66s; }

  body.scroll-motion #price.is-revealed .price-box { transition-delay: .22s; }
  body.scroll-motion #price.is-revealed .price-box .row:first-child strong { transition-delay: .42s; }
  body.scroll-motion #price.is-revealed .price-box .row:last-child strong { transition-delay: .54s; }
  body.scroll-motion #price.is-revealed .price-includes { transition-delay: .62s; }
  body.scroll-motion #price.is-revealed .price-detail-trigger { transition-delay: .7s; }

  body.scroll-motion .faq-grid.is-revealed details:nth-child(-n+3) { transition-delay: .06s; }
  body.scroll-motion .faq-grid.is-revealed details:nth-child(n+4):nth-child(-n+6) { transition-delay: .18s; }
  body.scroll-motion .faq-grid.is-revealed details:nth-child(n+7) { transition-delay: .3s; }

  body.scroll-motion .work-featured.is-revealed .work-image { transition-duration: .56s, .18s; }
  body.scroll-motion .work-featured.is-revealed .work-copy > :not(.btn-pill) { transition-delay: .28s; }
  body.scroll-motion .work-featured.is-revealed .work-copy > .btn-pill { transition-delay: .56s; }
}

/* ---------- summary statement ---------- */
.statement {
  min-height: 560px;
  display: grid;
  align-items: center;
  background: var(--color-paper);
}
.statement-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(56px, 8vw, 120px);
  align-items: end;
}
.statement-label {
  display: inline-flex;
  padding: 8px 15px;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
}
.statement h2 {
  margin: 28px 0 0;
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -.04em;
}
.statement p {
  margin: 0 0 .3em;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 2;
}

/* ---------- service grid ---------- */
.service-heading,
.service-grid { max-width: 1180px; margin-left: auto; margin-right: auto; }
.service-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: end;
  margin-bottom: 72px;
}
.service-label {
  display: inline-flex;
  padding: 8px 15px;
  border: 2px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
}
.service-heading h2 {
  margin: 24px 0 0;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -.04em;
}
.service-heading > p {
  margin: 0 0 .4em;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.9;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.service-item {
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  padding: 34px;
  overflow: hidden;
}
.service-primary {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  background: var(--color-primary);
  box-shadow: 6px 6px 0 var(--color-ink);
}
.service-options-card {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(75%, 900px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  padding: 28px 32px;
  background: var(--color-paper);
  box-shadow: 4px 4px 0 var(--color-ink);
}
.service-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--color-ink);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-5deg);
}
.service-item h3 { font-size: 24px; font-weight: 700; margin: 0 0 12px; }
.service-item p { margin: 0; font-size: 15px; }
.service-copy strong { display: block; margin-top: 18px; font-size: 20px; font-weight: 900; }
.service-card-art { margin-top: auto; padding-top: 24px; }
.service-card-art img { display: block; width: 100%; height: auto; }
.service-options-card .service-card-art { padding-top: 0; }
.service-options-card .service-card-art img {
  max-height: 270px;
  object-fit: contain;
}

/* ---------- works ---------- */
.works-section { background: var(--color-primary); }
.works-section .section-heading { margin-bottom: 48px; }
.works-section .section-heading .eyebrow-pill { background: var(--color-paper); }
.works-showcase {
  max-width: 1180px; margin: 0 auto;
}
.work-featured {
  border: 2px solid var(--color-ink); border-radius: var(--radius);
  background: #fff; box-shadow: 8px 8px 0 var(--color-ink); overflow: hidden;
}
.work-featured { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.work-image { display: block; min-height: 100%; overflow: hidden; border-right: 2px solid var(--color-ink); }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work-image:hover img { transform: scale(1.025); }
.work-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(28px, 4vw, 46px); }
.work-category {
  display: inline-flex; padding: 6px 14px; border-radius: 999px;
  background: var(--color-ink); color: #fff; font-size: 12px; font-weight: 700;
}
.work-number { margin-top: 20px; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.work-copy h3 { margin: 2px 0 16px; font-size: clamp(25px, 2.5vw, 36px); line-height: 1.4; font-weight: 900; overflow-wrap: anywhere; }
.work-copy > p:not(.work-number) { margin-bottom: 24px; font-size: 14px; }
.work-copy .btn-pill { padding: 13px 22px; font-size: 14px; }

/* ---------- ticker (area list) ---------- */
.ticker { border-top: 2px solid var(--color-ink); border-bottom: 2px solid var(--color-ink); background: var(--color-ink); overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker 34s linear infinite; padding: 22px 0; }
.ticker-track > span { flex: none; display: flex; align-items: center; gap: 14px; padding: 0 28px; color: #fff; font-weight: 700; font-size: 16px; white-space: nowrap; }
.ticker-track > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; overflow-x: auto; } }

/* ---------- closing (region) section ---------- */
.closing { position: relative; background: var(--color-primary); overflow: hidden; }
.closing-grid {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto; padding: 120px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.closing h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.4;
  margin: 20px 0 24px;
}
.closing p { font-size: 16px; font-weight: 700; margin-bottom: 30px; max-width: 460px; }
.closing-art {
  overflow: hidden;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  background: #fffdf7;
}
.closing-art img { display: block; width: 100%; height: auto; }

/* ---------- price ---------- */
.price-heading { white-space: nowrap; font-size: clamp(28px, 5vw, 62px) !important; }
.price-box {
  background: #fff; border: 2px solid var(--color-ink); border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--color-ink);
  padding: 50px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  max-width: 780px; margin: 0 auto;
}
.price-box .row { text-align: center; }
.price-box .price-kind {
  display: inline-block; margin-bottom: 12px; padding: 7px 13px;
  border: 2px solid var(--color-ink); border-radius: 999px;
  background: var(--color-primary); font-size: 13px; font-weight: 900;
}
.price-box .row small {
  position: relative; z-index: 0; display: block; width: fit-content;
  margin: 0 auto 8px; font-weight: 900; font-size: 22px; line-height: 1.35;
}
.price-box .row small::after {
  content: ""; position: absolute; z-index: -1;
  left: -5px; right: -5px; bottom: 1px; height: 8px;
  border-radius: 2px; background: var(--color-primary); transform: rotate(-1.5deg);
}
.price-box .row strong { font-size: clamp(30px, 4vw, 44px); font-weight: 900; display: block; }
.price-box .row strong em { font-style: normal; font-size: 16px; font-weight: 700; margin-left: 2px; }
.price-box .row strong i { font-style: normal; font-size: 11px; }
.price-box .plus {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 50%; background: var(--color-ink); color: #fff;
  font-size: 26px; font-weight: 900; text-align: center;
}
.price-includes { max-width: 680px; margin: 30px auto 0; text-align: center; font-weight: 700; font-size: 15px; }
.price-detail-trigger {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 26px auto 0; padding: 13px 20px 13px 24px;
  border: 2px solid var(--color-ink); border-radius: 999px;
  background: #fff; color: var(--color-ink); font: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer;
}
.price-detail-trigger span { position: relative; display: block; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--color-primary); }
.price-detail-trigger span::before,
.price-detail-trigger span::after { content: ""; position: absolute; top: 50%; left: 50%; }
.price-detail-trigger span::before { width: 12px; height: 2px; border-radius: 2px; background: var(--color-ink); transform: translate(-58%, -50%); }
.price-detail-trigger span::after { width: 7px; height: 7px; border-top: 2px solid var(--color-ink); border-right: 2px solid var(--color-ink); transform: translate(-20%, -50%) rotate(45deg); }
.price-dialog { width: min(900px, calc(100% - 40px)); max-height: calc(100dvh - 32px); padding: 0; border: 0; border-radius: var(--radius); background: transparent; overflow: visible; }
.price-dialog::backdrop { background: rgba(32, 33, 30, .72); backdrop-filter: blur(4px); }
.price-dialog-card { position: relative; max-height: calc(100dvh - 32px); padding: clamp(30px, 6vw, 52px); border: 2px solid var(--color-ink); border-radius: var(--radius); background: var(--color-paper); box-shadow: 8px 8px 0 var(--color-ink); overflow-y: auto; }
.price-dialog-card h3 { margin: 18px 0 26px; font-size: clamp(28px, 5vw, 42px); font-weight: 900; }
.price-dialog-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--color-ink); cursor: pointer; }
.price-dialog-close::before,
.price-dialog-close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 2px; border-radius: 2px; background: #fff; transform: translate(-50%, -50%) rotate(45deg); }
.price-dialog-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.price-total { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.price-total > div { padding: 20px; border: 2px solid var(--color-ink); border-radius: 18px; background: #fff; }
.price-total small, .price-total strong { display: block; }
.price-total small { margin-bottom: 8px; font-size: 18px; line-height: 1.4; font-weight: 900; }
.price-total strong { position: relative; z-index: 0; width: fit-content; white-space: nowrap; font-size: clamp(18px, 2.75vw, 25px); font-weight: 900; }
.price-total strong::after {
  content: ""; position: absolute; z-index: -1;
  left: -4px; right: -4px; bottom: 1px; height: 9px;
  border-radius: 2px; background: var(--color-primary); transform: rotate(-1.5deg);
}
.price-detail-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.price-detail-sections section { padding: 26px; border: 2px solid var(--color-ink); border-radius: 18px; background: #fff; }
.price-detail-sections h4 { margin: 0 0 16px; font-size: 18px; line-height: 1.5; font-weight: 900; }
.price-check-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; font-size: 14px; line-height: 1.65; }
.price-check-list li { position: relative; padding-left: 1.65em; }
.price-check-list li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 10px; height: 10px; border: 2px solid var(--color-ink);
  border-radius: 50%; background: var(--color-primary);
  transform: rotate(-8deg); box-shadow: 2px 2px 0 var(--color-ink);
}
.price-detail-sections .price-option-section { grid-column: 1 / -1; background: var(--color-primary); }
.price-option-section p { margin: 0; font-size: 14px; line-height: 1.75; }
.price-notes { margin: 24px 0 0; padding: 0; list-style: none; font-size: 13px; }
.price-notes li { position: relative; padding-left: 1.25em; }
.price-notes li::before { content: "※"; position: absolute; left: 0; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 1180px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: start; }
.faq-group h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 22px; font-weight: 900; }
.faq-group h3 span { display: grid; place-items: center; width: 42px; height: 42px; border: 2px solid var(--color-ink); border-radius: 50%; background: var(--color-primary); font-size: 13px; }
.faq-list details {
  border: 2px solid var(--color-ink); border-radius: 20px; padding: 22px 26px; margin-bottom: 16px; background: #fff;
}
.faq-list summary {
  font-weight: 700; font-size: 17px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 24px; font-weight: 900; flex: none; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { margin-top: 16px; font-size: 15px; overflow: hidden; }

/* ---------- final cta ---------- */
.cta-final { text-align: center; }
.cta-final .cta-row { justify-content: center; margin-top: 32px; }
.contact-heading { margin-top: 20px; }
.contact-form {
  max-width: 880px; margin: 0 auto; padding: clamp(28px, 5vw, 52px);
  border: 2px solid var(--color-ink); border-radius: var(--radius);
  background: #fff; box-shadow: 8px 8px 0 var(--color-ink); text-align: left;
}
.contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-fields label { display: grid; gap: 9px; }
.contact-fields label > span { font-size: 15px; font-weight: 900; }
.contact-fields label b,
.contact-fields label small { display: inline-block; margin-left: 6px; padding: 2px 7px; border-radius: 999px; font-size: 10px; font-weight: 900; }
.contact-fields label b { background: var(--color-primary); color: var(--color-ink); }
.contact-fields label small { background: #e8e8e3; }
.contact-field-wide { grid-column: 1 / -1; }
.contact-fields input,
.contact-fields textarea {
  width: 100%; border: 2px solid var(--color-ink); border-radius: 14px;
  background: var(--color-paper); color: var(--color-ink); font: inherit; font-size: 16px;
  padding: 14px 16px; outline: none;
}
.contact-fields textarea { resize: vertical; min-height: 180px; }
.contact-fields input:focus,
.contact-fields textarea:focus { box-shadow: 4px 4px 0 var(--color-primary); }
.contact-privacy { margin-top: 24px; padding: 14px 16px; border: 2px solid var(--color-ink); border-radius: 14px; background: var(--color-cream); }
.contact-privacy summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; }
.contact-privacy summary::-webkit-details-marker { display: none; }
.contact-privacy summary::after { content: "+"; font-size: 20px; font-weight: 900; }
.contact-privacy[open] summary::after { content: "−"; }
.contact-privacy p { margin-top: 10px; font-size: 13px; }
.contact-consent { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 22px 0; font-size: 13px; font-weight: 700; }
.contact-consent input { width: 20px; height: 20px; accent-color: var(--color-primary); }
.contact-submit { display: flex; margin: 0 auto; border: 0; cursor: pointer; }
.contact-status { min-height: 1.8em; margin-top: 14px; text-align: center; font-size: 13px; font-weight: 700; }

/* ---------- footer ---------- */
footer.site { background: var(--color-ink); color: #fff; padding: 64px max(4vw, 28px) 28px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.footer-grid .brand-text { color: #fff; }
.footer-grid .brand-text small { color: #b7b8b2; }
footer.site p { font-size: 14px; margin-top: 14px; color: #cfd0ca; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; color: #d6d7d1; }
.footer-bottom { max-width: 1180px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid #45463f; font-size: 13px; color: #9b9c95; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .closing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 821px) and (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(350px, .92fr) minmax(0, 1.08fr);
    gap: 12px;
    padding: 64px 0 68px 32px;
  }
  .hero-title { font-size: clamp(28px, 3.4vw, 35px); }
  .hero-pricing { padding: 13px 14px; gap: 12px; }
  .hero-lead { max-width: 390px; font-size: 14px; line-height: 1.75; }
  .hero-art { margin-bottom: -68px; }
}
@media (max-width: 900px) {
  .steps-grid, .persona-grid, .split { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .steps-grid .card, .persona-grid .card, .split .stack .card { transform: none; }
  .statement { min-height: 0; }
  .statement-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }
  .statement p { margin-left: clamp(0px, 8vw, 64px); }
  .service-heading { grid-template-columns: 1fr; gap: 30px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-primary,
  .service-options-card { grid-column: auto; }
  .service-options-card { width: 100%; grid-template-columns: 1fr; padding: 30px; }
  .service-options-card .service-card-art { padding-top: 24px; }
  .service-options-card .service-card-art img { max-height: none; }
  .process-art {
    position: static;
    width: min(100%, 520px);
    margin: -30px auto 24px;
  }
}
@media (max-width: 820px) {
  header.site { height: 68px; padding: 0 20px; }
  .brand-text { font-size: 15px; }
  .menu-btn { position: relative; z-index: 2; display: flex; cursor: pointer; }
  .menu-btn i,
  .menu-btn i::before,
  .menu-btn i::after { transition: top .22s ease, transform .22s ease, background-color .18s ease; }
  .menu-btn[aria-expanded="true"] i { background: transparent; }
  .menu-btn[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
  .menu-btn[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }
  nav.main {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100vw;
    height: calc(100dvh - 68px);
    padding: 36px 28px;
    border: 0;
    background: var(--color-paper);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .25s ease, visibility 0s linear .25s, transform .3s cubic-bezier(.2, .8, .3, 1);
    overflow-y: auto;
  }
  nav.main.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  nav.main a {
    width: min(100%, 520px);
    padding: 20px 8px;
    border-bottom: 2px solid var(--color-ink);
    font-size: clamp(24px, 6vw, 32px);
    font-weight: 900;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .22s ease, transform .3s cubic-bezier(.2, .8, .3, 1.15);
  }
  nav.main.open a { opacity: 1; transform: translateY(0); }
  nav.main.open a:nth-child(1) { transition-delay: .08s; }
  nav.main.open a:nth-child(2) { transition-delay: .12s; }
  nav.main.open a:nth-child(3) { transition-delay: .16s; }
  nav.main.open a:nth-child(4) { transition-delay: .2s; }
  .header-actions .btn-pill span.label { display: none; }
  .header-actions .icon-send { width: 18px; height: 18px; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 56px 32px 72px;
  }
  .hero-art {
    order: -1;
    width: min(760px, calc(100% + 64px));
    margin: -56px auto 20px;
  }
  .hero-art img { width: 100%; max-width: 100%; margin-left: 0; }
}
@media (max-width: 680px) {
  .sp-only { display: block; }
  .section { padding: 80px 20px; }
  .contact-form { padding: 26px 20px; }
  .contact-fields { grid-template-columns: 1fr; gap: 20px; }
  .contact-field-wide { grid-column: auto; }
  .contact-consent { align-items: flex-start; justify-content: flex-start; }
  .hero-grid { padding: 56px 20px 64px; }
  .hero-title { font-size: clamp(23px, 7.4vw, 31px); }
  .hero-art {
    width: calc(100% + 40px);
    margin: -56px -20px 12px;
    overflow: hidden;
  }
  .hero-art img {
    width: 138%;
    max-width: none;
    transform: translateX(-25%);
  }
  .hero-pricing {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    padding: 20px 18px;
  }
  .hero-pricing small { font-size: 18px; }
  .hero-pricing strong { font-size: 32px; }
  .hero-pricing i { font-size: 14px; }
  .hero-pricing > span { width: 36px; height: 36px; margin: 0 auto; font-size: 21px; }
  .hero .cta-row { justify-content: center; }
  .closing .btn-consult {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
  #service .section-heading h2 {
    margin: 0;
    line-height: 1.2;
  }
  #service .section-heading > p {
    margin: 8px 0 0;
    line-height: 1.45;
  }
  .work-featured { grid-template-columns: 1fr; }
  .work-image { min-height: 230px; border-right: 0; border-bottom: 2px solid var(--color-ink); }
  .work-copy { padding: 26px 22px 30px; }
  .price-box { grid-template-columns: 1fr; text-align: center; }
  .price-box .row small { font-size: 18px; }
  .price-box .row strong { font-size: 32px; }
  .price-box .row strong em { font-size: 32px; }
  .price-box .row strong i { font-size: 14px; }
  .price-box .plus { width: 36px; height: 36px; margin: 0 auto; font-size: 21px; }
  .price-total { grid-template-columns: 1fr; }
  .price-detail-sections { grid-template-columns: 1fr; }
  .price-detail-sections .price-option-section { grid-column: auto; }
  .price-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .price-dialog-card { max-height: calc(100dvh - 20px); padding: 28px 20px; }
  .price-dialog-card h3 { margin-bottom: 22px; }
  .price-total > div,
  .price-detail-sections section { padding: 18px; }
  .price-detail-sections h4 { font-size: 16px; }
  .price-check-list,
  .price-option-section p { font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}
