  :root {
    --bg-0: #110a05;
    --bg-1: #1a0f08;
    --bg-2: #221610;
    --bg-3: #2d1d14;
    --line: #3d2a1d;
    --line-warm: #553a26;
    --ink-0: #f3e6d2;
    --ink-1: #d9c4a3;
    --ink-2: #9c8467;
    --ink-3: #6b5640;
    --gold: #c89c5d;
    --gold-bright: #e6b878;
    --gold-deep: #8a6536;
    --terracotta: #c2674a;
    --f-display: 'Cormorant Garamond', Georgia, serif;
    --f-sans: 'Inter Tight', -apple-system, sans-serif;
    --f-mono: 'JetBrains Mono', ui-monospace, monospace;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html, body {
    margin: 0; padding: 0;
    background: var(--bg-1);
    color: var(--ink-0);
    font-family: var(--f-sans);
    font-size: 15px;
    line-height: 1.55;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  :target { scroll-margin-top: 24px; }
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none; z-index: 1;
    opacity: 0.08;
    background-image:
      radial-gradient(circle at 20% 25%, rgba(255,200,140,0.18) 0, transparent 45%),
      radial-gradient(circle at 80% 70%, rgba(140,60,30,0.22) 0, transparent 50%);
    mix-blend-mode: screen;
  }
  ::selection { background: var(--gold); color: #1a0f08; }

  .page {
    position: relative; z-index: 2;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 0;
  }

  /* Top bar */
  .top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 28px 56px;
    border-bottom: 1px solid var(--line);
  }
  .top .brand { justify-self: start; }
  .brand { display: flex; align-items: center; gap: 14px; }
  .brand .mark { color: var(--gold); width: 28px; height: 28px; display: grid; place-items: center; }
  .brand-name {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .brand-name b {
    font-style: normal; font-weight: 500;
    letter-spacing: 0.04em; color: var(--gold-bright);
  }
  .top .stamp {
    font-family: var(--f-mono);
    font-size: 10.5px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--ink-3);
  }

  .topnav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 56px;
  }
  .topnav a {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--ink-1);
    text-decoration: none;
    position: relative;
    transition: color 240ms var(--ease);
  }
  .topnav a:hover { color: var(--gold-bright); }
  .topnav a + a::before {
    content: "·";
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-55%);
    color: var(--gold-deep);
    font-style: normal;
    font-size: 22px;
    pointer-events: none;
  }

  /* Main */
  main {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 0;
  }
  .left {
    padding: 96px 64px 96px 96px;
    display: flex; flex-direction: column; justify-content: space-between;
    border-right: 1px solid var(--line);
  }
  .kicker {
    font-family: var(--f-mono);
    font-size: 10.5px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 32px;
    display: flex; align-items: center; gap: 14px;
  }
  .kicker .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    animation: pulse 2.4s var(--ease) infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
  }

  h1 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(64px, 8vw, 132px);
    line-height: 0.94;
    letter-spacing: -0.02em;
    margin: 0;
  }
  h1 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
  h1 .line { display: block; }

  .lede {
    margin: 56px 0 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-1);
    max-width: 460px;
  }
  .lede-2 { margin-top: 22px; color: var(--ink-1); }
  .lede-3 {
    margin-top: 22px;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--gold-bright);
  }

  .countdown {
    margin-top: 64px;
    display: flex; gap: 0;
    border-top: 1px solid var(--line-warm);
    border-bottom: 1px solid var(--line-warm);
  }
  .countdown .cell {
    flex: 1;
    padding: 22px 0;
    text-align: center;
    border-right: 1px solid var(--line);
  }
  .countdown .cell:last-child { border-right: none; }
  .countdown .num {
    font-family: var(--f-display);
    font-size: 44px;
    color: var(--gold-bright);
    line-height: 1;
    font-style: italic;
  }
  .countdown .lbl {
    font-family: var(--f-mono);
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-top: 10px;
  }

  /* Right column — visual */
  .right {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse at 50% 35%, rgba(200,156,93,0.18), transparent 55%),
      radial-gradient(ellipse at 70% 80%, rgba(140,60,30,0.18), transparent 60%),
      var(--bg-0);
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    filter: saturate(1.05) contrast(1.04);
    animation: fadeUp 1200ms var(--ease) both;
  }
  .right::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(230,184,120,0.18), transparent 55%),
      linear-gradient(to right, rgba(17,10,5,0.55), transparent 30%, transparent 70%, rgba(17,10,5,0.55));
    z-index: 2;
    pointer-events: none;
  }
  .right::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(135deg, rgba(200,156,93,0.025) 0 2px, transparent 2px 12px);
    pointer-events: none;
  }

  /* Stacked artifact placeholder cards */
  .stack {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }
  .card {
    position: absolute;
    background: linear-gradient(160deg, #2d1d14, #1f1209 75%);
    border: 1px solid var(--line-warm);
    overflow: hidden;
  }
  .card::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 30% 30%, rgba(230,184,120,0.3), transparent 55%),
      radial-gradient(circle at 70% 75%, rgba(140,60,30,0.25), transparent 60%);
  }
  .card .lot {
    position: absolute; top: 14px; right: 16px;
    font-family: var(--f-mono);
    font-size: 9.5px; letter-spacing: 0.18em;
    color: rgba(200,156,93,0.7);
    z-index: 2;
  }
  .card .label {
    position: absolute; bottom: 14px; left: 16px; right: 16px;
    font-family: var(--f-mono);
    font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(243,230,210,0.55);
    z-index: 2;
  }
  /* Drawn 'eye' shape */
  .eye {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 70%;
    border: 1.4px solid rgba(230,184,120,0.35);
    border-radius: 50%;
    z-index: 1;
  }
  .eye::before {
    content: ""; position: absolute; inset: 14%;
    border: 1.4px solid rgba(230,184,120,0.55);
    border-radius: 50%;
  }
  .eye::after {
    content: ""; position: absolute; inset: 32%;
    background: radial-gradient(circle, rgba(230,184,120,0.6), rgba(140,80,40,0.2));
    border-radius: 50%;
  }

  .c1 { width: 320px; height: 460px; transform: translate(-130px, -10px) rotate(-8deg); z-index: 1; opacity: 0.65; animation: float1 9s ease-in-out infinite; }
  .c2 { width: 360px; height: 500px; transform: translate(0, -40px); z-index: 3; animation: float2 11s ease-in-out infinite; }
  .c3 { width: 280px; height: 400px; transform: translate(150px, 30px) rotate(6deg); z-index: 2; opacity: 0.75; animation: float3 13s ease-in-out infinite; }

  @keyframes float1 { 0%,100% { transform: translate(-130px, -10px) rotate(-8deg); } 50% { transform: translate(-138px, -22px) rotate(-9deg); } }
  @keyframes float2 { 0%,100% { transform: translate(0, -40px); } 50% { transform: translate(0, -56px); } }
  @keyframes float3 { 0%,100% { transform: translate(150px, 30px) rotate(6deg); } 50% { transform: translate(160px, 18px) rotate(7deg); } }

  /* Floating cert badge over cards */
  .cert-badge {
    position: absolute;
    top: 32px; right: 36px;
    z-index: 5;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(34,22,16,0.85);
    border: 1px solid var(--gold-deep);
    color: var(--gold-bright);
    font-family: var(--f-mono);
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
  }
  .cert-badge .d { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

  .corner-mono {
    position: absolute;
    bottom: 32px; right: 36px;
    font-family: var(--f-mono);
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-3);
    z-index: 5;
    text-align: right;
  }
  .corner-mono span { color: var(--gold); }

  /* Form (left bottom) */
  .invite {
    margin-top: 40px;
  }
  .invite .label {
    font-family: var(--f-mono);
    font-size: 10.5px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 14px;
  }
  .invite form {
    display: flex; align-items: stretch;
    border-bottom: 1px solid var(--gold-deep);
    max-width: 460px;
  }
  .invite input {
    flex: 1;
    background: transparent; border: none; outline: none;
    padding: 16px 0;
    color: var(--ink-0);
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
  }
  .invite input::placeholder { color: var(--ink-3); }
  .invite button {
    background: none; border: none; cursor: pointer;
    padding: 12px 0 12px 24px;
    font-family: var(--f-mono);
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-0);
    display: inline-flex; align-items: center; gap: 12px;
    transition: color 240ms var(--ease);
  }
  .invite button:hover { color: var(--gold-bright); }
  .invite button .arrow {
    display: inline-block;
    width: 22px; height: 1px; background: currentColor;
    position: relative;
    transition: width 240ms var(--ease);
  }
  .invite button:hover .arrow { width: 32px; }
  .invite button .arrow::after {
    content: ""; position: absolute; right: -1px; top: -3px;
    width: 7px; height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
  }
  .invite .note {
    margin-top: 14px;
    font-family: var(--f-mono);
    font-size: 10.5px; letter-spacing: 0.14em;
    color: var(--ink-3);
  }
  .invite.sent .form-row { display: none; }
  .invite .ok {
    display: none;
    padding: 18px 22px;
    border: 1px solid var(--gold);
    background: rgba(200,156,93,0.06);
    color: var(--gold-bright);
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    max-width: 460px;
  }
  .invite.sent .ok { display: block; }

  /* Footer */
  footer.bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 56px;
    border-top: 1px solid var(--line);
    font-family: var(--f-mono);
    font-size: 10.5px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    gap: 24px;
    flex-wrap: wrap;
  }
  footer.bottom .langs {
    display: flex; gap: 18px;
  }
  footer.bottom .langs a {
    color: var(--ink-2); text-decoration: none;
  }
  footer.bottom .langs a:hover { color: var(--gold-bright); }
  footer.bottom a { color: inherit; text-decoration: none; }
  footer.bottom a:hover { color: var(--gold-bright); }

  /* Fade entry */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
  .fade { animation: fadeUp 900ms var(--ease) both; }
  .fade.d1 { animation-delay: 0.15s; }
  .fade.d2 { animation-delay: 0.3s; }
  .fade.d3 { animation-delay: 0.45s; }

  /* ===== Editorial SEO section ===== */
  .editorial {
    border-top: 1px solid var(--line);
    background:
      radial-gradient(ellipse at 50% 0%, rgba(200,156,93,0.05), transparent 55%),
      var(--bg-1);
    padding: 120px 56px 96px;
  }
  .editorial-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
  }
  .ed-eyebrow {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--f-mono);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 56px;
  }
  .ed-eyebrow .rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--gold-deep), transparent);
    max-width: 240px;
  }
  .ed-eyebrow .tib {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    letter-spacing: 0;
    color: var(--gold-bright);
    text-transform: none;
    line-height: 1;
    transform: translateY(2px);
  }

  .ed-block {
    position: relative;
  }
  .ed-num {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .ed-num .nm {
    color: var(--gold);
    font-family: var(--f-display);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0;
  }

  .ed-block h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 36px;
    color: var(--ink-0);
    text-wrap: balance;
  }
  .ed-block h2 em {
    font-style: italic;
    color: var(--gold-bright);
  }

  .ed-body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-1);
    margin: 0 0 22px;
    max-width: 52ch;
    text-wrap: pretty;
  }
  .ed-body p:last-child { margin-bottom: 0; }

  /* Dropcap on first paragraph */
  .ed-body .first::first-letter {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: 78px;
    line-height: 0.85;
    color: var(--gold-bright);
    float: left;
    padding: 6px 14px 0 0;
  }

  .ed-meta {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
  .ed-meta .tag {
    color: var(--ink-2);
  }

  .ed-ornament {
    text-align: center;
    grid-column: 1 / -1;
    margin-top: 88px;
    color: var(--gold-deep);
  }
  .ed-ornament svg { display: inline-block; }
  .ed-ornament .label {
    display: block;
    margin-top: 14px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-3);
  }

  @media (max-width: 980px) {
    main { grid-template-columns: 1fr; }
    .left { padding: 56px 28px; border-right: none; border-bottom: 1px solid var(--line); }
    .right { min-height: 60vh; }
    .top, footer.bottom { padding: 20px 28px; }
    .top {
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 14px;
      text-align: center;
    }
    .top .brand { justify-self: center; }
    .topnav { gap: 40px; }
    .topnav a { font-size: 19px; }
    .topnav a + a::before { left: -22px; font-size: 19px; }
    .corner-mono { display: none; }
    .editorial { padding: 72px 28px 56px; }
    .editorial-inner { grid-template-columns: 1fr; gap: 64px; }
    .ed-meta { margin-top: 36px; }
    .ed-block h2 { font-size: 34px; }
  }
  @media (max-width: 560px) {
    .topnav { gap: 28px; }
    .topnav a { font-size: 17px; }
    .topnav a + a::before { left: -18px; font-size: 17px; }
  }
