/* ================================================================
   Atsushi's Portfolio — A Life of Quality
   ================================================================ */

:root {
  --bg:        #FFFFFF;
  --bg-soft:   #F5F5F5;
  --ink:       #1A1A1A;
  --ink-2:     #4A4A4A;
  --ink-3:     #888888;
  --line:      #E5E5E5;
  --line-2:    #CFCFCF;
  --accent:    #1A1A1A;
  --accent-2:  #4A4A4A;
  --bar:       #C026D3;

  --display:   "Cormorant Garamond", "Times New Roman", serif;
  --mincho:    "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  --gothic:    "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", "メイリオ", Meiryo, sans-serif;
  --label:     "Gabarito", -apple-system, "Helvetica Neue", sans-serif;
  --num:       "Inter", -apple-system, "Helvetica Neue", sans-serif;

  --max:       1280px;
  --pad-x:     clamp(20px, 4vw, 64px);

  --ease:      cubic-bezier(.2, .7, .15, 1);
}

/* ---- reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-anchor: none; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--gothic);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.85;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
::selection { background: var(--accent); color: #fff; }

/* ---- header ----------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  z-index: 100;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), height .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
  color: #fff;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  height: 64px;
  border-bottom-color: var(--line);
  color: var(--ink);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  letter-spacing: .12em;
}
.brand-mark {
  width: 32px; height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px;
  font-style: italic;
}
.brand-name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .08em;
}
.site-nav {
  display: flex;
  gap: 28px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: .25em;
  font-weight: 500;
}
.site-nav a {
  position: relative;
  padding: 4px 0;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.65,.05,.35,1);
}
.site-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.site-nav a.nav-cta {
  border: 1px solid currentColor;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.site-nav a.nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* ---- mobile nav ------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  background: var(--bg);
  z-index: 90;
  padding: 100px var(--pad-x) 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform .55s var(--ease);
  pointer-events: none;
  visibility: hidden;
  overflow-y: auto;
}
body.nav-open .mobile-nav {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: .12em;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a small {
  font-family: var(--gothic);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--ink-3);
}

/* ---- hero ------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.08);
  animation: heroZoom 7s cubic-bezier(.2,.7,.2,1) .2s forwards;
  will-change: transform;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.30) 45%, rgba(0,0,0,.55) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,.10) 30%, rgba(0,0,0,.45) 100%);
}
.hero-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--pad-x);
}
.hero-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .3em;
  margin: 0 0 28px;
  opacity: .9;
}
.hero-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: heroLine 1.8s cubic-bezier(.2,.7,.2,1) forwards;
  will-change: transform, opacity;
}
.hero-line:nth-child(1) { animation-delay: .9s; }
.hero-line:nth-child(2) { animation-delay: 1.3s; }
@keyframes heroLine {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.hero-jp {
  margin: 36px 0 0;
  font-family: var(--mincho);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .4em;
  opacity: .92;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--label);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .35em;
  opacity: 0;
  animation: heroScroll 1s ease 1.8s forwards;
}
@keyframes heroScroll {
  to { opacity: 1; }
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.5);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content:"";
  position: absolute;
  top: -56px; left: 0;
  width: 1px; height: 56px;
  background: #fff;
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  to { top: 100%; }
}

/* ---- section common -------------------------------------------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(96px, 14vh, 160px) var(--pad-x);
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.section-num {
  font-family: var(--num);
  font-weight: 400;
  font-feature-settings: "tnum";
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--ink-3);
}
.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: .01em;
}
.section-title small {
  display: block;
  margin-top: 14px;
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--ink-2);
}
.sub-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: .04em;
  margin: 80px 0 36px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
}
.sub-title small {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--ink-2);
  white-space: nowrap;
}

.divider-image {
  position: relative;
  height: clamp(360px, 56vh, 640px);
  overflow: hidden;
}
.divider-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---- profile ---------------------------------------------------- */
.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.profile-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.profile-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 1.4s var(--ease);
}
.profile-photo:hover img { transform: scale(1.04); }
.profile-body { display: flex; flex-direction: column; gap: 56px; }

