/*
Theme Name: 猫乃手デザイン所
Theme URI: https://nekonote-design.info/
Author: nekonote-dezaindokoro
Description: 中小企業・個人事業主の事業にそっと寄り添うデザイン事務所のオフィシャルテーマ。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nekonote
*/

/* ─────────────────────────────────────────────────────────────────
   猫乃手デザイン所 — 共通スタイル
   WordPress化を想定した共通CSS（テーマの style.css へそのまま移植可）
   ───────────────────────────────────────────────────────────────── */

:root {
  --cream:        #F2EDE1;
  --cream-soft:   #FFFDFD;
  --white:        #FFFFFF;
  --ink:          #3A3A3A;
  --ink-soft:     rgba(58, 58, 58, 0.78);
  --wine:         #7C0000;
  --wine-dark:    #5C0000;
  --rose:         #B36B6B;
  --rose-soft:    #C99696;
  --line:         #F5F5F5;
  --gray-100:     #EFEEEA;
  --gray-200:     #D9D9D9;
  --gray-300:     #BFBFBF;
  --rule:         #3A3A3A;

  --font-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-en: "Noto Sans JP", system-ui, sans-serif;

  --max:   1280px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(64px, 9vw, 120px);

  --t-display: clamp(34px, 4.6vw, 64px);
  --t-h1:      clamp(22px, 2.6vw, 36px);
  --t-h2:      clamp(19px, 2.1vw, 30px);
  --t-h3:      clamp(18px, 1.7vw, 24px);
  --t-body:    clamp(14px, 1.05vw, 16px);
  --t-lead:    clamp(15px, 1.15vw, 18px);
}

/* ─── reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad-x); }
.container--narrow { max-width: 880px; margin: 0 auto; padding-inline: var(--pad-x); }

/* ─────────────────────────────────────────────────────────────────
   Section title
   ───────────────────────────────────────────────────────────────── */
.section-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding-block: 8px;
  margin: 0 0 clamp(40px, 5vw, 64px);
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 14%;
  height: clamp(14px, 1.7vw, 25px);
  background: var(--rose-soft);
  z-index: 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(.2,.8,.2,1) 150ms;
}
.section-title.is-visible::before { transform: scaleX(1); }
.section-title .en {
  position: relative;
  font-weight: 700;
  font-size: var(--t-display);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--ink);
  z-index: 1;
  white-space: nowrap;
}
.section-title .jp {
  position: relative;
  font-weight: 700;
  font-size: var(--t-h2);
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: var(--ink);
  z-index: 1;
}
@media (max-width: 640px) {
  .section-title { flex-direction: column; align-items: flex-start; gap: 4px; }
  .section-title::before { bottom: -2px; height: 12px; }
  .section-title .en { font-size: clamp(36px, 11vw, 56px); }
  .section-title .jp { font-size: clamp(15px, 4.2vw, 22px); }
}

