/* ==========================================================================
   Call Ringtone — Design Seed 2: Light Music Studio
   Original stylesheet. No frameworks, no external resources.
   ========================================================================== */


:root{
  --bg:#f6f8fb;
  --surface:#ffffff;
  --surface-2:#f1f4f8;
  --surface-3:#e4eaf2;
  --line:#d3dbe6;
  --line-soft:#e6ebf1;
  --text:#172033;
  --muted:#536176;
  --dim:#708097;
  --accent:#b85e00;
  --accent-ink:#ffffff;
  --accent-2:#0f766e;
  --danger:#c83f49;
  --radius:14px;
  --radius-sm:9px;
  --radius-lg:20px;
  --wrap:1180px;   /* 1140px of content once the 20px gutters are removed */
  --gutter:20px;
  --shadow:0 12px 30px rgba(24,39,75,.12);
  --shadow-sm:0 4px 14px rgba(24,39,75,.10);
  --font:"Poppins",Arial,Helvetica,sans-serif;
  --player-h:0px;
}

*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;background:var(--bg);color:var(--text);font-family:var(--font);
  font-size:16px;line-height:1.65;font-weight:400;overflow-x:hidden;
  padding-bottom:var(--player-h);
}
img,svg{max-width:100%;height:auto;display:block;}
a{color:var(--accent);text-decoration:none;}
a:hover{text-decoration:underline;}
button,input,select,textarea{font:inherit;color:inherit;}
h1,h2,h3,h4{margin:0 0 .5em;line-height:1.22;font-weight:700;letter-spacing:-.02em;}
h1{font-size:clamp(1.9rem,4.4vw,3.1rem);}
h2{font-size:clamp(1.4rem,2.8vw,2.05rem);}
h3{font-size:clamp(1.1rem,2vw,1.35rem);}
p{margin:0 0 1rem;}
ul,ol{padding-left:1.15rem;}
li{margin-bottom:.4rem;}
hr{border:0;border-top:1px solid var(--line);margin:2.5rem 0;}

:focus-visible{outline:3px solid var(--accent-2);outline-offset:3px;border-radius:4px;}
.skip-link{position:absolute;left:-9999px;top:0;background:var(--accent);color:var(--accent-ink);
  padding:.6rem 1rem;z-index:200;font-weight:600;border-radius:0 0 8px 0;}
.skip-link:focus{left: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;}

.wrap{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 var(--gutter);}
.section{padding:3.4rem 0;}
.section--alt{background:var(--surface);border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);}
.section__head{margin-bottom:1.8rem;}
.section__head p{color:var(--muted);max-width:none;margin-bottom:0;}
.eyebrow{
  display:inline-block;font-size:.7rem;font-weight:600;letter-spacing:.16em;
  text-transform:uppercase;color:var(--accent);margin-bottom:.7rem;
}
.eyebrow--line::before{content:"";display:inline-block;width:26px;height:2px;
  background:var(--accent);vertical-align:middle;margin-right:.6rem;}
.lede{font-size:1.05rem;color:var(--muted);max-width:none;}

/* ---------------------------------------------------------------- buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.72rem 1.25rem;border-radius:var(--radius-sm);border:1px solid transparent;
  font-weight:600;font-size:.92rem;cursor:pointer;background:var(--surface-2);
  color:var(--text);transition:background .18s,border-color .18s,transform .12s;
  text-decoration:none;min-height:44px;
}
.btn:hover{text-decoration:none;background:var(--surface-3);}
.btn:active{transform:translateY(1px);}
.btn--primary{background:var(--accent);color:var(--accent-ink);}
.btn--primary:hover{background:#984d00;}
.btn--ghost{background:transparent;border-color:var(--line);}
.btn--ghost:hover{background:var(--surface-2);border-color:var(--surface-3);}
.btn--sm{padding:.5rem .9rem;font-size:.82rem;min-height:38px;}
.btn--block{width:100%;}
.btn[disabled]{opacity:.45;cursor:not-allowed;}

/* ---------------------------------------------------------------- header */
.site-header{
  position:sticky;top:0;z-index:80;background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);backdrop-filter:blur(10px);
}
.header__inner{display:flex;align-items:center;gap:1rem;height:66px;}
.brand{display:flex;align-items:center;gap:.6rem;flex-shrink:0;text-decoration:none;color:var(--text);}
.brand:hover{text-decoration:none;}
.brand__mark{width:34px;height:34px;flex-shrink:0;}
.brand__name{font-weight:700;font-size:1.06rem;letter-spacing:-.02em;white-space:nowrap;}
.brand__name span{color:var(--accent);}
.brand__name em{font-style:normal;}
.nav{margin-left:auto;}
.nav__list{display:flex;align-items:center;gap:.15rem;list-style:none;margin:0;padding:0;}
.nav__list li{margin:0;}
.nav__link{
  display:block;padding:.5rem .62rem;border-radius:7px;color:var(--muted);
  font-size:.855rem;font-weight:500;text-decoration:none;white-space:nowrap;
}
.nav__link:hover,.nav__link:focus{color:var(--text);background:var(--surface-2);text-decoration:none;}
.nav__link[aria-current="page"]{color:var(--accent);}
.header__actions{display:flex;align-items:center;gap:.4rem;margin-left:.4rem;}
.icon-btn{
  display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;
  border-radius:9px;border:1px solid var(--line);background:var(--surface);
  cursor:pointer;color:var(--text);flex-shrink:0;
}
.icon-btn:hover{background:var(--surface-2);}
.nav-toggle{display:none;}
.nav-toggle span{display:block;width:18px;height:2px;background:currentColor;position:relative;}
.nav-toggle span::before,.nav-toggle span::after{
  content:"";position:absolute;left:0;width:18px;height:2px;background:currentColor;}
