/* ============================================================
   ABE REO — stylesheet
   1. tokens / 2. base / 3. layout・typography
   4. header・footer / 5. parts / 6. works gallery
   7. pages / 8. responsive
   ============================================================ */

/* ---------- 1. tokens ------------------------------------ */
:root {
  --bg: #f3f1ed;
  --bg-light: #f7f6f2;     /* 少し明るいオフホワイト */
  --bg-greige: #efece5;    /* ごく薄いグレージュ */
  --bg-dark: #1d1d1b;      /* FORIIO誘導セクション */
  --paper: #faf9f6;
  --ink: #191919;
  --charcoal: #20201e;
  --sub: #77736d;
  --line: #dfdcd6;
  --line-soft: #e8e5df;
  --greige: #b9b0a4;
  --gold: #9a8459;

  --font-serif: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  /* 英字用のゴシック。明朝とのコントラストを出す役割 */
  --font-en: "Inter", "Noto Sans JP", "Hiragino Sans", system-ui, sans-serif;

  --container: 1360px;
  --gutter: 64px;
  --section-y: clamp(96px, 10vw, 180px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- 2. base -------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: 0.035em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 背景のごく薄いグレージュ。気づくか気づかないか程度にゆっくり動く */
body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(48% 42% at 22% 28%, rgba(185, 176, 164, 0.16), transparent 70%),
    radial-gradient(42% 38% at 78% 72%, rgba(154, 132, 89, 0.09), transparent 72%);
  animation: bg-drift 26s ease-in-out infinite alternate;
}

@keyframes bg-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(22px, -16px, 0); }
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4, p, figure, ul, dl, dd { margin: 0; padding: 0; }
ul { list-style: none; }

:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }
::selection { background: #e3ded4; }

/* ---------- 3. layout ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container); }
.container--narrow { max-width: 1000px; }

.section { padding-block: var(--section-y); position: relative; }
.section > .container { position: relative; z-index: 1; }

/* セクションごとの空気の差。色差はごくわずか */
.section--light { background: var(--bg-light); }
.section--greige { background: var(--bg-greige); }

/* 背景の巨大英字（装飾） */
.deco {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(120px, 15vw, 240px);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  color: var(--charcoal);
  opacity: 0.03;
}
.deco--right { left: auto; right: 0; }
.deco--faint { opacity: 0.015; }                       /* さらに控えめに */
.deco--small { font-size: clamp(84px, 10.5vw, 168px); } /* 約70%のサイズ */
.deco--top { top: clamp(40px, 8vw, 140px); transform: none; }
.section--tight { padding-block: clamp(64px, 6.5vw, 112px); }
.section--line { border-top: 1px solid var(--line); }

.page-top { padding-top: calc(var(--header-h) + clamp(72px, 8vw, 140px)); }

/* typography */
.label {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.7;
  color: var(--sub);
  text-transform: uppercase;
}
.label--block { display: block; }

.heading {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.heading--hero { font-size: clamp(38px, 4.6vw, 66px); line-height: 1.45; letter-spacing: 0.03em; }
.heading--xl { font-size: clamp(34px, 3.9vw, 54px); line-height: 1.5; }
.heading--lg { font-size: clamp(28px, 2.8vw, 40px); }
.heading--md { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.7; }

.lede { color: var(--sub); font-size: 15px; line-height: 2.15; }
.body-text { line-height: 2.15; color: #33312e; font-size: 15.5px; }
.body-text + .body-text { margin-top: 1.5em; }

.section-head {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(44px, 4.5vw, 72px);
  padding-bottom: 26px;
}

/* 罫線は幅0から静かに伸びる */
.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out) 0.1s;
}
.section-head.is-visible::after { transform: scaleX(1); }

/* ラベル → ライン → 見出し → 補助リンク の順に立ち上げる */
.section-head[data-reveal] { opacity: 1; transform: none; transition: none; }
.section-head .label,
.section-head .heading,
.section-head-side {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.section-head .heading { transition-delay: 0.2s; }
.section-head-side { transition-delay: 0.3s; }
.section-head.is-visible .label,
.section-head.is-visible .heading,
.section-head.is-visible .section-head-side { opacity: 1; transform: none; }
.section-head .label { display: block; margin-bottom: 16px; font-size: 12.5px; color: var(--charcoal); }
.section-head-side { flex: 0 0 auto; }

/* ---------- 4. header ------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(243, 241, 237, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.6s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-en);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: var(--charcoal);
}

.nav-list { display: flex; gap: clamp(24px, 2.6vw, 44px); }
.nav-list a {
  position: relative;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--sub);
  padding-block: 8px;
  transition: color 0.5s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.nav-list a:hover,
.nav-list a[aria-current="page"] { color: var(--charcoal); }
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  margin-right: -8px;
  background: none; border: 0; cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 9px;
  width: 22px; height: 1px;
  background: var(--charcoal);
  transition: transform 0.5s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.is-menu-open .nav-toggle span:nth-child(1) { transform: translateY(3.5px) rotate(9deg); }
.is-menu-open .nav-toggle span:nth-child(2) { transform: translateY(-3.5px) rotate(-9deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  padding: calc(var(--header-h) + 40px) 24px 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.is-menu-open .nav-drawer { opacity: 1; visibility: visible; }
.nav-drawer-list li { border-bottom: 1px solid var(--line); }
.nav-drawer-list a { display: block; padding: 22px 2px; font-size: 14px; letter-spacing: 0.2em; }
.nav-drawer-list .ja {
  display: block; margin-top: 2px;
  font-family: var(--font-serif); font-size: 12.5px;
  letter-spacing: 0.1em; color: var(--sub);
}
.nav-drawer-foot .label { display: block; margin-top: 6px; }

/* ---------- footer --------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--paper);
  border-top: 1px solid rgba(250, 249, 246, 0.1);
  padding-block: clamp(64px, 7vw, 96px) 32px;
}
.site-footer .brand { color: var(--paper); }
.site-footer .label { color: rgba(250, 249, 246, 0.55); }

.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.footer-brand .brand { display: block; margin-bottom: 22px; }
.footer-brand .label { display: block; }
.footer-col-title { display: block; margin-bottom: 18px; }
.footer-links li + li { margin-top: 11px; }
.footer-links a { font-size: 13px; color: rgba(250, 249, 246, 0.62); letter-spacing: 0.1em; transition: color 0.5s var(--ease); }
.footer-links a:hover { color: var(--paper); }
.footer-bottom {
  margin-top: clamp(48px, 5vw, 72px);
  padding-top: 22px;
  border-top: 1px solid rgba(250, 249, 246, 0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------- 5. parts ------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 34px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-en);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em;
  color: var(--charcoal); cursor: pointer;
  transition: background 0.6s var(--ease), border-color 0.6s var(--ease), color 0.6s var(--ease);
}
.btn .arrow { transition: transform 0.6s var(--ease); }
.btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--paper); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--solid { background: var(--charcoal); border-color: var(--charcoal); color: var(--paper); }
.btn--solid:hover { background: transparent; color: var(--charcoal); }

.text-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.18em;
  color: var(--charcoal);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.22s var(--ease-out);
}
.text-link .arrow { transition: transform 0.22s var(--ease-out); }
.text-link:hover { border-color: var(--charcoal); }
.text-link:hover .arrow { transform: translateX(5px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* 作品カードは紙面に置かれるように、わずかなscaleを添える */
.gallery-item[data-reveal] { transform: translateY(30px) scale(0.98); }
.gallery-item[data-reveal].is-visible { transform: none; }

/* ヒーロー：読み込み時に順番に立ち上げる */
.hero-in {
  opacity: 0;
  animation: hero-in 0.8s var(--ease-out) both;
  animation-delay: var(--in-delay, 0s);
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* 文字のマスクリビール */
.reveal-line {
  display: block;
  overflow: hidden;
  padding-block: 0.09em;
  margin-block: -0.09em;
}
.reveal-line-inner {
  display: block;
  transform: translateY(110%);
  animation: line-in 0.85s var(--ease-out) both;
}
.reveal-line:nth-of-type(1) .reveal-line-inner { animation-delay: 0.16s; }
.reveal-line:nth-of-type(2) .reveal-line-inner { animation-delay: 0.28s; }
@keyframes line-in {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

/* ヒーローの縦型メディアは文字より少し遅れて */
.hero-item {
  opacity: 0;
  animation: media-in 1s var(--ease-out) both;
}
.hero-item--main { animation-delay: 0.3s; }
.hero-item--sub { animation-delay: 0.44s; }
@keyframes media-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #eae7e1 0%, #e3dfd7 55%, #d8d3c9 100%);
}
.visual img, .visual video {
  width: 100%; height: 100%;
  object-fit: cover;      /* 既定：比率が違っても枠いっぱいに自然にトリミング */
  object-position: center;
  transition: transform 0.9s var(--ease-out);
}
/* contain（全体表示）の素材は、余った部分を生成りで埋める */
.visual img[style*="contain"], .visual video[style*="contain"] { background: #eae7e1; }


.visual-empty {
  position: absolute; inset: 0; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 24px; text-align: center;
}
.visual-empty .name { font-family: var(--font-serif); font-size: clamp(11px, 1.05vw, 15px); letter-spacing: 0.08em; color: #a1988d; }
.visual-empty .label { color: #b3aba0; font-size: clamp(9px, 0.8vw, 11.5px); }

/* ---------- 6. works gallery ----------------------------- */
/* 作品の比率（縦型9:16 / フィード4:5 など）をそのまま活かす。
   列は3列を基本に、1列ごとに高さをずらして非対称に見せる。 */
/* 比率がばらばらでも余白が空きすぎないよう、段組み（マソンリー）で流す。
   1カラム=約360px（縦型9:16で高さ約640px）。 */
.gallery {
  columns: 3;
  column-gap: clamp(24px, 3.4vw, 48px);
  max-width: 1176px;
}

/* HOMEは1件が画面高の3分の2を超えないよう、ひとまわり小さく */
.gallery--home { max-width: 1104px; }

.gallery-item--col {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: clamp(48px, 6vw, 88px);
}

/* 比率は各作品の ratio から。既定は縦型9:16 */
.gallery .visual,
.hero-item .visual { aspect-ratio: var(--ratio, 9 / 16); }

.work-card { display: block; }
.work-hover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 8px; padding: 32px;
  background: linear-gradient(to top, rgba(28, 28, 26, 0.62), rgba(28, 28, 26, 0.08) 60%, rgba(28, 28, 26, 0));
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.work-hover .name {
  font-family: var(--font-serif);
  font-size: 19px; line-height: 1.6; letter-spacing: 0.06em; color: #faf9f6;
}
.work-hover .cat { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.2em; color: rgba(250, 249, 246, 0.74); }
.work-hover .view {
  margin-top: 10px;
  font-family: var(--font-en);
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; color: #faf9f6;
}
.work-hover > * { transform: translateY(8px); transition: transform 0.5s var(--ease-out); }
.work-hover .view { align-self: flex-end; }
.work-card:hover .work-hover { opacity: 1; }
.work-card:hover .work-hover > * { transform: none; }
.work-card:hover .visual img,
.work-card:hover .visual video { transform: scale(1.02); }
.visual { overflow: hidden; }

.work-caption { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; }
.work-caption .title {
  font-family: var(--font-serif);
  font-size: 18px; line-height: 1.65; letter-spacing: 0.05em; color: var(--charcoal);
}
.work-caption .title { font-size: 16.5px; }
.work-caption .year { flex: 0 0 auto; padding-top: 4px; }

/* 業種タグ */
.work-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.work-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--sub);
  border: 1px solid var(--line);
  padding: 4px 10px;
  line-height: 1.6;
}

/* tabs */
.tab-row {
  display: flex; flex-wrap: wrap; gap: 8px 6px;
  margin-bottom: clamp(40px, 4vw, 64px);
}
.tab-btn {
  border: 1px solid var(--line);
  background: transparent;
  padding: 12px 22px;
  font-family: var(--font-en);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.16em;
  color: var(--sub); cursor: pointer;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.tab-btn:hover { color: var(--charcoal); border-color: var(--greige); }
.tab-btn.is-active { background: var(--charcoal); border-color: var(--charcoal); color: var(--paper); }
.empty-note { color: var(--sub); font-size: 14px; grid-column: 1 / -1; }

/* ---------- 7. pages ------------------------------------- */

/* HERO */
.hero {
  min-height: 88vh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: clamp(64px, 7vw, 104px);
}
.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(40px, 4vw, 64px);
  align-items: center;
}
.hero-rule {
  display: block; width: 56px; height: 1px;
  background: var(--greige);
  margin-bottom: 26px;
}
.hero-sub { margin-top: clamp(28px, 2.6vw, 40px); max-width: 30em; color: var(--sub); font-size: 15px; line-height: 2.15; }
.hero-actions { margin-top: clamp(36px, 3.4vw, 52px); }
.hero-id { margin-top: clamp(44px, 4.5vw, 72px); }
.hero-id .label { display: block; }
.hero-grid > * { min-width: 0; }
.hero-stack {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(16px, 1.8vw, 28px);
  align-items: start;
  max-width: 580px;   /* 縦型9:16で高さ約610px */
  justify-self: start;
}
.hero-item { display: block; min-width: 0; }
.hero-item--sub { margin-top: clamp(48px, 8vw, 132px); }
.hero-item .caption { display: flex; justify-content: space-between; gap: 12px; margin-top: 14px; }
.hero-item .caption .label { min-width: 0; }
.hero-item--sub .caption { flex-direction: column; gap: 4px; }

@keyframes draw {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* WHAT I DO */
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 56px); }
.what-item { border-top: 1px solid var(--line); padding-top: 28px; }
.what-item .num { display: block; font-family: var(--font-en); font-size: 12px; font-weight: 500; letter-spacing: 0.2em; color: var(--greige); }
.what-item h3 { margin-top: 20px; }
.what-item .label { display: block; margin-top: 10px; }
.what-item p { margin-top: 20px; color: var(--sub); font-size: 14.5px; line-height: 2.1; }

/* ABOUT 2col */
.split {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(40px, 5.6vw, 100px);
  align-items: center;
}
.split--top { align-items: start; }
.split .visual {
  aspect-ratio: 4 / 5;
  background: #eae7e1;
  max-width: 400px;   /* 写真が主役になりすぎないサイズ */
}
/* プロフィール写真は引き伸ばさず、枠の生成りに馴染ませる */
.split .visual img { object-fit: cover; object-position: center top; }

/* FORIIO 誘導 */
.section--dark {
  background: var(--bg-dark);
  color: var(--paper);
}
section.section--dark:not(.section) { padding-block: clamp(72px, 7vw, 104px); }
.section--dark.section--line { border-top-color: rgba(250, 249, 246, 0.12); }
.section--dark .process-step::before { background: var(--bg-dark); }
.section--dark .label { color: rgba(250, 249, 246, 0.62); }
.section--dark .heading { color: var(--paper); }
.section--dark .lede { color: rgba(250, 249, 246, 0.66); }
.foriio-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
}
.foriio-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--paper);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(250, 249, 246, 0.34);
  transition: border-color 0.22s var(--ease-out);
}
.foriio-link:hover { border-bottom-color: var(--paper); }
.foriio-link .arrow { transition: transform 0.22s var(--ease-out); }
.foriio-link:hover .arrow { transform: translate(6px, -6px); }

