/* ==========================================================================
   SOHEILL — immersive artist site
   Design system: near-black world, light entering darkness.
   Type: Instrument Sans (display/body/nav) + IBM Plex Mono (metadata)
   ========================================================================== */

:root{
  /* color world */
  --near-black:#050506;
  --soft-black:#0b0b10;
  --midnight:#10162b;
  --indigo:#29285f;
  --violet:#62519a;
  --aura-orange:#f0a02b;
  --burnt-amber:#c87532;
  --dusty-coral:#b96868;
  --analog-green:#193129;
  --grad-pink:#fbd2e1;
  --grad-blue:#98c2e7;
  --grad-accent:linear-gradient(90deg, var(--grad-pink), var(--grad-blue));
  --cream:#e9e4d8;
  --cream-dim:rgba(233,228,216,0.62);
  --cream-faint:rgba(233,228,216,0.32);
  --muted-gray:#8a8990;
  --line:rgba(233,228,216,0.14);
  --line-soft:rgba(233,228,216,0.08);

  /* type */
  --f-display:'Instrument Sans', 'Neue Montreal', -apple-system, sans-serif;
  --f-mono:'IBM Plex Mono', ui-monospace, monospace;

  --display-size:clamp(4.5rem, 11vw, 11rem);
  --section-size:clamp(2.4rem, 6vw, 5rem);
  --body-size:clamp(1rem, 1.1vw, 1.19rem);
  --nav-size:12px;
  --meta-size:10.5px;

  /* motion */
  --ease:cubic-bezier(.16,.8,.24,1);
  --dur-slow:1.4s;
  --dur-med:.7s;
  --dur-fast:.35s;

  --container:1360px;
  --gutter:clamp(20px, 5vw, 72px);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--near-black);
  color:var(--cream);
  font-family:var(--f-display);
  font-weight:300;
  font-size:var(--body-size);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,p{ margin:0; }
button{ font-family:inherit; background:none; border:none; color:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }

::selection{ background:var(--aura-orange); color:var(--near-black); }

/* focus visibility — kept even inside the dark editorial world */
a:focus-visible, button:focus-visible{
  outline:1px solid var(--aura-orange);
  outline-offset:4px;
}

.container{ max-width:var(--container); margin:0 auto; padding:0 var(--gutter); }
.sr-only{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

/* mono / label utility --------------------------------------------------- */
.mono{
  font-family:var(--f-mono);
  font-size:var(--meta-size);
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--cream-dim);
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:clamp(28px,5vw,56px);
}
.eyebrow .num{ color:var(--aura-orange); }
.eyebrow::after{
  content:'';
  flex:1;
  height:1px;
  background:var(--line);
}

/* ==========================================================================
   GRAIN + ATMOSPHERE
   ========================================================================== */
.grain{
  position:fixed; inset:0;
  z-index:60;
  pointer-events:none;
  opacity:.05;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size:180px 180px;
}

.vignette{
  position:fixed; inset:0;
  z-index:4;
  pointer-events:none;
  background:radial-gradient(120% 90% at 50% 30%, transparent 55%, rgba(5,5,6,.4) 100%);
}

#particles{
  position:fixed; inset:0;
  z-index:3;
  pointer-events:none;
}

/* cosmos — a quiet sense of moving through space behind everything.
   Two tall canvases, each far taller than the viewport, drawn once with
   distinct colour bands and star density along their height, then
   translated on scroll slower than the page — so scrolling the site
   genuinely drifts through different parts of the sky rather than just
   looping the same patch in place. */
#cosmos-nebula{
  position:fixed; left:0; top:0; width:100vw;
  z-index:0;
  pointer-events:none;
  will-change:transform;
}
#cosmos-stars{
  position:fixed; left:0; top:0; width:100vw;
  z-index:1;
  pointer-events:none;
  will-change:transform;
}

/* custom cursor — the logo's mark, not a name -----------------------------
   Replaces the system cursor with the SOHEILL triangle mark at a tiny
   scale, brightening and drifting slightly larger over anything meant
   to be looked at. */
