:root {
  --bg: #0f0e0c;
  --bg-2: #1a1714;
  --ink: #eae3d6;
  --ink-dim: #a89f8e;
  --accent: #d9a566;
  --rule: rgba(234, 227, 214, 0.12);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(217, 165, 102, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(217, 165, 102, 0.06), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}

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

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: clamp(40px, 7vh, 80px);
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: none;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(217, 165, 102, 0.7);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217, 165, 102, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(217, 165, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 165, 102, 0); }
}

.hero {
  align-self: center;
  max-width: 22ch;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 clamp(20px, 3vh, 32px);
}

.title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.title .line:nth-child(2) {
  animation-delay: 0.18s;
}

.title .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin-left: clamp(20px, 4vw, 60px);
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.tagline {
  margin: clamp(28px, 4vh, 40px) 0 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 38ch;
  opacity: 0;
  animation: rise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.45s forwards;
}

.meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  padding-top: clamp(28px, 4vh, 40px);
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: rise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.7s forwards;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.value {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink);
  font-weight: 400;
}

.value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s ease, border-color 0.2s ease;
  padding-bottom: 2px;
}

.value a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.foot {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 720px) {
  .meta { grid-template-columns: 1fr; gap: 24px; }
  .title .italic { margin-left: 0; }
  .top .status { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .title .line, .tagline, .meta { animation: none; opacity: 1; transform: none; }
  .dot { animation: none; }
}