/* CONTACT */
.cta { text-align: center; }
.cta .lede { margin: 22px auto 0; max-width: 42em; }
.cta .btn-row { justify-content: center; margin-top: clamp(36px, 3.6vw, 56px); }

/* page head */
.page-head { padding-bottom: clamp(44px, 4.5vw, 72px); border-bottom: 1px solid var(--line); }
.page-head-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px, 4vw, 80px); align-items: end; }
.page-head .label { display: block; margin-bottom: 18px; font-size: 12.5px; color: var(--charcoal); }
.page-head .lede { max-width: 34em; }

/* work detail */
.detail-hero > * { min-width: 0; }
.detail-hero { display: grid; grid-template-columns: 0.72fr 1fr; gap: clamp(36px, 4vw, 80px); align-items: start; }
.detail-hero .visual { aspect-ratio: var(--ratio, 9 / 16); }
.detail-hero .visual--reel { max-width: 430px; }   /* 縦型リール */
.detail-hero .visual--feed { max-width: 540px; }   /* フィード投稿 */
.detail-title { margin: 20px 0 40px; }
.detail-meta { border-top: 1px solid var(--line); }
.detail-meta > div {
  display: grid; grid-template-columns: 110px 1fr; gap: 20px;
  padding-block: 18px; border-bottom: 1px solid var(--line);
}
.detail-meta dd { font-size: 14.5px; line-height: 1.9; color: var(--charcoal); }

