@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Normal.woff2") format("woff2");
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Demibold.woff2") format("woff2");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MiSans";
  src: url("./assets/fonts/MiSans-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1d1b18;
  --ink-soft: #5d564d;
  --page: #f7fbf7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #fffefa;
  --surface-tint: rgba(233, 246, 242, 0.76);
  --muted: rgba(29, 27, 24, 0.66);
  --faint: rgba(29, 27, 24, 0.07);
  --line: rgba(45, 40, 34, 0.14);
  --line-strong: rgba(45, 40, 34, 0.24);
  --coral: #eb7a66;
  --gold: #a86f1f;
  --jade: #27795f;
  --blue: #415fbb;
  --shadow: rgba(96, 80, 62, 0.16);
  --shadow-strong: rgba(96, 80, 62, 0.24);
  --serif: "MiSans";
  --sans: "MiSans";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(241, 250, 248, 0.9) 37%, rgba(255, 245, 239, 0.74) 70%, rgba(247, 251, 247, 1) 100%),
    var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: rgba(235, 122, 102, 0.28);
  color: var(--ink);
}

.page-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(231, 247, 243, 0.9) 0%, transparent 34%),
    linear-gradient(20deg, transparent 18%, rgba(255, 224, 210, 0.52) 58%, transparent 82%),
    linear-gradient(155deg, rgba(239, 244, 255, 0.58) 0%, transparent 42%, rgba(255, 250, 232, 0.7) 100%);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  display: none;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: border-color 160ms ease, background 160ms ease;
  contain: layout style paint;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.cursor-glow {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 170, 121, 0.28), rgba(255, 213, 151, 0.13) 42%, transparent 74%);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(29, 27, 24, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38) inset,
    0 0 30px rgba(235, 122, 102, 0.24);
}

.cursor-dot {
  width: 16px;
  height: 16px;
  background: transparent;
}

.cursor-dot::before,
.cursor-dot::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 170, 121, 0.96);
  box-shadow:
    0 0 8px rgba(255, 170, 121, 0.5),
    0 0 18px rgba(255, 213, 151, 0.36);
  transform: translate(-50%, -50%);
}

.cursor-dot::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.cursor-ready .cursor {
  display: block;
  opacity: 1;
}

.page-atmosphere::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(29, 27, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 27, 24, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(0deg, transparent 0%, rgba(29, 27, 24, 0.08) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(29, 27, 24, 0.08) 0 1px, transparent 1px 4px);
  background-size: 100% 6px, 4px 4px;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1120px, calc(100% - 40px));
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  transform: translateX(-50%);
}

.brand-cluster {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  padding: 5px 14px 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 16% 10%, rgba(255, 255, 255, 0.86), transparent 38%),
    radial-gradient(ellipse at 88% 92%, rgba(235, 122, 102, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 249, 239, 0.18) 45%, rgba(244, 251, 248, 0.24)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 72px rgba(93, 78, 60, 0.18),
    0 10px 26px rgba(255, 255, 255, 0.58) inset,
    0 -14px 30px rgba(168, 111, 31, 0.12) inset,
    0 0 0 1px rgba(255, 255, 255, 0.52) inset;
  overflow: hidden;
  backdrop-filter: blur(46px) saturate(2.35) contrast(1.1) brightness(1.04);
  -webkit-backdrop-filter: blur(46px) saturate(2.35) contrast(1.1) brightness(1.04);
  isolation: isolate;
  transform: translateZ(0);
}

.brand-cluster::before {
  position: absolute;
  inset: 1px 4px auto;
  height: 58%;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2) 54%, transparent),
    radial-gradient(ellipse at 24% 0%, rgba(255, 255, 255, 0.92), transparent 58%);
  opacity: 0.88;
  pointer-events: none;
}

.brand-cluster::after {
  position: absolute;
  inset: -38% -14%;
  border-radius: inherit;
  content: "";
  background:
    radial-gradient(ellipse at 13% 34%, rgba(255, 255, 255, 0.7), transparent 25%),
    radial-gradient(ellipse at 78% 78%, rgba(255, 170, 121, 0.2), transparent 34%),
    linear-gradient(108deg, transparent 18%, rgba(255, 255, 255, 0.42) 45%, transparent 74%);
  opacity: 0.82;
  pointer-events: none;
  transform: rotate(-5deg);
}