.block-title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .2em;
  margin-bottom: 20px;
  color: var(--ink);
}
.kv {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.kv > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.kv dt {
  font-family: var(--gothic);
  color: var(--ink-3);
  font-size: 13px;
  letter-spacing: .2em;
}
.kv dd {
  font-family: var(--gothic);
  font-size: 16px;
}
.kv-en {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-3);
  margin-left: 8px;
  font-size: 14px;
}
.profile-text {
  font-family: var(--gothic);
  font-size: 16px;
  margin: 0;
}

.achievement {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.achievement li {
  border-bottom: 1px solid var(--line);
  padding: 24px 8px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ach-num {
  font-family: var(--num);
  font-weight: 300;
  font-feature-settings: "tnum";
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ach-num small {
  font-family: var(--gothic);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--ink);
  margin-left: 6px;
}
.ach-label {
  font-family: var(--gothic);
  font-size: 12.5px;
  color: var(--ink-2);
  letter-spacing: .12em;
}

/* ---- account ---------------------------------------------------- */
.concept {
  text-align: center;
  margin-bottom: 80px;
}
.concept-en {
  font-family: var(--display);
  font-style: italic;
  letter-spacing: .3em;
  color: var(--accent-2);
  font-size: 13px;
  margin: 0 0 18px;
}
.concept-title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: .3em;
  line-height: 1.4;
  margin: 0 0 26px;
}
.concept-title > span {
  display: inline-block;
  opacity: 0;
  filter: blur(26px);
  transition:
    opacity 3.6s cubic-bezier(.2,.7,.2,1),
    filter 4.2s cubic-bezier(.2,.7,.2,1);
}
.concept.is-revealed .concept-title > span {
  opacity: 1;
  filter: blur(0);
}
.concept-text {
  font-family: var(--gothic);
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-2);
}

.sns-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 96px;
}
.sns-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .5s var(--ease), border-color .3s ease, box-shadow .5s var(--ease);
}
.sns-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.18);
}
.sns-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: block;
  object-fit: contain;
}
.sns-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sns-platform {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.1;
}
.sns-handle {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--ink-3);
}
.sns-count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink-2);
  white-space: nowrap;
}
.sns-count b {
  font-family: var(--num);
  font-weight: 400;
  font-feature-settings: "tnum";
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sns-count small {
  font-family: var(--gothic);
  font-size: 11.5px;
  letter-spacing: .1em;
  color: var(--ink-3);
}
.sns-arrow {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 13px;
  color: var(--ink-3);
  transition: transform .35s var(--ease), color .25s ease;
}
.sns-card:hover .sns-arrow { transform: translate(3px, -3px); color: var(--ink); }

.insights-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: .04em;
  margin-bottom: 36px;
  display: flex; align-items: baseline; gap: 20px;
}
.insights-title small {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--ink-2);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.insight {
  border: 1px solid var(--line);
  background: #fff;
  padding: 32px 32px 28px;
  transition: transform .5s var(--ease), border-color .3s ease, box-shadow .5s var(--ease);
}
.insight:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.18);
}
/* Insight cards: stagger inside the wrapper reveal */
.insight-grid.reveal .insight {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.3s var(--ease), border-color .3s ease, box-shadow .5s var(--ease);
}
.insight-grid.reveal.is-revealed .insight { opacity: 1; transform: translateY(0); }
.insight-grid.reveal.is-revealed .insight:nth-child(1) { transition-delay: 0s; }
.insight-grid.reveal.is-revealed .insight:nth-child(2) { transition-delay: .12s; }
.insight-grid.reveal.is-revealed .insight:nth-child(3) { transition-delay: .24s; }
.insight-grid.reveal.is-revealed .insight:nth-child(4) { transition-delay: .36s; }
.insight-grid.reveal.is-revealed .insight:hover { transform: translateY(-3px); }