.detail-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 3.4vw, 64px); }
.detail-col { border-top: 1px solid var(--line); padding-top: 26px; }
.detail-col .label { display: block; margin-bottom: 18px; }
.detail-col p { font-size: 14.5px; line-height: 2.1; color: #33312e; }
.check-list li { position: relative; padding-left: 20px; font-size: 14.5px; line-height: 2.1; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 8px; height: 1px; background: var(--greige);
}

/* 詳細ページのメディア（縦に積むギャラリー） */
.media-stack {
  display: grid;
  gap: clamp(24px, 2.6vw, 40px);
  max-width: 540px;          /* Instagram投稿として自然に見えるサイズ */
}
.media-item { margin: 0; }
.media-num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--greige);
}
/* 画像は切り抜かず、元の比率のまま全体を表示 */
.media-stack img {
  width: min(540px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
  background: #eae7e1;
}
/* 動画は9:16のプレイヤー */
.media-video {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #eae7e1;
}
.media-video video { width: 100%; height: 100%; object-fit: cover; }
.media-embed { position: relative; width: 100%; max-width: 430px; }
.media-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-caption { margin-top: 12px; font-size: 12.5px; color: var(--sub); }

.detail-nav { display: flex; justify-content: space-between; gap: 16px; padding-top: 40px; flex-wrap: wrap; }

/* about / services 共通の表組み */
.spec-list { border-top: 1px solid var(--line); }
.spec-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 24px;
  padding-block: 24px; border-bottom: 1px solid var(--line);
}
.spec-row dd { font-size: 15px; color: var(--charcoal); line-height: 2; }

