:root {
  --bg: #05080d;
  --paper: rgba(8, 15, 24, 0.9);
  --paper-strong: rgba(11, 19, 31, 0.96);
  --text: #eef4ff;
  --muted: #94a5bf;
  --line: rgba(113, 154, 210, 0.16);
  --accent: #d81d35;
  --accent-deep: #eef4ff;
  --accent-soft: #0b1f35;
  --signal: #d81d35;
  --ink: #02050a;
  --paper-line: rgba(146, 181, 233, 0.18);
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 29, 53, 0.18), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(12, 92, 164, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(118, 164, 223, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #02050a 0%, #07111d 48%, #04080f 100%);
  background-size: auto, auto, 24px 24px, auto;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  background: rgba(118, 164, 223, 0.08);
  pointer-events: none;
}

.reading-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--signal), #3b74b8);
  box-shadow: 0 0 12px rgba(216, 29, 53, 0.4);
  transition: width 120ms linear;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.page-gradient,
.page-curve {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.page-rail {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: rgba(154, 181, 222, 0.58);
  text-transform: uppercase;
  z-index: 1;
  pointer-events: none;
}

.page-gradient-left {
  top: 12%;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 29, 53, 0.22) 0%, rgba(216, 29, 53, 0) 70%);
  filter: blur(10px);
}

.page-gradient-right {
  top: 38%;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 109, 194, 0.18) 0%, rgba(27, 109, 194, 0) 72%);
  filter: blur(14px);
}

.page-curve-top {
  top: 96px;
  right: 5%;
  width: 220px;
  height: 220px;
  border-top: 1px solid rgba(123, 163, 218, 0.16);
  border-right: 1px solid rgba(123, 163, 218, 0.16);
  border-radius: 0 220px 0 0;
  opacity: 0.65;
}

.page-slash {
  position: fixed;
  top: -20vh;
  right: 16vw;
  width: 2px;
  height: 140vh;
  background: rgba(120, 165, 226, 0.2);
  transform: rotate(18deg);
  transform-origin: center;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(216, 29, 53, 0.3);
  color: #ffffff;
}

.site-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0 110px;
  position: relative;
  z-index: 1;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: 520px;
  left: -24px;
  width: 120px;
  height: 120px;
  border-left: 2px solid rgba(21, 17, 15, 0.12);
  border-bottom: 2px solid rgba(21, 17, 15, 0.12);
  transform: skew(-14deg);
}

.site-shell::after {
  top: 1320px;
  right: 32px;
  width: 80px;
  height: 80px;
  background:
    linear-gradient(45deg, transparent 0 44%, rgba(217, 54, 31, 0.88) 44% 56%, transparent 56% 100%);
  opacity: 0.75;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 34px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.92), rgba(5, 8, 13, 0.48));
  border-bottom: 1px solid rgba(118, 164, 223, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 0;
  background: var(--signal);
  box-shadow: 6px 6px 0 rgba(21, 17, 15, 0.12);
  transform: rotate(12deg);
}

.brand-text {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #ffffff;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(170, 192, 223, 0.72);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 54px;
  align-items: stretch;
  padding: 72px 0 220px;
  position: relative;
  min-height: 920px;
}

.hero::before {
  content: "NO.00 / LIVE ARCHIVE";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(21, 17, 15, 0.42);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transform: translateY(-100%);
}

.hero-collage {
  position: absolute;
  right: -28px;
  top: 72px;
  width: 520px;
  height: 660px;
  pointer-events: none;
  bottom: auto;
}

.hero-collage-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid rgba(21, 17, 15, 0.72);
  box-shadow: 10px 10px 0 rgba(217, 54, 31, 0.2), 0 20px 44px rgba(58, 37, 21, 0.14);
  background: rgba(255, 250, 244, 0.75);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}

.hero-collage-card-large {
  left: 0;
  bottom: 0;
  width: 310px;
  height: 430px;
  transform: rotate(-6deg);
}

.hero-collage-card-top {
  right: 10px;
  top: 0;
  width: 246px;
  height: 180px;
  transform: rotate(6deg);
}

.hero-collage-card-bottom {
  right: 0;
  bottom: 48px;
  width: 280px;
  height: 330px;
  transform: rotate(3deg);
}

.hero:hover .hero-collage-card-large {
  transform: rotate(-4deg) translateY(-4px);
}

.hero:hover .hero-collage-card-top {
  transform: rotate(4deg) translateY(-6px);
}

.hero:hover .hero-collage-card-bottom {
  transform: rotate(2deg) translateY(-5px);
}

.hero-collage-note {
  position: absolute;
  left: 150px;
  top: 222px;
  width: 236px;
  padding: 18px 20px;
  border-radius: 2px;
  border: 2px solid rgba(21, 17, 15, 0.72);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: -8px 8px 0 rgba(21, 17, 15, 0.08), 0 18px 36px rgba(58, 37, 21, 0.12);
  backdrop-filter: blur(16px);
}

.hero-collage-note span {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-collage-note p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.hero-copy,
.hero-panel,
.content-panel,
.facts-panel,
.portfolio-intro,
.project-card,
.article-card,
.media-card,
.contact-panel,
.article-page {
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: 0 18px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  max-width: 56rem;
}

.hero-detail-stack {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  max-width: 44rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 8px;
  margin-right: 8px;
  background: var(--signal);
  transform: skewX(-18deg);
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(165, 190, 226, 0.74);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: rgba(165, 190, 226, 0.66);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.ornament-line {
  width: 72px;
  height: 1px;
  background: rgba(165, 190, 226, 0.28);
}

.ornament-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(165, 82, 45, 0.08);
}

.hero h1,
.section-heading h2,
.article-page h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
  line-height: 1.16;
}

