 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --cream: #f5f0e8;
      --gold: #c9a96e;
      --gold-light: #e8d5a3;
      --dark: #080604;
    }

    html, body {
      width: 100%; height: 100%;
      overflow: hidden;
      background: var(--dark);
      font-family: 'Montserrat', sans-serif;
    }

    /* VIDEO BACKGROUND */
    .video-wrap {
      position: fixed;
      inset: 0;
      z-index: 0;
    }

    .video-wrap video {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .video-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.72) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    }

    /* GRAIN */
    .grain {
      position: fixed;
      inset: -50%;
      width: 200%; height: 200%;
      z-index: 1;
      pointer-events: none;
      opacity: 0.035;
      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)'/%3E%3C/svg%3E");
      animation: grain-drift 8s steps(10) infinite;
    }

    @keyframes grain-drift {
      0%,100%{transform:translate(0,0)}
      10%{transform:translate(-2%,-3%)}
      30%{transform:translate(3%,1%)}
      50%{transform:translate(-1%,4%)}
      70%{transform:translate(2%,-2%)}
      90%{transform:translate(-3%,3%)}
    }

    /* MAIN CONTENT */
    .stage {
      position: relative;
      z-index: 2;
      width: 100%; height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(24px, 6vw, 80px) clamp(20px, 5vw, 60px);
      text-align: center;
    }

    .stage::before {
      content: '';
      position: absolute;
      top: clamp(24px, 5vw, 48px);
      left: 50%;
      transform: translateX(-50%);
      width: clamp(40px, 8vw, 80px);
      height: 1px;
     /* background: linear-gradient(90deg, transparent, var(--gold), transparent);*/
      animation: fade-in 1.8s ease forwards;
    }

    .stage::after {
      content: '';
      position: absolute;
      bottom: clamp(24px, 5vw, 48px);
      left: 50%;
      transform: translateX(-50%);
      width: clamp(40px, 8vw, 80px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      animation: fade-in 1.8s ease forwards;
    }

    .wordmark {
      font-family: 'Montserrat', sans-serif;
      font-weight: 200;
      font-size: clamp(10px, 2vw, 13px);
      letter-spacing: clamp(6px, 2vw, 16px);
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: clamp(28px, 6vh, 56px);
      opacity: 0;
      animation: slide-up 1s ease 0.3s forwards;
    }

    .headline {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(42px, 10vw, 110px);
      line-height: 0.95;
      color: var(--cream);
      letter-spacing: -0.01em;
      opacity: 0;
      animation: slide-up 1s ease 0.55s forwards;
    }

    .headline em {
      display: block;
      font-style: italic;
      color: var(--gold-light);
    }

    .divider {
      width: clamp(32px, 5vw, 56px);
      height: 1px;
     /* background: linear-gradient(90deg, transparent, var(--gold), transparent);*/
      margin: clamp(20px, 4vh, 40px) auto;
      opacity: 0;
      animation: fade-in 1s ease 0.85s forwards;
    }

    .tagline {
      font-family: 'Montserrat', sans-serif;
      font-weight: 200;
      font-size: clamp(11px, 1.8vw, 14px);
      /*letter-spacing: clamp(3px, 1.5vw, 8px);*/
      text-transform: uppercase;
      color: rgba(245, 240, 232, 0.55);
      max-width: 480px;
      line-height: 2;
      opacity: 0;
      animation: slide-up 1s ease 1.05s forwards;
    }

    /* NOTIFY FORM */
    .notify {
      margin-top: clamp(32px, 6vh, 60px);
      display: flex;
      gap: 0;
      width: 100%;
      max-width: clamp(260px, 80vw, 420px);
      opacity: 0;
      animation: slide-up 1s ease 1.3s forwards;
    }

    .notify input {
      flex: 1;
      min-width: 0;
      background: rgba(245, 240, 232, 0.07);
      border: 1px solid rgba(201, 169, 110, 0.3);
      border-right: none;
      color: var(--cream);
      font-family: 'Montserrat', sans-serif;
      font-weight: 200;
      font-size: clamp(10px, 1.6vw, 12px);
      letter-spacing: 2px;
      padding: clamp(12px, 2vh, 16px) clamp(14px, 2vw, 20px);
      outline: none;
      transition: border-color 0.3s, background 0.3s;
    }

    .notify input::placeholder {
      color: rgba(245, 240, 232, 0.3);
      letter-spacing: 2px;
    }

    .notify input:focus {
      border-color: rgba(201, 169, 110, 0.7);
      background: rgba(245, 240, 232, 0.1);
    }

    .notify button {
      background: var(--gold);
      border: 1px solid var(--gold);
      color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: clamp(9px, 1.4vw, 10px);
      letter-spacing: clamp(2px, 0.8vw, 4px);
      text-transform: uppercase;
      padding: clamp(12px, 2vh, 16px) clamp(16px, 2.5vw, 24px);
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      white-space: nowrap;
    }

    .notify button:hover {
      background: transparent;
      color: var(--gold);
    }

    .success-msg {
      display: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 200;
      font-size: clamp(10px, 1.6vw, 12px);
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-top: clamp(32px, 6vh, 60px);
      opacity: 0;
      animation: fade-in 0.6s ease forwards;
    }

    /* SOCIAL ICONS */
    .socials {
      position: fixed;
      bottom: clamp(20px, 4vw, 40px);
      right: clamp(20px, 4vw, 40px);
      z-index: 3;
      display: flex;
      gap: clamp(10px, 2vw, 16px);
      opacity: 0;
      animation: fade-in 1.2s ease 1.6s forwards;
    }

    .socials a {
      width: clamp(32px, 5vw, 40px);
      height: clamp(32px, 5vw, 40px);
      border: 1px solid rgba(201, 169, 110, 0.3);
      display: flex; align-items: center; justify-content: center;
      color: rgba(245, 240, 232, 0.45);
      text-decoration: none;
      transition: border-color 0.3s, color 0.3s;
    }

    .socials a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .socials svg {
      width: clamp(13px, 2vw, 16px);
      height: clamp(13px, 2vw, 16px);
    }

    /* ANIMATIONS */
    @keyframes slide-up {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fade-in {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* MOBILE */
    @media (max-width: 480px) {
      .notify {
        flex-direction: column;
      }
      .notify input {
        border-right: 1px solid rgba(201, 169, 110, 0.3);
        border-bottom: none;
      }
      .notify button {
        width: 100%;
        padding: 14px;
      }
      .socials {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
      }
    }

    @media (max-height: 600px) {
      .divider { margin: 10px auto; }
      .wordmark { margin-bottom: 12px; }
      .notify { margin-top: 16px; }
      .headline { font-size: clamp(32px, 8vh, 64px); }
    }
    .logo-wrap {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 20px;
      cursor: pointer;
    }

    .logo-outer {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      top:18px;
    }

    /* Spinning dashed ring */
    .logo-outer::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 2px dashed rgba(14,124,134,0.6);
      animation: spinRing 20s linear infinite;
    }

    /* Solid teal ring */
    .logo-outer::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 2px solid var(--teal);
      box-shadow: 0 0 20px var(--teal-glow), inset 0 0 20px rgba(14,124,134,0.1);
    }

    @keyframes spinRing {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .logo-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%, #0f2040, #0a1628);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
     
    }

    .logo-symbol {
      font-family: 'Courier Prime', monospace;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--teal-light);
      letter-spacing: -1px;
      text-shadow: 0 0 16px rgba(20,168,181,0.8);
      line-height: 1;
    }

    .logo-name {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.52rem;
      letter-spacing: 3px;
      color: var(--teal-light);
      text-transform: uppercase;
      margin-top: 4px;
      opacity: 0.8;
    }