/* Highlights cards: stagger inside works-feature */
.works-feature .work-feature {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s var(--ease), transform 1.3s var(--ease);
}
.works-feature .work-feature.is-revealed { opacity: 1; transform: translateY(0); }
.works-feature .work-feature.is-revealed:nth-child(1) { transition-delay: 0s; }
.works-feature .work-feature.is-revealed:nth-child(2) { transition-delay: .14s; }
.works-feature .work-feature.is-revealed:nth-child(3) { transition-delay: .28s; }

/* Category rail: float up on reveal */
.cat-rail.reveal {
  transform: translateY(48px);
}
.cat-rail.reveal.is-revealed { transform: translateY(0); }
.insight h4 {
  font-family: var(--gothic);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--ink);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar { display: grid; grid-template-columns: 64px 1fr 60px; align-items: center; gap: 14px; font-size: 13px; }
.bar-label { font-family: var(--gothic); color: var(--ink-2); }
.bar-track { height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.bar-fill {
  height: 100%;
  width: 0;
  background: var(--bar);
  border-radius: 999px;
  transition: width 1.6s var(--ease);
}
.is-revealed .bar-fill { width: var(--w); }
.bar-val { font-family: var(--num); font-weight: 400; font-feature-settings: "tnum"; text-align: right; letter-spacing: 0; }

.donut {
  --p: 50;
  width: 180px;
  height: 180px;
  margin: 8px auto 16px;
  border-radius: 50%;
  background: conic-gradient(var(--ink) 0%, var(--ink) calc(var(--p) * 1%), #D4D4D4 calc(var(--p) * 1%) 100%);
  position: relative;
}
.donut::after {
  content: "";
  position: absolute;
  inset: 18px;
  background: #fff;
  border-radius: 50%;
}
.donut-center {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  z-index: 1;
}
.donut-center span {
  font-family: var(--gothic);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--ink-3);
}
.donut-center b {
  font-family: var(--num);
  font-weight: 300;
  font-feature-settings: "tnum";
  font-size: 36px;
  letter-spacing: -0.02em;
}
.legend {
  display: flex; justify-content: center; gap: 22px;
  font-size: 12px;
  font-family: var(--gothic);
  color: var(--ink-2);
}
.legend i {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.insights-note {
  margin: 28px 0 0;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .15em;
}

/* ---- strengths -------------------------------------------------- */
.strength-list { display: flex; flex-direction: column; gap: 64px; }
.strength {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.strength:last-child { border-bottom: 0; padding-bottom: 0; }
.strength-num {
  font-family: var(--mincho);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.strength-title {
  font-family: var(--mincho);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.55;
  letter-spacing: .06em;
  margin-bottom: 24px;
}
.strength-body p {
  font-family: var(--gothic);
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-2);
  margin: 0;
}
.strength-body strong { color: var(--ink); font-weight: 600; }
.strength-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}
.strength-stats li {
  border-bottom: 1px solid var(--line);
  padding: 18px 8px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strength-stats b {
  font-family: var(--num);
  font-weight: 300;
  font-feature-settings: "tnum";
  font-size: 32px;
  letter-spacing: -0.01em;
}
.strength-stats b small {
  font-family: var(--gothic);
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
  color: var(--ink);
  letter-spacing: .15em;
}
.strength-stats span {
  font-family: var(--gothic);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: .12em;
}
.strength-cases {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.strength-case {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.strength-case-head {
  display: contents;
}
.strength-case-label {
  font-family: var(--label);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--ink-3);
}
.strength-case-name {
  font-family: var(--gothic);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--ink);
}
.strength-case-name em {
  font-style: normal;
  color: var(--ink-3);
  margin: 0 6px;
}
.strength-case-stats {
  display: flex;
  gap: 18px;
  align-items: baseline;
  font-size: 11px;
  color: var(--ink-3);
}
.strength-case-stats .stat {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.strength-case-stats .stat b {
  font-family: var(--num);
  font-feature-settings: "tnum";
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  margin-right: 2px;
}
.strength-case-stats .stat b i {
  font-style: normal;
  font-family: var(--gothic);
  font-size: .72em;
  font-weight: 500;
  margin-left: 1px;
}
.strength-case-stats .stat small {
  font-family: var(--gothic);
  letter-spacing: .15em;
}

/* ---- works ------------------------------------------------------ */
.works-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: 80px;
  padding-top: 8px;
}
.work-feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
}

.work-feature-media {
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  transition: box-shadow .6s var(--ease);
}
.work-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.work-feature-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.92);
  transform: scale(1);
  transition: transform 1.2s var(--ease), filter .6s ease;
}
.work-feature-media:hover {
  box-shadow: 0 30px 70px -32px rgba(0,0,0,.4);
}
.work-feature-media:hover::after { opacity: 1; }
.work-feature-media:hover video {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.work-feature-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.work-feature-label {
  font-family: var(--label);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .35em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.work-feature-product {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.work-feature-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.work-feature-brand {
  font-family: var(--gothic);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-2);
}
.work-feature-price {
  font-family: var(--num);
  font-feature-settings: "tnum";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink);
  margin-left: auto;
}
.work-feature-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.work-feature-stats li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.work-feature-stats b {
  font-family: var(--num);
  font-weight: 500;
  font-feature-settings: "tnum";
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.work-feature-stats small {
  font-family: var(--label);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* legacy works-grid (kept for any non-feature use) */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-bottom: 24px;
}
.work-card { margin: 0; }
.work-thumb {
  aspect-ratio: 9 / 16;
  background:
    linear-gradient(135deg, #2a2826 0%, #1a1a1a 100%);
  display: grid; place-items: center;
  color: rgba(255,255,255,.35);
  font-family: var(--display);
  font-style: italic;
  letter-spacing: .3em;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  transition: transform .6s var(--ease);
}
.work-thumb::after {
  content: "▶";
  position: absolute;
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 14px;
  transition: background .3s ease, color .3s ease;
}
.work-card:hover .work-thumb { transform: translateY(-4px); }
.work-card:hover .work-thumb::after { background: #fff; color: var(--ink); }
.work-thumb--video::after { display: none; }
.work-thumb--video { background: #000; }
.work-thumb--video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.work-card figcaption {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.work-brand {
  font-family: var(--gothic);
  font-size: 14px;
  letter-spacing: .15em;
}
.work-product {
  font-family: var(--gothic);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: .12em;
  display: flex; align-items: baseline; gap: 10px;
}
.work-price {
  font-family: var(--num);
  font-feature-settings: "tnum";
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0;
}
.work-meta {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 4px;
}
.work-meta b {
  font-family: var(--num);
  font-weight: 600;
  font-feature-settings: "tnum";
  font-size: 16px;
  color: var(--ink);
  margin-right: 4px;
}
.work-meta small { letter-spacing: .15em; }
.work-link {
  margin-top: 8px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-family: var(--label);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.work-link:hover { background: var(--ink); color: var(--bg); }
.work-link-arrow { font-family: var(--num); letter-spacing: 0; transition: transform .3s ease; }
.work-link:hover .work-link-arrow { transform: translateX(3px); }

/* category tabs + rail */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.cat-tab {
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--ink-2);
  font-family: var(--label);
  font-weight: 500;
  transition: all .25s ease;
}
.cat-tab:hover { border-color: var(--ink); color: var(--ink); }
.cat-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.cat-rail {
  margin: 0 calc(var(--pad-x) * -1);
  padding: 12px 0 28px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: var(--pad-x);
}
.cat-track::before,
.cat-track::after {
  content: "";
  flex: 0 0 max(var(--pad-x), 24px);
}
.cat-rail::-webkit-scrollbar { height: 4px; }
.cat-rail::-webkit-scrollbar-track { background: transparent; }
.cat-rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.cat-track {
  display: flex;
  gap: clamp(14px, 1.6vw, 24px);
  width: max-content;
}
.reel-card {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 280px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: opacity .4s ease, transform .4s ease;
}
.reel-card.is-hidden {
  display: none;
}
.reel-media {
  aspect-ratio: 9 / 16;
  background: #111;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  transition: box-shadow .6s var(--ease);
}
.reel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.35) 100%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.reel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.92);
  transform: scale(1);
  transition: transform 1.2s var(--ease), filter .6s ease;
}
.reel-media:hover {
  box-shadow: 0 24px 56px -28px rgba(0,0,0,.4);
}
.reel-media:hover::after { opacity: 1; }
.reel-media:hover video {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.reel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--label);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .25s ease, color .25s ease;
}
.reel-link:hover { background: var(--ink); color: var(--bg); }
.reel-link-arrow {
  font-family: var(--num);
  letter-spacing: 0;
  transition: transform .3s ease;
}
.reel-link:hover .reel-link-arrow { transform: translateX(3px); }

/* ---- clients ---------------------------------------------------- */
.client-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.client-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 18px 24px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.client-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.client-cell:hover::before { opacity: 1; }
.client-logo {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.client-cell:hover .client-logo { transform: translateY(-3px) scale(1.06); }
.client-name {
  font-family: var(--gothic);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.3;
  position: relative;
  transition: color .45s var(--ease);
}
.client-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transform: translateX(-50%) scaleX(0);
  transition: transform .55s cubic-bezier(.65,.05,.35,1);
}
.client-cell:hover .client-name { color: var(--ink); }
.client-cell:hover .client-name::after { transform: translateX(-50%) scaleX(1); }

/* ---- video modal ----------------------------------------------- */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.vid-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.vid-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.vid-modal-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 320px) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  max-width: 92vw;
  max-height: 88vh;
  transform: scale(.86) translateY(20px);
  filter: blur(12px);
  transition:
    transform .7s cubic-bezier(.2,.7,.2,1),
    filter .7s cubic-bezier(.2,.7,.2,1);
}
.vid-modal.is-open .vid-modal-content {
  transform: scale(1) translateY(0);
  filter: blur(0);
}
.vid-modal-info {
  color: #fff;
}
.vid-modal-num {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.vid-modal-title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .12em;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.4;
}
.vid-modal-desc {
  font-family: var(--gothic);
  font-size: 13.5px;
  letter-spacing: .04em;
  line-height: 1.85;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.vid-modal-videos {
  display: flex;
  gap: clamp(12px, 1.8vw, 24px);
  align-items: center;
}
.vid-modal-videos video {
  display: block;
  height: 80vh;
  max-height: 80vh;
  aspect-ratio: 9 / 16;
  width: auto;
  background: #000;
  border-radius: 6px;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,.6);
}
.vid-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.vid-modal-close:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: rotate(90deg);
}
@media (max-width: 960px) {
  .vid-modal-content {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: 20px;
    max-width: min(560px, 86vw);
    max-height: 80vh;
    overflow-y: auto;
    padding: 28px 22px;
    background: #0c0c0c;
    border-radius: 14px;
    box-shadow: 0 30px 90px -10px rgba(0,0,0,.7);
  }
  .vid-modal-info { text-align: center; }
  .vid-modal-num { font-size: 28px; margin-bottom: 8px; }
  .vid-modal-title { font-size: 18px; margin-bottom: 10px; }
  .vid-modal-desc { font-size: 12.5px; line-height: 1.7; }
  .vid-modal-videos { justify-content: center; gap: 10px; }
  .vid-modal-videos video { height: auto; max-height: 50vh; width: auto; max-width: 38vw; border-radius: 4px; }
  .vid-modal-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 18px; }
}
@media (max-width: 560px) {
  .vid-modal-content { max-width: 88vw; padding: 24px 18px; }
  .vid-modal-videos video { max-width: 38vw; max-height: 44vh; }
}