/* ─────────────────────────────────────────────────────────────────
   "Double layer" button
   ───────────────────────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 16px 36px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 18px);
  letter-spacing: 0.08em;
  color: var(--cream);
  background: var(--ink);
  transition: transform 180ms ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 5px -5px -5px 5px;
  background: var(--rose);
  z-index: -1;
  transition: inset 180ms ease;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:hover::before { inset: 7px -7px -7px 7px; }
.btn:active { transform: translate(2px, 2px); }
.btn:active::before { inset: 1px -1px -1px 1px; }
.btn .arrow { font-weight: 400; font-size: 0.9em; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--wine { background: var(--wine); }
.btn--wine::before { background: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost::before { background: var(--rose-soft); }

/* ─────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(58, 58, 58, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
}
.brand__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: var(--wine);
}
.brand__romaji {
  display: block;
  margin-top: 2px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--wine);
  opacity: 0.85;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav__panel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
  margin: 0; padding: 0;
  list-style: none;
}
.nav__list a {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink);
  transition: color 150ms ease;
}
.nav__list a:hover,
.nav__list a.is-current { color: var(--wine); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background 180ms ease, transform 180ms ease;
}
.nav__cta:hover { background: var(--wine-dark); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  width: 52px; height: 52px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 70;
  color: var(--wine);
}
.nav__toggle .icon {
  position: relative;
  width: 30px;
  height: 22px;
  display: block;
}
.nav__toggle .icon::before,
.nav__toggle .icon::after,
.nav__toggle .icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), opacity 180ms ease;
}
.nav__toggle .icon::before { top: 0; }
.nav__toggle .icon span    { top: 50%; transform: translateY(-50%); display: block; }
.nav__toggle .icon::after  { bottom: 0; }
.nav.is-open .nav__toggle .icon span    { opacity: 0; }
.nav.is-open .nav__toggle .icon::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav.is-open .nav__toggle .icon::after  { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__panel {
    position: fixed;
    inset: 56px 0 0 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--pad-x) 28px;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(58, 58, 58, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
    border-top: 2px solid var(--wine);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open .nav__panel { opacity: 1; transform: none; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid rgba(58,58,58,0.12); }
  .nav__list a {
    display: block;
    padding: 14px 4px;
    font-size: 15px;
    color: var(--ink);
  }
  .nav__list a:active { background: var(--cream); }
  .nav__cta {
    margin-top: 16px;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    flex-shrink: 0;
  }
}

/* ─────────────────────────────────────────────────────────────────
   HOMEPAGE HERO (FV)
   ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--wine);
  color: var(--cream);
  overflow: hidden;
}
.hero__frame {
  position: relative;
  padding: clamp(20px, 2.4vw, 36px) 0 0 0;
}
.hero__image {
  position: relative;
  width: 80%;
  aspect-ratio: 1283 / 755;
  max-height: 75vh;
  overflow: hidden;
  background: var(--ink);
}
.hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/img/hero-bg.jpg") center / cover no-repeat;
  transform: scaleX(-1);
  animation: heroZoom 1400ms cubic-bezier(.2, .8, .2, 1) backwards;
}
@keyframes heroZoom {
  from { opacity: 0; transform: scaleX(-1) scale(1.06); }
  to   { opacity: 1; transform: scaleX(-1) scale(1); }
}
.hero__image::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 60%, rgba(242,237,225,0.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__logo {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  color: var(--wine);
  text-align: center;
  pointer-events: none;
  animation: logoIn 900ms cubic-bezier(.2, .8, .2, 1) 200ms backwards;
}
.hero__logo .paw {
  width: clamp(170px, 23vw, 340px);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
  animation: pawBob 4s ease-in-out 1.2s infinite;
  transform-origin: 50% 90%;
}
.hero__logo .wordmark {
  position: relative;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.25;
  letter-spacing: 0.14em;
  color: var(--wine);
  white-space: nowrap;
  -webkit-text-stroke: 10px var(--cream);
  paint-order: stroke fill;
  animation: fadeUp 800ms cubic-bezier(.2,.8,.2,1) 600ms backwards;
}
@keyframes logoIn {
  from { opacity: 0; transform: translate(-50%, calc(-50% - 20px)) scale(0.9); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes pawBob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .hero__logo { left: 50%; top: 50%; }
  .hero__logo .paw { width: clamp(96px, 26vw, 160px); }
  .hero__logo .wordmark {
    font-size: clamp(30px, 9vw, 52px);
    -webkit-text-stroke: 8px var(--cream);
  }
}

.hero__sidetab {
  position: fixed;
  top: clamp(100px, 14vh, 160px);
  right: clamp(8px, 1vw, 16px);
  z-index: 40;
  width: clamp(64px, 5.6vw, 88px);
  height: clamp(300px, 32vw, 420px);
  padding: clamp(20px, 2.4vw, 32px) 0;
  background: var(--cream);
  color: var(--wine);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  animation: sidetabIn 700ms cubic-bezier(.2, .8, .2, 1) 400ms backwards;
}
.hero__sidetab:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateX(-4px);
}
@keyframes sidetabIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (max-width: 720px) {
  .hero__frame { padding: 14px 0 0 0; }
  .hero__image { width: 88%; }
  .hero__sidetab {
    width: 36px;
    height: auto;
    padding: 14px 0;
    font-size: 15px;
    letter-spacing: 0.1em;
    top: 60px;
    right: 0;
    white-space: nowrap;
  }
}

.hero__lead {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 80px) clamp(60px, 8vw, 96px) clamp(40px, 7vw, 110px);
}
.hero__lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}
@media (min-width: 900px) {
  .hero__lead-grid { grid-template-columns: 1.1fr 1fr; }
}
.hero__tagline {
  margin: 0 0 24px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: var(--t-h1);
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-wrap: pretty;
  animation: fadeUp 800ms cubic-bezier(.2,.8,.2,1) 300ms backwards;
}
.hero__copy {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: var(--t-lead);
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.95;
  animation: fadeUp 800ms cubic-bezier(.2,.8,.2,1) 500ms backwards;
}
.hero__collage > div { animation: collageIn 900ms cubic-bezier(.2,.8,.2,1) 700ms backwards; }
.hero__collage > div:nth-child(2) { animation-delay: 820ms; }
@keyframes collageIn { from { opacity: 0; } to { opacity: 1; } }
.hero__collage {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  aspect-ratio: 1.1 / 1;
}
.hero__collage > div {
  position: absolute;
  background-color: rgba(255,255,255,0.06);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.hero__collage .c1 {
  top: 0; right: 0; width: 62%; height: 52%;
  background-image: url("assets/img/work-screenshot.png");
  transform: rotate(4deg); z-index: 2;
}
.hero__collage .c2 {
  bottom: 0; left: 0; width: 56%; height: 72%;
  background-image: url("assets/img/work-flyer.png");
  transform: rotate(-5deg); z-index: 1;
}
.hero__collage .c3 { display: none; }
@media (max-width: 720px) {
  .hero__collage { max-width: 100%; justify-self: stretch; aspect-ratio: 1.4 / 1; }
}

/* ─────────────────────────────────────────────────────────────────
   PAGE HERO  (sub-pages)
   ───────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: clamp(60px, 9vw, 140px) 0 clamp(48px, 7vw, 96px);
  background: var(--wine);
  color: var(--cream);
  overflow: hidden;
}
.page-hero::before {
  /* subtle decorative paw shape using background gradient */
  content: "";
  position: absolute;
  right: -8%;
  bottom: -30%;
  width: 60%;
  height: 180%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad-x);
  z-index: 1;
}
.page-hero__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  animation: fadeUp 700ms cubic-bezier(.2,.8,.2,1) 100ms backwards;
}
.page-hero__title .en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(46px, 7vw, 110px);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--cream);
  opacity: 0.95;
}
.page-hero__title .jp {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.4;
  letter-spacing: 0.18em;
  color: var(--cream);
  opacity: 0.86;
}
.breadcrumb {
  margin-top: clamp(24px, 3vw, 44px);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cream);
  opacity: 0.7;
  animation: fadeUp 700ms cubic-bezier(.2,.8,.2,1) 280ms backwards;
}
.breadcrumb a { transition: opacity 150ms ease; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.breadcrumb .sep { padding: 0 8px; opacity: 0.5; }

/* ─────────────────────────────────────────────────────────────────
   GENERIC SECTION
   ───────────────────────────────────────────────────────────────── */
.section { padding: var(--section-y) 0; }
.section--cream-soft { background: var(--cream-soft); }
.section--cream      { background: var(--cream); }
.section--white      { background: var(--white); }
.section--ink        { background: var(--ink); color: var(--cream); }

.lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--t-lead);
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-wrap: pretty;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--rose);
  margin-bottom: 14px;
}