.hero h1 {
  font-family: "Bebas Neue", "Manrope", sans-serif;
  font-size: clamp(5rem, 10vw, 8.8rem);
  max-width: 7em;
  position: relative;
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.hero-name,
.hero-year {
  display: inline-block;
  font-size: 0.24em;
  letter-spacing: 0.12em;
  vertical-align: top;
  transform: translateY(0.5em);
  color: rgba(208, 221, 243, 0.74);
}

.hero-name {
  margin-right: 0.55em;
}

.hero-year {
  margin-left: 0.55em;
}

.hero h1::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 20px;
  width: 72px;
  height: 12px;
  border: 0;
  background: linear-gradient(90deg, var(--signal), #204d85);
  border-radius: 0;
  transform: rotate(-11deg);
  opacity: 0.9;
}

.hero-text,
.content-panel p,
.project-card p,
.article-card p,
.contact-panel p,
.article-lead,
.article-body p,
blockquote {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 52rem;
  margin: 34px 0 0;
  font-size: 1.14rem;
  line-height: 1.9;
}

.hero-inline-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 24px;
  max-width: 48rem;
  padding-top: 22px;
  border-top: 1px solid rgba(118, 164, 223, 0.14);
}

.hero-inline-note span {
  color: var(--accent-deep);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-inline-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-float-card {
  position: absolute;
  width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  border-radius: 2px;
  background: rgba(8, 15, 24, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transform: rotate(-4deg);
}

.hero-float-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

.hero-float-card-a {
  right: 390px;
  top: -10px;
}

.hero-float-card-b {
  right: 34px;
  bottom: -12px;
  transform: rotate(5deg);
}

.float-card-index {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(58, 37, 21, 0.1);
}

.button-primary {
  background: var(--accent);
  color: #fff9f4;
  border-color: var(--ink);
  box-shadow: 6px 6px 0 rgba(8, 40, 76, 0.34);
}

.button-secondary {
  border-color: rgba(118, 164, 223, 0.28);
  background: rgba(10, 18, 28, 0.76);
  color: #e8f0ff;
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: end;
  max-width: 320px;
}

.hero-card,
.facts-panel,
.portfolio-intro,
.contact-panel,
.article-page,
.content-panel,
.media-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  background: rgba(8, 15, 24, 0.78);
}

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0 0;
  border-top: 1px solid rgba(71, 52, 34, 0.12);
}

.hero-note-index,
.section-count {
  font-family: "Noto Serif SC", serif;
  color: rgba(110, 47, 21, 0.7);
  font-size: 1.1rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-card-label,
.article-category {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(201, 217, 242, 0.86);
  font-weight: 700;
}

.hero-card-text {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.tag-list,
.project-tags,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li,
.project-tags li {
  padding: 8px 12px;
  border-radius: 2px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  background: rgba(12, 22, 35, 0.9);
  font-size: 0.88rem;
  color: #e7eefc;
}

.section {
  padding: 92px 0;
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid rgba(71, 52, 34, 0.08);
  border-bottom: 1px solid rgba(71, 52, 34, 0.08);
  padding: 14px 0;
  margin: 8px 0 32px;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 2px;
  background: rgba(9, 16, 26, 0.92);
  border: 1px solid rgba(118, 164, 223, 0.12);
  color: rgba(201, 217, 242, 0.74);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.personal-pulse {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin: 12px 0 36px;
}

.pulse-card {
  padding: 22px 24px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(8, 15, 24, 0.94), rgba(6, 12, 20, 0.88));
  box-shadow: var(--shadow);
}

.pulse-status-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 14px;
}

.pulse-status-line strong {
  font-family: "Noto Serif SC", serif;
  font-size: 1.18rem;
  line-height: 1.35;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(216, 29, 53, 0.12);
  animation: pulse-blink 2.1s ease-in-out infinite;
  flex: 0 0 auto;
}

.pulse-card p {
  margin: 0;
  color: rgba(183, 201, 227, 0.78);
  line-height: 1.75;
}

.pulse-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pulse-tags span,
.pulse-log-date {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(118, 164, 223, 0.12);
  border-radius: 2px;
  background: rgba(10, 18, 28, 0.8);
  color: rgba(212, 224, 244, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pulse-log-list {
  display: grid;
  gap: 14px;
}

.pulse-log-item {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(118, 164, 223, 0.1);
}

.pulse-log-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@keyframes pulse-blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

.archive-index {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 0.9fr;
  gap: 1px;
  margin: 36px 0 34px;
  border: 2px solid rgba(21, 17, 15, 0.72);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(11, 18, 29, 0.92);
  box-shadow: 0 0 0 1px rgba(30, 93, 164, 0.2), 0 18px 42px rgba(0, 0, 0, 0.28);
}

.archive-index-item:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(8, 18, 32, 0.98), rgba(8, 18, 32, 0.9));
}

.archive-index-item:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(10, 20, 35, 0.98), rgba(7, 15, 27, 0.9));
}

.archive-index-item:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(12, 22, 38, 0.98), rgba(8, 16, 28, 0.9));
}

.archive-index-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  min-height: 220px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(10, 19, 32, 0.94), rgba(7, 15, 26, 0.88));
  transition: transform 220ms ease, background 220ms ease;
}

.archive-index-item:hover,
.archive-index-item:focus-visible {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(13, 27, 48, 0.95), rgba(9, 19, 33, 0.92));
}

.archive-index-number {
  grid-row: span 3;
  font-family: "Noto Serif SC", serif;
  color: var(--signal);
  font-size: 1.55rem;
}

