:root{
  --bg:#0b0711;
  --surface:#120a1f;
  --text:#f4eefc;
  --muted:#cbb9e6;
  --muted2:#a38dbf;
  --ink:#0a0610;
  --line:rgba(244,238,252,.14);
  --accent:#7b4bd6;
  --accent2:#b78cff;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
  --max:1120px;
}

/* Aura palette (still purple, just different moods) */
.aura--roi{ --bg:#07060d; --surface:#120a1f; --accent:#8b5cf6; --accent2:#d7b7ff; }
.aura--abacus{ --bg:#060511; --surface:#100a23; --accent:#6d28d9; --accent2:#e9d5ff; }
.aura--velvet{ --bg:#090611; --surface:#140922; --accent:#a855f7; --accent2:#f5d0fe; }
.aura--detour{ --bg:#070913; --surface:#0f1126; --accent:#7c3aed; --accent2:#c4b5fd; }
.aura--moth{ --bg:#07060a; --surface:#140a16; --accent:#9333ea; --accent2:#f0abfc; }
.aura--shadows{ --bg:#05050b; --surface:#0d0b18; --accent:#5b21b6; --accent2:#ddd6fe; }

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(123,75,214,.25), transparent 60%),
              radial-gradient(900px 700px at 80% 30%, rgba(183,140,255,.20), transparent 60%),
              radial-gradient(1000px 700px at 60% 90%, rgba(168,85,247,.14), transparent 55%),
              var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.55;
}

/* Type */
h1,h2,h3{margin:0 0 .5rem 0; line-height:1.15; letter-spacing:-.02em}
.h-display{font-family: "Cormorant Garamond", Georgia, serif; font-weight:600; letter-spacing:.01em}
.h-serif{font-family: "EB Garamond", Georgia, serif; font-weight:600}
.h-companion{font-family: "Spectral", Georgia, serif; font-weight:600}
.p-muted{color:var(--muted)}
.small{font-size:.95rem}
.tiny{font-size:.85rem; color:var(--muted2)}
a{color:var(--text); text-decoration-color:rgba(183,140,255,.55); text-underline-offset:4px}
a:hover{color:var(--accent2)}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}

/* Header */
.site-header{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(10,6,16,.78), rgba(10,6,16,.35));
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px}
.brand{display:flex; align-items:baseline; gap:10px}
.brand a{font-family:"Cormorant Garamond", Georgia, serif; font-size:1.35rem; font-weight:700; letter-spacing:.02em; text-decoration:none}
.brand span{font-size:.85rem; color:var(--muted2)}
nav ul{list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:14px}
nav a{font-size:.95rem; color:var(--muted); text-decoration:none}
nav a:hover{color:var(--text)}
.nav-cta{display:flex; align-items:center; gap:10px}
.button{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(183,140,255,.35);
  background: linear-gradient(180deg, rgba(123,75,214,.28), rgba(123,75,214,.06));
  color:var(--text); text-decoration:none;
}
.button:hover{border-color:rgba(233,213,255,.6); background:linear-gradient(180deg, rgba(123,75,214,.36), rgba(123,75,214,.08))}

/* Hero */
.hero{padding:46px 0 28px 0}
.hero-grid{display:grid; gap:22px; grid-template-columns:1.15fr .85fr; align-items:stretch}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr} }
.hero-card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,10,31,.7), rgba(18,10,31,.35));
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card .inner{padding:28px}
.kicker{color:var(--muted2); text-transform:lowercase; letter-spacing:.06em; font-size:.85rem}
.hero-title{font-size:3.1rem}
@media (max-width:520px){.hero-title{font-size:2.5rem}}
.hero-line{font-size:1.1rem; color:var(--muted)}
.hero-quote{margin-top:14px; font-size:1.05rem}
.hero-quote strong{font-weight:700}

.hero-art{
  min-height:280px;
  background:
    linear-gradient(180deg, rgba(11,7,17,.55), rgba(11,7,17,.92)),
    url("../img/art_goldmist.jpg") center/cover no-repeat;
}
.hero-art .inner{padding:22px}
.hero-art h2{font-size:1.35rem}
.badge{
  display:inline-flex; padding:8px 10px; border-radius:999px;
  border:1px solid rgba(244,238,252,.16);
  background: rgba(0,0,0,.18);
  color:var(--muted);
  font-size:.9rem;
}

/* Doorways */
.section{padding:26px 0}
.section h2{font-size:1.65rem}
.cards{display:grid; grid-template-columns:repeat(2, 1fr); gap:16px}
@media (max-width: 900px){ .cards{grid-template-columns:1fr} }
.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,10,31,.55), rgba(18,10,31,.22));
  border-radius:var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,.38);
  overflow:hidden;
  position:relative;
}
.card a{display:block; padding:16px; text-decoration:none; position:relative; z-index:2}
.card h3{font-size:1.15rem}
.card p{margin:.5rem 0 0 0; color:var(--muted)}
.card .bg{
  position:absolute; inset:0;
  z-index:1;
  pointer-events:none;
  opacity:.22;
  background: url("../img/art_drips.jpg") center/cover no-repeat;
  filter:saturate(1.1) contrast(1.05);
}
.card:hover{border-color:rgba(233,213,255,.45)}
.card:hover .bg{opacity:.28}