.nav-toggle span::before{top:-6px;}
.nav-toggle span::after{top:6px;}

/* header search drawer */
.header-search{display:none;border-top:1px solid var(--line);background:var(--surface);padding:.9rem 0;}
.header-search.is-open{display:block;}
.header-search form{display:flex;gap:.5rem;max-width:640px;margin:0 auto;}
.header-search input{flex:1;}

/* ---------------------------------------------------------------- hero */
.hero{
  position:relative;padding:3rem 0 2.4rem;
  background:
    radial-gradient(900px 380px at 88% -10%,rgba(245,165,36,.13),transparent 62%),
    radial-gradient(700px 320px at 4% 0%,rgba(63,216,198,.09),transparent 60%),
    var(--bg);
  border-bottom:1px solid var(--line-soft);
}
.hero__grid{max-width:820px;margin:0 auto;text-align:center;}
.hero__grid .eyebrow--line::before{display:none;}
.hero .lede{margin-left:auto;margin-right:auto;}
.hero h1{margin-bottom:.7rem;}
.hero h1 em{font-style:normal;color:var(--accent);}
.hero__stats{display:flex;gap:1.9rem;margin-top:1.6rem;flex-wrap:wrap;justify-content:center;}
.hero__stat b{display:block;font-size:1.35rem;font-weight:700;line-height:1.1;}
.hero__stat span{font-size:.72rem;text-transform:uppercase;letter-spacing:.11em;color:var(--dim);}

/* featured studio panel (right side of hero, seed 2) */
.studio{
  background:linear-gradient(180deg,var(--surface-2),var(--surface));
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.4rem;
  box-shadow:var(--shadow);
}
.studio__label{font-size:.68rem;text-transform:uppercase;letter-spacing:.16em;
  color:var(--accent-2);font-weight:600;margin-bottom:.9rem;}
.studio__title{font-size:1.2rem;font-weight:600;margin:0 0 .2rem;}
.studio__meta{font-size:.82rem;color:var(--muted);margin-bottom:1rem;}
.studio__row{display:flex;align-items:center;gap:.7rem;margin-top:1rem;}

/* signature: CSS bar meter */
.meter{display:flex;align-items:flex-end;gap:3px;height:56px;padding:0;margin:0;list-style:none;}
.meter li{
  flex:1;background:linear-gradient(180deg,var(--accent),rgba(245,165,36,.28));
  border-radius:2px 2px 0 0;height:14%;transform-origin:bottom;
}
.meter.is-live li{animation:meterPulse 1.05s ease-in-out infinite;}
.meter li:nth-child(2n){animation-delay:-.22s;}
.meter li:nth-child(3n){animation-delay:-.45s;}
.meter li:nth-child(5n){animation-delay:-.68s;}
.meter li:nth-child(7n){animation-delay:-.9s;}
@keyframes meterPulse{0%,100%{height:16%;}25%{height:78%;}50%{height:38%;}75%{height:96%;}}