.archive-index-label {
  color: var(--accent-deep);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.archive-index-item strong {
  align-self: end;
  font-family: "Noto Serif SC", serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

.archive-index-item p {
  margin: 0;
  color: rgba(189, 205, 228, 0.76);
  line-height: 1.72;
}

.archive-index-quote {
  display: grid;
  align-items: end;
  min-height: 220px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(217, 54, 31, 0.96), rgba(163, 26, 18, 0.96));
  color: #fff9f4;
}

.archive-index-quote p {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.22;
}

.avant-manifesto {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.45fr);
  gap: 1px;
  margin: 42px 0 28px;
  border: 2px solid rgba(21, 17, 15, 0.78);
  background: rgba(21, 17, 15, 0.78);
  box-shadow: -10px 10px 0 rgba(17, 62, 116, 0.24);
}

.avant-manifesto-mark,
.avant-manifesto-copy {
  padding: 24px;
}

.avant-manifesto-mark {
  display: grid;
  align-content: space-between;
  min-height: 240px;
  background: var(--ink);
  color: #fffaf2;
}

.avant-manifesto-mark span {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.72);
}

.avant-manifesto-mark strong {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.9;
  color: var(--signal);
  transform: translateX(-4px);
}

.avant-manifesto-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  background: rgba(8, 17, 29, 0.95);
}

.avant-manifesto-copy p {
  margin: 0;
  color: #f4f7ff;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  line-height: 1.55;
}

.signal-divider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  margin: 28px 0 10px;
  padding: 10px 0 0;
  border-top: 2px dashed rgba(116, 161, 222, 0.22);
  color: rgba(171, 194, 224, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.archive-index-item,
.project-card,
.article-card,
.media-card,
.hero-card,
.portfolio-intro,
.content-panel,
.facts-panel,
.contact-panel {
  text-wrap: pretty;
}

.section-heading {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(21, 17, 15, 0.18);
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 10px;
  margin-left: 12px;
  background: var(--signal);
  transform: skewX(-20deg) translateY(-4px);
}

.section-count {
  transform: translateY(-2px);
  opacity: 0.8;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
}

.content-panel,
.facts-panel,
.portfolio-intro,
.contact-panel,
.article-page,
.media-card {
  padding: 34px;
}

.panel-stamp {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 18px;
  border-radius: 2px;
  border: 1px solid rgba(118, 164, 223, 0.14);
  color: #edf3ff;
  background: rgba(9, 16, 26, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-split .about-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
}

.section-split .content-panel {
  background:
    linear-gradient(180deg, rgba(8, 17, 30, 0.94), rgba(6, 13, 22, 0.88));
  border-left: 6px solid var(--signal);
}

.section-split .facts-panel {
  background:
    linear-gradient(180deg, rgba(10, 18, 31, 0.92), rgba(7, 15, 27, 0.86));
}

.section-editorial .project-grid {
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  align-items: start;
}

.section-editorial .project-card:first-child {
  min-height: 100%;
}

.section-editorial .project-card:first-child {
  background:
    linear-gradient(180deg, rgba(17, 26, 42, 0.96), rgba(10, 18, 30, 0.86));
}

.section-editorial .project-card:nth-child(2) {
  transform: translateY(24px);
}

.section-editorial .project-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(12, 20, 34, 0.94), rgba(8, 16, 28, 0.84));
}

.facts-panel {
  display: grid;
  gap: 16px;
}

.quote-ribbon,
.portfolio-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(71, 52, 34, 0.16);
}

.quote-ribbon span,
.portfolio-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 2px;
  background: rgba(10, 18, 28, 0.8);
  border: 1px solid rgba(118, 164, 223, 0.12);
  color: rgba(195, 212, 238, 0.74);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.fact {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.fact:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact-value {
  color: #eef4ff;
}

.project-grid,
.article-list,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

.project-grid {
  grid-template-columns: 1.45fr 1fr 1fr;
}

.project-card,
.article-card,
.media-card {
  padding: 24px;
  border: 2px solid rgba(21, 17, 15, 0.18);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(9, 17, 29, 0.92), rgba(5, 11, 19, 0.82));
  box-shadow: var(--shadow);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  position: relative;
}

.project-card:hover,
.article-card:hover,
.media-card:hover {
  transform: translate(-4px, -6px);
  box-shadow: 10px 10px 0 rgba(217, 54, 31, 0.12), 0 28px 60px rgba(58, 37, 21, 0.14);
  border-color: rgba(21, 17, 15, 0.74);
}

.project-card::after,
.article-card::after,
.media-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(167, 193, 231, 0.28);
  border-right: 1px solid rgba(167, 193, 231, 0.28);
  opacity: 0.7;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 2px;
  background: rgba(216, 29, 53, 0.14);
  color: #f4f7ff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.portfolio-layout {
  display: grid;
  gap: 28px;
  position: relative;
}

.section-feature {
  position: relative;
}

.section-feature::before {
  content: "EXHIBIT / 03";
  position: absolute;
  right: 0;
  top: 18px;
  color: rgba(21, 17, 15, 0.34);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
}

.portfolio-intro {
  max-width: 760px;
}

.portfolio-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.portfolio-docs a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 18, 28, 0.88);
  color: #eef4ff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.portfolio-docs a:hover,
.portfolio-docs a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(165, 82, 45, 0.18);
  box-shadow: 0 10px 20px rgba(58, 37, 21, 0.08);
}

.portfolio-caption {
  margin: -4px 0 4px;
  color: rgba(182, 201, 228, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 38rem;
}

.portfolio-group {
  display: grid;
  gap: 16px;
}

.portfolio-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: rgba(182, 201, 228, 0.68);
}