.cursor-dot{
  position:fixed;
  top:0; left:0;
  width:20px; height:25.5px;
  background-image:url('assets/logo/soheill-mark.png');
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  pointer-events:none;
  z-index:200;
  transform:translate(-50%,-50%);
  transition:width .3s var(--ease), height .3s var(--ease), opacity .3s ease, filter .3s ease;
  opacity:0;
  filter:brightness(0) invert(1) drop-shadow(0 0 6px rgba(240,160,43,.55));
  will-change:transform;
}
.cursor-dot.is-active{ opacity:.85; }
.cursor-dot.is-view{ width:34px; height:43.4px; opacity:1; filter:brightness(0) invert(1) drop-shadow(0 0 14px rgba(240,160,43,.75)); }
@media (hover:none), (pointer:coarse){ .cursor-dot{ display:none; } }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav-backdrop{
  position:fixed; top:0; left:0; right:0;
  height:80px;
  z-index:90;
  pointer-events:none;
  background:linear-gradient(to bottom, rgba(5,5,6,.45), transparent);
  opacity:0;
  transition:opacity .5s ease;
}
.nav-backdrop.is-visible{ opacity:1; }

.site-nav{
  position:fixed; top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px var(--gutter);
}
.nav-mark{ display:flex; align-items:center; gap:10px; }
.nav-mark img{ height:clamp(26px,3vw,34px); width:auto; filter:brightness(0) invert(1); opacity:.95; }
.nav-mark .wordmark-fallback{
  font-family:var(--f-mono);
  font-size:13px;
  letter-spacing:.32em;
  color:var(--cream);
}
.nav-links{ display:flex; align-items:center; gap:clamp(14px,2.2vw,32px); }
.nav-links a{
  font-family:var(--f-mono);
  font-size:var(--nav-size);
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--cream-dim);
  transition:color var(--dur-fast) ease;
  padding:4px 2px;
}
.nav-links a:hover{ color:var(--cream); }
.nav-toggle{ display:none; }
html.nav-open{ overflow:hidden; }

@media (max-width: 720px){
  .nav-links{
    position:fixed; inset:0;
    width:100%; height:100%;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:30px;
    padding:0;
    background:rgba(5,5,6,.97);
    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);
    opacity:0;
    visibility:hidden;
    transform:scale(.98);
    transition:opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
    z-index:105;
  }
  .nav-links[data-open="true"]{
    opacity:1;
    visibility:visible;
    transform:scale(1);
    transition:opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility 0s linear 0s;
  }
  .nav-links a{ font-size:20px; letter-spacing:.16em; }
  .nav-toggle{
    display:block;
    width:22px; height:14px;
    position:relative;
    z-index:110;
  }
  .nav-toggle span, .nav-toggle::before, .nav-toggle::after{
    content:'';
    position:absolute; left:0; right:0; height:1px;
    background:var(--cream);
    transition:transform var(--dur-fast) ease, opacity var(--dur-fast) ease, top var(--dur-fast) ease;
  }
  .nav-toggle::before{ top:0; }
  .nav-toggle span{ top:50%; transform:translateY(-50%); }
  .nav-toggle::after{ bottom:0; }
  .nav-toggle[aria-expanded="true"] span{ opacity:0; }
  .nav-toggle[aria-expanded="true"]::before{ top:50%; transform:translateY(-50%) rotate(45deg); }
  .nav-toggle[aria-expanded="true"]::after{ top:50%; bottom:auto; transform:translateY(-50%) rotate(-45deg); }
}