.brand {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.94rem;
  font-weight: 900;
  overflow: hidden;
  box-shadow:
    0 12px 30px rgba(93, 78, 60, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.brand:hover,
.brand:focus-visible {
  border-color: rgba(255, 255, 255, 0.92);
  outline: none;
  box-shadow:
    0 15px 34px rgba(93, 78, 60, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
  transform: translateY(-1px) scale(1.02);
}

.header-time {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 94px;
  height: 40px;
  place-items: center;
  padding: 0 2px 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.header-time::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 22px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(29, 27, 24, 0.12), transparent);
  opacity: 0.76;
  pointer-events: none;
  transform: translateY(-50%);
}

.header-time__clock {
  position: relative;
  z-index: 1;
  color: rgba(29, 27, 24, 0.86);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(255, 255, 255, 0.78), transparent 34%),
    radial-gradient(ellipse at 82% 92%, rgba(235, 122, 102, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 249, 239, 0.16) 44%, rgba(244, 251, 248, 0.2)),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    0 24px 72px rgba(93, 78, 60, 0.2),
    0 10px 26px rgba(255, 255, 255, 0.58) inset,
    0 -14px 30px rgba(168, 111, 31, 0.14) inset,
    7px 0 18px rgba(255, 255, 255, 0.3) inset,
    -7px 0 18px rgba(235, 122, 102, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.54) inset;
  overflow: hidden;
  backdrop-filter: blur(52px) saturate(2.65) contrast(1.12) brightness(1.04);
  -webkit-backdrop-filter: blur(52px) saturate(2.65) contrast(1.12) brightness(1.04);
  transform: translateZ(0);
  isolation: isolate;
}

.site-nav::before {
  position: absolute;
  inset: 1px 3px auto;
  height: 62%;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.24) 48%, transparent),
    radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.9), transparent 58%);
  opacity: 0.92;
  pointer-events: none;
}

.site-nav::after {
  position: absolute;
  inset: -34% -12%;
  border-radius: inherit;
  content: "";
  background:
    radial-gradient(ellipse at 18% 36%, rgba(255, 255, 255, 0.68), transparent 24%),
    radial-gradient(ellipse at 58% 12%, rgba(255, 213, 151, 0.28), transparent 28%),
    radial-gradient(ellipse at 92% 76%, rgba(235, 122, 102, 0.2), transparent 34%),
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.42) 45%, transparent 72%);
  opacity: 0.9;
  pointer-events: none;
  transform: rotate(-3deg);
}

.site-nav a {
  position: relative;
  z-index: 1;
  min-width: 66px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(29, 27, 24, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::before {
  display: none;
}

.site-nav a::after {
  position: absolute;
  right: 16px;
  bottom: 7px;
  left: 16px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.38);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: transparent;
  color: var(--ink);
  outline: none;
  transform: translateY(-1px);
}

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

.hero {
  position: relative;
  min-height: 92svh;
  padding: 132px 20px 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -1px;
  left: -12%;
  z-index: -1;
  height: 32%;
  content: "";
  background: linear-gradient(0deg, var(--page) 0%, rgba(247, 251, 247, 0) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.8;
  pointer-events: none;
}

.hero-media__wash {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) saturate(1.08);
  opacity: 0.22;
  transform: scale(1.08);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 42%, transparent 100%);
}

