/* MATO Agent — 明朝体・深い赤・クリーム白・大きな余白 */

:root {
  --red: #7a1020;
  --red-deep: #5c0b18;
  --cream: #f6f1e7;
  --cream-2: #efe7d8;
  --paper: #fbf8f2;
  --ink: #1f1b18;
  --ink-soft: #5d554e;
  --line: rgba(31, 27, 24, .14);
  --yellow: #e8bc42;

  --mincho: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --latin: "Cormorant Garamond", "Shippori Mincho", serif;

  --gutter: clamp(16px, 5vw, 64px);
  --space: clamp(96px, 14vw, 200px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mincho);
  font-size: 16px;
  line-height: 2;
  letter-spacing: .06em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; }
h1, h2, h3, p, ol, ul, dl, dd { margin: 0; }
ol, ul { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; letter-spacing: inherit; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.wrap { width: min(1120px, 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--narrow { width: min(760px, 100% - var(--gutter) * 2); }

/* ---------- ボタン ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .8em;
  min-height: 56px; padding: 0 2.4em;
  border: 1px solid var(--red); border-radius: 999px;
  background: var(--red); color: var(--cream);
  text-decoration: none; cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; opacity: .8;
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--small { min-height: 40px; padding: 0 1.4em; font-size: 14px; }
.btn--wide { width: 100%; }
.btn--light { background: var(--cream); color: var(--red); border-color: var(--cream); }
.btn--light:hover { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--ghost { background: transparent; color: var(--red); }
.btn--ghost:hover { background: var(--red); color: var(--cream); }

/* ---------- ヘッダー ---------- */

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  color: var(--ink);
  transition: color .5s var(--ease), background .5s var(--ease), padding .5s var(--ease);
}
.site-header[data-tone="light"] { color: var(--cream); }
.site-header.is-solid {
  background: rgba(246, 241, 231, .92);
  backdrop-filter: blur(10px);
  color: var(--ink);
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__mark { width: 40px; height: 28px; }
.site-header[data-tone="light"]:not(.is-solid) .logo__mark circle:last-child { fill: currentColor; fill-opacity: .85; }
.logo__type { font-family: var(--latin); font-size: 22px; font-weight: 500; letter-spacing: .12em; line-height: 1; }
.logo__type em { font-style: italic; font-weight: 400; }

.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 36px); font-size: 14px; }
.site-nav a:not(.btn) { text-decoration: none; position: relative; padding-block: 6px; }
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 4px; height: 4px; border-radius: 50%; background: currentColor;
  transform: translateX(-50%) scale(0); transition: transform .3s var(--ease);
}
.site-nav a:not(.btn):hover::after { transform: translateX(-50%) scale(1); }
.site-header[data-tone="light"]:not(.is-solid) .site-nav .btn { background: transparent; border-color: currentColor; color: inherit; }

.menu-btn {
  display: none;
  min-height: 40px; padding: 0 1.2em;
  border: 1px solid currentColor; border-radius: 999px; background: transparent;
  font-size: 13px; cursor: pointer;
}

/* ---------- ファーストビュー（映像） ---------- */