/* sound control ------------------------------------------------------------ */
.sound-control{
  position:fixed;
  right:var(--gutter);
  bottom:28px;
  z-index:100;
  display:flex;
  align-items:center;
  gap:10px;
}
.sound-btn{
  display:flex; align-items:center; gap:9px;
  font-family:var(--f-mono);
  font-size:10px;
  letter-spacing:.18em;
  color:var(--cream-dim);
  padding:9px 14px;
  border:1px solid var(--line);
  border-radius:100px;
  background:rgba(5,5,6,.4);
  backdrop-filter:blur(6px);
  transition:border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.sound-btn:hover{ color:var(--cream); border-color:var(--cream-faint); }
.sound-bars{ display:flex; align-items:flex-end; gap:2px; height:10px; }
.sound-bars span{
  width:2px; background:var(--aura-orange);
  height:3px;
  transition:height .3s ease;
}
.sound-control.is-playing .sound-bars span:nth-child(1){ animation:bar 1.1s ease-in-out infinite; }
.sound-control.is-playing .sound-bars span:nth-child(2){ animation:bar 1.1s ease-in-out infinite .15s; }
.sound-control.is-playing .sound-bars span:nth-child(3){ animation:bar 1.1s ease-in-out infinite .3s; }
@keyframes bar{ 0%,100%{ height:3px; } 50%{ height:10px; } }

.sound-panel{
  position:fixed;
  right:var(--gutter);
  bottom:76px;
  width:min(320px, calc(100vw - 2 * var(--gutter)));
  z-index:99;
  border:1px solid var(--line);
  background:rgba(11,11,16,.86);
  backdrop-filter:blur(10px);
  padding:14px;
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity var(--dur-fast) ease, transform var(--dur-fast) ease, visibility var(--dur-fast);
}
.sound-panel.is-open{ opacity:1; visibility:visible; transform:translateY(0); }
.sound-panel iframe{ width:100%; border:0; border-radius:2px; display:block; }
.sound-panel p{ font-family:var(--f-mono); font-size:9.5px; letter-spacing:.12em; color:var(--muted-gray); margin-top:10px; text-transform:uppercase; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:rgba(5,5,6,.9);
}
.hero-media{
  position:absolute; inset:0;
  z-index:0;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position:50% 20%;
  filter:grayscale(.15) contrast(1.08) brightness(.62);
  transform:scale(1.06) translateY(15px);
  opacity:.9;
  will-change:transform;
}
.hero-media::after{
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(60% 50% at 72% 30%, rgba(240,160,43,.22), transparent 60%),
    linear-gradient(180deg, rgba(5,5,6,.15) 0%, rgba(5,5,6,.35) 55%, rgba(5,5,6,.92) 100%),
    linear-gradient(100deg, rgba(16,22,43,.55), rgba(41,40,95,.25) 45%, transparent 75%);
}
.hero-inner{
  position:relative; z-index:3;
  width:100%;
  padding:0 var(--gutter) clamp(64px,10vh,120px);
  display:flex;
  flex-direction:column;
  gap:clamp(20px,3vh,36px);
}
.hero-line{
  font-family:var(--f-display);
  font-weight:275;
  font-size:var(--display-size);
  line-height:.94;
  letter-spacing:-.01em;
  color:var(--cream);
  max-width:16ch;
}
.hero-line em{
  font-style:italic;
  font-weight:300;
  color:var(--grad-blue);
}
@supports (background-clip:text) or (-webkit-background-clip:text){
  .hero-line em{
    background:var(--grad-accent);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
}
.hero-foot{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
}
.hero-meta{ display:flex; gap:clamp(24px,4vw,56px); flex-wrap:wrap; }
.hero-meta div{ display:flex; flex-direction:column; gap:6px; }
.hero-meta span.mono{ color:var(--muted-gray); }
.hero-meta strong{ font-family:var(--f-display); font-weight:400; font-size:15px; color:var(--cream); }
.hero-meta strong a{ border-bottom:1px solid transparent; border-image:var(--grad-accent) 1; padding-bottom:2px; transition:opacity var(--dur-fast) ease; }
.hero-meta strong a:hover{ opacity:.7; }
.hero-scroll{
  font-family:var(--f-mono);
  font-size:9px; letter-spacing:.2em;
  color:var(--cream-dim);
  writing-mode:vertical-rl;
  display:flex; align-items:center; gap:10px;
}
.hero-scroll::after{
  content:'';
  width:1px; height:34px;
  background:linear-gradient(var(--aura-orange), transparent);
}

/* ==========================================================================
   SECTION SCAFFOLD
   ========================================================================== */
section{ position:relative; z-index:5; }
.section-pad{ padding:clamp(90px,14vh,180px) 0; }
.section-title{
  font-family:var(--f-display);
  font-weight:275;
  font-size:var(--section-size);
  line-height:1.02;
  letter-spacing:-.01em;
  max-width:14ch;
}
.section-kicker{
  display:block;
  font-family:var(--f-mono);
  font-size:var(--meta-size);
  letter-spacing:.2em;
  color:var(--aura-orange);
  margin-bottom:18px;
}
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ==========================================================================
   MUSIC
   ========================================================================== */
.music{ background:rgba(11,11,16,.8); border-top:1px solid var(--line-soft); }
.music-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:clamp(56px,9vh,110px); }
.music-head .note{ max-width:34ch; color:var(--cream-dim); font-size:15px; }

.release{
  display:grid;
  grid-template-columns:1fr;
  border-top:1px solid var(--line);
  padding:clamp(36px,6vh,64px) 0;
  gap:clamp(24px,4vw,48px);
  align-items:center;
}
.release:last-child{ border-bottom:1px solid var(--line); }
.release-art{
  position:relative;
  overflow:hidden;
  aspect-ratio:1/1;
  background:var(--near-black);
}
.release-art img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(.3) brightness(.72) contrast(1.05);
  transform:scale(1.02);
  transition:filter var(--dur-med) ease, transform 1.4s var(--ease);
}
.release:hover .release-art img{ filter:grayscale(0) brightness(.9) contrast(1.05); transform:scale(1.07); }
.release-art .ring{
  position:absolute; right:14px; bottom:14px;
  width:38px; height:38px;
  border:1px solid var(--cream-faint);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity var(--dur-fast) ease;
}
.release:hover .release-art .ring{ opacity:1; }
.release-art .ring::before{ content:''; width:5px; height:5px; border-radius:50%; background:var(--aura-orange); }

