/* ============================================================
   株式会社ReALL — コーポレートサイト v3 (2026-07)
   エディトリアル設計: 紙色 × 藍 × 黄（LP v3 と共通言語）
   ============================================================ */

:root {
  --paper: #f5f3ec;
  --paper-2: #eeebe0;
  --ink: #14181f;
  --ink-soft: #495061;
  --navy: #1c3b8f;
  --yellow: #ffd000;
  --line: rgba(20, 24, 31, .18);
  --line-strong: rgba(20, 24, 31, .85);

  --font-jp: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Archivo", "Zen Kaku Gothic New", sans-serif;
  --font-mono: "IBM Plex Mono", "Menlo", monospace;

  --header-h: 72px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 15.5px;
  line-height: 1.95;
  letter-spacing: .02em;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, dt { margin: 0; }
button { font-family: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 880px; }

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

.marker {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding: 0 .06em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  line-height: 1.4;
  border: 1.5px solid var(--ink);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.btn--cta {
  background: var(--yellow);
  color: var(--ink);
  padding: 15px 30px;
  font-size: .98rem;
  letter-spacing: .04em;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn--cta:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.btn--cta .btn__arrow { font-family: var(--font-en); transition: transform .18s var(--ease); }
.btn--cta:hover .btn__arrow { transform: translateX(4px); }
.btn--lg { padding: 18px 40px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn--header { padding: 10px 18px; font-size: .88rem; box-shadow: 3px 3px 0 var(--ink); }
.btn--outline {
  padding: 15px 28px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}
.btn--outline:hover { background: rgba(20, 24, 31, .05); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 236, .94);
  backdrop-filter: blur(6px);
  border-bottom: 1.5px solid var(--ink);
  transition: transform .35s var(--ease);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo img { width: 112px; height: auto; }
.nav { display: flex; gap: 24px; margin-left: auto; }
.nav a {
  font-size: .88rem;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 28px 22px;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
}
.nav-mobile a {
  font-weight: 500;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile .btn { margin-top: 18px; border-bottom: 1.5px solid var(--ink); }
.nav-mobile.is-open { display: flex; }

@media (max-width: 1000px) {
  .nav, .btn--header { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}

/* ---------- hero（タイポグラフィ主体） ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
}
.hero__ghost {
  position: absolute;
  top: 6px; left: -10px;
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 120%;
  font-size: clamp(80px, 16vw, 220px);
  line-height: 1;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 24, 31, .12);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero__eyebrow::after {
  content: "";
  width: 52px; height: 1px;
  background: var(--ink);
  opacity: .5;
}
.hero__title {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .02em;
  margin-bottom: 26px;
}
.hero__lead {
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__lead strong { color: var(--ink); }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__fields { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.hero__fields li {
  position: relative;
  padding-left: 26px;
  font-size: .86rem;
  font-weight: 700;
}
.hero__fields li::before {
  content: "";
  position: absolute;
  left: 0; top: .36em;
  width: 16px; height: 16px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
}
.hero__fields li::after {
  content: "";
  position: absolute;
  left: 4px; top: calc(.36em + 4px);
  width: 6px; height: 3px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}
.hero__photo { position: relative; }
.hero__photo img {
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--yellow);
}
@media (max-width: 900px) {
  .hero { padding: 56px 0 68px; }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__photo { max-width: 560px; }
  .hero__photo img { box-shadow: 8px 8px 0 var(--yellow); }}
@media (max-width: 560px) {
  .hero__eyebrow { font-size: 10px; letter-spacing: .16em; gap: 10px; }
  .hero__eyebrow::after { width: 30px; }
}

/* ---------- タイポグラフィ・バンド ---------- */
.band {
  display: flex;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0 24px;
  border-bottom: 1.5px solid var(--ink);
}
.band__inner {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  animation: bandMove 26s linear infinite;
}
.band__item {
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 115%;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: .01em;
  white-space: nowrap;
}
.band__item--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 243, 236, .55);
}
.band__x {
  color: var(--yellow);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 24px);
}
@keyframes bandMove { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .band__inner { animation: none; } }

/* ---------- sections（共通） ---------- */
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--paper-2); }
body { counter-reset: sec; }
.section__eyebrow {
  counter-increment: sec;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-align: left;
}
.section__eyebrow::before {
  content: "(" counter(sec, decimal-leading-zero) ")";
  color: var(--ink-soft);
}
.section__eyebrow::after {
  content: "";
  width: 52px; height: 1px;
  background: var(--ink);
  opacity: .5;
}
.section__eyebrow--left { justify-content: flex-start; }
.section__title {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .01em;
  text-align: left;
  margin-bottom: 48px;
}
.section__title--left { text-align: left; }
.section__lead {
  text-align: left;
  color: var(--ink-soft);
  margin: -34px 0 48px;
  max-width: 680px;
}

/* ---------- ご挨拶 ---------- */
.greeting {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.greeting__catch {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 22px;
  display: inline-block;
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding: 0 .1em;
}
.greeting__text p:not(.greeting__catch):not(.greeting__sign) {
  margin-bottom: 1.25em;
}
.greeting__sign {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--ink-soft);
}
.greeting__sign strong { font-family: var(--font-jp); font-size: 1.3rem; color: var(--ink); }
.greeting__photo { position: relative; }
.greeting__photo img {
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
}
.greeting__photo-accent { display: none; }
@media (max-width: 900px) {
  .greeting { grid-template-columns: 1fr; gap: 44px; }
  .greeting__photo { max-width: 340px; }
  .greeting__photo img { box-shadow: 8px 8px 0 var(--yellow); }
}

/* ---------- 事業内容（番号付きカラム） ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  counter-reset: svc;
}
.service {
  counter-increment: svc;
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ink);
  padding: 22px 4px 0;
  background: transparent;
}
.service::before {
  content: counter(svc, decimal-leading-zero);
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 115%;
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 18px;
}
.service__icon {
  position: absolute;
  top: 24px; right: 4px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--paper);
  display: grid;
  place-items: center;
}
.service__icon svg { width: 24px; height: 24px; }
.service__title { font-size: 1.2rem; font-weight: 900; margin-bottom: 12px; }
.service__body { font-size: .9rem; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.service__tags li {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .04em;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 3px 10px;
}
.service__price {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.service__price span {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  color: var(--paper);
  background: var(--ink);
  padding: 3px 10px;
  margin-right: 10px;
  vertical-align: 3px;
}
.service__price strong {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: .01em;
}
.service__price small { display: block; font-size: .72rem; color: var(--ink-soft); margin-top: 3px; }
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--yellow);
  align-self: flex-start;
  padding-bottom: 2px;
}
.service__link span { font-family: var(--font-en); transition: transform .2s var(--ease); }
.service__link:hover span { transform: translateX(4px); }
@media (max-width: 960px) {
  .services { grid-template-columns: 1fr; max-width: 560px; gap: 32px; }
}

/* ---------- 選ばれる理由（墨色バンド） ---------- */
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .section__eyebrow { color: var(--yellow); }
.section--dark .section__eyebrow::before { color: rgba(245, 243, 236, .5); }
.section--dark .section__eyebrow::after { background: var(--paper); }
.section--dark .section__title { color: var(--paper); }
.strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.strength { border-top: 1px solid rgba(245, 243, 236, .35); padding-top: 24px; }
.strength__num {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--yellow);
  margin-bottom: 16px;
}
.strength__num::after { display: none; }
.strength h3 {
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.65;
  margin-bottom: 10px;
}
.strength p { font-size: .88rem; color: rgba(245, 243, 236, .7); }
.stats {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(245, 243, 236, .25);
  border-bottom: 1px solid rgba(245, 243, 236, .25);
  max-width: 780px;
}
.stats li {
  flex: 1;
  text-align: left;
  border-left: 1px solid rgba(245, 243, 236, .25);
  padding: 26px 24px;
}
.stats li:first-child { border-left: 0; }
.stats strong {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 110%;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--yellow);
  line-height: 1.15;
}
.stats strong small { font-size: .45em; font-weight: 900; margin-left: 2px; }
.stats span {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(245, 243, 236, .7);
}
.stats__note {
  margin-top: 24px;
  font-size: .72rem;
  color: rgba(245, 243, 236, .45);
}
@media (max-width: 900px) {
  .strengths { grid-template-columns: 1fr; max-width: 520px; gap: 30px; margin-bottom: 48px; }}
