/* ZIRCON BLUE — corporate site */

:root {
  --bg: #faf9f6;
  --bg-soft: #f3f1ec;
  --bg-card: #ffffff;
  --ink: #0d1620;
  --ink-2: #2a3540;
  --muted: #6b7480;
  --rule: #e4e0d7;
  --rule-2: #d8d3c8;
  --blue: #3a7bb8;          /* zircon blue */
  --blue-deep: #234e7a;
  --blue-soft: #b9cee3;
  --blue-tint: #eaf0f7;
}

[data-theme="dark"] {
  --bg: #0c1620;
  --bg-soft: #111e2c;
  --bg-card: #16222f;
  --ink: #f4f2ec;
  --ink-2: #cfd5dd;
  --muted: #8a96a4;
  --rule: #243140;
  --rule-2: #2c3a4b;
  --blue: #6aa3d6;
  --blue-deep: #a9c6e3;
  --blue-soft: #2a4866;
  --blue-tint: #182a3d;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ----- typography ----- */
.serif-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.serif-jp {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
}
.mono {
  font-family: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--blue);
}

/* ----- shell ----- */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 760px) {
  .wrap { padding: 0 24px; }
}

/* ----- nav ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: var(--rule);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
.brand-logo-footer {
  height: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-link:hover { color: var(--blue-deep); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.12em;
  border-radius: 999px;
  transition: transform .25s, background .25s;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--blue-deep); border-color: var(--blue-deep); }
.nav-cta .arr { transition: transform .25s; }
.nav-cta:hover .arr { transform: translateX(3px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ----- hero ----- */
.hero {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-meta .dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--blue);
}
.hero h1 {
  margin: 0;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-wrap: pretty;
}
.hero h1 .accent {
  color: var(--blue-deep);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}
.hero h1 .br { display: block; }

.hero-foot {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero-lede {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  line-height: 2;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--rule);
  padding-left: 28px;
}
.hero-side .label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-side .val {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.hero-cta-row {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 56px;
  padding: 0 28px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  border: 1px solid var(--ink);
  transition: transform .25s, background .25s, border-color .25s;
}
.btn-primary:hover { transform: translateY(-1px); background: var(--blue-deep); border-color: var(--blue-deep); }
.btn-primary .arr { transition: transform .25s; }
.btn-primary:hover .arr { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  transition: gap .25s, color .25s;
}
.btn-ghost:hover { color: var(--blue-deep); gap: 18px; }

/* hero ornament */
.hero-orn {
  position: absolute;
  top: 80px;
  right: -40px;
  width: 360px;
  height: 360px;
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero { padding: 80px 0 100px; }
  .hero-foot { grid-template-columns: 1fr; gap: 32px; }
  .hero-orn { display: none; }
}

/* ----- section base ----- */
section { position: relative; }
.section {
  padding: 120px 0;
  border-top: 1px solid var(--rule);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head h2 {
  margin: 14px 0 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.section-head .h2-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--blue-deep);
  display: block;
  margin-top: 6px;
}
.section-head .lede {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 2;
  color: var(--ink-2);
}
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

/* ----- services ----- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
}
.svc-card {
  padding: 40px 36px 44px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}
.svc-card:nth-child(2n) { border-right: none; }
.svc-card:hover { background: var(--bg-soft); }
.svc-card:hover .svc-arr { transform: translate(4px, -4px); color: var(--blue-deep); }
.svc-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--blue-deep);
  letter-spacing: 0.04em;
}
.svc-title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.svc-title .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 400;
}
.svc-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}
.svc-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tag {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 5px 10px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
}
.svc-arr {
  position: absolute;
  top: 36px;
  right: 36px;
  color: var(--ink);
  transition: transform .3s, color .3s;
}
@media (max-width: 760px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none !important; }
}

/* ----- works ----- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -20px rgba(13, 22, 32, 0.18);
  border-color: var(--blue-soft);
}
.work-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
  margin: 16px 16px 0;
  border-radius: 4px;
}
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1s ease;
}
.work-card:hover .work-img img { transform: scale(1.04); }

.work-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.work-name {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}
.work-genre {
  display: inline-block;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
  background: var(--blue-tint);
  padding: 4px 10px;
  border-radius: 4px;
}
.work-visit {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  background: var(--blue-deep);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background .25s, gap .25s;
}
.work-card:hover .work-visit { background: var(--blue); gap: 12px; }
.work-visit .arr { transition: transform .25s; }
.work-card:hover .work-visit .arr { transform: translateX(2px); }

@media (max-width: 1100px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 600px) {
  .works-grid { grid-template-columns: 1fr; }
}

/* ----- process ----- */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.proc-grid::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 18px;
  height: 1px;
  background: var(--rule);
}
.proc-step {
  position: relative;
  padding-top: 48px;
}
.proc-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--bg);
  border: 1.5px solid var(--blue);
  box-shadow: 0 0 0 4px var(--bg);
}
.proc-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--blue-deep);
  margin-bottom: 12px;
  display: block;
}
.proc-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}
.proc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.proc-time {
  margin-top: 14px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--blue-deep);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .proc-grid { grid-template-columns: 1fr; gap: 12px; }
  .proc-grid::before { display: none; }
  .proc-step { padding-top: 24px; padding-left: 28px; border-left: 1px solid var(--rule); }
  .proc-step::before { left: -7px; top: 28px; }
}