.release-body{ display:flex; flex-direction:column; gap:16px; }
.release-tag{ display:flex; gap:14px; align-items:center; }
.release-title{ font-family:var(--f-display); font-weight:300; font-size:clamp(1.8rem,3.4vw,3rem); line-height:1.05; }
.release-desc{ color:var(--cream-dim); max-width:46ch; font-size:15px; }
.release-links{ display:flex; gap:22px; flex-wrap:wrap; margin-top:6px; }
.release-links a{
  font-family:var(--f-mono); font-size:11px; letter-spacing:.14em;
  color:var(--cream); border-bottom:1px solid var(--line);
  padding-bottom:3px; transition:border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.release-links a:hover{ border-color:var(--aura-orange); color:var(--aura-orange); }

/* alternating rhythm */
.release.is-wide{ grid-template-columns:1fr; }
.release.is-wide .release-art{ aspect-ratio:21/9; }
@media (min-width:860px){
  .release{ grid-template-columns:.62fr 1fr; }
  .release.is-flip{ grid-template-columns:1fr .62fr; }
  .release.is-flip .release-art{ order:2; }
  .release.is-wide{ grid-template-columns:1fr; }
}

.release.progress .release-art{ display:flex; align-items:center; justify-content:center; }
.release.progress .release-art .placeholder{
  font-family:var(--f-mono); font-size:10px; letter-spacing:.2em; color:var(--muted-gray);
  text-align:center; padding:20px;
}

/* ==========================================================================
   LISTEN — full artist embed
   ========================================================================== */
.listen{ background:rgba(5,5,6,.8); }
.listen-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:clamp(40px,6vh,72px); }
.listen-head .note{ max-width:34ch; color:var(--cream-dim); font-size:15px; }
.listen-embed{
  border:1px solid var(--line);
  background:var(--soft-black);
  padding:clamp(4px,1vw,10px);
}
.listen-embed iframe{ width:100%; border:0; border-radius:2px; display:block; }

/* ==========================================================================
   WATCH — featured video + carousel
   ========================================================================== */