@media (max-width: 560px) {
  .stats { flex-direction: column; border-bottom: 0; }
  .stats li { border-left: 0; border-bottom: 1px solid rgba(245, 243, 236, .25); padding: 18px 4px; }
  .stats strong { font-size: 2.2rem; }
}

/* ---------- お知らせ ---------- */
.news { border-top: 2px solid var(--ink); }
.news__item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-strong);
  transition: background .2s;
}
.news__item:hover { background: rgba(20, 24, 31, .04); }
.news__item time {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  min-width: 110px;
}
.news__cat {
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .08em;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 2px 12px;
}
.news__item p { font-weight: 500; flex: 1; min-width: 200px; }
.news__item p a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news__more { margin-top: 28px; }
.news__more a {
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

/* ---------- 会社情報 ---------- */
.company__lead {
  text-align: left;
  color: var(--ink-soft);
  max-width: 680px;
  margin: -34px 0 44px;
}
.company {
  background: var(--paper);
  border: 2px solid var(--ink);
}
.company__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line-strong);
}
.company__row:last-child { border-bottom: 0; }
.company__row dt {
  background: var(--paper-2);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  font-weight: 500;
  padding: 20px 24px;
  border-right: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
}
.company__row dd { padding: 18px 24px; }
.company__row dd a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px) {
  .company__row { grid-template-columns: 1fr; }
  .company__row dt { padding: 10px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .company__row dd { padding: 14px 18px 18px; }
}

/* ---------- お問い合わせ（墨色バンド） ---------- */
.section--contact {
  background: var(--ink);
  color: var(--paper);
}
.section--contact .section__eyebrow { color: var(--yellow); }
.section--contact .section__eyebrow::before { color: rgba(245, 243, 236, .5); }
.section--contact .section__eyebrow::after { background: var(--paper); }
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact__title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 18px;
  color: var(--paper);
}
.contact__title::after { display: none; }
.contact__lead { color: rgba(245, 243, 236, .78); margin-bottom: 30px; }
.contact__lead strong { color: var(--yellow); }
.contact__perks { display: flex; flex-wrap: wrap; gap: 8px; }
.contact__perks li {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  border: 1px solid rgba(245, 243, 236, .4);
  padding: 6px 14px;
}

