/* yu-2026 — editorial-grade refinements
   Path 3 ハイブリッド：Ivory + ロゴ原色アクセント
   書体：Shippori Mincho B1 / Zen Kaku Gothic New / Klee One
   方針：紙のような質感、雑誌的レイアウト、繊細な動き
*/

/* ===== CSS変数 ===== */
:root {
  --c-ivory: #f6f1e7;
  --c-ivory-deep: #efe8d5;
  --c-ink: #1a1a1a;
  --c-ink-soft: #5a5550;
  --c-paper: #ffffff;
  --c-red: #e63d27;
  --c-blue: #5b8fcf;
  --c-green: #a8e082;
  --c-green-deep: #7ab85d;
  --c-yellow: #f5e26b;
  --c-gold: #a07f3e;
  --c-gold-soft: #c8aa6e;
  --rule-fine: rgba(26,26,26,.12);
  --rule-thin: rgba(26,26,26,.06);
  --serif: "Shippori Mincho B1","Hiragino Mincho ProN",serif;
  --sans: "Zen Kaku Gothic New","Hiragino Sans",sans-serif;
  --klee: "Klee One","Yu Mincho",serif;
  --shadow-soft: 0 2px 8px rgba(26,26,26,.06);
  --shadow-card: 0 8px 24px -8px rgba(26,26,26,.12);
  --shadow-card-hover: 0 16px 40px -16px rgba(26,26,26,.18);
}

/* ===== 紙のテクスチャ（粒状ノイズ）を全面に ===== */
body::before {
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.1, 0 0 0 0 0.1, 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 2; }

/* ===== 地色 ===== */
body {
  background-color: var(--c-ivory);
  background-image: radial-gradient(at 20% 10%, var(--c-ivory) 0%, var(--c-ivory-deep) 100%);
  background-attachment: fixed;
}

/* ===== Reading progress bar ===== */
.yu-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--c-red), var(--c-gold));
  z-index: 9999;
  transition: width .12s linear;
  pointer-events: none;
}

/* ===== Decorative floating shapes (logo palette) ===== */
.yu-deco {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  opacity: .35;
  filter: blur(40px);
}

/* ===== Skip link ===== */
.yu-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: .8rem 1.2rem;
  background: var(--c-ink);
  color: var(--c-ivory);
  font-family: var(--sans);
  font-size: .8rem;
  text-decoration: none;
}
.yu-skip-link:focus { left: 0; top: 0; }

/* ===== サイトロゴ：円形フレーム ===== */
.wp-block-site-logo img {
  border-radius: 50%;
  background: var(--c-paper);
  padding: 6px;
  box-sizing: border-box;
  border: 1px solid var(--rule-fine);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.wp-block-site-logo:hover img { transform: rotate(-8deg) scale(1.04); }

/* ===== タイポグラフィ調整 ===== */
.wp-site-blocks {
  font-family: var(--sans);
  font-feature-settings: "palt" 1;
}
h1, h2, h3, h4 {
  font-feature-settings: "palt" 1;
  letter-spacing: -.005em;
}

/* ===== ヘッダー：sticky + scroll behavior ===== */
.wp-site-blocks > header.wp-block-group {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(246,241,231,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .25s, padding .25s;
}
.wp-site-blocks > header.wp-block-group.is-scrolled {
  box-shadow: 0 1px 0 rgba(26,26,26,.06), 0 8px 24px -16px rgba(26,26,26,.18);
  padding-top: .9rem !important;
  padding-bottom: .9rem !important;
}
.wp-site-blocks > header.wp-block-group.is-hidden {
  transform: translateY(-100%);
}

/* ===== Nav ===== */
.yu-nav {
  display: flex;
  gap: 2rem;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  font-weight: 800;
  text-transform: uppercase;
  align-items: center;
}
.yu-nav__link {
  color: var(--c-ink);
  text-decoration: none;
  position: relative;
  padding: .35rem 0;
}
.yu-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
}
.yu-nav__link:hover::after { transform: scaleX(1); }
.yu-nav__link--cta {
  background: var(--c-ink);
  color: var(--c-ivory) !important;
  padding: .6rem 1.1rem !important;
  border-radius: 3px;
  transition: background .25s;
}
.yu-nav__link--cta:hover { background: var(--c-red); }
.yu-nav__link--cta::after { display: none; }

/* ===== Burger button (mobile only) ===== */
.yu-burger {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
}
.yu-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-ink);
  margin: 5px auto;
  transition: transform .35s cubic-bezier(.6,.05,.2,1), opacity .25s;
}
.yu-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.yu-burger.is-open span:nth-child(2) { opacity: 0; }
.yu-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== ヒーロー入場アニメーション ===== */
@keyframes yu-fadeup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes yu-fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes yu-rule-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes yu-frame-arrive { from { opacity: 0; transform: translateX(40px) rotate(2deg); } to { opacity: 1; transform: translateX(0) rotate(0); } }
@keyframes yu-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes yu-scroll-blink { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .4; transform: scaleY(.6); } }