.hero { position: relative; height: 520vh; background: var(--cream); }
.hero__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: var(--red-deep); transition: background .6s; }
.hero__stage.is-cream { background-color: #e9e5de; }
/* 映像の読み込みが追いつかない一瞬は、下に敷いた静止画が見える */
.hero__stage { background-size: cover; background-position: center; }

.hero__videos, .hero__video { position: absolute; inset: 0; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; visibility: hidden;
}
.hero__video.is-active { opacity: 1; visibility: visible; }

.hero__captions { position: absolute; inset: 0; pointer-events: none; }
.caption {
  position: absolute; left: var(--gutter); bottom: clamp(120px, 18vh, 200px);
  max-width: 22em;
  font-size: clamp(20px, 2.5vw, 34px); line-height: 1.8; letter-spacing: .12em;
  color: var(--ink);
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  text-shadow: 0 0 24px rgba(246, 241, 231, .9), 0 0 2px rgba(246, 241, 231, .8);
}
.caption.is-on { opacity: 1; transform: none; }
.caption--final { max-width: 30em; font-size: clamp(14px, 1.3vw, 17px); line-height: 2; letter-spacing: .1em; }
.caption__brand { font-family: var(--latin); font-size: clamp(40px, 5vw, 72px); line-height: 1.1; letter-spacing: .08em; margin-bottom: .3em; }
.caption__brand em { font-weight: 400; }

.hero__ui {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(28px, 5vh, 48px);
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  color: var(--cream);
  transition: color .6s var(--ease);
}
.hero__stage.is-cream .hero__ui { color: var(--ink); }

.play-btn {
  display: inline-flex; align-items: center; gap: 14px;
  min-height: 52px; padding: 0 22px 0 8px;
  border: 1px solid currentColor; border-radius: 999px;
  background: transparent; cursor: pointer; font-size: 14px;
  transition: background .3s var(--ease);
}
.play-btn:hover { background: rgba(255, 255, 255, .12); }
.hero__stage.is-cream .play-btn { background: rgba(246, 241, 231, .7); backdrop-filter: blur(6px); }
.play-btn__icon {
  position: relative; width: 36px; height: 36px; border-radius: 50%;
  background: var(--red);
}
.hero__stage:not(.is-cream) .play-btn__icon { background: var(--cream); }
.play-btn__icon::before, .play-btn__icon::after { content: ""; position: absolute; top: 50%; left: 50%; }
/* 再生：三角 */
.play-btn__icon::before {
  border-style: solid; border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--cream);
  transform: translate(-35%, -50%);
}
.hero__stage:not(.is-cream) .play-btn__icon::before { border-left-color: var(--red); }
/* 一時停止：二本線 */
.play-btn.is-playing .play-btn__icon::before {
  border: 0; width: 3px; height: 12px; background: var(--cream);
  transform: translate(-150%, -50%);
  box-shadow: 6px 0 0 var(--cream);
}
.hero__stage:not(.is-cream) .play-btn.is-playing .play-btn__icon::before { background: var(--red); box-shadow: 6px 0 0 var(--red); }

.hero__progress { display: flex; gap: 10px; flex: 1; max-width: 420px; }
.hero__progress li { flex: 1; }
.hero__progress button {
  display: block; width: 100%; padding: 10px 0; border: 0; background: none; cursor: pointer; text-align: left;
}
.hero__progress .bar { display: block; height: 2px; background: currentColor; opacity: .3; position: relative; }
.hero__progress .bar i { position: absolute; inset: 0; background: currentColor; transform-origin: left; transform: scaleX(0); }
.hero__progress li.is-current .bar, .hero__progress li.is-done .bar { opacity: 1; }
.hero__progress li.is-current .bar { background: color-mix(in srgb, currentColor 30%, transparent); }
.hero__progress .num { display: block; margin-top: 6px; font-family: var(--latin); font-size: 13px; letter-spacing: .14em; opacity: .7; }

.hero__hint { margin-left: auto; display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: .2em; opacity: .8; }
.hero__hint span {
  position: relative; width: 1px; height: 40px; background: currentColor; opacity: .5; overflow: hidden;
}
.hero__hint span::after {
  content: ""; position: absolute; left: -2px; top: 0; width: 5px; height: 5px; border-radius: 50%; background: currentColor;
  animation: hint 2.4s var(--ease) infinite;
}
@keyframes hint { from { transform: translateY(-6px); } to { transform: translateY(44px); } }

/* ---------- 共通の見出し ---------- */

.section { position: relative; padding-block: var(--space); overflow: hidden; }
.section--tint { background: var(--cream-2); }
.section--red { background: var(--red); color: var(--cream); }

.eyebrow { font-family: var(--latin); font-style: italic; font-size: 17px; letter-spacing: .16em; color: var(--red); }
.section--red .eyebrow { color: var(--cream); opacity: .8; }

