
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #0d0d0d;
    --cream: #f5f0e8;
    --gold: #b8975a;
    --gold-light: #d4b483;
    --dim: #7a7267;
  }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Gentium Plus', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
  }

  a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(184,151,90,0.4);
  }

  a:hover {
    color: var(--gold);
  }
  /* Grain texture */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10;
    opacity: 0.5;
  }

  /* Diagonal stripe accent */
  .stripe-bg {
    position: fixed;
    top: -100px;
    right: -80px;
    width: 420px;
    height: 120vh;
    background: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 18px,
      rgba(184,151,90,0.07) 18px,
      rgba(184,151,90,0.07) 36px
    );
    transform-origin: top right;
    pointer-events: none;
  }

  .stripe-bg-left {
    position: fixed;
    bottom: -100px;
    left: -80px;
    width: 300px;
    height: 80vh;
    background: repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 18px,
      rgba(184,151,90,0.05) 18px,
      rgba(184,151,90,0.05) 36px
    );
    pointer-events: none;
  }

  /* Corner marks */
  .corner {
    position: fixed;
    width: 40px;
    height: 40px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
  }
  .corner--tl { top: 28px; left: 28px; border-top-width: 1px; border-left-width: 1px; animation-delay: 0.8s; }
  .corner--tr { top: 28px; right: 28px; border-top-width: 1px; border-right-width: 1px; animation-delay: 0.9s; }
  .corner--bl { bottom: 28px; left: 28px; border-bottom-width: 1px; border-left-width: 1px; animation-delay: 1s; }
  .corner--br { bottom: 28px; right: 28px; border-bottom-width: 1px; border-right-width: 1px; animation-delay: 1.1s; }

  @keyframes fadeIn {
    to { opacity: 1; }
  }

  /* Main card */
  .container {
    text-align: center;
    max-width: 640px;
    padding: 0 32px 80px;
    position: relative;
    z-index: 5;
  }

  /* Animated construction bar */
  .construction-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(12px);
    animation: rise 0.7s ease forwards 0.2s;
  }

  .bar-segment {
    height: 6px;
    border-radius: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--gold) 0px,
      var(--gold) 10px,
      var(--ink) 10px,
      var(--ink) 20px
    );
  }
  .bar-segment--long { width: 80px; }
  .bar-segment--short { width: 32px; }

  .bar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
  }
  .bar-dot:nth-child(2) { animation-delay: 0.3s; }
  .bar-dot:nth-child(4) { animation-delay: 0.6s; }

  @keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
  }

  /* Eyebrow */
  .eyebrow {
    font-family: 'Gentium Plus', serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    animation: rise 0.7s ease forwards 0.35s;
  }

  /* Headline */
  h1 {
    font-family: 'Gentium Plus', serif;
    font-weight: 300;
    font-size: clamp(52px, 9vw, 86px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.8s ease forwards 0.5s;
  }

  h1 em {
    font-style: normal;
    color: var(--gold);
  }

  /* Divider */
  .divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px auto;
    width: fit-content;
    opacity: 0;
    animation: fadeIn 0.7s ease forwards 0.85s;
  }
  .divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
  }
  .divider-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
  }
  .divider-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  /* Body text */
  p {
    font-family: 'Gentium Plus', serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--dim);
    max-width: 420px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(10px);
    animation: rise 0.7s ease forwards 1s;
  }

  .routes {
    font-family: 'Gentium Plus', serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: var(--dim);
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    animation: rise 0.7s ease forwards 1s;
  }

  .routes-intro {
    margin-bottom: 14px;
    text-align: center;
  }

  .routes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
  }

  .routes-list a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(184,151,90,0.4);
  }

  .routes-list a:hover {
    color: var(--gold);
  }\n  /* Progress */
  .progress-wrap {
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(8px);
    animation: rise 0.7s ease forwards 1.15s;
  }

  .progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dim);
    margin-bottom: 10px;
  }

  .progress-track {
    height: 2px;
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: fillBar 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.5s;
  }

  @keyframes fillBar {
    to { width: 68%; }
  }

  /* Notify form */
  .notify {
    display: flex;
    gap: 0;
    max-width: 380px;
    margin: 24px auto 0;
    border: 1px solid rgba(184,151,90,0.35);
    border-radius: 2px;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(8px);
    animation: rise 0.7s ease forwards 1.3s;
    transition: border-color 0.3s;
  }

  .notify:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,151,90,0.1);
  }

  .notify input {
    flex: 1;
    padding: 13px 18px;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Gentium Plus', serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--ink);
    min-width: 0;
  }

  .notify input::placeholder { color: var(--dim); }

  .notify button {
    padding: 13px 22px;
    background: var(--gold);
    border: none;
    cursor: pointer;
    font-family: 'Gentium Plus', serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: white;
    transition: background 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .notify button:hover { background: var(--ink); }

  /* Confirmation message */
  .confirm {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 14px;
    min-height: 18px;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .confirm.show { opacity: 1; }

  /* Footer */
  .footer {
    position: fixed;
    bottom: 28px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(120,112,100,0.5);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.8s;
  }

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