/* ---------------------------------------------------------------- controls */
.controls{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  padding:1.1rem;margin-top:2rem;
}
.controls__search{position:relative;margin-bottom:.9rem;}
.field{
  width:100%;padding:.8rem 1rem;background:var(--bg);border:1px solid var(--line);
  border-radius:var(--radius-sm);color:var(--text);min-height:46px;
}
.field::placeholder{color:var(--dim);}
.field:focus{border-color:var(--accent);}
select.field{cursor:pointer;appearance:none;
  background-image:linear-gradient(45deg,transparent 50%,var(--muted) 50%),
                   linear-gradient(135deg,var(--muted) 50%,transparent 50%);
  background-position:calc(100% - 18px) 21px,calc(100% - 13px) 21px;
  background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:2.4rem;}
.controls__filters{display:grid;grid-template-columns:repeat(4,1fr);gap:.7rem;}
.controls__filters[data-cols="5"]{grid-template-columns:repeat(5,1fr);}
.filter label{display:block;font-size:.68rem;text-transform:uppercase;letter-spacing:.12em;
  color:var(--dim);font-weight:600;margin-bottom:.35rem;}
.controls__foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;
  margin-top:.95rem;padding-top:.9rem;border-top:1px solid var(--line-soft);flex-wrap:wrap;}
.result-count{font-size:.86rem;color:var(--muted);margin:0;}
.result-count b{color:var(--text);}

/* chips */
.chips{display:flex;gap:.45rem;list-style:none;margin:1.2rem 0 0;padding:0 0 .35rem;
  overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:thin;}
.chips li{margin:0;flex-shrink:0;}
.chip{
  display:inline-block;padding:.42rem .85rem;border-radius:999px;border:1px solid var(--line);
  background:var(--surface);color:var(--muted);font-size:.82rem;font-weight:500;
  cursor:pointer;white-space:nowrap;text-decoration:none;
}
.chip:hover{color:var(--text);border-color:var(--surface-3);text-decoration:none;}
.chip[aria-pressed="true"],.chip.is-active{
  background:var(--accent);border-color:var(--accent);color:var(--accent-ink);font-weight:600;}
.chip[aria-pressed="true"]::before{content:"\2713\00a0";}

/* ---------------------------------------------------------------- cards */
.tone-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.6rem;
  list-style:none;padding:0;}
.tone-grid li{margin:0;}
.tone-card{
  position:relative;display:flex;flex-direction:column;gap:.75rem;height:100%;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  padding:1rem;transition:border-color .18s,background .18s;
}
.tone-card:hover{border-color:var(--surface-3);background:var(--surface-2);}
.tone-card.is-playing{border-color:var(--accent);background:var(--surface-2);}
.tone-card__top{display:flex;align-items:flex-start;gap:.8rem;}
.tone-card__play{
  width:46px;height:46px;flex-shrink:0;border-radius:50%;border:1px solid var(--line);
  background:var(--surface-2);color:var(--text);display:flex;align-items:center;
  justify-content:center;cursor:pointer;
}
.tone-card__play:hover{background:var(--accent);color:var(--accent-ink);border-color:var(--accent);}
.tone-card.is-playing .tone-card__play{background:var(--accent);color:var(--accent-ink);border-color:var(--accent);}
.tone-card__body{min-width:0;flex:1;}
.tone-card__title{font-size:1rem;font-weight:600;margin:0 0 .18rem;line-height:1.3;}
.tone-card__title a{color:var(--text);}
.tone-card__title a:hover{color:var(--accent);text-decoration:none;}
.tone-card__sub{font-size:.78rem;color:var(--muted);margin:0;}
.tone-card__fav{
  position:absolute;top:.7rem;right:.7rem;width:34px;height:34px;border-radius:8px;
  border:1px solid transparent;background:transparent;color:var(--dim);cursor:pointer;
  display:flex;align-items:center;justify-content:center;}
.tone-card__fav:hover{color:var(--accent);background:var(--surface-3);}
.tone-card__fav[aria-pressed="true"]{color:var(--accent);}
.tone-card__bar{height:4px;background:var(--surface-3);border-radius:99px;overflow:hidden;}
.tone-card__bar i{display:block;height:100%;width:0;background:var(--accent);border-radius:99px;}
.tone-card__foot{display:flex;align-items:center;gap:.45rem;margin-top:auto;}
.tone-card__foot .btn{flex:1;}
.badge{
  display:inline-block;padding:.12rem .5rem;border-radius:5px;font-size:.62rem;
  font-weight:600;letter-spacing:.1em;text-transform:uppercase;vertical-align:middle;
  margin-left:.35rem;border:1px solid;}
