    :root{
      --bg:#0f0802;
      --panel: rgba(255,255,255,.04);
      --panel2: rgba(255,255,255,.06);
      --text: rgba(255,255,255,.88);
      --muted: rgba(255,255,255,.62);
      --line: rgba(255,255,255,.10);
      --accent: #faedbe; /* warm gold */
      --accent2: rgba(214,179,106,.18);
      --shadow: 0 18px 55px rgba(0,0,0,.55);
      --radius: 18px;
      --max: 1080px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      background: radial-gradient(900px 500px at 70% 10%, rgba(120,80,40,.12), transparent 55%),
                  radial-gradient(900px 700px at 20% 30%, rgba(74,190,156,.10), transparent 60%),
                  var(--bg);
      color:var(--text);
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      letter-spacing: .2px;
    }
     a{color:inherit;text-decoration:none}
    .logo-badge{
        width: 44px;
        height: 44px;
        border-radius: 50%;
        overflow: hidden;
        display: grid;
        place-items: center;
        background: rgba(0,0,0,.22);
        border: 1px solid rgba(214,179,106,.45);
    }
    .logo{
        width: 80%;
        height: 80%;
        object-fit: contain;
        display:block;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      color:inherit;
      cursor: pointer;
      transition:opacity .25s ease;

    }
    .brand:hover{
      opacity:.85;
    }

    .logo-round{
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        flex-shrink: 0;   
    }

    .brand-tagline{
        font-size: 14.5px;
        color: rgba(255,255,255,0.65);
        letter-spacing: 0.3px;
    }
    .wrap{max-width:var(--max); margin:0 auto; padding:28px 18px 70px;}
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      gap:14px;
      padding:12px 14px;
      border:1px solid var(--line);
      border-radius:999px;
      background: rgba(0,0,0,.22);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0,0,0,.35);
      position:sticky; top:16px; z-index:10;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      font-family: "Cormorant Garamond", serif;
      font-weight:600;
      letter-spacing:.6px;
      font-size:18px;
    }
    .dot{
      width:9px; height:9px; border-radius:999px;
      background: linear-gradient(135deg, var(--accent), rgba(74,190,156,.8));
      box-shadow: 0 0 0 4px rgba(214,179,106,.12);
    }
    .navlinks{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
    .navlinks a{
      font-size:13px; color:var(--muted);
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
    }
    .navlinks a:hover{
      color:var(--text);
      border-color: var(--line);
      background: rgba(255,255,255,.03);
    }
    .brand-tagline{
        font-size: 13px;
        color: rgba(255,255,255,0.7);
        letter-spacing: 0.3px;
        white-space: nowrap;   /* keeps it on one line */
    }
    .hero{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:22px;
      margin-top:26px;
      align-items:stretch;
    }
    @media (max-width: 860px){
      .hero{grid-template-columns:1fr}
      .nav{position:relative; top:0}
    }
    @media (max-width: 768px){
        .brand-tagline{
        display: none;
    }
    }
    .card{
      border:1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
    }

    .heroLeft{padding:26px 26px 20px;}
    .kicker{
      display:inline-flex; align-items:center; gap:10px;
      font-size:12px;
      color:var(--muted);
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px 12px;
      background: rgba(0,0,0,.18);
    }
    .kicker span{
      width:6px; height:6px; border-radius:999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px var(--accent2);
    }

    h1{
      margin:16px 0 10px;
      font-family: "Cormorant Garamond", serif;
      font-weight:600;
      font-size:56px;
      line-height:1.0;
      letter-spacing:.2px;
    }
    @media (max-width: 520px){
      h1{font-size:44px}
    }
    .sub{
      margin:0;
      max-width:60ch;
      color:var(--muted);
      font-size:15.5px;
      line-height:1.65;
    }

    .ctaRow{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:11px 14px;
      border-radius:999px;
      border:1px solid var(--line);
      font-size:13px;
      color:var(--text);
      background: rgba(255,255,255,.03);
      transition: transform .12s ease, border-color .12s ease, background .12s ease;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(214,179,106,.45);
      background: rgba(214,179,106,.08);
    }
    .btn.primary{
      border-color: rgba(214,179,106,.55);
      background: linear-gradient(180deg, rgba(214,179,106,.18), rgba(214,179,106,.10));
    }
    .icon{
      width:16px; height:16px; display:inline-block;
      opacity:.9;
    }

    .heroRight{
      position:relative;
      min-height:360px;
      display:flex;
      align-items:flex-end;
    }
    .cover{
      width:100%;
      aspect-ratio: 1/1;
      max-height: 420px;
      object-fit: cover;
      display:block;
      filter: saturate(1.05) contrast(1.02);
    }
    .overlay{
      position:absolute; inset:auto 16px 16px 16px;
      border:1px solid var(--line);
      background: rgba(0,0,0,.35);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding:12px 12px;
      display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
    }
    .overlay h3{
      margin:0;
      font-size:12px;
      font-weight:500;
      color:var(--muted);
    }
    .overlay p{
      margin:4px 0 0;
      font-family: "Cormorant Garamond", serif;
      font-size:22px;
      letter-spacing:.2px;
    }
    .tag{
      font-size:11px;
      color: rgba(255,255,255,.78);
      border:1px solid rgba(214,179,106,.35);
      background: rgba(214,179,106,.10);
      padding:7px 10px;
      border-radius:999px;
      white-space:nowrap;
      height: fit-content;
    }

    section{margin-top:26px}
    .sectionHead{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:14px; margin-bottom:12px;
    }
    .sectionHead h2{
      margin:0;
      font-family: "Cormorant Garamond", serif;
      font-weight:600;
      letter-spacing:.2px;
      font-size:28px;
    }
    .sectionHead p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }

    .grid2{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:18px;
    }
    @media (max-width: 860px){ .grid2{grid-template-columns:1fr} }

    .embedCard{padding:16px}
    .embedNote{
      font-size:12px;
      color:var(--muted);
      margin:0 0 10px;
    }
    iframe{
      width:100%;
      border:0;
      border-radius: 14px;
      overflow:hidden;
      background: rgba(255,255,255,.02);
    }

    .aboutCard{padding:18px 18px}
    .aboutText{
      margin:0;
      color:rgba(255,255,255,.78);
      line-height:1.75;
      font-size:14px;
    }
    .aboutText strong{color:var(--text); font-weight:500}

    .releases{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }
    @media (max-width: 980px){ .releases{grid-template-columns: repeat(2, 1fr);} }
    .release{
      border:1px solid var(--line);
      background: rgba(255,255,255,.03);
      border-radius: 16px;
      overflow:hidden;
      transition: transform .12s ease, border-color .12s ease;
    }
    .release:hover{transform: translateY(-2px); border-color: rgba(214,179,106,.35)}
    .release img{width:100%; aspect-ratio:1/1; object-fit:cover; display:block}
    .release .meta{padding:12px 12px 14px}
    .release .title{margin:0; font-size:13px; font-weight:500}
    .release .desc{margin:6px 0 0; font-size:12px; color:var(--muted)}

    .newsletter{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:10px;
    }
    .field{
      flex: 1 1 260px;
      display:flex;
      border:1px solid var(--line);
      background: rgba(0,0,0,.22);
      border-radius: 999px;
      padding:10px 12px;
      align-items:center;
      gap:10px;
    }
    .field input{
      width:100%;
      border:0;
      outline:none;
      background: transparent;
      color: var(--text);
      font-size:13px;
    }
    .small{
      margin-top:10px;
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
    }

    footer{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid var(--line);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:12px;
    }
    footer .social{display:flex; gap:12px; flex-wrap:wrap}
    footer .social a{
      padding:7px 10px;
      border:1px solid transparent;
      border-radius:999px;
      color:var(--muted);
    }
    footer .social a:hover{
      border-color: var(--line);
      background: rgba(255,255,255,.03);
      color: var(--text);
    }
    /* Keep the form aligned nicely */
 /* Match site theme for the email field */
    .signup-form .field{
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.10);
    }

    .signup-form .field:focus-within{
      border-color: rgba(214,179,106,.45);
      background: rgba(0,0,0,.28);
    }

    .signup-form input{
      background: transparent;   /* key: removes the white fill */
      color: rgba(255,255,255,.88);
      border: 0;
      outline: none;
    }

    /* fix browser autofill turning it white/yellow */
    .signup-form input:-webkit-autofill{
      -webkit-text-fill-color: rgba(255,255,255,.88);
      box-shadow: 0 0 0 1000px rgba(0,0,0,.22) inset;
      transition: background-color 9999s ease-out;
    }

    /* Success message: hidden by default, fades in */
    .form-success{
      width: 100%;
      margin: 10px 0 0;
      color: #D6B36A;
      font-size: 14px;

      opacity: 0;
      transform: translateY(6px);
      transition: opacity .6s ease, transform .6s ease;
      pointer-events: none;
    }

    .form-success.show{
      opacity: 1;
      transform: translateY(0);
    }

    /* Button states */
    .btn.loading{
      opacity: .7;
      cursor: wait;
    }

    .btn.success{
      border-color: rgba(214,179,106,.75);
    }

    /* Optional: small glow pulse on success */
    .btn.success::after{
      content:"";
      position:absolute;
      inset:0;
      border-radius:999px;
      box-shadow:0 0 18px rgba(214,179,106,.55);
      opacity:0;
      animation: glow .8s ease forwards;
    }

    @keyframes glow{
      from{opacity:1;}
      to{opacity:0;}
    }
    /* Privacy page layout */
    .narrow{
      max-width: 760px;
      margin: 60px auto;
    }

    /* Make the card breathe (padding + readable text size) */
    .card.narrow{
      padding: 34px 34px;
    }

    .card.narrow p,
    .card.narrow li{
      font-size: 12px;
      line-height: 1.65;
    }

    /* Headings rhythm */
    .card.narrow h1{
      margin: 0 0 8px;
    }

    .card.narrow .sub{
      margin: 0 0 22px;
      opacity: .75;
    }

    .card.narrow h2{
      margin: 26px 0 10px;
      font-size: 18px;
    }

    .card.narrow ul{
      margin: 10px 0 0;
      padding-left: 18px;
    }