.hero__content {
  display: grid;
  width: min(1120px, 100%);
  min-height: calc(92svh - 204px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: 48px;
}

.hero__copy {
  max-width: 720px;
}

.mobile-avatar {
  display: none;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 16px 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 6.8rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.65;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero__tags span {
  padding: 8px 12px;
  border: 1px solid rgba(29, 27, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.92rem;
  box-shadow: 0 12px 30px rgba(96, 80, 62, 0.08);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  border: 1px solid rgba(235, 122, 102, 0.34);
  background: linear-gradient(135deg, #f7a087, #f3c36f);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(235, 122, 102, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #f58f78, #f0b95f);
}

.button--ghost {
  border: 1px solid rgba(29, 27, 24, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(96, 80, 62, 0.1);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(168, 111, 31, 0.32);
  background: rgba(255, 255, 255, 0.9);
}

.portrait {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  margin: 0 0 0 auto;
}

.portrait::before {
  position: absolute;
  inset: 14px -18px -18px 18px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(29, 27, 24, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(222, 242, 236, 0.78));
  box-shadow: 0 24px 70px rgba(96, 80, 62, 0.12);
}

.portrait img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(29, 27, 24, 0.12);
  object-fit: cover;
  box-shadow: 0 32px 80px var(--shadow-strong);
}

.portrait figcaption {
  width: fit-content;
  margin: 14px 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(29, 27, 24, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.92rem;
  box-shadow: 0 14px 36px rgba(96, 80, 62, 0.1);
  backdrop-filter: blur(16px);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(29, 27, 24, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.78rem;
  box-shadow: 0 14px 38px rgba(96, 80, 62, 0.12);
  transform: translateX(-50%);
}

.scroll-cue span {
  transform: translateY(-1px);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
  scroll-margin-top: 104px;
}

.about {
  border-top: 1px solid var(--line);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 70px;
  margin-top: 22px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.about__body {
  color: var(--muted);
  font-size: 1.04rem;
}

.about__body p {
  margin: 0 0 22px;
}

.signal-list {
  display: grid;
  margin: 32px 0 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.signal-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.signal-list dt {
  color: var(--jade);
  font-size: 0.9rem;
  font-weight: 800;
}

.signal-list dd {
  margin: 0;
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
  gap: 52px;
  align-items: end;
}

.section-heading .section-index {
  grid-column: 1 / -1;
}

.section-heading h2 {
  font-size: 4.4rem;
}

.section-heading p:not(.section-index) {
  margin: 0;
  color: var(--muted);
}

.article-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.article-controls button {
  min-width: 68px;
  min-height: 42px;
  border: 1px solid rgba(29, 27, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(96, 80, 62, 0.08);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.article-controls button:hover,
.article-controls button:focus-visible,
.article-controls button.is-active {
  border-color: rgba(235, 122, 102, 0.38);
  background: linear-gradient(135deg, rgba(255, 244, 238, 0.96), rgba(255, 255, 255, 0.9));
  color: var(--ink);
  outline: none;
  transform: translateY(-1px);
}

.article-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.article-card {
  position: relative;
  display: grid;
  min-height: 180px;
  grid-template-columns: 160px minmax(0, 1fr) 92px;
  gap: 28px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(29, 27, 24, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(242, 251, 247, 0.78)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(96, 80, 62, 0.11);
  color: inherit;
  overflow: hidden;
}

.article-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(235, 122, 102, 0.12), transparent 38%, rgba(39, 121, 95, 0.1));
  opacity: 0;
  transition: opacity 180ms ease;
}

.article-card:hover::before,
.article-card:focus-visible::before {
  opacity: 1;
}

.article-card:focus-visible {
  border-color: rgba(235, 122, 102, 0.38);
  outline: none;
}

.article-card > * {
  position: relative;
}

.article-card__meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.article-card__category {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(168, 111, 31, 0.28);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 800;
}

.article-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.article-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.article-card__state {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.article-card__status {
  justify-self: end;
  color: var(--jade);
  font-size: 0.92rem;
  font-weight: 800;
}

.article-card__reading {
  color: rgba(29, 27, 24, 0.52);
  font-size: 0.82rem;
  font-weight: 650;
}

.article-empty {
  margin: 0;
  padding: 22px 0;
  color: var(--muted);
}

.article-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 146px 0 80px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
}

.article-back::before {
  margin-right: 8px;
  content: "←";
}

.article-detail {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 18% 4%, rgba(255, 255, 255, 0.88), transparent 42%),
    radial-gradient(ellipse at 88% 92%, rgba(235, 122, 102, 0.12), transparent 46%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(242, 251, 247, 0.48)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    0 28px 82px rgba(96, 80, 62, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.84) inset;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
}

.article-detail h1 {
  margin: 14px 0 18px;
  font-size: 4.6rem;
}

.article-detail__lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.72;
}

.article-detail__meta,
.article-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.article-detail__meta span,
.article-detail__tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.86rem;
  font-weight: 750;
}

.article-detail__meta span {
  border: 1px solid rgba(39, 121, 95, 0.18);
  background: rgba(255, 255, 255, 0.44);
  color: var(--jade);
}

.article-detail__tags {
  margin-top: 12px;
}

.article-detail__tags span {
  border: 1px solid rgba(168, 111, 31, 0.18);
  background: rgba(255, 250, 238, 0.54);
  color: var(--gold);
}

.article-detail__body {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-detail__body h2 {
  margin: 34px 0 12px;
  font-size: 2.1rem;
}

.article-detail__body p {
  margin: 0 0 22px;
}

.article-detail__body ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.article-detail__body li + li {
  margin-top: 10px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 64px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.contact h2 {
  margin-top: 18px;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.contact-link {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 246, 238, 0.28)),
    rgba(255, 255, 255, 0.22);
  box-shadow:
    0 22px 56px rgba(96, 80, 62, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 -1px 0 rgba(168, 111, 31, 0.1) inset;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(1.7);
  -webkit-backdrop-filter: blur(24px) saturate(1.7);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-link::before {
  position: absolute;
  inset: 1px 8px auto;
  height: 38%;
  border-radius: inherit;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0.76;
  pointer-events: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 234, 220, 0.34)),
    rgba(255, 255, 255, 0.34);
  outline: none;
  transform: translateY(-2px);
}

.contact-link__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
}

.contact-link__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link--x .contact-link__icon {
  width: 50px;
  height: 50px;
}

.contact-link--x svg {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: rgba(29, 27, 24, 0.55);
  font-size: 0.92rem;
}

[data-reveal],
.article-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible,
.article-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button {
    cursor: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .hero {
    min-height: 94svh;
    padding: 118px 16px 66px;
  }

  .hero__content,
  .about__grid,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__content {
    min-height: auto;
    gap: 34px;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2,
  .section-heading h2 {
    font-size: 2.72rem;
  }

  .hero__lead {
    font-size: 1.22rem;
  }

  .brand-cluster {
    gap: 8px;
    padding: 4px 12px 4px 4px;
  }

  .header-time {
    min-width: 90px;
    height: 38px;
    padding: 0 0 0 8px;
  }

  .portrait {
    display: none;
  }

  .mobile-avatar {
    display: block;
    width: 104px;
    height: 104px;
    margin: 20px 0 14px;
    border: 1px solid rgba(29, 27, 24, 0.12);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 16px 42px rgba(96, 80, 62, 0.16);
  }

  .section {
    width: calc(100% - 32px);
    padding: 72px 0;
  }

  .about__grid,
  .section-heading,
  .contact {
    gap: 28px;
  }

  .article-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-card__state {
    justify-items: start;
  }

  .article-card__status {
    justify-self: start;
  }

  .article-shell {
    width: calc(100% - 32px);
    padding-top: 118px;
  }

  .article-detail {
    padding: 30px;
  }

  .article-detail h1 {
    font-size: 3.1rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 54px;
  }

  .brand {
    width: 42px;
    height: 42px;
  }

  .brand-cluster {
    gap: 6px;
    padding: 4px 10px 4px 4px;
  }

  .header-time {
    min-width: 78px;
    height: 34px;
    padding: 0 0 0 7px;
  }

  .header-time__clock {
    font-size: 0.82rem;
    font-weight: 800;
  }

  .site-nav {
    gap: 0;
    padding: 4px;
  }

  .site-nav a {
    min-width: 48px;
    padding: 7px 8px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 92px;
  }

  h1 {
    font-size: 3.05rem;
    line-height: 1;
  }

  h2,
  .section-heading h2 {
    font-size: 2.18rem;
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .hero__actions,
  .hero__tags,
  .article-controls {
    gap: 8px;
  }

  .button {
    flex: 1 1 136px;
  }

  .scroll-cue {
    display: none;
  }

  .mobile-avatar {
    width: 74px;
    height: 74px;
    margin-top: 14px;
    margin-bottom: 10px;
  }

  .portrait figcaption {
    margin-left: 0;
  }

  .signal-list div,
  .contact-link {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .article-card {
    min-height: 0;
    padding: 20px;
  }

  .article-card h3 {
    font-size: 1.36rem;
  }

  .article-shell {
    padding-top: 96px;
  }

  .article-detail {
    padding: 22px;
  }

  .article-detail h1 {
    font-size: 2.34rem;
  }

  .article-detail__lead {
    font-size: 1.04rem;
  }

  .article-detail__body {
    font-size: 1rem;
  }

  .article-detail__body h2 {
    font-size: 1.62rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 8px;
  }

  .header-time {
    min-width: 72px;
    height: 32px;
    padding-left: 6px;
  }

  .header-time__clock {
    font-size: 0.76rem;
  }

  .site-nav a {
    min-width: 44px;
    padding: 7px 6px;
  }
}