.portfolio-label {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f0f5ff;
}

.portfolio-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: start;
}

.portfolio-grid-video {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card-featured {
  grid-column: span 4;
  grid-row: span 2;
}

.media-card-featured .media-frame {
  min-height: 100%;
}

.media-card {
  display: grid;
  gap: 18px;
}

.media-card:nth-child(odd) .media-copy h3 {
  letter-spacing: 0.02em;
}

.media-card:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(13, 22, 36, 0.92), rgba(8, 15, 26, 0.84));
}

.media-card-tall {
  grid-column: span 4;
}

.media-card-wide {
  grid-column: span 3;
  transform: translateY(-46px);
}

.media-card-offset {
  grid-column: span 5;
  margin-top: 22px;
}

.media-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(71, 52, 34, 0.16);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(21, 16, 13, 0.18) 100%);
  pointer-events: none;
}

.media-image-frame {
  background: rgba(255, 250, 242, 0.82);
}

.media-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transform: translateY(var(--parallax-offset, 0));
  transition: transform 220ms ease;
}

.media-card-tall .media-frame {
  min-height: 360px;
}

.media-card-wide .media-frame,
.media-card-offset .media-frame {
  min-height: 280px;
}

.image-placeholder {
  background:
    linear-gradient(135deg, rgba(180, 87, 47, 0.18), rgba(180, 87, 47, 0.03)),
    linear-gradient(180deg, #f7efe2 0%, #eadfcd 100%);
}

.video-placeholder {
  background:
    radial-gradient(circle at top, rgba(103, 146, 124, 0.24), transparent 32%),
    linear-gradient(180deg, #eee5d8 0%, #ddcfbc 100%);
}

.image-placeholder::before,
.video-placeholder::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(71, 52, 34, 0.18);
  background: rgba(255, 250, 242, 0.72);
  position: absolute;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--accent-deep);
  transform: translateX(3px);
}

.image-placeholder::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent-deep);
  border-radius: 4px;
  transform: rotate(-8deg);
}

.media-frame span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f7fbff;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 2px;
  background: rgba(6, 13, 22, 0.72);
}

.media-copy {
  display: grid;
  gap: 10px;
}

.media-number,
.article-index {
  margin: 0;
  color: rgba(218, 229, 246, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.media-copy h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.22rem;
}

.media-copy p {
  margin: 0;
  color: rgba(183, 201, 227, 0.76);
  line-height: 1.7;
}

.media-path {
  font-size: 0.9rem;
  color: rgba(154, 181, 222, 0.58);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(210, 223, 243, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card h3,
.article-card h3 {
  margin: 18px 0 12px;
  font-family: "Noto Serif SC", serif;
  font-size: 1.32rem;
}

.project-card h3,
.media-copy h3,
.article-card h3 {
  position: relative;
}

.project-card h3::before,
.media-copy h3::before,
.article-card h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.article-list {
  grid-template-columns: 1.45fr 1fr 1fr;
}

.section-articles .article-card:nth-child(1) {
  transform: rotate(-1deg);
}

.section-articles .article-card:nth-child(2) {
  transform: translateY(24px);
}

.section-articles .article-card:nth-child(3) {
  transform: rotate(1deg);
}

.articles-entry {
  margin-top: 20px;
}

.article-card a {
  text-decoration: underline;
  text-decoration-color: rgba(118, 164, 223, 0.28);
  text-underline-offset: 4px;
}

.section-articles .article-card:first-child {
  background: linear-gradient(180deg, rgba(14, 24, 38, 0.94), rgba(9, 16, 27, 0.88));
}

.contact-panel {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  position: relative;
  background:
    linear-gradient(135deg, rgba(9, 17, 29, 0.95), rgba(8, 15, 25, 0.88));
}

.contact-panel::before,
.portfolio-layout::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px dashed rgba(71, 52, 34, 0.14);
  opacity: 0.6;
}

.portfolio-layout::before {
  top: -18px;
  right: 5%;
}

.contact-panel::before {
  top: -18px;
  right: 18px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(118, 164, 223, 0.18);
  border-radius: 2px;
  background: rgba(10, 18, 28, 0.88);
  color: #eef4ff;
}

.visitor-wall {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  margin-bottom: 42px;
}

.visitor-panel {
  padding: 24px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(8, 15, 24, 0.94), rgba(6, 12, 20, 0.88));
  box-shadow: var(--shadow);
}

.visitor-form {
  display: grid;
  gap: 16px;
}

.visitor-field {
  display: grid;
  gap: 8px;
}

.visitor-field span,
.visitor-hint {
  color: rgba(183, 201, 227, 0.74);
  font-size: 0.84rem;
  line-height: 1.6;
}

.visitor-field input,
.visitor-field textarea {
  width: 100%;
  border: 1px solid rgba(118, 164, 223, 0.16);
  border-radius: 2px;
  background: rgba(10, 18, 28, 0.88);
  color: #eef4ff;
  padding: 12px 14px;
  font: inherit;
  resize: vertical;
}

.visitor-field input::placeholder,
.visitor-field textarea::placeholder {
  color: rgba(160, 181, 210, 0.46);
}

.visitor-actions {
  display: grid;
  gap: 10px;
}

.visitor-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.visitor-clear {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.84rem;
}

.visitor-feed {
  display: grid;
  gap: 12px;
}

.visitor-note {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(118, 164, 223, 0.12);
  border-radius: 2px;
  background: rgba(10, 18, 28, 0.72);
}

.visitor-note-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.visitor-note-head strong {
  color: #f3f7ff;
  font-size: 0.95rem;
}

.visitor-note-head span,
.visitor-note p {
  color: rgba(183, 201, 227, 0.76);
}

.visitor-note p {
  margin: 0;
  line-height: 1.72;
}

.visitor-like {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: fit-content;
  min-width: 96px;
  border: 1px solid rgba(118, 164, 223, 0.14);
  border-radius: 2px;
  background: rgba(12, 22, 35, 0.9);
  color: #eef4ff;
  padding: 8px 10px;
  cursor: pointer;
}

.article-page {
  width: min(820px, 100%);
  margin: 12px auto 0;
  background: var(--paper-strong);
}

.article-page h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 12em;
}