.service-block { display: grid; grid-template-columns: 0.5fr 1fr; gap: clamp(28px, 3vw, 64px); padding-block: clamp(40px, 4vw, 64px); border-bottom: 1px solid var(--line); }
.service-block:first-child { border-top: 1px solid var(--line); }
.service-block .num { font-family: var(--font-en); font-size: 12px; font-weight: 500; letter-spacing: 0.2em; color: var(--greige); display: block; margin-bottom: 18px; }
.service-block .label { display: block; margin-top: 10px; }
.service-desc { color: var(--sub); font-size: 15px; line-height: 2.1; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { font-size: 12px; letter-spacing: 0.08em; color: var(--sub); border: 1px solid var(--line); padding: 6px 14px; }

/* form */
.form { display: grid; gap: 30px; }
.field { display: grid; gap: 10px; }
.field-label { display: flex; align-items: center; gap: 10px; }
.req { font-family: var(--font-en); font-size: 10.5px; letter-spacing: 0.14em; color: var(--gold); border: 1px solid var(--line); padding: 2px 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans); font-size: 15px; color: var(--ink); letter-spacing: 0.04em;
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 14px 2px; border-radius: 0;
  transition: border-color 0.5s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 170px; resize: vertical; line-height: 2; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--charcoal); }
.form-note { font-size: 13px; color: var(--sub); line-height: 2; }
.inline-link { border-bottom: 1px solid var(--line); transition: border-color 0.3s var(--ease-out); }
.inline-link:hover { border-bottom-color: var(--charcoal); }
/* スパム対策用の項目（画面には出さない） */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* プライバシーポリシー */
.policy .heading--md { margin-top: 40px; }
.policy .heading--md:first-child { margin-top: 0; }
.policy .body-text { margin-top: 14px; }
.footer-bottom a { border-bottom: 1px solid rgba(250,249,246,0.25); }
.footer-bottom a:hover { border-bottom-color: var(--paper); }
.form-status { font-size: 14px; line-height: 2; min-height: 1em; }
.form-status.is-error { color: #8a5a3c; }
.form-status.is-ok { color: var(--gold); }


/* ---------- 動画のPLAYボタン（自動再生できない時のみ表示） --- */
.visual, .media-video { position: relative; }
.video-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(250, 249, 246, 0.75);
  border-radius: 50%;
  background: rgba(32, 32, 30, 0.32);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #faf9f6;
  cursor: pointer;
  padding: 0;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
  z-index: 2;
}
.video-play:hover { background: rgba(32, 32, 30, 0.5); transform: translate(-50%, -50%) scale(1.04); }
.video-play svg { width: 26px; height: 26px; fill: currentColor; margin-left: 2px; }
.video-play[hidden] { display: none; }