.section-head { position: relative; margin-bottom: clamp(56px, 8vw, 96px); padding-left: clamp(72px, 9vw, 112px); }
.section-head__no {
  position: absolute; left: 0; top: 4px;
  display: grid; place-items: center;
  width: clamp(52px, 6vw, 72px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid currentColor; opacity: .5;
  font-family: var(--latin); font-size: clamp(16px, 1.6vw, 20px); letter-spacing: .08em;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 500; line-height: 1.5; letter-spacing: .14em; margin-top: .2em; }
.lead { margin-top: 1.6em; color: var(--ink-soft); max-width: 36em; }
.section--red .lead { color: rgba(246, 241, 231, .85); }

/* ---------- About ---------- */

.about { position: relative; padding-block: var(--space); background: var(--paper); overflow: hidden; }
.about__ring {
  position: absolute; right: -18vw; top: 50%; width: min(70vw, 900px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--line); transform: translateY(-50%);
}
.about__ring::after {
  content: ""; position: absolute; left: 14%; top: 14%; width: 18px; height: 18px; border-radius: 50%; background: var(--red);
}
.about__inner { position: relative; }
.about__title { margin-top: .6em; font-size: clamp(34px, 5.4vw, 72px); font-weight: 500; line-height: 1.5; letter-spacing: .14em; }
.about__body { margin-top: 2.4em; max-width: 34em; display: grid; gap: 1.4em; color: var(--ink-soft); }
.stats {
  margin-top: clamp(64px, 8vw, 104px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.stats > div { padding: 28px 24px 0 0; }
.stats > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.stats dt { font-size: 13px; color: var(--ink-soft); }
.stats dd { margin-top: .4em; font-size: 16px; }
.stats b { font-family: var(--latin); font-weight: 500; font-size: clamp(40px, 5vw, 64px); line-height: 1; color: var(--red); letter-spacing: .02em; margin-right: .1em; }
.note { margin-top: 20px; font-size: 12px; color: var(--ink-soft); }

/* ---------- サービス ---------- */

.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.service { position: relative; padding: 48px 48px 56px 0; border-bottom: 1px solid var(--line); }
.service:nth-child(even) { padding-left: 48px; padding-right: 0; border-left: 1px solid var(--line); }
.service__no {
  display: grid; place-items: center; width: 44px; aspect-ratio: 1; border-radius: 50%;
  background: var(--red); color: var(--cream); font-family: var(--latin); font-size: 16px;
}
.service h3 { margin-top: 24px; font-size: clamp(20px, 2vw, 24px); font-weight: 500; letter-spacing: .12em; }
.service p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }

.flow { margin-top: clamp(72px, 9vw, 112px); display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.flow::before { content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 28px; height: 1px; background: var(--red); opacity: .6; }
.flow li { position: relative; display: grid; justify-items: center; text-align: center; gap: 14px; font-size: 15px; letter-spacing: .1em; }
.flow span {
  display: grid; place-items: center; width: 56px; aspect-ratio: 1; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--red); color: var(--red); font-family: var(--latin); font-size: 20px;
}
.flow li:last-child span { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.flow small { display: block; font-size: 12px; color: var(--ink-soft); }

/* ---------- 求人 ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  min-height: 40px; padding: 0 1.3em; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 14px;
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--red); }
.chip.is-on { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.jobs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.job {
  position: relative; padding: 36px 32px 28px; background: var(--paper);
  border-radius: 4px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.job::before {
  content: ""; position: absolute; right: -56px; top: -56px; width: 140px; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--line); transition: transform .8s var(--ease), border-color .8s var(--ease);
}
.job:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -32px rgba(60, 20, 20, .35); }
.job:hover::before { transform: scale(1.25); border-color: rgba(122, 16, 32, .35); }
.job[hidden] { display: none; }
.job__tag { display: inline-block; font-size: 12px; color: var(--red); border: 1px solid currentColor; border-radius: 999px; padding: 0 .9em; line-height: 1.9; }
.job h3 { margin-top: 18px; font-size: 20px; font-weight: 500; line-height: 1.6; letter-spacing: .08em; }
.job__company { margin-top: 4px; font-size: 14px; color: var(--ink-soft); }
.job__pay { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 19px; color: var(--red); letter-spacing: .04em; }
.job__place { font-size: 13px; color: var(--ink-soft); }
.job details { margin-top: 16px; font-size: 14px; }
.job summary { cursor: pointer; color: var(--ink); list-style: none; display: flex; align-items: center; gap: 8px; }
.job summary::-webkit-details-marker { display: none; }
.job summary::before { content: "+"; display: grid; place-items: center; width: 20px; aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--line); font-size: 13px; line-height: 1; }
.job details[open] summary::before { content: "−"; }
.job details p { margin-top: 10px; color: var(--ink-soft); line-height: 1.9; }
.jobs__empty { margin-top: 24px; color: var(--ink-soft); }

/* ---------- 事例 ---------- */

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.case { position: relative; padding-top: 40px; border-top: 1px solid var(--ink); }
.case__quote { font-size: clamp(18px, 1.7vw, 21px); line-height: 1.9; letter-spacing: .08em; min-height: 4em; }
.case__move { margin-top: 32px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; font-size: 14px; line-height: 1.7; }
.case__move small { display: block; font-family: var(--latin); font-style: italic; font-size: 13px; color: var(--ink-soft); letter-spacing: .12em; }
.case__arrow { position: relative; width: 36px; height: 1px; background: var(--red); }
.case__arrow::after { content: ""; position: absolute; right: -3px; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.case__pay { margin-top: 24px; font-size: 14px; color: var(--ink-soft); }
.case__pay b { font-size: 20px; font-weight: 500; color: var(--red); }
.case__who { margin-top: 12px; font-size: 13px; color: var(--ink-soft); }

/* ---------- 企業の方へ ---------- */

.company__rings i {
  position: absolute; border-radius: 50%; border: 1px solid rgba(246, 241, 231, .18);
  width: min(56vw, 720px); aspect-ratio: 1; top: 50%; transform: translateY(-50%);
}
.company__rings i:first-child { right: -8vw; }
.company__rings i:last-child { right: calc(-8vw + min(22vw, 280px)); }
.section--red .wrap { position: relative; }
.company-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(246, 241, 231, .3); margin-bottom: 64px; }
.company-list li { padding: 36px 32px 40px 0; }
.company-list li + li { padding-left: 32px; border-left: 1px solid rgba(246, 241, 231, .3); }
.company-list h3 { font-size: 20px; font-weight: 500; letter-spacing: .1em; }
.company-list p { margin-top: 12px; font-size: 15px; color: rgba(246, 241, 231, .82); }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 28px 56px 28px 44px; font-size: 17px; letter-spacing: .08em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 0; top: 26px; font-family: var(--latin); font-size: 24px; color: var(--red); line-height: 1.3; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 28px; height: 28px; margin-top: -14px; border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(var(--ink), var(--ink)) center / 10px 1px no-repeat, linear-gradient(var(--ink), var(--ink)) center / 1px 10px no-repeat;
  transition: transform .4s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 32px 44px; color: var(--ink-soft); }

/* ---------- フォーム ---------- */

.demo-note {
  margin-bottom: 32px; padding: 14px 20px; border-radius: 4px;
  background: rgba(232, 188, 66, .22); font-size: 14px;
}
.form { display: grid; gap: 28px; }
.field { display: grid; gap: 10px; border: 0; margin: 0; padding: 0; }
.field legend { padding: 0; margin-bottom: 10px; }
.field label, .field legend { font-size: 15px; }
.req { font-size: 11px; color: var(--cream); background: var(--red); border-radius: 999px; padding: .1em .8em; margin-left: .5em; vertical-align: 2px; }
.field input[type="text"], .field input[type="email"], .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: 4px; background: var(--paper);
  transition: border-color .3s var(--ease);
}
.field textarea { resize: vertical; line-height: 1.8; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field.is-invalid input { border-color: var(--red); }
.radios { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.radios label, .check { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
input[type="radio"], input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--red); margin: 0; }
.err { display: none; font-size: 13px; color: var(--red); }
.field.is-invalid .err { display: block; }

.thanks { position: relative; text-align: center; padding: 72px 24px; background: var(--paper); border-radius: 4px; overflow: hidden; }
.thanks:focus { outline: none; }
.thanks__ring { width: 88px; aspect-ratio: 1; margin: 0 auto 28px; border-radius: 50%; background: var(--yellow); position: relative; }
.thanks__ring::after { content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 1px solid var(--red); }
.thanks__title { font-size: 24px; letter-spacing: .12em; margin-bottom: 16px; }
.thanks p { color: var(--ink-soft); }
.thanks .btn { margin-top: 32px; }

/* ---------- フッター ---------- */

.site-footer { padding-block: 72px 48px; background: var(--ink); color: var(--cream); }
.logo--footer .logo__mark circle:last-child { fill: var(--red); }
.fiction { margin-top: 28px; font-size: 13px; line-height: 2; color: rgba(246, 241, 231, .72); }
.copy { margin-top: 32px; font-family: var(--latin); font-size: 13px; letter-spacing: .14em; color: rgba(246, 241, 231, .5); }

/* ---------- ふわっと出す ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__hint span::after { animation: none; }
  .caption { transition: opacity .2s; transform: none; }
}

/* ---------- タブレット・スマホ ---------- */

@media (max-width: 960px) {
  .jobs, .cases { grid-template-columns: repeat(2, 1fr); }
  .company-list { grid-template-columns: 1fr; }
  .company-list li, .company-list li + li { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(246, 241, 231, .3); }
}

@media (max-width: 820px) {
  .menu-btn { display: inline-flex; align-items: center; position: relative; z-index: 2; }
  .site-nav {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; justify-content: center; gap: 28px;
    background: var(--cream); color: var(--ink); font-size: 18px;
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-header[data-tone="light"]:not(.is-solid) .site-nav .btn { background: var(--red); border-color: var(--red); color: var(--cream); }
  body.menu-open .site-header { color: var(--ink); }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .section-head { padding-left: 0; padding-top: 72px; }
  .section-head__no { top: 0; }
  .stats { grid-template-columns: 1fr; }
  .stats > div, .stats > div + div { padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .services { grid-template-columns: 1fr; }
  .service, .service:nth-child(even) { padding: 36px 0 40px; border-left: 0; }
  .flow { grid-template-columns: 1fr; gap: 20px; }
  .flow::before { left: 28px; right: auto; top: 28px; bottom: 28px; width: 1px; height: auto; }
  .flow li { grid-template-columns: 56px 1fr; justify-items: start; align-items: center; text-align: left; }
  .flow small { grid-column: 2; margin-top: -12px; }
  .jobs, .cases { grid-template-columns: 1fr; }
  .job { padding: 28px 24px 24px; }
  .faq summary { font-size: 16px; padding-right: 48px; }
  .hero__hint { display: none; }
  .hero__ui { flex-wrap: wrap; gap: 14px; }
  .hero__progress { flex-basis: 100%; max-width: none; order: 2; }
  .caption { bottom: 178px; right: var(--gutter); font-size: 19px; }
  .caption--final { font-size: 13px; }
  .hero__captions::before {
    content: ""; position: absolute; inset: auto 0 0; height: 58%;
    background: linear-gradient(to top, rgba(246, 241, 231, .92) 0%, rgba(246, 241, 231, .6) 45%, rgba(246, 241, 231, 0));
    opacity: 0; transition: opacity .6s var(--ease);
  }
  .hero__stage.is-cream .hero__captions::before { opacity: 1; }
  .logo__type { font-size: 19px; }
}