.article-lead {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.article-body {
  margin-top: 28px;
}

blockquote {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: rgba(244, 229, 212, 0.75);
}

.article-footer {
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.articles-shell {
  max-width: 980px;
}

.articles-page {
  display: grid;
  gap: 28px;
}

.articles-hero {
  padding: 28px 0 8px;
}

.articles-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.articles-hero-copy h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.12;
  max-width: 8.8em;
}

.articles-lead {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 40rem;
}

.articles-hero-note {
  padding: 20px 22px;
  border: 1px solid rgba(71, 52, 34, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.articles-stream {
  display: grid;
  gap: 0;
}

.article-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(71, 52, 34, 0.08);
  transition: transform 200ms ease, border-color 200ms ease;
}

.article-row:last-child {
  border-bottom: 1px solid rgba(71, 52, 34, 0.08);
}

.article-row-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

.article-row-index {
  font-family: "Noto Serif SC", serif;
  color: rgba(110, 47, 21, 0.78);
  font-size: 1rem;
}

.article-row-type {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-row-main {
  display: grid;
  gap: 12px;
}

.article-row-link h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.24;
  transition: transform 220ms ease, color 220ms ease;
}

.article-row-link:hover h2,
.article-row-link:focus-visible h2 {
  color: var(--accent-deep);
  transform: translateX(4px);
}

.article-row:hover {
  transform: translateX(4px);
  border-color: rgba(165, 82, 45, 0.14);
}

.article-row-main p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 44rem;
}

.article-reading-page {
  display: grid;
  gap: 28px;
}

.article-reading-hero {
  padding: 34px 0 10px;
  position: relative;
}

.article-reading-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(118, 164, 223, 0.3), rgba(216, 29, 53, 0.7));
}

.article-reading-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.article-reading-hero h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.12;
  max-width: 9em;
}

.article-reading-lead {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.9;
  max-width: 46rem;
  font-size: 1.05rem;
}

.article-reading-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
  color: rgba(171, 194, 224, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-reading-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(118, 164, 223, 0.12);
  border-radius: 2px;
  background: rgba(8, 15, 24, 0.42);
}

.article-reading-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.article-reading-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.article-aside-block {
  padding: 22px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(10, 18, 30, 0.94), rgba(7, 13, 22, 0.88));
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.article-aside-block p:last-child {
  margin: 0;
  color: rgba(183, 201, 227, 0.78);
  line-height: 1.78;
}

.article-toc-nav {
  display: grid;
  gap: 8px;
}

.article-toc-link {
  display: block;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: rgba(183, 201, 227, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.article-toc-link:hover,
.article-toc-link:focus-visible {
  color: #f2f7ff;
  border-color: rgba(118, 164, 223, 0.18);
  background: rgba(11, 21, 35, 0.74);
  transform: translateX(2px);
}

.article-toc-link.is-current {
  color: #ffffff;
  border-color: rgba(118, 164, 223, 0.28);
  background: linear-gradient(90deg, rgba(216, 29, 53, 0.18), rgba(11, 21, 35, 0.76));
}

.article-reading-body {
  padding: 10px 0 0;
  position: relative;
}

.article-reading-body::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, rgba(118, 164, 223, 0.0), rgba(118, 164, 223, 0.22), rgba(216, 29, 53, 0.34), rgba(118, 164, 223, 0.0));
}

.article-section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(71, 52, 34, 0.08);
  position: relative;
}

.article-section:last-child {
  margin-bottom: 0;
}

.article-section-label {
  margin: 0 0 14px;
  color: rgba(110, 47, 21, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.article-section-intro::before {
  content: "FEATURE";
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(171, 194, 224, 0.22);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-family: "Bebas Neue", "Manrope", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
}

.article-section h2 {
  margin: 0 0 16px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.28;
}

.article-section p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.95;
  max-width: 44rem;
}

.article-pullquote {
  margin: 14px 0 40px;
  padding: 24px 26px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(13, 24, 40, 0.96), rgba(9, 16, 27, 0.86));
  color: #f4f7ff;
  font-family: "Noto Serif SC", serif;
  font-size: 1.24rem;
  line-height: 1.78;
  box-shadow: 12px 12px 0 rgba(17, 62, 116, 0.18);
}

.article-reading-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}

.article-related-work {
  display: grid;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(118, 164, 223, 0.12);
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-work-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(9, 17, 29, 0.92), rgba(5, 11, 19, 0.82));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  position: relative;
}

.related-work-card::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-top: 1px solid rgba(118, 164, 223, 0.22);
  border-right: 1px solid rgba(118, 164, 223, 0.22);
}

.related-work-card:hover,
.related-work-card:focus-visible {
  transform: translate(-3px, -4px);
  border-color: rgba(118, 164, 223, 0.3);
  box-shadow: 8px 8px 0 rgba(8, 40, 76, 0.24), var(--shadow);
}

.related-work-media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(118, 164, 223, 0.14);
}