/* Playlist index */
.list{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background: rgba(18,10,31,.35);
}
.list a{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 18px; text-decoration:none; border-bottom:1px solid var(--line)}
.list a:last-child{border-bottom:none}
.list a:hover{background: rgba(123,75,214,.10)}
.list .title{font-family:"EB Garamond", Georgia, serif; font-size:1.15rem; color:var(--text)}
.list .meta{color:var(--muted2); font-size:.9rem}

/* Page header */
.page-head{
  padding:40px 0 18px 0;
}
.page-head .eyebrow{color:var(--muted2); text-transform:lowercase; letter-spacing:.08em; font-size:.85rem}
.page-head h1{font-size:2.4rem}

/* Press */
.press-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:18px}
@media (max-width: 900px){ .press-grid{grid-template-columns:1fr} }
.panel{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background: rgba(18,10,31,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  overflow:hidden;
}
.panel .inner{padding:20px}
.panel h2{font-size:1.4rem}
.panel ul{margin:12px 0 0 0; padding:0 0 0 18px}
.panel li{margin:8px 0}
.pullquote{
  border-left:3px solid rgba(183,140,255,.55);
  padding:10px 14px;
  margin:12px 0;
  background: rgba(0,0,0,.16);
  color:var(--text);
  font-family:"Spectral", Georgia, serif;
}

/* About */
.about-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:18px; align-items:start}
@media (max-width: 900px){ .about-grid{grid-template-columns:1fr} }
.portrait{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background: rgba(18,10,31,.25);
  box-shadow: var(--shadow);
}
.portrait img{width:100%; display:block; height:auto}
.portrait .cap{padding:14px 16px; color:var(--muted); font-size:.95rem}

/* Poems */
.aura-hero{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(7,6,13,.60), rgba(7,6,13,.92)),
    var(--aura-image);
  background-size:cover;
  background-position:center;
}
.aura-hero .inner{padding:26px}
.aura-hero .note{max-width:70ch; color:var(--muted)}

.poem-block{
  margin-top:16px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background: rgba(0,0,0,.18);
}
.poem-block header{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  display:flex; align-items:baseline; justify-content:space-between; gap:10px;
}
.poem-block h3{font-size:1.2rem}
.poem-block .tag{color:var(--muted2); font-size:.9rem}
.poem{
  padding:16px;
  white-space:pre-wrap;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color:rgba(244,238,252,.95);
  font-size:1.02rem;
  line-height:1.65;
}

.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(183,140,255,.55), transparent);
  margin:22px 0;
}

/* Forms */
form{display:grid; gap:12px}
label{font-size:.95rem; color:var(--muted)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(244,238,252,.18);
  background: rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(233,213,255,.55); box-shadow: 0 0 0 4px rgba(123,75,214,.18)}
textarea{min-height:150px; resize:vertical}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 720px){ .form-row{grid-template-columns:1fr} }
.notice{color:var(--muted2); font-size:.92rem}
.toast{display:none; margin-top:10px; padding:10px 12px; border-radius:14px; border:1px solid rgba(233,213,255,.35); background: rgba(123,75,214,.12); color:var(--text)}
.toast.show{display:block}

/* Footer */
.site-footer{padding:36px 0 44px 0; border-top:1px solid var(--line); margin-top:34px}
.footer-grid{display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:10px}
.footer-quote{color:var(--muted)}
.footer-links{display:flex; flex-wrap:wrap; gap:14px}
.footer-links a{color:var(--muted); text-decoration:none}
.footer-links a:hover{color:var(--text)}

/* Utility */
.hidden{position:absolute; left:-9999px}


html, body { background: radial-gradient(900px 500px at 15% 10%, rgba(109,60,255,.22), transparent 55%), radial-gradient(700px 460px at 80% 30%, rgba(54,214,255,.12), transparent 60%), radial-gradient(900px 520px at 50% 110%, rgba(216,177,90,.08), transparent 60%), linear-gradient(180deg, #07040c, #140a1f); color: #f4effa; }


/* Preserve poem line breaks */
.poem, .poem-text, pre.poem { white-space: pre-line; }

/* Author chip (portrait + IG) */
.author-chip{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(235,230,255,.22);
  background:rgba(10,10,14,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width:fit-content;
  max-width:100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.author-chip img{
  width:46px;
  height:46px;
  border-radius:999px;
  object-fit:cover;
  border:1px solid rgba(235,230,255,.28);
}
.author-chip .meta{display:flex; flex-direction:column; gap:2px;}
.author-chip .meta a{opacity:.85}
.author-chip .meta a:hover{opacity:1}

/* Playlist header author */
.aura-author{
  display:flex;
  align-items:center;
  gap:12px;
  margin: 14px 0 0 0;
}
.aura-author img{
  width:54px;
  height:54px;
  border-radius:16px;
  object-fit:cover;
  border:1px solid rgba(235,230,255,.24);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.aura-author .meta{display:flex; flex-direction:column; gap:2px}
