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

:root {
  --bg: #070912;
  --bg-soft: #0e1220;
  --surface: rgba(18, 24, 42, 0.78);
  --surface-solid: #12182a;
  --text: #f3f6ff;
  --muted: #a7b0c9;
  --line: rgba(255,255,255,.12);
  --cyan: #75ddff;
  --blue: #6388ff;
  --violet: #a478ff;
  --gold: #e6c67a;
  --shadow: 0 24px 80px rgba(0,0,0,.34);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

body.light {
  --bg: #eef4fb;
  --bg-soft: #f8fbff;
  --surface: rgba(255,255,255,.76);
  --surface-solid: #ffffff;
  --text: #101627;
  --muted: #5f6b82;
  --line: rgba(20,35,65,.12);
  --shadow: 0 24px 80px rgba(62, 85, 125, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 10%, rgba(99,136,255,.15), transparent 28rem),
    radial-gradient(circle at 10% 35%, rgba(164,120,255,.10), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  transition: background .35s ease, color .35s ease;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  z-index: 20;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.75) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(117,221,255,.45) 0 1px, transparent 1.5px);
  background-size: 140px 140px, 230px 230px;
  background-position: 15px 40px, 70px 90px;
  opacity: .25;
  z-index: -1;
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 34px; height: 34px; filter: drop-shadow(0 0 14px rgba(117,221,255,.4)); }
.brand strong { display: block; font-family: var(--serif); font-size: 1.18rem; letter-spacing: .02em; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .17em; margin-top: 6px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; transition: color .2s ease; }
.nav a:hover { color: var(--text); }
.theme-toggle, .nav-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}
.theme-toggle {
  width: 39px; height: 39px; border-radius: 50%;
  display: grid; place-items: center;
}
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; padding: 12px; }
.nav-toggle span { display: block; height: 1px; background: currentColor; margin: 5px 0; }

.hero {
  min-height: 760px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 40px;
  position: relative;
  padding: 50px 0 100px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}