.related-work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-work-copy {
  display: grid;
  gap: 8px;
}

.related-work-copy h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.12rem;
  line-height: 1.35;
}

.related-work-copy p:last-child {
  margin: 0;
  color: rgba(183, 201, 227, 0.76);
  line-height: 1.7;
}

.portfolio-preview-card {
  cursor: pointer;
}

.hero-copy,
.hero-panel > *,
.hero-collage-card,
.hero-collage-note,
.media-card,
.related-work-card,
.visitor-note,
.site-header,
.article-toc-link {
  will-change: transform, opacity;
}

.portfolio-preview-card,
.related-work-card,
.visitor-note,
.site-header,
.hero-collage-card {
  transform: translateZ(0);
}

.site-header {
  transition: border-color 200ms ease, background 200ms ease;
}

.media-frame,
.related-work-media,
.visitor-note,
.article-toc-link {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.portfolio-lightbox.is-open {
  display: block;
}

.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 10, 0.86);
  backdrop-filter: blur(10px);
}

.portfolio-lightbox-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 18px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 5vh auto 0;
  padding: 28px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(7, 13, 22, 0.98), rgba(4, 8, 14, 0.96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-stage {
  display: grid;
  gap: 18px;
}

.lightbox-image-wrap {
  overflow: hidden;
  border: 1px solid rgba(118, 164, 223, 0.16);
  border-radius: 2px;
  background: rgba(9, 16, 26, 0.92);
  min-height: min(66vh, 720px);
}

.lightbox-image {
  width: 100%;
  height: 100%;
  max-height: 66vh;
  object-fit: contain;
  display: block;
}

.lightbox-meta {
  display: grid;
  gap: 10px;
  padding: 4px 2px 0;
}

.lightbox-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 217, 242, 0.72);
}

.lightbox-title {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.28;
}

.lightbox-caption {
  margin: 0;
  color: rgba(183, 201, 227, 0.78);
  line-height: 1.78;
  max-width: 56rem;
}

.lightbox-close,
.lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(118, 164, 223, 0.18);
  border-radius: 2px;
  background: rgba(10, 18, 28, 0.92);
  color: #f4f7ff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(118, 164, 223, 0.34);
  background: rgba(14, 25, 38, 0.96);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

