/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
  /* Refined palette: deep navy + ivory + champagne gold */
  --navy: #0a1f3d;
  --navy-deep: #061530;
  --navy-mid: #1a3058;
  --primary: #1a4d8f;
  --primary-soft: #3d6fa8;
  --accent: #c9a961;          /* champagne gold */
  --accent-soft: #e3cc94;
  --ivory: #faf8f3;
  --ivory-warm: #f4efe5;
  --bg: #ffffff;
  --bg-alt: #faf8f3;
  --text: #15223d;
  --text-sub: #5a6378;
  --text-mute: #8a92a5;
  --border: #e8e4d9;
  --border-soft: #efecE3;
  --line: #d9d2bf;
  --shadow-sm: 0 2px 8px rgba(10, 31, 61, 0.04);
  --shadow: 0 20px 50px rgba(10, 31, 61, 0.08);
  --shadow-lg: 0 40px 80px rgba(10, 31, 61, 0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --header-h: 84px;

  /* Typography */
  --serif: "Didot", "Bodoni 72", "Noto Serif JP", "游明朝", YuMincho,
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 2;
  font-size: 15px;
  letter-spacing: .03em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .4s ease, opacity .4s ease; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1180px, 90%);
  margin-inline: auto;
}

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

/* ===== Typography utilities ===== */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: .02em; }

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .5s, box-shadow .5s, background .5s;
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: .08em;
  position: relative;
}
.logo__text { line-height: 1; }
.logo::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 4px;
  margin-bottom: 2px;
  background: var(--accent);
  border-radius: 50%;
}
.logo--light { color: #fff; }
.logo--light .logo__icon { color: var(--accent); }

.nav__list {
  display: flex;
  gap: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: var(--sans);
}
.nav__list a {
  position: relative;
  padding: 6px 0;
  color: var(--text);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: left .5s ease, right .5s ease;
}
.nav__list a:hover { color: var(--navy); }
.nav__list a:hover::after { left: 0; right: 0; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 10px;
  width: 20px; height: 1px;
  background: var(--navy);
  transition: transform .4s, top .4s, opacity .4s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .5s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }
  .nav__list li { border-bottom: 1px solid var(--border); }
  .nav__list li:last-child { border-bottom: none; }
  .nav__list a { display: block; padding: 22px 28px; }
  .nav__list a::after { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #061530 0%,
      #0d2548 30%,
      #1a3a6e 65%,
      #0f2040 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(29, 78, 160, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 97, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 65% 85%, rgba(6, 21, 48, 0.55) 0%, transparent 55%);
}
.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(6, 21, 48, 0.45) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5em;
  color: var(--accent);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1.2s .2s forwards;
  text-transform: uppercase;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(34px, 6.2vw, 82px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1.4s .5s forwards;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero__accent {
  display: inline-block;
  position: relative;
}
.hero__accent::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -20px;
  transform: translateX(-50%);
  width: 72px;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  animation: expandLine 1s 1.3s forwards;
}
@keyframes expandLine {
  from { width: 0; opacity: 0; }
  to { width: 72px; opacity: 1; }
}

.hero__lead {
  font-size: clamp(13px, 1.25vw, 16px);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 56px;
  margin-top: 40px;
  letter-spacing: .15em;
  line-height: 2.2;
  opacity: 0;
  animation: fadeUp 1.4s .8s forwards;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}
.hero__cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.4s 1.1s forwards;
}
.hero .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}
.hero .btn--primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}
.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero .btn--ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

@media (max-width: 600px) {
  .hero__inner { padding: 72px 0; }
  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: .35em;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero__eyebrow::before,
  .hero__eyebrow::after { width: 20px; }
  .hero__title { letter-spacing: .06em; }
  .hero__lead {
    letter-spacing: .08em;
    line-height: 2;
    margin-top: 32px;
    margin-bottom: 44px;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 44px;
  border-radius: 0;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: all .5s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→";
  font-size: 14px;
  transition: transform .4s ease;
}
.btn:hover::after { transform: translateX(6px); }

.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

.btn--ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}

/* ===== Section ===== */
.section {
  padding: clamp(100px, 12vw, 160px) 0;
  position: relative;
}
.section--alt {
  background: var(--bg-alt);
}

.section__head {
  text-align: center;
  margin-bottom: 100px;
}
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .4em;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.section__label::before,
.section__label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.5;
}
.section__desc {
  color: var(--text-sub);
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 2;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== About ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 56px; }
}

.about__lead h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 36px;
  color: var(--navy);
  letter-spacing: .08em;
  position: relative;
  padding-bottom: 28px;
}
.about__lead h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 1px;
  background: var(--accent);
}
.about__lead p {
  color: var(--text-sub);
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: .06em;
}
.about__lead p + p { margin-top: 20px; }

.info {
  border-top: 1px solid var(--line);
}
.info__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: .05em;
}
.info__row dt {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding-top: 2px;
}
.info__row dd {
  color: var(--text);
  line-height: 2;
}
@media (max-width: 480px) {
  .info__row { grid-template-columns: 1fr; gap: 8px; padding: 22px 4px; }
}