.badge--new{color:var(--accent-2);border-color:rgba(63,216,198,.42);}
.badge--trending{color:var(--accent);border-color:rgba(245,165,36,.42);}
.badge--popular{color:#6d28d9;border-color:rgba(109,40,217,.32);}
.badge--featured{color:var(--text);border-color:var(--line);}
.tone-card__tags{display:flex;flex-wrap:wrap;gap:.3rem;font-size:.68rem;color:var(--dim);}
.tone-card__tags span{background:var(--bg);border:1px solid var(--line-soft);
  padding:.1rem .45rem;border-radius:4px;}

.grid-actions{display:flex;justify-content:center;gap:.6rem;margin-top:1.8rem;flex-wrap:wrap;}
.empty-state{
  text-align:center;padding:2.6rem 1rem;border:1px dashed var(--line);
  border-radius:var(--radius);color:var(--muted);margin-top:1.6rem;}
.empty-state h3{color:var(--text);}
.is-hidden{display:none !important;}

/* ---------------------------------------------------------------- player */
.player{
  position:fixed;left:0;right:0;bottom:0;z-index:70;background:var(--surface);
  border-top:1px solid var(--line);box-shadow:0 -10px 30px rgba(24,39,75,.12);
  transform:translateY(100%);transition:transform .25s ease;
}
.player.is-visible{transform:translateY(0);}
.player__inner{display:grid;grid-template-columns:auto 1fr auto;gap:1rem;
  align-items:center;padding:.7rem 0;}
.player__now{display:flex;align-items:center;gap:.75rem;min-width:0;}
.player__art{width:44px;height:44px;border-radius:9px;background:var(--surface-3);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden;}
.player__art .meter{height:22px;width:26px;gap:2px;}
.player__text{min-width:0;}
.player__title{font-size:.9rem;font-weight:600;margin:0;white-space:nowrap;
  overflow:hidden;text-overflow:ellipsis;max-width:190px;}
.player__meta{font-size:.72rem;color:var(--muted);margin:0;white-space:nowrap;
  overflow:hidden;text-overflow:ellipsis;max-width:190px;}
.player__mid{display:flex;flex-direction:column;gap:.3rem;min-width:0;}
.player__transport{display:flex;align-items:center;justify-content:center;gap:.4rem;}
.player__transport .icon-btn{width:38px;height:38px;}
.player__play{width:44px !important;height:44px !important;background:var(--accent) !important;
  color:var(--accent-ink) !important;border-color:var(--accent) !important;}
.player__seekrow{display:flex;align-items:center;gap:.6rem;}
.time{font-size:.7rem;color:var(--muted);font-variant-numeric:tabular-nums;min-width:36px;
  text-align:center;flex-shrink:0;}
.player__right{display:flex;align-items:center;gap:.4rem;}
.volwrap{display:flex;align-items:center;gap:.4rem;}

input[type="range"]{
  -webkit-appearance:none;appearance:none;background:transparent;width:100%;
  height:22px;cursor:pointer;margin:0;}
input[type="range"]::-webkit-slider-runnable-track{height:5px;border-radius:99px;background:var(--surface-3);}
input[type="range"]::-moz-range-track{height:5px;border-radius:99px;background:var(--surface-3);}
input[type="range"]::-webkit-slider-thumb{-webkit-appearance:none;width:14px;height:14px;
  border-radius:50%;background:var(--accent);margin-top:-4.5px;border:0;}
input[type="range"]::-moz-range-thumb{width:14px;height:14px;border-radius:50%;
  background:var(--accent);border:0;}
input[type="range"].vol{width:78px;}
input[type="range"]:focus-visible::-webkit-slider-thumb{box-shadow:0 0 0 3px var(--accent-2);}

/* ---------------------------------------------------------------- modal */
.modal{position:fixed;inset:0;z-index:120;display:none;}
.modal.is-open{display:block;}
.modal__backdrop{position:absolute;inset:0;background:rgba(15,23,42,.45);}
.modal__panel{
  position:relative;max-width:620px;margin:6vh auto;background:var(--surface);
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.6rem;
  max-height:88vh;overflow-y:auto;box-shadow:var(--shadow);}
.modal__close{position:absolute;top:.85rem;right:.85rem;}
.spec-list{display:grid;grid-template-columns:repeat(2,1fr);gap:.7rem;margin:1.2rem 0;
  list-style:none;padding:0;}
.spec-list li{margin:0;background:var(--bg);border:1px solid var(--line-soft);
  border-radius:var(--radius-sm);padding:.6rem .8rem;}
.spec-list dt,.spec-list b{display:block;font-size:.66rem;text-transform:uppercase;
  letter-spacing:.11em;color:var(--dim);font-weight:600;}
.spec-list span{font-size:.9rem;font-weight:500;}

/* ---------------------------------------------------------------- toast */
.toast-stack{position:fixed;left:50%;bottom:calc(var(--player-h) + 18px);transform:translateX(-50%);
  z-index:140;display:flex;flex-direction:column;gap:.5rem;align-items:center;
  pointer-events:none;width:calc(100% - 32px);max-width:420px;}
.toast{
  background:var(--surface-3);border:1px solid var(--line);color:var(--text);
  padding:.7rem 1.1rem;border-radius:99px;font-size:.86rem;font-weight:500;
  box-shadow:var(--shadow-sm);animation:toastIn .22s ease;}
.toast--ok{border-color:rgba(63,216,198,.5);}
.toast--err{border-color:rgba(255,107,107,.5);}
@keyframes toastIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:none;}}