/* ─────────────────────────────────────────────────────────────────
   PAINS (homepage)
   ───────────────────────────────────────────────────────────────── */
.pains { padding: var(--section-y) 0; background: var(--cream); }
.pains__intro {
  text-align: center;
  font-weight: 700;
  font-size: clamp(20px, 2.1vw, 30px);
  margin: 0 auto clamp(48px, 6vw, 72px);
  letter-spacing: 0.1em;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1150px;
  margin: 0 auto;
}
.pain-card {
  position: relative;
  background: var(--white);
  border: 10px solid var(--line);
  padding: 56px 28px 32px;
  text-align: left;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(124, 0, 0, 0.08);
}
.pain-card:hover .pain-card__cat { transform: scale(1.05) rotate(-3deg); }
.pain-card__cat { transition: transform 320ms cubic-bezier(.2,.8,.2,1); }
.pain-card__num {
  position: absolute;
  top: -28px; left: 24px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: 5px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05em;
  transition: transform 300ms cubic-bezier(.2,.8,.2,1);
}
.pain-card:hover .pain-card__num { transform: rotate(-12deg) scale(1.08); }
.pain-card__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--wine);
  letter-spacing: 0.06em;
  text-wrap: pretty;
}
.pain-card__cat {
  align-self: center;
  width: clamp(120px, 50%, 180px);
  height: auto;
}
.pains__outro {
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 900px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

/* ─────────────────────────────────────────────────────────────────
   SERVICE (homepage list view)
   ───────────────────────────────────────────────────────────────── */
.services { padding: var(--section-y) 0; background: var(--cream-soft); }
.service-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.service-tab {
  position: relative;
  padding: 18px 14px;
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: 0.08em;
  transition: transform 180ms ease;
}
.service-tab::before {
  content: "";
  position: absolute;
  inset: 6px -6px -6px 6px;
  background: var(--rose);
  z-index: -1;
}
.service-tab:hover { transform: translate(-2px, -2px); }
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: clamp(40px, 5vw, 68px) 0;
  border-top: 3px solid var(--rule);
}
.service-row:last-of-type { border-bottom: 3px solid var(--rule); }
@media (min-width: 860px) {
  .service-row {
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: clamp(36px, 4vw, 72px);
    padding-inline: 20px;
  }
  .service-row__head { border-right: 1px solid var(--rule); padding-right: clamp(24px, 3vw, 48px); }
}
.service-row__brand {
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin: 0 0 28px;
  text-align: center;
}
.service-row__brand small {
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 4px;
  font-weight: 700;
}
.service-row__list {
  margin: 0; padding: 0;
  list-style: none;
  font-weight: 500;
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 2;
  letter-spacing: 0.06em;
}
.service-row__list li::before { content: "\30FB"; margin-right: 2px; }
.service-row__body { display: flex; flex-direction: column; gap: 20px; }
.service-row__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-wrap: pretty;
}
.service-row__desc {
  margin: 0;
  font-weight: 500;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 2;
  letter-spacing: 0.05em;
  text-wrap: pretty;
}
.service-row__cta { align-self: flex-end; margin-top: 12px; }

