@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500&display=swap');

:root{
  --ink:#aa9e85;
  --muted:rgba(238,233,223,.72);
  --line:rgba(238,233,223,.62);
  --cloud-size:min(31vw,350px);
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;background:#0b0d0c;color:var(--ink)}
body{font-family:Inter,system-ui,sans-serif}
.bg{
  position:fixed;inset:0;z-index:0;
  background-image:
    linear-gradient(rgba(5,7,6,.03),rgba(5,7,6,.12)),
    url("images/fond3.jpg");
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
}
.bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to bottom,
    rgba(0,0,0,.08),
    rgba(0,0,0,.00) 32%,
    rgba(0,0,0,.18) 75%,
    rgba(0,0,0,.30));
}
header{
  position:relative;
  z-index:2;
  min-height:20vh;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  padding:30px 300px 0;
}
h1{
  margin:0;
  text-align:left;
  text-shadow:0 2px 18px rgba(0,0,0,.8);
  position:fixed;
  left:100px;
  top:200px;
  transform:translateY(150px);
  z-index:10;
}
.main-title{
  display:block;
  font:400 clamp(50px,5.8vw,80px)/1.05 "Cormorant Garamond",serif;
}
.artist-name{
  display:block;
  margin-top:6px;
  margin-left:0;
  text-align:center;
  font:400 clamp(27px,3vw,38px)/1.1 "Cormorant Garamond",serif;
  color:#dbd5cd;
  text-shadow:0 2px 10px rgba(0,0,0,.75);
}
.menu{
  position:fixed;
left:4vw;
top:28px;
  width:38px;height:36px;padding:0;border:0;background:none;
  cursor:pointer;
}
.menu i{display:block;width:28px;height:1px;background:#cec9bf;margin:7px 0}

#constellation{
  position:relative;
  z-index:2;
  width:min(1180px,94vw);
  margin:0 auto;
  padding-bottom:12vh;
}
.line{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:1px;
  transform:translateX(-50%);
  background:var(--line);
}
.song{
  position:relative;
  height:15vh;
  min-height:0px;
  display:grid;
  grid-template-columns:1fr 1px 1fr;
  align-items:center;
}
.dot{
  position:absolute;
  left:50%;
  top:50%;
  width:7px;
  height:7px;
  border-radius:50%;
  transform:translate(-50%,-50%);
  background:#c9c3b7;
  box-shadow:0 0 10px rgba(255,255,255,.7);
  z-index:6;
}
.song.left .cloud{
  grid-column:1;
  justify-self:end;
  margin-right:34px;
}
.song.right .cloud{
  grid-column:3;
  justify-self:start;
  margin-left:34px;
}
.connector{
  position:absolute;
  top:50%;
  height:1px;
  width:34px;
  background:var(--line);
  z-index:-1;
}
.song.left .connector{left:100%}
.song.right .connector{right:100%}

/* A soft irregular mass of overlapping colour — no oval card. */
.cloud{
  position:relative;
  width:var(--cloud-size);
  height:175px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px 28px;
  text-align:center;
  cursor:pointer;
  color:#c9bfae;
  border:0;
  background:transparent;
  isolation:isolate;
  filter:drop-shadow(0 10px 25px rgba(0,0,0,.18));
}
.cloud::before{
  content:"";
  position:absolute;
  inset:5% 3%;
  z-index:-1;
  opacity:.78;
  background:
    radial-gradient(ellipse at 15% 56%,var(--c) 0 13%,transparent 30%),
    radial-gradient(ellipse at 31% 37%,var(--c) 0 16%,transparent 34%),
    radial-gradient(ellipse at 49% 29%,var(--c) 0 18%,transparent 37%),
    radial-gradient(ellipse at 68% 39%,var(--c) 0 15%,transparent 34%),
    radial-gradient(ellipse at 84% 57%,var(--c) 0 14%,transparent 31%),
    radial-gradient(ellipse at 55% 61%,var(--c) 0 25%,transparent 47%),
    radial-gradient(ellipse at 32% 64%,var(--c) 0 22%,transparent 43%);
  filter:blur(13px);
  transform:rotate(-2deg);
}
.cloud::after{
  content:"";
  position:absolute;
  inset:15% 10%;
  z-index:-1;
  background:
    radial-gradient(ellipse at 26% 44%,color-mix(in srgb,var(--c) 90%,white 10%) 0 12%,transparent 30%),
    radial-gradient(ellipse at 50% 34%,color-mix(in srgb,var(--c) 96%,white 4%) 0 14%,transparent 31%),
    radial-gradient(ellipse at 73% 51%,color-mix(in srgb,var(--c) 88%,black 5%) 0 13%,transparent 30%),
    radial-gradient(ellipse at 46% 66%,color-mix(in srgb,var(--c) 82%,black 5%) 0 17%,transparent 36%);
  opacity:.42;
  filter:blur(7px);
}
.cloud:hover{
  transform:scale(1.035);
  filter:drop-shadow(0 13px 28px rgba(0,0,0,.24)) brightness(1.08);
}
.title{
  position:relative;
  z-index:3;
  font:500 clamp(21px,2.2vw,31px)/1.06 Arial,sans-serif;
  text-shadow:0 2px 12px rgba(0,0,0,.78);
}
.lang{
  position:relative;
  z-index:3;
  margin-top:9px;
  font-size:11px;
  letter-spacing:.05em;
  opacity:.86;
  text-shadow:0 1px 8px rgba(0,0,0,.7);
}