/* ---------- CREATIVE GALLERY（フィード作品の1枚表示） -------- */
.carousel { width: 100%; max-width: 540px; outline: none; min-width: 0; }
.carousel-main {
  position: relative;
  aspect-ratio: var(--ratio, 4 / 5);
  background: #eae7e1;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}
.carousel-main:active { cursor: grabbing; }
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  height: 100%;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: rgba(243, 241, 237, 0.86);
  color: var(--charcoal);
  cursor: pointer; padding: 0;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  z-index: 2;
}
.carousel-arrow:hover { background: var(--bg); border-color: var(--greige); }
/* 矢印はカルーセルに触れたときだけ静かに出す */
.carousel:hover .carousel-arrow,
.carousel:focus-within .carousel-arrow { opacity: 1; }
.carousel-arrow { transition: opacity 0.4s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease); }
@media (hover: none) { .carousel-arrow { opacity: 1; } }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-arrow--prev { left: 12px; }
.carousel-arrow--next { right: 12px; }

.carousel-meta {
  display: flex; align-items: center; gap: 20px;
  margin-top: 20px;
}
.carousel-count { flex: 0 0 auto; color: var(--sub); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 7px; height: 7px; padding: 0;
  border: 1px solid var(--greige);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.4s var(--ease);
}
.carousel-dot.is-active { background: var(--charcoal); border-color: var(--charcoal); }

.carousel-thumbs {
  display: flex; gap: 8px;
  margin-top: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.carousel-thumb {
  flex: 0 0 auto;
  width: 60px; height: 75px;
  padding: 0; border: 1px solid transparent;
  background: #eae7e1;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.5s var(--ease), border-color 0.5s var(--ease);
}
.carousel-thumb img { width: 100%; height: 100%; object-fit: contain; }
.carousel-thumb:hover { opacity: 0.85; }
.carousel-thumb.is-active { opacity: 1; border-color: var(--charcoal); }


/* ---------- WHAT I DO（左見出し＋縦型リスト） ---------- */
.do-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.do-grid > * { min-width: 0; }
.do-head .label { display: block; margin-bottom: 16px; }

.do-list { border-top: 1px solid var(--line); }
.do-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1.2fr 1fr 26px;
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  padding: clamp(28px, 3vw, 42px) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease-out), padding-inline 0.4s var(--ease-out);
}
.do-item::before {
  content: "";
  position: absolute;
  inset: 0 -20px;
  background: rgba(185, 176, 164, 0.07);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}
.do-item:hover::before { opacity: 1; }
.do-item .num {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  color: var(--greige);
}
.do-title .heading { display: block; font-size: clamp(20px, 2vw, 28px); }
.do-title .label { display: block; margin-top: 10px; }
.do-desc {
  font-size: 14px;
  line-height: 2.05;
  color: var(--sub);
  opacity: 0.78;
  transition: opacity 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.do-item:hover .do-desc { opacity: 1; color: #43403c; }
.do-arrow {
  justify-self: end;
  font-size: 15px;
  color: var(--greige);
  transition: transform 0.4s var(--ease-out), color 0.4s var(--ease-out);
}
.do-item:hover .do-arrow { transform: translateX(6px); color: var(--charcoal); }

/* ---------- PROCESS ---------- */
.section--process { padding-block: clamp(56px, 5.5vw, 84px); }
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-top: 26px;
}
.process::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 4px;
  height: 1px;
  background: var(--line);
}
.process-line {
  position: absolute;
  left: 0; top: 4px;
  width: 100%; height: 1px;
  background: var(--greige);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s var(--ease-out);
}
.process.is-visible .process-line { transform: scaleX(1); }

.process-step {
  position: relative;
  padding-right: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.process-step::before {
  content: "";
  position: absolute;
  top: -26px; left: 0;
  width: 7px; height: 7px;
  border: 1px solid var(--greige);
  border-radius: 50%;
  background: var(--bg);
}
.process.is-visible .process-step { opacity: 1; transform: none; }
.process.is-visible .process-step:nth-child(2) { transition-delay: 0.12s; }
.process.is-visible .process-step:nth-child(3) { transition-delay: 0.26s; }
.process.is-visible .process-step:nth-child(4) { transition-delay: 0.5s; }
.process.is-visible .process-step:nth-child(5) { transition-delay: 0.54s; }
.process.is-visible .process-step:nth-child(6) { transition-delay: 0.68s; }
.process-step .num {
  display: block;
  font-family: var(--font-en);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.2em;
  color: var(--greige);
}
.process-step .en {
  display: block; margin-top: 12px;
  font-family: var(--font-en);
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.2em;
  color: var(--charcoal);
}
.process-step .ja {
  display: block; margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 14.5px; letter-spacing: 0.06em;
  color: var(--sub);
}

/* ---------- ABOUTのプロフィール情報 ---------- */
.profile-meta {
  margin-top: clamp(32px, 3.5vw, 48px);
  border-top: 1px solid var(--line);
}
.profile-meta > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}
.profile-meta dd {
  font-family: var(--font-en);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  line-height: 1.9;
}