.form {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
  padding: 34px 30px;
  color: var(--ink);
}
.form__row { margin-bottom: 20px; }
.form__row label {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form__row label::after {
  content: "必須";
  font-size: .66rem;
  font-weight: 700;
  color: var(--paper);
  background: #c94040;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: 1px;
}
.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: 12px 14px;
  transition: box-shadow .15s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  box-shadow: 3px 3px 0 var(--yellow);
}
.form input.is-invalid, .form textarea.is-invalid {
  border-color: #c94040;
  background: #fff6f6;
}
.form textarea { resize: vertical; min-height: 130px; }
.form__error {
  color: #c94040;
  background: #fdeeee;
  border: 1px solid #c94040;
  font-size: .86rem;
  font-weight: 700;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.form__note {
  margin-top: 14px;
  text-align: center;
  font-size: .78rem;
  color: var(--ink-soft);
}
.form-success {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
  padding: 60px 30px;
  text-align: center;
  color: var(--ink);
}
.form-success__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.form-success h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); }
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; gap: 44px; }
  .form { padding: 26px 18px; box-shadow: 8px 8px 0 var(--yellow); }
}

/* ---------- フッター ---------- */
.footer {
  background: var(--ink);
  color: rgba(245, 243, 236, .8);
  padding: 56px 0 0;
  border-top: 1px solid rgba(245, 243, 236, .2);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 44px;
}
.logo--footer img { width: 136px; }
.footer__brand p { margin-top: 14px; font-size: .84rem; }
.footer__addr {
  font-family: var(--font-mono);
  color: rgba(245, 243, 236, .45);
  font-size: .72rem !important;
  margin-top: 8px !important;
  letter-spacing: .04em;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 36px;
  align-content: start;
}
.footer__nav a { font-size: .86rem; color: rgba(245, 243, 236, .75); }
.footer__nav a:hover { color: var(--yellow); }
.footer__copy {
  font-family: var(--font-mono);
  text-align: center;
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(245, 243, 236, .4);
  border-top: 1px solid rgba(245, 243, 236, .15);
  padding: 20px 24px;
  margin: 0;
}

/* ---------- reveal（GSAP無効時のフォールバック） ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