.watch{ background:rgba(11,11,16,.8); border-top:1px solid var(--line-soft); }
.watch-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:clamp(40px,6vh,72px); }
.watch-head .note{ max-width:34ch; color:var(--cream-dim); font-size:15px; }
.watch-feature{
  position:relative;
  aspect-ratio:16/9;
  background:var(--near-black);
  border:1px solid var(--line);
  margin-bottom:clamp(28px,4vh,48px);
}
.watch-feature iframe{ width:100%; height:100%; border:0; display:block; }
.watch-feature-play{
  position:absolute; inset:0;
  width:100%; height:100%;
  padding:0;
  cursor:pointer;
}
.watch-feature-play img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(.1) contrast(1.05) brightness(.82);
  transition:filter var(--dur-med) var(--ease), transform var(--dur-slow) var(--ease);
}
.watch-feature-play:hover img{ filter:grayscale(0) contrast(1.05) brightness(.92); transform:scale(1.015); }
.watch-feature-play::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(5,5,6,.05), rgba(5,5,6,.35));
}
.play-ring{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:clamp(56px,7vw,76px); height:clamp(56px,7vw,76px);
  border-radius:50%;
  border:1px solid var(--cream-faint);
  background:rgba(5,5,6,.4);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  color:var(--cream);
  transition:border-color var(--dur-fast) ease, background var(--dur-fast) ease, transform var(--dur-fast) var(--ease);
  z-index:1;
}
.play-ring svg{ margin-left:3px; }
.watch-feature-play:hover .play-ring{ border-color:var(--aura-orange); background:rgba(5,5,6,.55); transform:translate(-50%,-50%) scale(1.08); }
.watch-feature-label{ display:flex; justify-content:space-between; gap:16px; margin-bottom:14px; flex-wrap:wrap; }
.watch-feature-label span:last-child{ color:var(--muted-gray); }

.watch-carousel-head{ display:flex; justify-content:space-between; align-items:center; gap:16px; margin-bottom:16px; }
.watch-carousel-nav{ display:flex; gap:10px; }
.watch-carousel-nav button{
  width:32px; height:32px;
  border:1px solid var(--line);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--cream-dim);
  transition:border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.watch-carousel-nav button:hover{ color:var(--cream); border-color:var(--cream-faint); }
.watch-carousel{
  display:flex;
  gap:clamp(14px,2vw,22px);
  overflow-x:auto;
  scroll-snap-type:x proximity;
  padding-bottom:8px;
  scrollbar-width:none;
}
.watch-carousel::-webkit-scrollbar{ display:none; }
.watch-card{
  flex:0 0 clamp(220px,26vw,300px);
  scroll-snap-align:start;
  display:flex; flex-direction:column; gap:10px;
}
.watch-card .thumb{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:var(--near-black);
}
.watch-card .thumb img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(.4) brightness(.8) contrast(1.05);
  transition:filter var(--dur-fast) ease, transform 1.2s var(--ease);
}
.watch-card:hover .thumb img{ filter:grayscale(0) brightness(1) contrast(1.05); transform:scale(1.04); }
.watch-card .thumb::after{
  content:'';
  position:absolute; inset:0;
  border:1px solid var(--line-soft);
}
.watch-card .play{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--cream-faint);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity var(--dur-fast) ease;
}
.watch-card:hover .play{ opacity:1; }
.watch-card .play::before{ content:''; width:0; height:0; margin-left:2px; border-style:solid; border-width:5px 0 5px 8px; border-color:transparent transparent transparent var(--cream); }
.watch-card .title{ font-size:13.5px; line-height:1.4; color:var(--cream-dim); }
.watch-card:hover .title{ color:var(--cream); }

/* ==========================================================================
   VISUAL WORLD — irregular editorial grid
   ========================================================================== */
.visuals{ background:rgba(5,5,6,.8); }
.visual-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:clamp(10px,1.4vw,22px);
}
.vimg{
  position:relative;
  overflow:hidden;
  background:var(--soft-black);
}
.vimg img{
  width:100%; height:100%; object-fit:cover;
  filter:saturate(.86) contrast(1.04) brightness(.85);
  transition:transform 1.6s var(--ease), filter var(--dur-med) ease;
}
.vimg:hover img{ transform:scale(1.045); filter:saturate(1) contrast(1.04) brightness(.98); }
.vimg .cap{
  position:absolute; left:14px; bottom:12px;
  font-family:var(--f-mono); font-size:9.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--cream);
  opacity:0; transform:translateY(6px);
  transition:opacity var(--dur-fast) ease, transform var(--dur-fast) ease;
  text-shadow:0 2px 12px rgba(0,0,0,.7);
}
.vimg:hover .cap{ opacity:.85; transform:translateY(0); }