/* ---- post types ------------------------------------------------- */
.lead {
  font-family: var(--gothic);
  font-size: 16px;
  text-align: center;
  margin: 0 auto 64px;
  max-width: 720px;
  color: var(--ink-2);
}
.clients .lead { max-width: 940px; }
.type-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.type-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  position: relative;
  transition: transform .5s var(--ease), border-color .3s ease, box-shadow .5s var(--ease);
}
.type-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.18);
}
.type-num {
  font-family: var(--num);
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: .1em;
}
.type-card h3 {
  font-family: var(--mincho);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .15em;
}
.type-card p {
  font-family: var(--gothic);
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.type-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--label);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* ---- pricing ---------------------------------------------------- */
.price-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}
@media (max-width: 960px) {
  .price-groups {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}
.price-group {
  padding: 36px 28px 30px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), border-color .3s ease, box-shadow .5s var(--ease);
}
.price-group:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 28px 70px -32px rgba(0,0,0,.18);
}

/* Note inside a price card (e.g., Instagram combination tip) */
.price-group-note {
  margin: 18px 0 0;
  font-family: var(--gothic);
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--ink-3);
}
.price-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.price-group-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.price-group-logos {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.price-group-logos .price-group-logo { width: 22px; height: 22px; }
.price-group-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .01em;
  color: var(--ink);
  margin: 0;
}
.price-group-sub {
  font-family: var(--gothic);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--ink-3);
  margin: 0 0 0 auto;
}
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.price-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.price-item:last-child { border-bottom: 0; }
.price-item-name {
  font-family: var(--gothic);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--ink);
  white-space: nowrap;
}
.price-item-value {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  font-family: var(--num);
  font-feature-settings: "tnum";
  flex-wrap: nowrap;
  min-width: 0;
}
.price-item-value b {
  font-family: var(--num);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.price-item-value .price-item-tba {
  font-family: var(--gothic);
  font-size: 13px;
  letter-spacing: .04em;
}
.price-note {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--gothic);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: var(--ink-3);
}
.price-item-value small {
  font-family: var(--gothic);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  color: var(--ink);
}