/* CONTACTのボタン（濃い背景用） */
.btn--light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--charcoal);
}
.btn--ghost-light {
  border-color: rgba(250, 249, 246, 0.4);
  color: var(--paper);
}
.btn--ghost-light:hover { background: var(--paper); border-color: var(--paper); color: var(--charcoal); }

.btn--light:hover {
  background: transparent;
  border-color: rgba(250, 249, 246, 0.6);
  color: var(--paper);
}


/* ---------- SERVICES ページ ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
.svc-grid--flip { grid-template-columns: 55fr 45fr; }
.svc-grid > * { min-width: 0; }

.svc-text .num {
  display: block;
  font-family: var(--font-en);
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  color: var(--greige);
  margin-bottom: 18px;
}
.svc-text .label { display: block; margin-top: 12px; }
.svc-text .tag-list { margin-top: 28px; }

/* 対応範囲を2×2で整理 */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: clamp(28px, 3vw, 40px);
  background: var(--line);
  border: 1px solid var(--line);
}
.scope-cell {
  background: var(--bg-light);
  padding: clamp(16px, 1.8vw, 22px);
}
.scope-cell .label { display: block; }
.scope-cell .ja {
  display: block; margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 14.5px; letter-spacing: 0.05em; color: var(--charcoal);
}

