/* =========================================
   西巻正美 LP — Cinematic Dark
   ========================================= */

:root {
  --bg-0: #07070a;
  --bg-1: #0d0d11;
  --bg-2: #14141a;
  --bg-3: #1c1c24;
  --border: #26262f;
  --border-warm: #3a3229;

  --text-1: #efece4;
  --text-2: #b4ada1;
  --text-3: #706b61;
  --text-mute: #4d4a43;

  --amber: #d4a574;
  --amber-soft: #c9a36a;
  --amber-dim: #8a7048;
  --rust: #b85c3a;
  --gold-glow: rgba(201, 163, 106, 0.18);

  --serif: "Noto Serif JP", "Times New Roman", serif;
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Inter", -apple-system, BlinkMacSystemFont, monospace;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease), opacity 0.3s var(--ease); }
a:hover { color: var(--amber); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--bg-0);
  padding: 8px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =========================================
   Header
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(7,7,10,0.85) 0%, rgba(7,7,10,0.4) 70%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(7,7,10,0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--text-1);
}
.logo-sub {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--text-3);
  margin-top: 2px;
}

.site-nav ul {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  list-style: none;
}
.site-nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--text-2);
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.4s var(--ease);
}
.site-nav a:hover { color: var(--text-1); }
.site-nav a:hover::after { width: 100%; }

@media (max-width: 640px) {
  .site-nav ul { gap: 14px; }
  .site-nav a { font-size: 11px; letter-spacing: 0.08em; }
  .logo-sub { display: none; }
}

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184,92,58,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201,163,106,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d11 0%, #07070a 60%, #0a0a0d 100%);
  z-index: 0;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.hero-light {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(212,165,116,0.12) 0%, transparent 60%);
  filter: blur(40px);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-60px, 40px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-eyebrow .line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--text-1);
  margin-bottom: 36px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.hero-title .em {
  color: var(--amber);
  font-style: normal;
  position: relative;
}

.hero-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
  color: var(--text-2);
  max-width: 720px;
  margin-bottom: 48px;
}
.desktop-br { display: inline; }
@media (max-width: 700px) { .desktop-br { display: none; } }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--amber);
  color: var(--bg-0);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: transparent;
  color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px var(--gold-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}
.btn-ghost:hover {
  color: var(--text-1);
  border-color: var(--amber);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border-color: var(--amber-dim);
}
.btn-outline:hover {
  background: var(--amber);
  color: var(--bg-0);
  border-color: var(--amber);
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateY(3px); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-3);
  text-transform: uppercase;
}
.hero-meta .dot { color: var(--amber-dim); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--text-3);
  z-index: 1;
}
.scroll-bar {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--amber) 0%, transparent 100%);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   Sections (common)
   ========================================= */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.section-head { margin-bottom: clamp(48px, 7vw, 96px); max-width: 860px; }
.chapter {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 24px;
  position: relative;
}
.chapter::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--amber);
}
.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--text-1);
  margin-bottom: 24px;
}
.section-lead {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 2;
  color: var(--text-2);
  max-width: 640px;
}

/* =========================================
   Story
   ========================================= */
.story { background: var(--bg-1); border-top: 1px solid var(--border); }
.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }

.story-lead p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 2.1;
  color: var(--text-2);
  margin-bottom: 1.8em;
}
.story-lead p strong {
  color: var(--amber);
  font-weight: 500;
}
.story-lead .drop {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  color: var(--text-1);
  font-weight: 500;
  line-height: 1.8;
}
.story-lead em {
  color: var(--amber);
  font-style: normal;
  font-family: var(--serif);
  font-weight: 500;
}

.story-quote {
  border-left: 1px solid var(--amber-dim);
  padding: 20px 0 20px 36px;
  position: sticky;
  top: 120px;
}
@media (max-width: 900px) {
  .story-quote { position: static; border-left: none; border-top: 1px solid var(--amber-dim); padding: 30px 0 0; }
}
.story-quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 2;
  color: var(--text-1);
  font-weight: 500;
  margin-bottom: 20px;
}
.story-quote .em { color: var(--amber); }
.story-quote footer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-3);
}

/* =========================================
   Works
   ========================================= */
.works { background: var(--bg-0); border-top: 1px solid var(--border); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: 64px;
}
@media (max-width: 760px) { .works-grid { grid-template-columns: 1fr; } }