.vimg.c-3{ grid-column:span 3; aspect-ratio:3/4; }
.vimg.c-4{ grid-column:span 4; aspect-ratio:4/5; }
.vimg.c-5{ grid-column:span 5; aspect-ratio:5/4; }
.vimg.c-6{ grid-column:span 6; aspect-ratio:6/5; }
.vimg.c-7{ grid-column:span 7; aspect-ratio:16/10; }
.vimg.c-8{ grid-column:span 8; aspect-ratio:16/8; }
.vimg.c-12{ grid-column:span 12; aspect-ratio:21/8; }
.vimg.is-portrait{ aspect-ratio:3/4; }
.vimg.is-portrait img{ object-position:50% 12%; }
.vimg.push-2{ margin-top:clamp(30px,5vw,90px); }
.vimg.push-4{ margin-top:clamp(60px,8vw,140px); }

@media (max-width:900px){
  .visual-grid{ grid-template-columns:repeat(6,1fr); }
  .vimg.c-3{ grid-column:span 3; }
  .vimg.c-4{ grid-column:span 6; }
  .vimg.c-5{ grid-column:span 6; }
  .vimg.c-6{ grid-column:span 6; }
  .vimg.c-7{ grid-column:span 6; }
  .vimg.c-8{ grid-column:span 6; }
  .vimg.push-2, .vimg.push-4{ margin-top:0; }
}

/* subscribe (blended into Visuals) ------------------------------------------ */
.subscribe-block{
  margin-top:clamp(64px,9vh,110px);
  padding-top:clamp(48px,7vh,80px);
  border-top:1px solid var(--line);
  display:grid;
  gap:clamp(28px,4vw,56px);
  align-items:end;
}
@media (min-width:820px){
  .subscribe-block{ grid-template-columns:1.1fr .9fr; align-items:center; }
}
.subscribe-head{ display:flex; flex-direction:column; gap:14px; }
.subscribe-title{
  font-family:var(--f-display);
  font-weight:275;
  font-size:clamp(1.5rem,2.6vw,2.1rem);
  line-height:1.2;
  color:var(--cream);
  max-width:26ch;
}
.subscribe-form{ width:100%; }
.subscribe-row{
  display:flex;
  align-items:stretch;
  gap:0;
  border-bottom:1px solid var(--line);
  padding-bottom:4px;
  transition:border-color var(--dur-fast) ease;
}
.subscribe-row:focus-within{ border-image:var(--grad-accent) 1; border-bottom:1px solid transparent; }
.subscribe-input{
  flex:1;
  min-width:0;
  background:transparent;
  border:0;
  outline:0;
  font-family:var(--f-display);
  font-size:16px;
  color:var(--cream);
  padding:10px 4px;
}
.subscribe-input::placeholder{ color:var(--muted-gray); }
.subscribe-submit{
  flex-shrink:0;
  background:transparent;
  border:0;
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--cream);
  padding:10px 4px 10px 18px;
  cursor:pointer;
  position:relative;
}
.subscribe-submit::after{
  content:'';
  position:absolute; left:18px; right:0; bottom:0;
  height:1px;
  background:var(--grad-accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform var(--dur-fast) ease;
}
.subscribe-submit:hover::after, .subscribe-submit:focus-visible::after{ transform:scaleX(1); }
.subscribe-note{
  margin-top:12px;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted-gray);
}
@media (max-width:520px){
  .subscribe-row{ flex-wrap:wrap; gap:10px; border-bottom:0; padding-bottom:0; }
  .subscribe-input{ border-bottom:1px solid var(--line); width:100%; }
  .subscribe-submit{ padding-left:4px; align-self:flex-start; }
  .subscribe-submit::after{ left:4px; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{ background:rgba(11,11,16,.8); border-top:1px solid var(--line-soft); }
.about-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:clamp(40px,6vw,90px);
  align-items:start;
}
@media (min-width:940px){ .about-grid{ grid-template-columns:.85fr 1fr; } }
.about-media{ position:relative; }
.about-media img{ width:100%; filter:grayscale(.25) contrast(1.05) brightness(.85); aspect-ratio:4/5; object-fit:cover; }
.about-media .ring-motif{
  position:absolute; width:120px; height:120px;
  border-radius:50%; opacity:.55;
  top:-40px; right:-40px;
  pointer-events:none;
  padding:1px;
  background:linear-gradient(135deg, var(--grad-pink), var(--grad-blue));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite:exclude;
}
.about-copy p{ color:var(--cream-dim); font-size:clamp(1rem,1.3vw,1.22rem); line-height:1.75; margin-bottom:1.4em; max-width:56ch; }
.about-copy p:first-of-type{ color:var(--cream); font-weight:325; font-size:clamp(1.15rem,1.6vw,1.5rem); line-height:1.55; }
.about-facts{ display:flex; flex-wrap:wrap; gap:clamp(28px,4vw,56px); margin-top:44px; padding-top:32px; border-top:1px solid var(--line); }
.about-facts div{ display:flex; flex-direction:column; gap:8px; }
.about-facts strong{ font-family:var(--f-display); font-weight:400; font-size:16px; }

/* ==========================================================================
   ATMOSPHERIC BREAK
   ========================================================================== */
.breathe{
  min-height:88svh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background:var(--near-black);
  overflow:hidden;
}
.breathe-media{ position:absolute; inset:0; }
.breathe-media img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(.5) brightness(.34) contrast(1.1);
  opacity:.75;
}
.breathe-media::after{
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(60% 50% at 50% 40%, rgba(98,81,154,.28), transparent 65%), rgba(5,5,6,.45);
}
.breathe-glow{
  position:absolute; left:50%; top:46%;
  width:340px; height:340px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:radial-gradient(circle, rgba(240,160,43,.35), transparent 70%);
  filter:blur(20px);
  animation:breathe 7s ease-in-out infinite;
}
@keyframes breathe{ 0%,100%{ opacity:.5; transform:translate(-50%,-50%) scale(.9); } 50%{ opacity:.9; transform:translate(-50%,-50%) scale(1.08); } }
.breathe-text{
  position:relative; z-index:2;
  text-align:center;
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--cream);
  max-width:20ch;
  line-height:2.2;
}