.yu-hero { animation: yu-fadein .7s ease both; }
.yu-hero .yu-eyebrow { animation: yu-fadeup .7s .1s cubic-bezier(.2,.8,.2,1) both; }
.yu-hero h1            { animation: yu-fadeup 1.0s .25s cubic-bezier(.2,.8,.2,1) both; }
.yu-hero .yu-lead      { animation: yu-fadeup .9s .55s cubic-bezier(.2,.8,.2,1) both; }
.yu-hero .yu-rule      { animation: yu-rule-grow .7s .8s cubic-bezier(.6,.05,.2,1) both; transform-origin: left; }
.yu-hero .yu-frame     { animation: yu-frame-arrive 1.1s .15s cubic-bezier(.2,.8,.2,1) both; }
.yu-hero .yu-breadcrumb { animation: yu-fadein .6s .05s ease both; }

/* ===== Full-screen Hero (front page) ===== */
.yu-hero--full {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--c-ivory);
  margin-top: -1px; /* avoid hairline gap below sticky header */
}
.yu-hero--full .yu-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  filter: contrast(1.05) brightness(.78) saturate(.85);
  animation: yu-zoom 14s cubic-bezier(.2,.8,.2,1) both;
}
.yu-hero--full .yu-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.65) 100%),
    radial-gradient(ellipse at 28% 50%, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 60%);
}
.yu-hero--full .yu-hero__edition {
  position: absolute;
  top: 6rem;
  right: 1.6rem;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .35em;
  color: rgba(246,241,231,.7);
  pointer-events: none;
}
.yu-hero--full .yu-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 8rem 4rem 6rem;
  width: 100%;
}
.yu-hero--full .yu-hero__eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .45em;
  font-weight: 800;
  color: var(--c-gold-soft);
  margin: 0 0 1.6rem;
  text-transform: uppercase;
  animation: yu-fadeup .7s .15s cubic-bezier(.2,.8,.2,1) both;
}
.yu-hero--full .yu-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--c-ivory);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
  animation: yu-fadeup 1.0s .35s cubic-bezier(.2,.8,.2,1) both;
}
.yu-hero--full .yu-hero__title em {
  color: var(--c-yellow);
  font-style: normal;
  font-weight: 500;
}
.yu-hero--full .yu-hero__lead {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 2;
  margin: 2rem 0 0;
  color: rgba(246,241,231,.92);
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  animation: yu-fadeup .9s .65s cubic-bezier(.2,.8,.2,1) both;
}
.yu-hero--full .yu-hero__rule {
  height: 1px;
  width: 96px;
  background: var(--c-gold-soft);
  margin: 2.4rem 0 0;
  transform-origin: left;
  animation: yu-rule-grow .7s .9s cubic-bezier(.6,.05,.2,1) both;
}
.yu-hero--full .yu-hero__sign {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .3em;
  font-weight: 700;
  color: rgba(246,241,231,.75);
  margin: 1.4rem 0 0;
  animation: yu-fadeup .7s 1.05s cubic-bezier(.2,.8,.2,1) both;
}
.yu-hero--full .yu-hero__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
  animation: yu-fadeup .8s 1.15s cubic-bezier(.2,.8,.2,1) both;
}
.yu-btn--ghost-on-dark {
  background: transparent;
  color: var(--c-ivory);
  border: 1px solid rgba(246,241,231,.55);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.6rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-decoration: none;
  border-radius: 3px;
  transition: background .25s, color .25s, transform .2s, border-color .25s;
}
.yu-btn--ghost-on-dark:hover {
  background: var(--c-ivory);
  color: var(--c-ink);
  border-color: var(--c-ivory);
  transform: translateY(-2px);
}
.yu-hero--full .yu-hero__teaser {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.6rem;
  padding: .9rem 1.2rem .9rem 1.2rem;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(200,170,110,.4);
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--sans);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .25s, transform .2s, border-color .25s;
  animation: yu-fadeup .8s 1.35s cubic-bezier(.2,.8,.2,1) both;
  flex-wrap: wrap;
}
.yu-hero--full .yu-hero__teaser:hover {
  background: rgba(0,0,0,.55);
  border-color: rgba(200,170,110,.8);
  transform: translateY(-2px);
}
.yu-hero--full .yu-hero__teaser-tag {
  font-size: .58rem;
  letter-spacing: .35em;
  font-weight: 800;
  color: var(--c-gold-soft);
  text-transform: uppercase;
}
.yu-hero--full .yu-hero__teaser-text {
  font-size: .8rem;
  letter-spacing: .05em;
  font-weight: 500;
  color: var(--c-ivory);
}