/* ---- contact ---------------------------------------------------- */
.contact {
  background: var(--ink);
  color: var(--bg);
  max-width: none;
  padding: clamp(120px, 18vh, 200px) var(--pad-x);
  text-align: center;
}
.contact .section-num,
.contact .section-title small,
.contact .contact-eyebrow { color: var(--accent); }
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-eyebrow {
  font-family: var(--display);
  font-style: italic;
  letter-spacing: .35em;
  font-size: 13px;
  margin: 0 0 24px;
}
.contact-title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.4;
  letter-spacing: .1em;
  margin: 0 0 36px;
  white-space: nowrap;
}
.contact-title em { font-style: normal; color: rgba(255,255,255,.85); font-weight: 500; }
.contact-text {
  font-family: var(--gothic);
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.8);
  margin: 0 0 48px;
}
.contact-actions {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  flex-wrap: nowrap;
}
.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.contact-action:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}
.contact-action-label,
.contact-action-value {
  font-family: var(--gothic);
  font-weight: 500;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: .08em;
  line-height: 1;
}
.contact-action-label {
  color: inherit;
  opacity: .75;
  position: relative;
  padding-right: 12px;
}
.contact-action-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: currentColor;
  opacity: .4;
}
.contact-action-value {
  color: inherit;
}
.contact-or {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,.45);
  letter-spacing: .12em;
  text-transform: lowercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}