.lightbox-nav {
  font-size: 1.6rem;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .hero,
  .about-grid,
  .project-grid,
  .article-list,
  .portfolio-grid,
  .portfolio-grid-video {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .media-card-featured {
    grid-column: span 1;
    grid-row: auto;
  }

  .media-card-tall,
  .media-card-wide,
  .media-card-offset {
    grid-column: span 1;
    transform: none;
    margin-top: 0;
  }

  .hero-float-card {
    position: static;
    width: auto;
    transform: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-collage {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 460px;
    margin-top: 26px;
  }

  .articles-hero-grid,
  .article-row,
  .article-reading-layout {
    grid-template-columns: 1fr;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-reading-body::before,
  .article-section-intro::before {
    display: none;
  }

  .portfolio-lightbox-dialog {
    grid-template-columns: 1fr;
    margin-top: 3vh;
    padding: 22px;
  }

  .lightbox-nav {
    width: 100%;
    height: 44px;
  }

  .article-reading-aside {
    position: static;
  }

  .archive-index {
    grid-template-columns: 1fr;
  }

  .avant-manifesto {
    grid-template-columns: 1fr;
  }

  .personal-pulse {
    grid-template-columns: 1fr;
  }

  .visitor-wall {
    grid-template-columns: 1fr;
  }

  .section-editorial .project-card:nth-child(2),
  .section-articles .article-card:nth-child(1),
  .section-articles .article-card:nth-child(2),
  .section-articles .article-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 28px, 1320px);
    padding-top: 16px;
  }

  .site-header,
  .section-heading,
  .portfolio-group-heading {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .content-panel,
  .facts-panel,
  .portfolio-intro,
  .project-card,
  .article-card,
  .media-card,
  .contact-panel,
  .article-page,
  .hero-card {
    padding: 22px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-inline-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section {
    padding: 52px 0;
  }

  .site-header {
    padding-bottom: 22px;
  }

  .page-gradient-left,
  .page-gradient-right,
  .page-curve-top,
  .page-slash {
    display: none;
  }

  .site-shell::before,
  .site-shell::after,
  .section-feature::before {
    display: none;
  }

  .page-rail,
  .hero-float-card {
    display: none;
  }

  .hero-collage {
    display: none;
  }

  .marquee-band {
    margin-bottom: 10px;
  }
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p,
li,
input,
textarea,
button {
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

.button,
.portfolio-docs a,
.visitor-like,
.article-toc-link {
  outline-offset: 4px;
}

.button:focus-visible,
.portfolio-docs a:focus-visible,
.visitor-like:focus-visible,
.article-toc-link:focus-visible,
.portfolio-preview-card:focus-visible {
  outline: 2px solid rgba(238, 244, 255, 0.72);
}

.hero-text,
.hero-card-text,
.content-panel p,
.project-card p,
.portfolio-intro p,
.media-copy p,
.article-card p,
.article-row-main p,
.article-reading-body p,
.contact-panel p,
.visitor-hint {
  line-height: 1.85;
}

.media-image-frame,
.related-work-media,
.hero-collage-card {
  background: rgba(9, 16, 26, 0.92);
}

.media-image-frame img,
.related-work-media img,
.hero-collage-card img {
  transform: translateY(var(--parallax-offset, 0));
}

.portfolio-docs {
  flex-wrap: wrap;
}

.visitor-field input,
.visitor-field textarea {
  font: inherit;
}

@media (max-width: 720px) {
  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .site-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(118, 164, 223, 0.14);
    background: rgba(8, 15, 24, 0.72);
    font-size: 0.9rem;
  }

  .hero-actions,
  .contact-links,
  .portfolio-docs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-reading-meta,
  .pulse-tags,
  .project-tags {
    gap: 8px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

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

.cinematic-hero {
  min-height: 112vh;
  perspective: 1400px;
}

.cinematic-hero .hero-copy {
  position: relative;
  z-index: 3;
}

.cinematic-hero .hero-panel {
  position: relative;
  z-index: 3;
}

.cinematic-hero .hero-copy,
.cinematic-hero .hero-panel,
.cinematic-hero .hero-collage,
.cinematic-portfolio .portfolio-layout,
.cinematic-portfolio .portfolio-grid {
  transform-style: preserve-3d;
}

.cinematic-hero .hero-collage {
  z-index: 4;
}

.cinematic-hero .hero-collage-card-large {
  z-index: 4;
}

.cinematic-hero .hero-collage-card-bottom {
  z-index: 5;
}

.cinematic-hero .hero-collage-card-top {
  z-index: 6;
}

.cinematic-hero .hero-collage-note {
  z-index: 7;
}

.cinematic-portfolio .portfolio-layout {
  perspective: 1400px;
}

.cinematic-portfolio .portfolio-intro,
.cinematic-portfolio .portfolio-caption,
.cinematic-portfolio .portfolio-group {
  position: relative;
  z-index: 2;
}

.cinematic-portfolio .portfolio-layout::after {
  content: "";
  position: absolute;
  top: 160px;
  left: 8%;
  width: 84%;
  height: 520px;
  background: radial-gradient(circle at center, rgba(216, 29, 53, 0.16), transparent 62%);
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.cinematic-portfolio .media-card,
.cinematic-portfolio .media-frame {
  transform-origin: center center;
  position: relative;
  z-index: 2;
}

.portfolio-group-cinematic .media-card:nth-child(1) {
  z-index: 4;
}

.portfolio-group-cinematic .media-card:nth-child(2) {
  z-index: 3;
}

.portfolio-group-cinematic .media-card:nth-child(3) {
  z-index: 2;
}

.portfolio-group-cinematic .media-card:nth-child(4) {
  z-index: 1;
}

@media (max-width: 960px) {
  .cinematic-hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
.cinematic-portfolio .portfolio-layout::after {
    display: none;
  }
}

.hero-collage {
  z-index: 1;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 3;
}

.section-methods,
.section-timeline,
.section-playground,
.section-map {
  position: relative;
}

.archive-map {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.map-board,
.map-panel {
  position: relative;
  border: 1px solid rgba(118, 164, 223, 0.14);
  background: linear-gradient(180deg, rgba(10, 18, 28, 0.94), rgba(7, 13, 22, 0.88));
  box-shadow: var(--shadow);
}

.map-board {
  min-height: 420px;
  overflow: hidden;
}

.map-node {
  position: absolute;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  background: rgba(8, 15, 24, 0.86);
  color: rgba(221, 231, 246, 0.9);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  z-index: 2;
}

.map-node:hover,
.map-node:focus-visible,
.map-node.is-active {
  transform: translateY(-2px);
  border-color: rgba(216, 29, 53, 0.34);
  background: rgba(15, 24, 38, 0.96);
}

.map-link {
  position: absolute;
  height: 1px;
  background: rgba(118, 164, 223, 0.24);
  transform-origin: left center;
  z-index: 1;
}

.map-link-a { left: 20%; top: 24%; width: 38%; transform: rotate(-8deg); }
.map-link-b { left: 60%; top: 22%; width: 18%; transform: rotate(26deg); }
.map-link-c { left: 22%; top: 58%; width: 26%; transform: rotate(14deg); }
.map-link-d { left: 52%; top: 69%; width: 22%; transform: rotate(12deg); }
.map-link-e { left: 30%; top: 33%; width: 18%; transform: rotate(58deg); }
.map-link-f { left: 56%; top: 50%; width: 18%; transform: rotate(54deg); }

.map-panel {
  padding: 24px;
}

.map-detail {
  display: none;
  gap: 12px;
}

.map-detail.is-active {
  display: grid;
}

.map-detail h3 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: 1.35rem;
  line-height: 1.42;
}

.map-detail p {
  margin: 0;
  color: rgba(190, 205, 228, 0.8);
  line-height: 1.8;
}

.map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-tags span {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(118, 164, 223, 0.14);
  background: rgba(8, 15, 24, 0.76);
  color: rgba(227, 236, 248, 0.88);
}

.playground-grid,
.interactive-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.play-card,
.interactive-work-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(118, 164, 223, 0.14);
  background: linear-gradient(180deg, rgba(10, 18, 28, 0.94), rgba(7, 13, 22, 0.88));
  box-shadow: var(--shadow);
}

.play-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.idea-card h3,
.lab-content h3,
.judgement-question {
  margin: 0;
  font-family: "Noto Serif SC", serif;
}

.idea-type,
.vote-hint,
.lab-tag {
  color: rgba(216, 29, 53, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.idea-card p,
.lab-content p,
.judgement-answer p {
  margin: 0;
  color: rgba(190, 205, 228, 0.8);
  line-height: 1.8;
}

.idea-card {
  min-height: 180px;
  display: grid;
  place-items: center;
}

.idea-card h3 {
  width: 100%;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.6;
  text-align: left;
}

.vote-options,
.judgement-options {
  display: grid;
  gap: 12px;
}

.vote-option,
.judgement-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  background: rgba(8, 15, 24, 0.82);
  color: rgba(221, 231, 246, 0.9);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.vote-option:hover,
.judgement-option:hover,
.vote-option:focus-visible,
.judgement-option:focus-visible,
.vote-option.is-active,
.judgement-option.is-active {
  transform: translateY(-1px);
  border-color: rgba(216, 29, 53, 0.32);
  background: rgba(16, 24, 38, 0.96);
}

.vote-option,
.visitor-like {
  position: relative;
  overflow: visible;
}

.burst-particle {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  user-select: none;
  z-index: 80;
  will-change: transform, opacity;
}

.burst-particle.is-pixel {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

.lab-swatches {
  display: flex;
  gap: 10px;
}

.lab-swatches span {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.comparison-stage {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(118, 164, 223, 0.14);
  background: rgba(8, 15, 24, 0.84);
  cursor: ew-resize;
  touch-action: none;
}

.comparison-base,
.comparison-overlay {
  position: absolute;
  inset: 0;
}

.comparison-base img,
.comparison-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}

.comparison-overlay {
  overflow: hidden;
  border-right: 2px solid rgba(238, 244, 255, 0.8);
  will-change: width;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: rgba(244, 247, 255, 0.84);
  box-shadow: 0 0 16px rgba(244, 247, 255, 0.2);
  pointer-events: none;
  will-change: left;
}

.comparison-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 247, 255, 0.75);
  border-radius: 50%;
  background: rgba(8, 15, 24, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.comparison-handle::before,
.comparison-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(244, 247, 255, 0.88);
  border-right: 1px solid rgba(244, 247, 255, 0.88);
}

.comparison-handle::before {
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
}

.comparison-handle::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.comparison-range {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  opacity: 0.001;
  z-index: 2;
  cursor: ew-resize;
  pointer-events: none;
}

.comparison-stage,
.comparison-overlay,
.comparison-divider {
  will-change: transform, width, left;
}

.judgement-answer {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(118, 164, 223, 0.12);
}

.method-lab,
.timeline-browser,
.portfolio-process-board {
  display: grid;
  gap: 18px;
}

.method-switch,
.portfolio-view-switch,
.timeline-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.method-tab,
.portfolio-view-tab,
.timeline-node {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(118, 164, 223, 0.16);
  background: rgba(8, 15, 24, 0.82);
  color: rgba(210, 223, 244, 0.78);
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.method-tab.is-active,
.portfolio-view-tab.is-active,
.timeline-node.is-active,
.method-tab:hover,
.portfolio-view-tab:hover,
.timeline-node:hover,
.method-tab:focus-visible,
.portfolio-view-tab:focus-visible,
.timeline-node:focus-visible {
  color: #f5f8ff;
  border-color: rgba(216, 29, 53, 0.36);
  background: rgba(18, 27, 41, 0.92);
  transform: translateY(-1px);
}

.method-stage,
.timeline-stage {
  position: relative;
}

.method-panel,
.timeline-panel,
.process-card {
  border: 1px solid rgba(118, 164, 223, 0.14);
  background: linear-gradient(180deg, rgba(10, 18, 28, 0.94), rgba(7, 13, 22, 0.88));
  box-shadow: var(--shadow);
}

.method-panel,
.timeline-panel {
  display: none;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.75fr);
  gap: 22px;
  padding: 24px;
}

.method-panel.is-active,
.timeline-panel.is-active {
  display: grid;
}

.method-panel-copy h3,
.timeline-panel h3 {
  margin: 0 0 12px;
  font-family: "Noto Serif SC", serif;
  font-size: 1.4rem;
  line-height: 1.35;
}

.method-panel-copy p,
.timeline-panel p,
.process-card p {
  margin: 0;
  color: rgba(190, 205, 228, 0.8);
  line-height: 1.8;
}

.method-panel-meta {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid rgba(118, 164, 223, 0.12);
}

.method-panel-meta span,
.timeline-year,
.process-index {
  color: rgba(216, 29, 53, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-panel-meta strong {
  font-size: 1rem;
  line-height: 1.6;
}

.method-points,
.timeline-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(220, 231, 246, 0.86);
  line-height: 1.8;
}

.portfolio-process-board {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-view-switch {
  align-items: center;
}

.portfolio-view-tab.is-active {
  box-shadow: inset 0 -2px 0 rgba(216, 29, 53, 0.9), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.process-card {
  padding: 22px;
}

.process-card h3 {
  margin: 10px 0 10px;
  font-family: "Noto Serif SC", serif;
  font-size: 1.15rem;
  line-height: 1.45;
}

.timeline-panel {
  padding: 26px;
}

.timeline-list {
  margin-bottom: 0;
}

.timeline-browser {
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  align-items: start;
}

.timeline-nav {
  position: sticky;
  top: 110px;
  align-content: start;
}

.timeline-stage {
  display: grid;
  gap: 18px;
}

.timeline-panel {
  display: grid;
}

.timeline-panel:not(.is-active) {
  opacity: 0.7;
}

[hidden] {
  display: none !important;
}

@media (max-width: 960px) {
  .method-panel,
  .timeline-panel,
  .portfolio-process-board {
    grid-template-columns: 1fr;
  }

  .playground-grid,
  .interactive-works-grid {
    grid-template-columns: 1fr;
  }

  .archive-map {
    grid-template-columns: 1fr;
  }

  .map-board {
    min-height: 360px;
  }

  .timeline-browser {
    grid-template-columns: 1fr;
  }

  .timeline-nav {
    position: static;
  }

  .method-panel-meta {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(118, 164, 223, 0.12);
    padding-top: 16px;
  }
}