h1, h2, h3, blockquote { font-family: var(--serif); }
h1 {
  font-size: clamp(4.2rem, 8vw, 7.6rem);
  line-height: .84;
  letter-spacing: -.045em;
  margin: 0;
  max-width: 720px;
}
h1 em { display: block; color: transparent; -webkit-text-stroke: 1px rgba(167,211,255,.9); font-weight: 500; }
.hero-intro { max-width: 560px; color: var(--muted); font-size: 1.05rem; margin: 30px 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 49px; padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .68rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #07101d; background: linear-gradient(135deg, #d9f6ff, var(--cyan)); box-shadow: 0 12px 30px rgba(117,221,255,.18); }
.button-ghost { border-color: var(--line); background: var(--surface); }
.button-small { min-height: 42px; padding-inline: 17px; border-color: var(--line); background: rgba(255,255,255,.06); }

.hero-art {
  height: 610px;
  position: relative;
  border-radius: 50% 50% 46% 54% / 42% 55% 45% 58%;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(115,91,192,.15), transparent 50%),
    radial-gradient(circle at 55% 30%, #283b6e 0, #11172b 35%, #080b15 74%);
  box-shadow: inset 0 0 100px rgba(117,221,255,.08), 0 0 0 1px rgba(255,255,255,.06), var(--shadow);
}
body.light .hero-art { background: radial-gradient(circle at 55% 30%, #d9e6ff 0, #9fb4dc 40%, #66779c 100%); }
.moon {
  position: absolute; width: 210px; height: 210px; border-radius: 50%; top: 60px; right: 70px;
  background: radial-gradient(circle at 38% 32%, #fff, #d7ecff 55%, #83a6d3 100%);
  box-shadow: 0 0 75px rgba(141,202,255,.4);
}
.crystal-cluster { position: absolute; top: 145px; left: 100px; width: 145px; height: 210px; filter: drop-shadow(0 0 24px rgba(117,221,255,.55)); }
.crystal {
  position: absolute; bottom: 0;
  clip-path: polygon(50% 0, 100% 36%, 76% 100%, 26% 100%, 0 36%);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(87,204,255,.52) 42%, rgba(126,72,255,.8));
}
.crystal-a { width: 76px; height: 190px; left: 34px; }
.crystal-b { width: 54px; height: 135px; left: 0; transform: rotate(-18deg); }
.crystal-c { width: 48px; height: 120px; right: 0; transform: rotate(19deg); }
.mountain { position: absolute; left: -8%; right: -8%; bottom: -3%; clip-path: polygon(0 100%, 12% 57%, 24% 77%, 42% 28%, 60% 76%, 74% 48%, 100% 100%); }
.mountain-back { height: 58%; background: #18223d; opacity: .75; }
.mountain-front { height: 40%; background: linear-gradient(to bottom, #10182c, #070a12); }
.hero-silhouette { position: absolute; bottom: 18%; right: 28%; width: 100px; height: 170px; z-index: 2; }
.traveler { position: absolute; width: 45px; height: 105px; bottom: 0; left: 30px; background: #03050a; border-radius: 45% 45% 12% 12%; clip-path: polygon(38% 0, 63% 0, 73% 17%, 89% 33%, 74% 46%, 82% 100%, 15% 100%, 27% 46%, 11% 33%, 27% 17%); }
.sword { position: absolute; width: 10px; height: 150px; background: linear-gradient(90deg, #1c2230, #9aa7bd, #252b3a); transform: rotate(17deg); right: 4px; top: 6px; border-radius: 5px 5px 0 0; }
.sword::after { content: ""; position: absolute; width: 34px; height: 7px; background: #151924; left: -12px; bottom: 23px; }
.mist { position: absolute; height: 70px; width: 70%; border-radius: 50%; background: rgba(167,216,255,.10); filter: blur(18px); }
.mist-one { left: -10%; bottom: 16%; transform: rotate(-8deg); }
.mist-two { right: -15%; bottom: 28%; transform: rotate(9deg); opacity: .6; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; }
.hero-orb-one { width: 9px; height: 9px; background: var(--cyan); right: 4%; top: 20%; box-shadow: 0 0 28px 8px var(--cyan); }
.hero-orb-two { width: 5px; height: 5px; background: var(--violet); left: 45%; bottom: 20%; box-shadow: 0 0 22px 7px var(--violet); }
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .22em; font-size: .58rem;
}
.scroll-hint i { width: 1px; height: 38px; background: linear-gradient(var(--muted), transparent); }

.section { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 105px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
h2 { font-size: clamp(2.8rem, 5vw, 4.7rem); line-height: .95; letter-spacing: -.035em; margin: 0; }
.text-link, .read-more { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.text-link span, .read-more span { color: var(--cyan); margin-left: 6px; }

.story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.story-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: transform .3s ease, border-color .3s ease;
}
.story-card:hover { transform: translateY(-6px); border-color: rgba(117,221,255,.35); }
.story-card-featured { grid-row: span 2; }
.card-image { height: 245px; position: relative; overflow: hidden; background: #131a2b; }
.story-card-featured .card-image { height: 430px; }
.card-number { position: absolute; top: 17px; left: 19px; font-family: var(--serif); font-size: 1.15rem; color: rgba(255,255,255,.8); z-index: 4; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 2.05rem; line-height: 1.02; margin: 10px 0 14px; }
.card-body p { color: var(--muted); font-size: .9rem; margin: 0 0 21px; }
.meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .14em; }
.meta span { color: var(--cyan); }

.image-city { background: radial-gradient(circle at 65% 25%, #764f9d, #1f2544 42%, #090c15 80%); }
.city-moon { position: absolute; width: 130px; height: 130px; border-radius: 50%; right: 12%; top: 13%; background: #f4efff; box-shadow: 0 0 40px rgba(212,181,255,.42); }
.city-spires { position: absolute; inset: 45% 0 0; background: #070911; clip-path: polygon(0 100%,0 70%,7% 70%,9% 35%,13% 35%,15% 75%,21% 75%,24% 50%,30% 50%,32% 15%,35% 15%,38% 62%,44% 62%,48% 40%,51% 40%,54% 74%,60% 74%,64% 28%,68% 28%,71% 60%,77% 60%,81% 8%,84% 8%,88% 72%,94% 72%,96% 42%,100% 42%,100% 100%); }
.image-summon { background: radial-gradient(circle, #8a7dd4, #27315c 46%, #090d19 85%); }
.summon-ring { position: absolute; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 24px rgba(117,221,255,.4), inset 0 0 30px rgba(164,120,255,.25); }
.summon-wing { position: absolute; width: 90px; height: 150px; top: 48px; background: linear-gradient(#d8f5ff, rgba(120,142,255,.12)); }
.wing-left { left: calc(50% - 90px); clip-path: polygon(100% 0, 92% 100%, 64% 63%, 42% 91%, 44% 53%, 6% 62%, 55% 18%); }
.wing-right { right: calc(50% - 90px); clip-path: polygon(0 0, 8% 100%, 36% 63%, 58% 91%, 56% 53%, 94% 62%, 45% 18%); }
.image-camp { background: linear-gradient(#28335c, #5d5270 53%, #141522 54%); }
.camp-sky::before, .camp-sky::after { content: ""; position: absolute; border-radius: 50%; background: white; box-shadow: 37px 18px 0 -1px white, 92px -8px 0 -1px white, 165px 22px 0 -1px white, 235px 2px 0 -1px white; width: 3px; height: 3px; top: 30px; left: 40px; opacity: .7; }
.camp-tent { position: absolute; bottom: 0; left: 31%; width: 160px; height: 100px; background: #2a2632; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.camp-tent::after { content: ""; position: absolute; left: 46%; bottom: 0; width: 35px; height: 62px; background: #17151d; clip-path: polygon(50% 0,100% 100%,0 100%); }
.camp-fire { position: absolute; bottom: 22px; right: 18%; width: 32px; height: 48px; background: linear-gradient(#fff4ba, #ff8a3d 55%, transparent 56%); clip-path: polygon(50% 0, 70% 36%, 100% 67%, 65% 100%, 33% 91%, 0 67%, 28% 34%); filter: drop-shadow(0 0 12px #ff984c); }

.quote-section {
  width: min(1000px, calc(100% - 48px)); margin: 20px auto;
  text-align: center; padding: 120px 30px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.quote-symbol { color: var(--cyan); margin-bottom: 24px; }
blockquote { font-size: clamp(2.2rem, 4.7vw, 4.3rem); line-height: 1.04; margin: 0 auto; letter-spacing: -.025em; max-width: 950px; }
.quote-credit { color: var(--muted); text-transform: uppercase; letter-spacing: .18em; font-size: .65rem; margin-top: 25px; }

.worlds { display: grid; grid-template-columns: .58fr 1.42fr; gap: 70px; align-items: start; }
.worlds-copy { position: sticky; top: 40px; }
.worlds-copy p:not(.eyebrow) { color: var(--muted); max-width: 420px; }
.world-tabs { border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
.tab-list { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); }
.world-tab { border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); padding: 18px 10px; cursor: pointer; font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; }
.world-tab:last-child { border-right: 0; }
.world-tab.active { color: var(--text); background: rgba(117,221,255,.07); box-shadow: inset 0 -2px var(--cyan); }
.world-panel { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 430px; }
.world-visual { position: relative; overflow: hidden; min-height: 360px; }
.world-midgar { background: radial-gradient(circle at 50% 80%, #6cbba3, #1d3d43 30%, #0a111a 72%); }
.world-ivalice { background: linear-gradient(#8fa8c9, #d9b980 57%, #5f4539 58%); }
.world-lucis { background: linear-gradient(#86b6d8, #b8d1d9 45%, #314b42 46%, #17241f); }
.reactor-glow { position: absolute; width: 110px; height: 110px; left: 50%; bottom: 18%; transform: translateX(-50%); border-radius: 50%; background: #b5ffd9; box-shadow: 0 0 70px #5fffb7; }
.world-skyline { position: absolute; inset: 42% 0 0; background: #070b11; clip-path: polygon(0 100%,0 55%,8% 55%,10% 30%,14% 30%,17% 72%,23% 72%,26% 18%,32% 18%,34% 67%,41% 67%,45% 8%,50% 8%,53% 63%,60% 63%,65% 25%,70% 25%,74% 73%,81% 73%,84% 34%,91% 34%,94% 65%,100% 65%,100% 100%); }
.world-panel-copy { display: flex; flex-direction: column; justify-content: center; padding: 38px; }
.world-index { color: var(--cyan); font-size: .61rem; text-transform: uppercase; letter-spacing: .16em; }
.world-panel-copy h3 { font-size: 2.3rem; line-height: 1; margin: 14px 0; }
.world-panel-copy p { color: var(--muted); font-size: .86rem; margin: 0 0 22px; }

.soundtrack-card {
  display: grid; grid-template-columns: .75fr 1.25fr; min-height: 470px;
  background: linear-gradient(130deg, rgba(35,43,71,.85), rgba(17,21,36,.95));
  border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow);
}
body.light .soundtrack-card { background: linear-gradient(130deg, #dbe9ff, #ffffff); }
.vinyl { width: 360px; height: 360px; border-radius: 50%; align-self: center; justify-self: center; position: relative; background: repeating-radial-gradient(circle, #080a10 0 5px, #161923 6px 7px); box-shadow: 0 24px 55px rgba(0,0,0,.35); animation: spin 18s linear infinite paused; }
.vinyl.playing { animation-play-state: running; }
.vinyl::before { content: ""; position: absolute; inset: 21%; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #95e9ff, #6a73d9 48%, #1b2040); }
.vinyl::after { content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: #e7eefc; top: calc(50% - 9px); left: calc(50% - 9px); }
.vinyl-label { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; color: #f4f7ff; font-family: var(--serif); font-size: 1.4rem; letter-spacing: .18em; }
.soundtrack-copy { padding: 65px; align-self: center; }
.soundtrack-copy > p:not(.eyebrow) { color: var(--muted); max-width: 540px; }
.track { display: grid; grid-template-columns: auto 1fr 1fr; align-items: center; gap: 18px; margin-top: 34px; padding-top: 25px; border-top: 1px solid var(--line); }
.play-button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.06); cursor: pointer; }
.track strong, .track small { display: block; }
.track small { color: var(--muted); font-size: .68rem; margin-top: 4px; }
.waveform { display: flex; gap: 4px; align-items: center; justify-content: end; height: 36px; }
.waveform i { width: 2px; height: 10px; background: var(--cyan); opacity: .65; animation: wave 1s ease-in-out infinite paused; }
.waveform i:nth-child(2n) { height: 25px; animation-delay: -.25s; }
.waveform i:nth-child(3n) { height: 16px; animation-delay: -.5s; }
.waveform.playing i { animation-play-state: running; }

.archive-list { border-top: 1px solid var(--line); }
.archive-item { display: grid; grid-template-columns: 80px 120px 1fr auto; gap: 22px; align-items: center; padding: 26px 8px; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.archive-item:hover { padding-left: 20px; background: rgba(117,221,255,.035); }
.archive-date, .archive-category { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .13em; }
.archive-category { color: var(--cyan); }
.archive-item h3 { font-size: 1.65rem; margin: 0; font-weight: 600; }
.archive-arrow { color: var(--cyan); }

.newsletter {
  width: min(1160px, calc(100% - 48px));
  margin: 55px auto 100px;
  padding: 70px;
  display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(117,221,255,.22);
  background: linear-gradient(135deg, rgba(52,72,120,.42), rgba(19,22,39,.9));
  box-shadow: var(--shadow);
}
body.light .newsletter { background: linear-gradient(135deg, #d8eaff, #f8fbff); }
.newsletter-glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(117,221,255,.14); filter: blur(15px); right: -90px; top: -100px; }
.newsletter-copy p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; position: relative; }
.newsletter-form input { min-width: 0; height: 49px; padding: 0 16px; color: var(--text); background: rgba(255,255,255,.06); border: 1px solid var(--line); outline: none; }
.newsletter-form input:focus { border-color: var(--cyan); }
.form-message { position: absolute; top: 54px; left: 0; color: var(--cyan); font-size: .7rem; margin: 0; }

footer {
  width: min(1240px, calc(100% - 48px)); margin: 0 auto;
  padding: 35px 0 50px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 40px; align-items: center;
  color: var(--muted); font-size: .7rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.footer-brand p { color: var(--muted); margin: 3px 0 0; }
.mini-crystal { width: 24px; height: 36px; clip-path: polygon(50% 0,100% 32%,74% 100%,25% 100%,0 32%); background: linear-gradient(135deg, white, var(--cyan), var(--violet)); }
.legal { margin: 0; }
.back-top { text-transform: uppercase; letter-spacing: .14em; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes wave { 0%,100% { transform: scaleY(.5); opacity: .4; } 50% { transform: scaleY(1.25); opacity: 1; } }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-art { height: 520px; width: min(620px,100%); justify-self: center; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card-featured { grid-row: auto; }
  .story-card-featured .card-image { height: 360px; }
  .worlds { grid-template-columns: 1fr; }
  .worlds-copy { position: static; }
  .soundtrack-card { grid-template-columns: 1fr; padding-top: 55px; }
  .newsletter { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-header, .hero, .section, .quote-section, .newsletter, footer { width: min(100% - 28px, 1160px); }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 82px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface-solid); border: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 10px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  .theme-toggle { margin: 8px 14px; }
  h1 { font-size: clamp(3.8rem, 19vw, 6rem); }
  .hero { min-height: auto; padding-bottom: 110px; }
  .hero-art { height: 430px; }
  .moon { width: 145px; height: 145px; right: 35px; }
  .crystal-cluster { transform: scale(.75); left: 40px; transform-origin: bottom left; }
  .section { padding: 78px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .world-panel { grid-template-columns: 1fr; }
  .world-visual { min-height: 300px; }
  .soundtrack-copy { padding: 38px 25px; }
  .vinyl { width: 260px; height: 260px; }
  .track { grid-template-columns: auto 1fr; }
  .waveform { grid-column: 1 / -1; justify-content: start; }
  .archive-item { grid-template-columns: 60px 1fr auto; }
  .archive-category { display: none; }
  .archive-item h3 { font-size: 1.3rem; }
  .newsletter { padding: 42px 25px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .form-message { top: 110px; }
}
@media (max-width: 460px) {
  .brand small { display: none; }
  .hero-art { height: 360px; }
  .hero-silhouette { transform: scale(.75); transform-origin: bottom; }
  .card-image, .story-card-featured .card-image { height: 270px; }
  .tab-list { grid-template-columns: 1fr; }
  .world-tab { border-right: 0; border-bottom: 1px solid var(--line); }
  .world-tab:last-child { border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