/* 02の工程（4行） */
.step-rows { margin-top: clamp(26px, 3vw, 36px); border-top: 1px solid var(--line); }
.step-rows li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.step-rows .ja {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

/* 対応範囲を大きめのテキストリストで */
.scope-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.scope-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

/* 実績カット */
.svc-shot { position: relative; margin: 0; background: #eae7e1; }
.svc-shot img, .svc-shot video { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-shot figcaption {
  position: absolute; left: 0; bottom: -26px;
  font-size: 10.5px; letter-spacing: 0.2em; color: var(--sub);
}

.svc-media--pair {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
  max-width: 620px;
  margin-left: auto;
}
.svc-shot--feed { aspect-ratio: 4 / 5; }
.svc-shot--reel { aspect-ratio: 9 / 16; }
.svc-media--pair .svc-shot--reel { margin-top: clamp(28px, 4vw, 64px); }
.svc-media--single .svc-shot--reel { max-width: 330px; margin-left: auto; }

/* PROCESS アクセント帯 */
.process-band { padding-block: clamp(48px, 4vw, 58px); }
.flow {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 22px);
  flex-wrap: wrap;
}
.flow-step {
  font-family: var(--font-en);
  font-size: clamp(20px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: var(--paper);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.flow-arrow {
  font-size: clamp(13px, 1.4vw, 18px);
  color: rgba(250, 249, 246, 0.4);
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
.flow.is-visible .flow-step,
.flow.is-visible .flow-arrow { opacity: 1; transform: none; }
.flow.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.flow.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.flow.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.flow.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.flow.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.flow.is-visible > *:nth-child(7) { transition-delay: 0.6s; }
.flow.is-visible > *:nth-child(8) { transition-delay: 0.7s; }
.flow.is-visible > *:nth-child(9) { transition-delay: 0.8s; }
.flow[data-reveal] { opacity: 1; transform: none; transition: none; }

/* FLOW カード */
.flow-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.flow-card { border-top: 1px solid var(--line); padding-top: 20px; }
.flow-card .num {
  display: block;
  font-family: var(--font-en);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.2em; color: var(--greige);
}
.flow-card h3 { margin-top: 14px; font-family: var(--font-en); font-size: 15px; letter-spacing: 0.16em; }
.flow-card p { margin-top: 12px; font-size: 13.5px; line-height: 1.95; color: var(--sub); }


/* ---------- 横スクロールギャラリー ---------- */
.hgallery {
  display: flex;
  margin-bottom: 0;
  gap: clamp(16px, 1.8vw, 28px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding: 0 var(--gutter) 8px;
  cursor: grab;
  scrollbar-width: thin;
}
.hgallery.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.hgallery::-webkit-scrollbar { height: 3px; }
.hgallery::-webkit-scrollbar-thumb { background: var(--line); }
.hcard {
  flex: 0 0 auto;
  width: clamp(210px, 21vw, 300px);
  margin: 0;
  scroll-snap-align: start;
}
.hcard img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #eae7e1;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.hcard figcaption { margin-top: 12px; }

/* ---------- PROCESS：ゆっくり流れる英字 ---------- */
.process-inner { text-align: center; }
.process-inner > .label { display: block; margin-bottom: clamp(20px, 2.2vw, 30px); }
.marquee-ja { display: block; margin-top: clamp(16px, 1.8vw, 24px); color: rgba(250, 249, 246, 0.5); }

/* ---------- 8. responsive -------------------------------- */
@media (max-width: 1200px) {
  :root { --gutter: 40px; }
  .detail-cols { grid-template-columns: 1fr 1fr; }
  .detail-col:nth-child(3) { grid-column: span 2; }
}

@media (max-width: 1000px) {
  :root { --gutter: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; }
  .gallery, .gallery--even, .gallery--home { columns: 2; max-width: none; }
  .what-grid { grid-template-columns: 1fr; }
  .do-grid { grid-template-columns: 1fr; }
  .do-item { grid-template-columns: 48px 1fr 24px; }
  .do-desc { grid-column: 2 / 4; margin-top: 12px; }
  .split { grid-template-columns: 1fr; }
  .split .visual { max-width: 440px; }
  .page-head-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .detail-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .svc-grid, .svc-grid--flip { grid-template-columns: 1fr; }

  .svc-grid--flip .svc-media { order: 2; }
  .flow-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --gutter: 22px; --header-h: 60px; }
  body { font-size: 15px; }

  .nav-list { display: none; }
  .nav-toggle { display: block; }

  .heading--hero { font-size: 30px; line-height: 1.7; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; }

  /* スマホでも縦型は縦型のまま。2列で並べる */
  .gallery, .gallery--even, .gallery--home { columns: 2; column-gap: 14px; max-width: none; }
  .gallery-item--col { margin-bottom: 30px; }
  /* スマホは縦型を1本、大きく見せる */
  .hero-stack { grid-template-columns: 1fr; }
  .hero-item--sub { display: none; }
  .work-caption { flex-direction: column; gap: 6px; }
  .work-caption .title { font-size: 16.5px; }

  .deco { display: none; }
  .do-item { grid-template-columns: 40px 1fr 20px; gap: 12px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 6px 16px; padding-top: 20px; }
  .process::before, .process-line { display: none; }
  .process-step { padding: 20px 0; border-top: 1px solid var(--line); }
  .process-step::before { display: none; }
  .profile-meta > div { grid-template-columns: 82px 1fr; }
  .flow-cards { grid-template-columns: 1fr; }
  .flow { flex-direction: column; align-items: flex-start; gap: 10px; }
  .flow-arrow { transform: rotate(90deg); margin-left: 6px; }
  .svc-media--pair { grid-template-columns: 1fr 1fr; }

  .hcard { width: 72vw; }


  .foriio-grid { grid-template-columns: 1fr; align-items: start; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .split .visual { max-width: none; }

  .detail-cols { grid-template-columns: 1fr; }
  .detail-col:nth-child(3) { grid-column: auto; }
  .detail-meta > div { grid-template-columns: 100px 1fr; gap: 12px; }
  .media-stack, .media-video, .media-embed { max-width: none; }
  .carousel { max-width: none; }
  .carousel-arrow--prev { left: 8px; }
  .carousel-arrow--next { right: 8px; }
  .carousel-arrow { width: 36px; height: 36px; }
  .video-play { width: 54px; height: 54px; }
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .btn { padding: 16px 26px; }
}

/* タッチ端末はhoverが効かないので常時キャプションを見せる */
@media (hover: none) {
  .work-hover { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  [data-reveal],
  .gallery-item[data-reveal] { opacity: 1; transform: none; }
  .section-head::after { transform: scaleX(1); }
  .section-head .label,
  .section-head .heading,
  .section-head-side { opacity: 1; transform: none; }
  .process-step, .flow-step, .flow-arrow { opacity: 1; transform: none; }



  .process-line { transform: scaleX(1); }
  .hero-in, .hero-item { opacity: 1; animation: none; }
  .reveal-line-inner { transform: none; animation: none; }
  body::before { animation: none; }
}