.yu-hero--full .yu-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: rgba(246,241,231,.65);
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .4em;
  font-weight: 700;
  transition: color .2s;
}
.yu-hero--full .yu-hero__scroll:hover { color: var(--c-ivory); }
.yu-hero--full .yu-hero__scroll-line {
  display: block;
  width: 1px;
  height: 38px;
  background: currentColor;
  transform-origin: top;
  animation: yu-scroll-blink 1.8s ease-in-out infinite;
}

@media (max-width: 781px) {
  .yu-hero--full .yu-hero__inner { padding: 7rem 1.5rem 5rem; }
  .yu-hero--full .yu-hero__edition { top: 5rem; font-size: .6rem; }
  .yu-hero--full .yu-hero__bg { object-position: center 35%; }
  .yu-hero--full .yu-hero__lead { font-size: .95rem; line-height: 1.95; }
}

/* ===== Reveal-on-scroll =====
   JS が動いた時だけ非表示状態にする（FOUC回避＆JS無効時も表示）。 */
.yu-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.yu-js .yu-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}
.yu-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 雑誌的ディテール：縦書きの号数表示 ===== */
.yu-edition {
  position: absolute;
  top: 6rem;
  right: 1.4rem;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .35em;
  color: var(--c-gold);
  opacity: .85;
  pointer-events: none;
}

/* ===== Breadcrumb ===== */
.yu-breadcrumb a { transition: color .2s; }
.yu-breadcrumb a:hover { color: var(--c-red) !important; }

/* ===== セクション番号バッジ ===== */
.yu-section-num {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .35em;
  font-size: .68rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.yu-section-num::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* ===== サービスカードグリッド（4枚） ===== */
.yu-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.yu-service-card {
  display: flex;
  flex-direction: column;
  background: var(--c-paper);
  padding: 2rem 1.85rem 2.2rem;
  border-radius: 10px;
  border-top: 6px solid var(--accent, var(--c-ink));
  text-decoration: none;
  color: var(--c-ink);
  position: relative;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  box-shadow: var(--shadow-soft);
}
.yu-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.yu-service-card__num {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .4em;
  font-weight: 800;
  color: #888;
  margin-bottom: .6rem;
}
.yu-service-card__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--c-ink);
}
.yu-service-card__desc {
  font-family: var(--sans);
  font-size: .88rem;
  line-height: 1.9;
  color: var(--c-ink-soft);
  margin: 0 0 1.2rem;
  flex: 1;
}
.yu-service-card__more {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  font-weight: 800;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  align-self: flex-start;
  padding-bottom: .25rem;
  transition: color .25s, border-color .25s;
}
.yu-service-card__more em {
  font-style: normal;
  display: inline-block;
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.yu-service-card:hover .yu-service-card__more {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.yu-service-card:hover .yu-service-card__more em {
  transform: translateX(4px);
}
.yu-service-card__badge {
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .3em;
  font-weight: 800;
  color: var(--c-ivory);
  background: var(--c-red);
  padding: .35rem .7rem;
  border-radius: 3px;
  box-shadow: 0 4px 12px -4px rgba(230,61,39,.6);
}
.yu-service-card--new {
  position: relative;
  overflow: hidden;
}
.yu-service-card--new::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 80px;
  background: radial-gradient(circle at 90% 0%, rgba(160,127,62,.15), transparent 60%);
  pointer-events: none;
}

@media (max-width: 781px) {
  .yu-service-grid { grid-template-columns: 1fr; gap: 1rem; }
  .yu-service-card { padding: 1.6rem 1.4rem 1.8rem; }
}

/* ===== Pull quote (Klee One 手書き風) ===== */
.yu-pull-quote {
  font-family: var(--klee);
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--c-ink);
  border-left: 2px solid var(--c-gold);
  padding-left: 1.4rem;
  margin: 2rem 0;
}