/* ─────────────────────────────────────────────────────────────────
   SERVICE CARDS  (sub-page service list)
   ───────────────────────────────────────────────────────────────── */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--white);
  border: 1px solid rgba(58,58,58,0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(124, 0, 0, 0.1);
}
.svc-card__no {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--rose);
}
.svc-card__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--wine);
  letter-spacing: 0.08em;
}
.svc-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.svc-card__more {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms ease;
}
.svc-card:hover .svc-card__more { gap: 12px; }

/* ─────────────────────────────────────────────────────────────────
   FLOW (制作の流れ)
   ───────────────────────────────────────────────────────────────── */
.flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  counter-reset: step;
}
.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: clamp(72px, 8vw, 110px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(28px, 3.4vw, 44px);
  background: var(--white);
  border: 1px solid rgba(58,58,58,0.08);
}
.flow-step__num {
  position: relative;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1;
  color: var(--wine);
  letter-spacing: 0.02em;
}
.flow-step__num::after {
  content: "";
  position: absolute;
  left: 0; bottom: -14px;
  width: 44px; height: 3px;
  background: var(--rose);
}
.flow-step__body { padding-top: clamp(8px, 1vw, 14px); }
.flow-step__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: 0.08em;
  color: var(--ink);
}
.flow-step__desc {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}
.flow-step + .flow-step::before {
  content: "";
  position: absolute;
  top: -22px;
  left: clamp(36px, 4vw, 55px);
  width: 0; height: 22px;
  border-left: 2px dashed var(--rose-soft);
}

/* ─────────────────────────────────────────────────────────────────
   WORKS (page)
   ───────────────────────────────────────────────────────────────── */
.works { padding: var(--section-y) 0; background: var(--cream); }
.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.work-filter__btn {
  padding: 10px 22px;
  border: 1px solid rgba(58,58,58,0.18);
  border-radius: 999px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.work-filter__btn:hover { background: var(--white); }
.work-filter__btn.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 220ms ease;
}
.work-card:hover { transform: translateY(-4px); }
.work-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 5;
  background-color: var(--gray-200);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.work-card__thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
  opacity: 0; transition: opacity 220ms ease;
}
.work-card:hover .work-card__thumb::after { opacity: 1; }
.work-card__category {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--rose);
}
.work-card__label {
  font-weight: 700;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 0.06em;
  color: var(--ink);
}
.works__cta { display: flex; justify-content: center; }

/* ─────────────────────────────────────────────────────────────────
   BLOG
   ───────────────────────────────────────────────────────────────── */