.contact-or::before,
.contact-or::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,.25);
}

/* ---- footer ----------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-name {
  margin: 0;
  font-family: var(--gothic);
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--bg);
}
.footer-name span {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  margin-left: 10px;
  color: rgba(255,255,255,.5);
}
.footer-copy {
  margin: 0;
  font-family: var(--label);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .25em;
}

.br-sp { display: none; }
@media (max-width: 720px) { .br-sp { display: inline; } }

/* ---- reveal animation ------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease),
    transform 1.2s var(--ease);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- responsive ------------------------------------------------- */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .site-header { color: var(--ink); }
  .site-header.is-scrolled { color: var(--ink); }

  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo { aspect-ratio: 4 / 5; max-width: 460px; margin: 0 auto; }

  .insight-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
  .strength { grid-template-columns: 1fr; gap: 12px; }
  .strength-num { font-size: 40px; }
  .strength-case { grid-template-columns: auto 1fr; gap: 10px 14px; padding: 16px 0; }
  .strength-case-stats { grid-column: 1 / -1; flex-wrap: wrap; gap: 12px 18px; }

  .reel-card { width: clamp(200px, 56vw, 240px); }

  .works-feature { grid-template-columns: 1fr; gap: 56px; }
  .work-feature-media { max-width: 360px; margin: 0 auto; width: 100%; overflow: visible; border-radius: 0; }
  .work-feature-media::after { display: none; }
  .work-feature-media video { transition: none; }
  .work-feature-stats { grid-template-columns: repeat(4, 1fr); gap: 12px; }

  .reel-media { overflow: visible; }
  .reel-media::after { display: none; }
  .reel-media video { transition: none; }

  .price-groups { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .sns-cards { grid-template-columns: 1fr; gap: 14px; }
  .sns-card { grid-template-columns: 48px 1fr auto; gap: 16px; padding: 22px 20px; }
  .sns-logo { width: 48px; height: 48px; }
  .sns-platform { font-size: 19px; }
  .sns-count b { font-size: 20px; }

  .contact-actions { flex-direction: column; gap: 14px; }
  .contact-action { padding: 14px 22px; }
  .contact-action-label,
  .contact-action-value { font-size: 13.5px; }

  .concept-text { font-size: 12.5px; line-height: 1.7; }
  .concept-text br { display: none; }

  .contact-text { font-size: 12.5px; line-height: 1.7; }

  .strength-body p { font-size: 12.5px; line-height: 1.75; }
  .strength-body p br { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 14.5px; }
  .section { padding: 96px var(--pad-x); }
  .section-head { flex-direction: column; gap: 14px; align-items: flex-start; }
  .works-grid { grid-template-columns: 1fr; gap: 28px; }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
  .client-cell { padding: 18px 8px 14px; gap: 8px; }
  .client-logo { height: 36px; }
  .client-name { font-size: 8.5px; letter-spacing: .12em; }
  .price-group { padding: 28px 18px 24px; }
  .price-group-head {
    gap: 10px;
    padding-bottom: 18px;
    margin-bottom: 4px;
  }
  .price-group-logo { width: 26px; height: 26px; }
  .price-group-logos .price-group-logo { width: 22px; height: 22px; }
  .price-note { font-size: 11px; line-height: 1.8; margin-top: 24px; }
  .price-group-title { font-size: 20px; }
  .price-group-sub { font-size: 9.5px; letter-spacing: .18em; margin: 0 0 0 auto; }
  .price-item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: baseline;
    gap: 8px;
    padding: 12px 0;
  }
  .price-item-name { font-size: 11.5px; white-space: nowrap; }
  .price-item-value {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 3px;
    font-size: 11px;
    min-width: 0;
  }
  .price-item-value b { font-size: 13px; letter-spacing: 0; }
  .price-item-value small { font-size: 9px; letter-spacing: 0; white-space: nowrap; }
  .price-item-value .price-item-tba { font-size: 12px; }
  .achievement { grid-template-columns: 1fr; }
  .achievement li {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0;
  }
  .ach-num { font-size: 24px; flex-shrink: 0; }
  .ach-num small { font-size: 10.5px; }
  .ach-label { font-size: 11.5px; text-align: right; }
  .strength-stats { grid-template-columns: 1fr 1fr; }
}