/* ----- pricing ----- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--bg-card);
}
.price-card {
  padding: 44px 36px 40px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .3s;
  position: relative;
}
.price-card:last-child { border-right: none; }
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
}
.price-card.featured .price-name,
.price-card.featured .price-amount,
.price-card.featured .price-sub,
.price-card.featured .price-feat li,
.price-card.featured .price-tag { color: var(--bg); }
.price-card.featured .price-feat li::before { color: var(--blue-soft); }
.price-card.featured .price-divider { background: rgba(255,255,255,0.18); }
.price-card.featured .price-cta { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.price-card.featured .price-cta:hover { background: var(--blue); color: var(--bg); border-color: var(--blue); }
.price-tag {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--blue-deep);
  text-transform: uppercase;
}
.price-name {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.price-name .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 4px;
}
.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.price-amount .yen {
  font-size: 18px;
  margin-right: 4px;
  color: var(--muted);
}
.price-amount .from {
  font-size: 14px;
  margin-left: 6px;
  color: var(--muted);
  font-style: italic;
}
.price-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: -10px;
}
.price-divider {
  height: 1px;
  background: var(--rule);
  margin: 4px 0;
}
.price-feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.price-feat li {
  display: flex;
  gap: 10px;
  line-height: 1.7;
}
.price-feat li::before {
  content: "✓";
  color: var(--blue-deep);
  font-size: 13px;
  flex: 0 0 auto;
}
.price-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: transparent;
  transition: background .25s, color .25s;
}
.price-cta:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .price-card:last-child { border-bottom: none; }
}

/* ----- about ----- */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-statement {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 2.1;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.about-statement em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--blue-deep);
  font-weight: 500;
  font-size: 1.04em;
}
.about-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.about-table tr { border-bottom: 1px solid var(--rule); }
.about-table tr:first-child { border-top: 1px solid var(--rule); }
.about-table th, .about-table td {
  text-align: left;
  padding: 16px 0;
  vertical-align: top;
}
.about-table th {
  width: 140px;
  font-weight: 500;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-table td { color: var(--ink-2); line-height: 1.8; }
@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- news ----- */
.news-list { border-top: 1px solid var(--rule); }
.news-row {
  display: grid;
  grid-template-columns: 130px 110px 1fr 30px;
  align-items: center;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--rule);
  transition: padding .3s, background .3s;
}
.news-row:hover { padding-left: 18px; padding-right: 18px; background: var(--bg-soft); }
.news-row:hover .news-arr { transform: translateX(4px); color: var(--blue-deep); }
.news-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.news-cat {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--blue-deep);
  text-transform: uppercase;
  border: 1px solid var(--rule-2);
  padding: 4px 10px;
  border-radius: 999px;
  text-align: center;
  width: fit-content;
}
.news-title {
  font-size: 14px;
  color: var(--ink);
}
.news-arr {
  color: var(--ink);
  transition: transform .3s, color .3s;
  text-align: right;
}
@media (max-width: 760px) {
  .news-row { grid-template-columns: 90px 1fr 20px; gap: 12px; }
  .news-cat { display: none; }
}

/* ----- cta ----- */
.cta {
  padding: 140px 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.cta h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.cta h2 .accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--blue-soft);
  font-weight: 500;
}
.cta-en-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--blue-soft);
  margin-bottom: 14px;
}
.cta-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-side p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  padding: 0 28px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.14em;
  border: 1px solid var(--bg);
  transition: background .25s, color .25s;
  width: 100%;
  max-width: 380px;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--blue); color: var(--bg); border-color: var(--blue); }
.btn-cta .arr { transition: transform .25s; }
.btn-cta:hover .arr { transform: translateX(6px); }

.cta-orn {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 460px;
  height: 460px;
  opacity: 0.18;
  pointer-events: none;
}
@media (max-width: 900px) {
  .cta { padding: 80px 0; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-orn { display: none; }
}

/* ----- footer ----- */
.footer {
  padding: 60px 0 40px;
  background: var(--bg-soft);
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
}
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.footer h4 {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 13px; transition: color .2s; }
.footer ul a:hover { color: var(--blue-deep); }
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-brand .lede {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 1.9;
  max-width: 320px;
  color: var(--ink-2);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .footer-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ----- reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: none;
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.34s; }