/* ==========================================================================
   STORE
   ========================================================================== */
.store{ background:rgba(11,11,16,.8); border-top:1px solid var(--line-soft); }
.store-grid{ display:grid; grid-template-columns:1fr; gap:clamp(40px,6vw,70px); }
@media (min-width:860px){ .store-grid{ grid-template-columns:1.1fr .9fr; } }
.store-links{ display:flex; flex-direction:column; }
.store-item{
  display:flex; align-items:center; gap:clamp(16px,2.6vw,26px);
  padding:18px 0; border-top:1px solid var(--line);
  transition:color var(--dur-fast) ease, padding-left var(--dur-fast) ease;
}
.store-item:last-child{ border-bottom:1px solid var(--line); }
.store-item:hover{ color:var(--aura-orange); padding-left:10px; }
.store-thumb{
  flex:none;
  width:clamp(64px,12vw,175px); height:clamp(64px,12vw,175px);
  overflow:hidden;
  background:var(--near-black);
  filter:grayscale(.25) contrast(1.05) brightness(.94);
  transition:filter var(--dur-fast) ease;
}
.store-item:hover .store-thumb{ filter:grayscale(0) contrast(1.02) brightness(1); }
.store-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.store-item-name{
  flex:1;
  font-family:var(--f-display); font-size:clamp(1.05rem,1.8vw,1.4rem); font-weight:300;
}
.store-item .mono{ color:var(--muted-gray); flex:none; }
.store-note p{ color:var(--cream-dim); font-size:15px; max-width:44ch; margin-bottom:1.3em; }
.store-note .mono{ display:block; margin-top:26px; }

footer.site-foot{
  position:relative; z-index:5;
  padding:32px var(--gutter) 48px;
  display:flex; flex-wrap:wrap; gap:14px;
  align-items:center; justify-content:space-between;
  background:rgba(17,17,21,.97);
}
footer.site-foot .mono{ color:var(--muted-gray); }
footer.site-foot .foot-links{ display:flex; gap:clamp(16px,3vw,32px); flex-wrap:wrap; }
footer.site-foot .foot-links a{ font-family:var(--f-mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--cream-dim); transition:color var(--dur-fast) ease; }
footer.site-foot .foot-links a:hover{ color:var(--aura-orange); }

/* general responsive tune */
@media (max-width:600px){
  .hero-inner{ padding-bottom:56px; }
  .hero-line{ max-width:11ch; }
  .sound-control{ bottom:20px; }
  .sound-panel{ bottom:68px; }
  .nav-mark img{ height:24px; }
}