.blog {
  position: relative;
  padding: var(--section-y) 0;
  background:
    linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.65)),
    url("assets/img/blog-bg.jpg") center / cover no-repeat;
}
.blog--plain {
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.blog-card {
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 4px 0 0 rgba(124, 0, 0, 0.08);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 0 0 rgba(124, 0, 0, 0.1); }
.blog-card__thumb {
  margin: -24px -24px 6px;
  aspect-ratio: 16 / 10;
  background: var(--gray-100) center / cover no-repeat;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--rose);
}
.blog-card__tag {
  padding: 3px 10px;
  background: var(--cream);
  color: var(--wine);
  font-weight: 700;
  font-size: 12px;
}
.blog-card__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-wrap: pretty;
}
.blog-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.blog-card__more {
  margin-top: auto;
  padding-top: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--wine);
}

/* ─── Blog single article body ─── */
.article {
  background: var(--white);
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 64px);
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 6px 0 rgba(124,0,0,0.05);
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--rose);
  margin-bottom: 14px;
}
.article__title {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-wrap: pretty;
}
.article__cover {
  width: calc(100% + clamp(48px, 8vw, 128px));
  margin: clamp(20px, 3vw, 32px) calc(-1 * clamp(24px, 4vw, 64px)) clamp(28px, 4vw, 48px);
  aspect-ratio: 16 / 9;
  background: var(--gray-100) center / cover no-repeat;
}
.article__body { font-size: clamp(15px, 1.1vw, 17px); line-height: 2.1; letter-spacing: 0.05em; }
.article__body h2 {
  margin: clamp(32px, 4vw, 56px) 0 18px;
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: 0.06em;
  color: var(--wine);
  padding-left: 16px;
  border-left: 5px solid var(--wine);
}
.article__body h3 {
  margin: clamp(28px, 3vw, 36px) 0 12px;
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 21px);
  letter-spacing: 0.06em;
  color: var(--ink);
}
.article__body p { margin: 0 0 20px; }
.article__body ul,
.article__body ol { margin: 0 0 24px; padding-left: 1.6em; }
.article__body li { margin-bottom: 6px; }
.article__body blockquote {
  margin: 24px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--rose);
  background: var(--cream);
  font-size: 0.95em;
  color: var(--ink-soft);
}
.article__body strong { color: var(--wine); }
.article__body a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────────────────────────────────────────────────────────
   ABOUT / company info table
   ───────────────────────────────────────────────────────────────── */
.about-mission {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.about-mission__quote {
  margin: 0 0 24px;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.7;
  color: var(--wine);
  letter-spacing: 0.06em;
  text-wrap: balance;
}
.about-mission__body {
  margin: 0;
  font-size: var(--t-lead);
  line-height: 2.1;
  color: var(--ink-soft);
}
.about-rep {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (min-width: 760px) {
  .about-rep { grid-template-columns: 0.8fr 1fr; }
}
.about-rep__photo {
  aspect-ratio: 4 / 5;
  background: var(--gray-200) center / cover no-repeat;
  background-image: url("assets/img/rep-placeholder.png");
}
.about-rep__name {
  margin: 14px 0 0;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--rose);
}
.about-rep__copy {
  font-size: var(--t-body);
  line-height: 2.1;
  color: var(--ink);
}
.about-rep__copy p { margin: 0 0 18px; }
.about-rep__copy p:last-child { margin: 0; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--t-body);
}
.info-table th,
.info-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(58,58,58,0.1);
  vertical-align: top;
  line-height: 1.85;
}
.info-table th {
  width: 28%;
  min-width: 130px;
  font-weight: 700;
  color: var(--wine);
  letter-spacing: 0.08em;
  background: rgba(124, 0, 0, 0.04);
}
@media (max-width: 640px) {
  .info-table th,
  .info-table td { display: block; width: 100%; min-width: 0; }
  .info-table th { border-bottom: 0; padding-bottom: 4px; background: transparent; }
  .info-table td { padding-top: 4px; }
}

/* ─────────────────────────────────────────────────────────────────
   FAQ accordion
   ───────────────────────────────────────────────────────────────── */
.faq-group { margin-bottom: clamp(32px, 4vw, 48px); }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: 0.1em;
  color: var(--wine);
  padding-left: 12px;
  border-left: 4px solid var(--wine);
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(58,58,58,0.1);
  margin-bottom: 12px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 64px;
  position: relative;
  font-weight: 700;
  font-size: clamp(14px, 1.15vw, 17px);
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--wine);
  line-height: 1;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px; height: 14px;
  border-right: 2px solid var(--wine);
  border-bottom: 2px solid var(--wine);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq-item__body {
  position: relative;
  padding: 6px 24px 24px 64px;
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}
.faq-item__body::before {
  content: "A";
  position: absolute;
  left: 22px;
  top: 6px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--rose);
  line-height: 1;
}