/* ===== オーナメント ===== */
.yu-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  color: var(--c-gold);
  opacity: .6;
}
.yu-ornament::before,
.yu-ornament::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: currentColor;
}

/* ===== Cover (写真フレーム) ===== */
.wp-block-cover { overflow: hidden; }

/* ===== Process steps ===== */
.yu-process { counter-reset: step; }
.yu-process__item {
  position: relative;
  padding: 1.5rem 0 1.5rem 5rem;
  border-top: 1px solid var(--rule-fine);
}
.yu-process__item:last-child { border-bottom: 1px solid var(--rule-fine); }
.yu-process__item::before {
  counter-increment: step;
  content: "STEP " counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.7rem;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .35em;
  font-weight: 800;
  color: var(--c-gold);
}
.yu-process__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.yu-process__desc {
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.85;
  color: var(--c-ink-soft);
  margin: 0;
}

/* ===== FAQ accordion ===== */
.yu-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  border-top: 1px solid var(--rule-fine);
  position: relative;
  transition: color .2s;
}
.yu-faq summary::-webkit-details-marker { display: none; }
.yu-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.2rem;
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-gold);
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
}
.yu-faq details[open] summary::after { transform: rotate(45deg); }
.yu-faq details:last-of-type summary { border-bottom: 1px solid var(--rule-fine); }
.yu-faq details[open]:last-of-type summary { border-bottom: 0; }
.yu-faq__body {
  padding: 0 0 1.4rem;
  font-family: var(--sans);
  font-size: .95rem;
  line-height: 1.85;
  color: var(--c-ink-soft);
  border-bottom: 1px solid var(--rule-fine);
}
.yu-faq summary:hover { color: var(--c-red); }

/* ===== For Whom ===== */
.yu-forwhom {
  background: var(--c-paper);
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--rule-fine);
}
.yu-forwhom__inner { max-width: 880px; margin: 0 auto; }
.yu-forwhom__eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .45em;
  font-weight: 800;
  color: var(--c-gold);
  margin: 0 0 2rem;
  text-transform: uppercase;
}
.yu-forwhom__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule-fine);
}
.yu-forwhom__list li {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule-fine);
  transition: padding-left .25s, color .25s;
}
.yu-forwhom__list li:hover { padding-left: 1rem; color: var(--c-red); }
.yu-forwhom__num {
  flex: 0 0 auto;
  width: 50px;
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .3em;
  font-weight: 800;
  color: var(--c-gold);
  padding-top: .25rem;
}
.yu-forwhom__text {
  flex: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.95;
  color: var(--c-ink);
}
.yu-forwhom__text strong {
  font-weight: 700;
  background: linear-gradient(transparent 65%, rgba(245,226,107,.55) 65%);
  padding: 0 .15em;
}
.yu-forwhom__note {
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--c-ink-soft);
  margin-top: 2rem;
  letter-spacing: .05em;
}

@media (max-width: 781px) {
  .yu-forwhom { padding: 3.5rem 1.5rem; }
  .yu-forwhom__list li { gap: 1rem; }
  .yu-forwhom__num { width: 36px; }
  .yu-forwhom__text { font-size: .95rem; }
}