.work-card {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.work-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-dim), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.work-card:hover {
  border-color: var(--border-warm);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.work-card:hover::before { opacity: 1; }

.work-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-warm);
  margin-bottom: 20px;
}
.work-title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--text-1);
  font-weight: 500;
  margin-bottom: 32px;
  min-height: 70px;
}

.work-metrics {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.metric { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.metric-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-3);
  text-transform: uppercase;
}
.metric-value {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  color: var(--text-2);
  font-weight: 700;
}
.metric-value .unit {
  font-size: 0.5em;
  margin-left: 4px;
  color: var(--text-3);
  font-weight: 400;
}
.metric-value-sm {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4;
  color: var(--text-2);
  font-weight: 500;
}
.metric.highlight .metric-value,
.metric.highlight .metric-value-sm { color: var(--amber); }
.metric-arrow {
  color: var(--amber-dim);
  font-size: 22px;
  padding: 0 4px;
}
.work-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-1);
  padding: 6px 14px;
  background: rgba(212,165,116,0.08);
  border: 1px solid var(--amber-dim);
}

.stack {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.stack li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  color: var(--text-2);
  background: var(--bg-1);
  border: 1px solid var(--border);
}

/* =========================================
   Services
   ========================================= */
.services {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: 80px;
}
@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.service-card.featured {
  background: linear-gradient(180deg, #1a150f 0%, #14141a 100%);
  border-color: var(--amber-dim);
  box-shadow: 0 30px 80px -30px var(--gold-glow);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-warm);
}
.service-card.featured:hover {
  border-color: var(--amber);
  box-shadow: 0 40px 100px -30px var(--gold-glow);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--bg-0);
  background: var(--amber);
  padding: 6px 14px;
  text-transform: uppercase;
}

.service-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.4;
  color: var(--text-1);
  font-weight: 700;
  margin-bottom: 12px;
}
.service-target {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.service-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--text-2);
  margin-bottom: 28px;
}
.service-list {
  list-style: none;
  margin-bottom: 32px;
}
.service-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  color: var(--text-2);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 10px;
  color: var(--amber);
  font-size: 10px;
}

.service-foot {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.service-price { display: flex; flex-direction: column; gap: 2px; }
.price-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-3);
  text-transform: uppercase;
}
.price-value {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
}
.price-value .unit {
  font-size: 0.6em;
  color: var(--text-2);
  font-weight: 500;
  margin: 0 2px;
}
.price-sub {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Narrowing */
.narrowing {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: clamp(32px, 5vw, 56px);
}
.narrowing-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 40px;
}
.narrowing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 720px) { .narrowing-grid { grid-template-columns: 1fr; } }
.narrowing-col { padding-top: 20px; position: relative; }
.narrowing-col::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
}
.narrowing-col.fit::before { background: var(--amber); }
.narrowing-col.unfit::before { background: var(--text-mute); }
.narrowing-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.narrowing-col.fit .narrowing-head { color: var(--amber); }
.narrowing-col.unfit .narrowing-head { color: var(--text-3); }
.narrowing-col ul { list-style: none; }
.narrowing-col li {
  padding: 12px 0;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.8;
}
.narrowing-col li:last-child { border-bottom: none; }
.narrowing-col.unfit li { color: var(--text-3); }

/* =========================================
   Philosophy
   ========================================= */
.philosophy {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: clamp(100px, 15vw, 180px) 0;
  text-align: center;
}
.big-quote { max-width: 860px; margin: 0 auto; }
.big-quote p {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.8;
  color: var(--text-1);
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.big-quote .em { color: var(--amber); }
.big-quote footer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* =========================================
   Contact
   ========================================= */
.contact {
  background: linear-gradient(180deg, var(--bg-0) 0%, #0d0907 100%);
  border-top: 1px solid var(--border-warm);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(212,165,116,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact .section-head { margin-left: auto; margin-right: auto; }
.contact .section-lead { margin-left: auto; margin-right: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 48px 0 60px;
}
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  text-align: left;
  transition: all 0.4s var(--ease);
}
.contact-card:hover {
  border-color: var(--amber);
  background: var(--bg-3);
  transform: translateY(-2px);
}
.contact-kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--amber);
  text-transform: uppercase;
}
.contact-value {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  color: var(--text-1);
  font-weight: 500;
  letter-spacing: 0.02em;
  word-break: break-all;
}
.contact-note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 4px;
}

.contact-whisper {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2;
  color: var(--text-2);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--text-1);
}
.footer-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--amber);
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-3);
}
.footer-nav a:hover { color: var(--amber); }
.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
}

/* =========================================
   Reveal animation
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