dialog{
  width:min(620px,90vw);
  border:1px solid rgba(170, 165, 154, 0.28);
  border-radius:5px;
  padding:36px;
  color:var(--ink);
  background:rgba(12,14,13,.93);
  box-shadow:0 30px 100px rgba(0,0,0,.7);
  backdrop-filter:blur(12px);
}
dialog::backdrop{background:rgba(0,0,0,.55)}
#close{
  position:absolute;right:15px;top:7px;
  border:0;background:none;color:var(--ink);
  font-size:30px;cursor:pointer;
}
.dtitle{margin:0 0 6px;font:400 44px/1 "Cormorant Garamond",serif}
.muted{color:#742a2a}
.row{margin-top:22px}
.label{font-size:10px;letter-spacing:.13em;text-transform:uppercase;color:#ddd9d9;margin-bottom:7px}
.row a{
  color:#afb7c4;
  text-decoration:none;
  margin-right:12px;
}

.row a:visited{
  color:#91818f;
}

.row a:hover{
  color:#858a8f;
}
.row a:hover{text-decoration:underline}
.common a{display:block;margin:5px 0}

@media(max-width:700px){
  :root{--cloud-size:min(43vw,245px)}
  header{min-height:67vh;padding:24px 52px 0}
  h1{font-size:30px}
  .menu{right:17px;top:21px}
  #constellation{width:96vw}
  .song{height:39vh;min-height:245px}
  .song.left .cloud{margin-right:14px}
  .song.right .cloud{margin-left:14px}
  .cloud{min-height:120px;padding:20px 14px}
  .title{font-size:20px}
  .lang{font-size:10px;margin-top:7px}
  .connector{width:14px}
  dialog{padding:30px 22px}
  .dtitle{font-size:34px}
}
.detail-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 260px;
  gap:30px;
  align-items:start;
}

.detail-text{
  min-width:0;
}

.detail-cover{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding-top:90px;
}

.detail-cover .cover{
  width:260px;
  height:260px;
  object-fit:cover;
  display:block;
}

@media(max-width:700px){
  .detail-layout{
    grid-template-columns:1fr;
    gap:25px;
  }

  .detail-cover{
    padding-top:0;
    justify-content:center;
  }

  .detail-cover .cover{
    width:min(220px,70vw);
    height:min(220px,70vw);
  }
}
.dtitle {
  color: #99884c;
}

.label {
  color: #dfded8;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .10em;
  margin-bottom: 8px;
}

.muted {
  color: #aaa8a0;
}
.dtitle {
  color:#f0dfb0;
  margin:0 0 25px 0;
  text-align:left;
}
footer{
  position:fixed;
  bottom:20px;
  left:30px;
  width:auto;
  text-align:left;
  font-size:14px;
  color:rgba(236, 235, 232, 0.65);
  letter-spacing:.04em;
  z-index:5;
  pointer-events:none;
}
.process-links{
  font-size:14px;
  line-height:1.45;
}
.scroll-hint{
  position:fixed;
  right:720px;
  bottom:40px;
  z-index:5;
  font-size:36px;
  color:rgba(241, 240, 236, 0.8);
  animation:scrollHint 2s ease-in-out infinite;
  pointer-events:none;
}
@keyframes scrollHint{
  0%,100%{transform:translateY(0);opacity:.5}
  50%{transform:translateY(6px);opacity:1}
}

body.scrolled .scroll-hint{
  opacity:0;
  transition:opacity .4s ease;
}
.menu{
  position:fixed !important;
  left:4vw !important;
  right:auto !important;
  top:28px !important;
}
.listen-links a{
  display:block;
  margin:5px 0;
}
.status-links {
  margin-top: 8px;
}
a {
  color: #9ab0d1;
}

a:visited {
  color: #9e92aa;
}

a:hover {
  color: #9c9fa1;
}
.copyright {
  margin-top: 18px;
  font-size: 0.95em;
  opacity: 0.55;
  font-style: italic;
}
.visit-counter {
  position: fixed;
  right: 30px;
  bottom: 20px;
  text-align: right;
  color: rgba(236, 235, 232, 0.65);
  letter-spacing: .04em;
  line-height: 1.45;
  z-index: 5;
  pointer-events: none;
}

.visit-note {
  display: block;
  margin-top: 4px;
  font-size: .78em;
  font-style: italic;
  opacity: .78;
}
.footer-credits {
  max-width: 720px;
}
@media (max-width: 900px) {
  footer {
    left: 20px;
    right: 20px;
    bottom: 16px;
  }
  .visit-counter .count {
  font-size: 17px;
  margin-bottom: 4px;
}
.visit-counter .privacy {
  font-size: 12px;
}
}