/* ===== Stats ===== */
.yu-stat {
  text-align: left;
  padding: 1.4rem;
}
.yu-stat__num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-ink);
}
.yu-stat__num em { color: var(--c-red); font-style: normal; font-size: 2rem; margin-left: .15em; }
.yu-stat__label {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .3em;
  font-weight: 700;
  color: var(--c-gold);
  margin-top: .8rem;
  text-transform: uppercase;
}
.yu-stat__desc {
  font-family: var(--sans);
  font-size: .85rem;
  line-height: 1.85;
  color: var(--c-ink-soft);
  margin-top: .6rem;
}

/* ===== News card list ===== */
.yu-news-list { display: grid; gap: 0; }
.yu-news-item {
  display: grid;
  grid-template-columns: 120px 90px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule-fine);
  transition: padding-left .25s, background .25s;
}
.yu-news-item:hover { padding-left: 1rem; background: rgba(255,255,255,.4); }
.yu-news-item__date { font-family: var(--sans); font-size: .78rem; color: #888; }
.yu-news-item__cat {
  display: inline-block; font-family: var(--sans); font-size: .6rem; letter-spacing: .3em;
  padding: .25rem .55rem; background: var(--c-green); border-radius: 3px; font-weight: 800;
  color: var(--c-ink);
}
.yu-news-item__title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500; line-height: 1.55;
}
.yu-news-item__title a { color: var(--c-ink); text-decoration: none; }
.yu-news-item__title a:hover { color: var(--c-red); }

/* ===== Buttons ===== */
.yu-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.6rem;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 3px;
  transition: transform .2s, background .25s, color .25s;
}
.yu-btn--primary { background: var(--c-red); color: var(--c-ivory); }
.yu-btn--primary:hover { background: var(--c-ink); transform: translateY(-2px); color: var(--c-ivory); }
.yu-btn--ghost { background: transparent; color: var(--c-ink); border: 1px solid var(--c-ink); }
.yu-btn--ghost:hover { background: var(--c-ink); color: var(--c-ivory); transform: translateY(-2px); }

/* ===== 404 ===== */
.yu-404 {
  display: grid;
  place-items: center;
  min-height: 60vh;
  text-align: center;
  padding: 4rem 2rem;
}
.yu-404__num {
  font-family: var(--serif);
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -.02em;
}
.yu-404__num em { color: var(--c-red); font-style: normal; }
.yu-404__title {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-top: .8rem;
  font-weight: 700;
}
.yu-404__desc {
  font-family: var(--sans);
  color: var(--c-ink-soft);
  margin-top: 1rem;
  line-height: 1.85;
}
.yu-404__action { margin-top: 2rem; }

/* ===== Single article ===== */
.yu-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--c-ink-soft);
  margin-bottom: 1.6rem;
}
.yu-article-meta time { letter-spacing: .05em; }
.yu-article-meta .yu-news-item__cat { margin: 0; }

/* ===== Mobile (≤781px) ===== */
@media (max-width: 781px) {
  .wp-site-blocks > header.wp-block-group {
    padding: 1rem 1.25rem !important;
  }
  .wp-site-blocks > header.wp-block-group.is-scrolled {
    padding-top: .8rem !important;
    padding-bottom: .8rem !important;
  }

  .yu-burger { display: block; }
  .yu-nav {
    position: fixed;
    inset: 0;
    background: var(--c-ivory);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1rem;
    transform: translateY(-100%);
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    z-index: 55;
  }
  .yu-nav.is-open { transform: translateY(0); pointer-events: auto; }
  .yu-nav__link--cta { padding: .9rem 1.6rem !important; }

  main .wp-block-group {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  main .wp-block-columns {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  main .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }
  main h1 { font-size: 2.6rem !important; }
  main h2 { font-size: 1.7rem !important; }
  footer.wp-block-group {
    padding: 2rem 1.25rem 1rem !important;
  }
  .yu-edition { display: none; }
  body::before { opacity: .25; }

  .yu-news-item { grid-template-columns: 90px 70px 1fr; gap: 1rem; }
  .yu-process__item { padding-left: 4rem; }
  .yu-stat__num { font-size: 2.4rem; }
  .yu-404__num { font-size: 6rem; }
}

@media (max-width: 480px) {
  main h1 { font-size: 2.2rem !important; }
  .yu-news-item { grid-template-columns: 1fr; gap: .4rem; }
  .yu-news-item__date { font-size: .72rem; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.yu-edition, .yu-hero__edition, [class*="edition"]{display:none !important}