/* ---------------------------------------------------------------- content */
.prose{max-width:none;}
.prose h2{margin-top:2.2rem;}
.prose h3{margin-top:1.6rem;font-size:1.12rem;}
.prose ul li,.prose ol li{color:var(--muted);}
.prose p{color:var(--muted);}
.prose>p,.prose>ul,.prose>ol{max-width:none;}
.prose__cols{column-count:2;column-gap:2.6rem;}
.prose__cols p{break-inside:avoid;}
@media (max-width:820px){.prose__cols{column-count:1;}}
.prose strong{color:var(--text);}

.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;list-style:none;
  padding:0;margin:0;}
.card-grid li{margin:0;}
.panel{
  display:block;height:100%;background:var(--surface);border:1px solid var(--line);
  border-radius:var(--radius);padding:1.2rem;color:var(--text);text-decoration:none;}
a.panel:hover{border-color:var(--accent);text-decoration:none;}
.panel h3{margin-bottom:.35rem;font-size:1.05rem;}
.panel p{color:var(--muted);font-size:.88rem;margin-bottom:.6rem;}
.panel__count{font-size:.72rem;text-transform:uppercase;letter-spacing:.11em;color:var(--accent);
  font-weight:600;}
.panel__wave{display:flex;align-items:flex-end;gap:2px;height:26px;margin-bottom:.8rem;}
.panel__wave i{width:3px;background:var(--accent-2);opacity:.62;border-radius:2px;
  transition:background .18s,opacity .18s,transform .18s;}
a.panel:hover .panel__wave i{background:var(--accent);opacity:1;transform:translateY(-2px);}

.blog-card{display:flex;flex-direction:column;height:100%;background:var(--surface);
  border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;}
.blog-card__cover{aspect-ratio:16/9;display:flex;align-items:flex-end;padding:.9rem;
  background:linear-gradient(135deg,#eef2f7,#e2e8f0);border-bottom:1px solid var(--line);
  position:relative;overflow:hidden;}
.blog-card__cover .panel__wave{height:100%;width:100%;align-items:flex-end;gap:3px;opacity:.5;}
.blog-card__cover .panel__wave i{width:6px;background:var(--accent);}
.blog-card__cover span{position:absolute;top:.8rem;left:.9rem;font-size:.65rem;font-weight:600;
  letter-spacing:.13em;text-transform:uppercase;color:var(--accent-2);}
.blog-card__body{padding:1.1rem;display:flex;flex-direction:column;flex:1;}
.blog-card__body h3{font-size:1.02rem;}
.blog-card__body h3 a{color:var(--text);}
.blog-card__body h3 a:hover{color:var(--accent);text-decoration:none;}
.blog-card__body p{font-size:.87rem;color:var(--muted);}
.blog-card__date{font-size:.72rem;color:var(--dim);margin-top:auto;}

/* faq */
.faq{max-width:none;}
.faq__item{border:1px solid var(--line);border-radius:var(--radius-sm);
  margin-bottom:.6rem;background:var(--surface);overflow:hidden;}
.faq__q{width:100%;text-align:left;background:none;border:0;padding:1rem 3rem 1rem 1.1rem;
  font-weight:600;font-size:.97rem;cursor:pointer;position:relative;color:var(--text);}
.faq__q::after{content:"+";position:absolute;right:1.1rem;top:50%;transform:translateY(-50%);
  font-size:1.3rem;font-weight:400;color:var(--accent);line-height:1;}
.faq__q[aria-expanded="true"]::after{content:"\2212";}
.faq__q:hover{background:var(--surface-2);}
.faq__a{padding:0 1.1rem 1.1rem;color:var(--muted);font-size:.93rem;}
.faq__a[hidden]{display:none;}

/* breadcrumbs */
.crumbs{font-size:.8rem;color:var(--dim);padding:1.1rem 0 0;margin:0;list-style:none;
  display:flex;flex-wrap:wrap;gap:.35rem;}
.crumbs li{margin:0;}
.crumbs li+li::before{content:"/";margin-right:.35rem;color:var(--line);}
.crumbs a{color:var(--muted);}

/* detail page */
.detail{padding:1.6rem 0 3rem;}
.detail__grid{display:grid;grid-template-columns:1.4fr 1fr;gap:2rem;align-items:start;}
.detail__stage{background:linear-gradient(180deg,var(--surface-2),var(--surface));
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.6rem;}
.detail__stage .meter{height:74px;margin-bottom:1.3rem;}
.detail__actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:1.2rem;}