/* ─────────────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.6vw, 48px) clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid rgba(58,58,58,0.08);
  position: relative;
}
.price-card--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.price-card--featured .price-card__name,
.price-card--featured .price-card__price,
.price-card--featured .price-card__yen { color: var(--cream); }
.price-card--featured .price-card__list li::before { color: var(--rose-soft); }
.price-card__badge {
  position: absolute;
  top: 0; right: 24px;
  transform: translateY(-50%);
  padding: 6px 18px;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
}
.price-card__name {
  margin: 0 0 6px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--rose);
}
.price-card__title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  color: inherit;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 8px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1;
  color: var(--ink);
}
.price-card__yen { font-size: 0.5em; font-weight: 700; }
.price-card__note { margin: 0 0 24px; font-size: 12px; opacity: 0.7; }
.price-card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  font-size: 14px;
  line-height: 2.1;
}
.price-card__list li::before {
  content: "\2713";
  color: var(--wine);
  font-weight: 700;
  margin-right: 8px;
}
.price-card__cta { margin-top: auto; }

/* ─────────────────────────────────────────────────────────────────
   CONTACT form
   ───────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.6fr; }
}
.contact-info { font-size: var(--t-body); line-height: 2; }
.contact-info dt {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-top: 24px;
}
.contact-info dt:first-of-type { margin-top: 0; }
.contact-info dd { margin: 4px 0 0; }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field__label {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.field__required {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 3px 8px;
  background: var(--wine);
  color: var(--cream);
}
.field__input,
.field__textarea,
.field__select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(58,58,58,0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field__textarea { min-height: 180px; resize: vertical; line-height: 1.85; }
.field__input:focus,
.field__textarea:focus,
.field__select:focus {
  outline: none;
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(124, 0, 0, 0.12);
}
.field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .field__row { grid-template-columns: 1fr; }
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.8;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(58,58,58,0.1);
}
.consent input { margin-top: 4px; flex-shrink: 0; transform: scale(1.2); }
.consent a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
.form__submit { display: flex; justify-content: center; margin-top: 12px; }

/* ─────────────────────────────────────────────────────────────────
   CTA banner
   ───────────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--wine);
  color: var(--cream);
  padding: clamp(48px, 6vw, 80px) 0;
  text-align: center;
}
.cta-banner h2 {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.cta-banner p {
  margin: 0 0 32px;
  font-size: var(--t-body);
  line-height: 2;
  opacity: 0.86;
}
.cta-banner .btn { background: var(--cream); color: var(--ink); }
.cta-banner .btn::before { background: var(--ink); opacity: 0.4; }

/* ─────────────────────────────────────────────────────────────────
   404
   ───────────────────────────────────────────────────────────────── */
.notfound {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(40px, 6vw, 80px) var(--pad-x);
}
.notfound__code {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(110px, 18vw, 220px);
  line-height: 1;
  color: var(--wine);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}
.notfound__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 32px);
}
.notfound__copy {
  margin: 0 0 36px;
  font-size: var(--t-body);
  line-height: 2;
  color: var(--ink-soft);
  max-width: 560px;
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 760px) {
  .footer__top { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
.footer__brand .brand { color: var(--cream); }
.footer__brand .brand__name,
.footer__brand .brand__romaji { color: var(--cream); }
.footer__brand .brand__icon {
  filter: brightness(0) invert(1) sepia(0.4) saturate(2) hue-rotate(-20deg);
}
.footer__brand p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 2;
  opacity: 0.78;
}
.footer__col h4 {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--rose-soft);
}
.footer__col ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
  opacity: 0.86;
}
.footer__col a { transition: color 150ms ease; }
.footer__col a:hover { color: var(--rose-soft); }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid rgba(245,245,245,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

/* ─── Scroll reveal ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 600ms cubic-bezier(.2,.8,.2,1), transform 600ms cubic-bezier(.2,.8,.2,1); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 110ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 220ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 330ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 440ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 550ms; }

@media (max-width: 640px) {
  .pain-card {
    aspect-ratio: auto;
    padding: 40px 24px 24px;
  }
  .pain-card__title {
    font-size: 18px;
    line-height: 1.8;
  }
  .pain-card__cat {
    width: min(140px, 40%);
    margin-top: 16px;
  }
}

/* respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