/* ===== Services Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  padding: 64px 48px;
  transition: background .6s ease, color .6s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }
.card:hover { color: #fff; }
.card:hover::before { opacity: 1; }
.card:hover .card__tag { color: var(--accent); }
.card:hover .card__title,
.card:hover .card__title span,
.card:hover .card__text { color: rgba(255,255,255,0.9); }
.card:hover .card__icon {
  color: var(--accent);
  border-color: var(--accent);
}
.card:hover .card__divider { background: var(--accent); }

.card__icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: 36px;
  transition: color .5s, border-color .5s;
}
.card__tag {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: .35em;
  margin-bottom: 14px;
  display: block;
  transition: color .5s;
}
.card__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--navy);
  letter-spacing: .08em;
  transition: color .5s;
}
.card__title span {
  display: block;
  font-size: 12px;
  color: var(--text-sub);
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: .1em;
  font-family: var(--sans);
  transition: color .5s;
}
.card__divider {
  width: 32px; height: 1px;
  background: var(--line);
  margin-bottom: 24px;
  transition: background .5s;
}
.card__text {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: .05em;
  transition: color .5s;
}

/* ===== Timeline ===== */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 28px; top: 20px; bottom: 20px;
  width: 1px;
  background: var(--line);
}
.timeline__item {
  position: relative;
  padding-left: 100px;
  padding-bottom: 72px;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__num {
  position: absolute;
  left: 0; top: 0;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all .5s;
}
.timeline__item:hover .timeline__num {
  background: var(--accent);
  color: #fff;
}
.timeline__body {
  background: #fff;
  padding: 40px 48px;
  border: 1px solid var(--line);
  position: relative;
  transition: border-color .5s, box-shadow .5s;
}
.timeline__item:hover .timeline__body {
  border-color: var(--accent-soft);
  box-shadow: var(--shadow);
}
.timeline__period {
  display: inline-block;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: .3em;
  margin-bottom: 16px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.timeline__body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--navy);
  letter-spacing: .08em;
  line-height: 1.5;
}
.timeline__body p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: .05em;
}

@media (max-width: 700px) {
  .timeline__item { padding-left: 76px; padding-bottom: 48px; }
  .timeline::before { left: 22px; }
  .timeline__num { width: 46px; height: 46px; font-size: 14px; }
  .timeline__body { padding: 28px 24px; }
  .timeline__body h3 { font-size: 20px; }
}

/* ===== Voice ===== */
.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1000px) {
  .voices {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }
}

.voice {
  position: relative;
  background: #fff;
  padding: 56px 44px 48px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform .6s ease, box-shadow .6s ease, border-color .6s ease;
  overflow: hidden;
}
.voice::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0;
  transition: opacity .5s;
}
.voice::after {
  content: "“";
  position: absolute;
  top: 28px; right: 36px;
  font-size: 120px;
  line-height: 1;
  color: var(--accent);
  opacity: .12;
  font-family: var(--serif);
  pointer-events: none;
}
.voice:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}
.voice:hover::before { opacity: 1; }

.voice__head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* Avatar */
.voice__avatar {
  position: relative;
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: .02em;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  box-shadow:
    0 10px 28px rgba(10, 31, 61, 0.2),
    inset 0 -4px 10px rgba(0, 0, 0, 0.18);
}
.voice__avatar::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: .4;
}
.voice__avatar::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.voice__avatar--t { background: linear-gradient(135deg, #0a1f3d 0%, #2a5490 100%); }
.voice__avatar--h { background: linear-gradient(135deg, #143258 0%, #3d6fa8 100%); }
.voice__avatar--m { background: linear-gradient(135deg, #1a3058 0%, #1a4d8f 100%); }

.voice__avatar-initial {
  position: relative;
  z-index: 1;
}
.voice__avatar-dot {
  position: absolute;
  right: -2px;
  bottom: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  z-index: 2;
}

.voice__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.6;
}
.voice__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: .08em;
}
.voice__age {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.voice__prev {
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: .05em;
}

.voice__headline {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--navy);
  letter-spacing: .08em;
  position: relative;
  padding-left: 20px;
}
.voice__headline::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--accent);
}

.voice__text {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 2.15;
  letter-spacing: .04em;
  flex-grow: 1;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: #b8c1d4;
  padding: 100px 0 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -140px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 70%);
  filter: blur(40px);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) { .footer__inner { grid-template-columns: 1fr; gap: 48px; } }

.footer__brand .logo {
  margin-bottom: 28px;
}
.footer__company {
  margin-top: 8px;
  font-family: var(--serif);
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  letter-spacing: .15em;
}
.footer__address {
  margin-top: 16px;
  font-size: 13px;
  color: #8a92a5;
  line-height: 2;
  letter-spacing: .05em;
}

.footer__cols {
  font-size: 13px;
}
.footer__cols h4 {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: .35em;
  text-transform: uppercase;
}
.footer__cols ul li {
  margin-bottom: 14px;
  letter-spacing: .08em;
}
.footer__cols a { color: #8a92a5; transition: color .4s, padding-left .4s; }
.footer__cols a:hover { color: var(--accent); padding-left: 8px; }

.copyright {
  text-align: center;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: #6b7489;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards .card:nth-child(2) { transition-delay: .2s; }
.cards .card:nth-child(3) { transition-delay: .4s; }
.voices .voice:nth-child(2) { transition-delay: .2s; }
.voices .voice:nth-child(3) { transition-delay: .4s; }
.timeline__item:nth-child(2) { transition-delay: .2s; }

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