.table-wrap{overflow-x:auto;}
table{width:100%;border-collapse:collapse;font-size:.9rem;}
th,td{text-align:left;padding:.7rem .8rem;border-bottom:1px solid var(--line);}
th{font-size:.7rem;text-transform:uppercase;letter-spacing:.11em;color:var(--dim);font-weight:600;}
td{color:var(--muted);}

/* related searches */
.taglist{display:flex;flex-wrap:wrap;gap:.5rem;list-style:none;padding:0;margin:0;}
.taglist li{margin:0;}

/* ---------------------------------------------------------------- footer */
.site-footer{background:var(--surface);border-top:1px solid var(--line);padding:3rem 0 1.5rem;
  margin-top:2rem;}
.footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;gap:1.8rem;}
.footer__about p{font-size:.87rem;color:var(--muted);}
.footer h4{font-size:.72rem;text-transform:uppercase;letter-spacing:.13em;color:var(--dim);
  font-weight:600;margin-bottom:.9rem;}
.footer ul{list-style:none;padding:0;margin:0;}
.footer li{margin-bottom:.45rem;}
.footer a{color:var(--muted);font-size:.87rem;}
.footer a:hover{color:var(--accent);}
.footer__bottom{border-top:1px solid var(--line-soft);margin-top:2.2rem;padding-top:1.3rem;
  text-align:center;font-size:.82rem;color:var(--dim);}
.footer__bottom a{color:var(--muted);}
.footer__bottom a:hover{color:var(--accent);}
.footer__bottom p{margin:0;}

.to-top{position:fixed;right:16px;bottom:calc(var(--player-h) + 16px);z-index:60;
  opacity:0;visibility:hidden;transition:opacity .2s,visibility .2s;}
.to-top.is-visible{opacity:1;visibility:visible;}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;animation-iteration-count:1 !important;
    transition-duration:.001ms !important;scroll-behavior:auto !important;}
  .meter.is-live li{height:52%;}
}

/* hero facts panel (replaces the old featured-tone card, which duplicated a
   tone that already appears in the grid below) */
.studio__facts{margin:1.2rem 0 0;display:grid;gap:.9rem;}
.studio__facts div{display:grid;grid-template-columns:78px 1fr;gap:.8rem;align-items:start;}
.studio__facts dt{font-size:.66rem;text-transform:uppercase;letter-spacing:.12em;
  color:var(--accent-2);font-weight:600;padding-top:.2rem;}
.studio__facts dd{margin:0;font-size:.86rem;color:var(--muted);line-height:1.55;}
@media (max-width:420px){.studio__facts div{grid-template-columns:1fr;gap:.15rem;}}

/* email addresses are printed, never linked, so crawlers and scrapers get
   nothing to follow */
.mailtext{color:var(--text);font-weight:500;word-break:break-word;}

/* .prose and .wrap are often the same element. Equal specificity means the
   later rule wins, so restate the container width after .prose clears it. */
.wrap.prose{max-width:var(--wrap);}

/* Unique responsive blog imagery */
.blog-card__image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;}
.blog-card__cover span{z-index:2;background:rgba(255,255,255,.9);padding:.38rem .55rem;border-radius:5px;box-shadow:0 1px 4px rgba(24,39,75,.12);}
.article-cover{width:100%;max-width:none;margin:1.8rem 0;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:var(--surface);}
.article-cover img{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;}
.footer__title{margin:0 0 .85rem;font-size:.72rem;font-weight:600;letter-spacing:.13em;text-transform:uppercase;color:var(--dim);}
