:root {
  --ink: #f8f2e8;
  --muted: #c7bbaa;
  --soft: #8d8174;
  --black: #070605;
  --charcoal: #11100e;
  --panel: rgba(248, 242, 232, 0.07);
  --panel-strong: rgba(248, 242, 232, 0.11);
  --gold: #d6a15d;
  --mist: #c9cec8;
  --moss: #87906d;
  --clay: #a65f4b;
  --line: rgba(248, 242, 232, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --max: 1160px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 4%, rgba(214, 161, 93, 0.12), transparent 26rem),
    linear-gradient(180deg, #070605 0%, #0b0907 42%, #070605 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  left: 1rem;
  top: 1rem;
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  box-sizing: border-box;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 6, 5, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(16px) saturate(1.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: min(22rem, 52vw);
  gap: 0.75rem;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.28);
}

.brand span {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.32rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 242, 232, 0.055);
}

.site-nav a {
  color: var(--muted);
  border-radius: 999px;
  padding: 0.56rem 0.75rem;
  font-size: 0.84rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(248, 242, 232, 0.09);
  outline: none;
}

.site-nav .nav-cta {
  color: #17100a;
  background: linear-gradient(135deg, #f1c888, var(--gold));
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 242, 232, 0.07);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header) + 3rem) 4vw 4rem;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.99) 0%, rgba(7, 6, 5, 0.84) 36%, rgba(7, 6, 5, 0.22) 74%),
    linear-gradient(0deg, var(--black) 0%, transparent 32%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.38) 0%, transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 11.5ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.4rem, 7.8vw, 7rem);
  line-height: 0.92;
}

h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

p {
  color: var(--muted);
  line-height: 1.66;
}

.hero-copy {
  max-width: 43rem;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0.78rem 1.08rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  font-size: 0.93rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #150f09;
  border-color: rgba(214, 161, 93, 0.94);
  background: linear-gradient(135deg, #f2cf94, var(--gold) 55%, #efe1bd);
  box-shadow: 0 20px 54px rgba(214, 161, 93, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(248, 242, 232, 0.07);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-row span,
.tag,
.price-card span {
  display: inline-flex;
  width: fit-content;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  background: rgba(7, 6, 5, 0.34);
  font-size: 0.82rem;
}

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 3.4rem;
  z-index: 1;
  color: var(--soft);
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 4vw;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.wide-heading h2 {
  max-width: 15ch;
}

.wide-heading p {
  max-width: 48rem;
  font-size: 1.05rem;
}

.proof-section,
.process-section,
.faq-section {
  background: #090807;
}

.album-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 161, 93, 0.12), transparent 24rem),
    linear-gradient(120deg, rgba(135, 144, 109, 0.1), transparent 36rem),
    #0d0b08;
}

.featured-song-section {
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 161, 93, 0.15), transparent 22rem),
    linear-gradient(120deg, rgba(166, 95, 75, 0.11), transparent 34rem),
    #100c09;
}

.proof-section {
  padding-top: 3rem;
}

.experiences-section,
.pricing-section {
  background:
    linear-gradient(90deg, rgba(135, 144, 109, 0.08), transparent 46rem),
    #0e0c09;
}

.origin-section,
.trust-section {
  background:
    linear-gradient(120deg, rgba(166, 95, 75, 0.09), transparent 34rem),
    #110d0a;
}

.transformation-grid,
.experience-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transformation-card,
.experience-card,
.price-card,
.process-list li,
.brief-form,
.trust-list div,
details,
.service-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.transformation-card,
.experience-card,
.price-card,
.service-panel {
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: 1.1rem;
}

.transformation-card {
  gap: 1rem;
}

.card-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

.transformation-card p,
.experience-card p,
.price-card p,
.process-list p,
.service-panel p {
  margin-bottom: 0;
}

.audio-panel {
  margin-top: auto;
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.service-demo-note {
  margin-top: auto;
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

audio {
  width: 100%;
}

.audio-panel small {
  color: var(--soft);
  line-height: 1.45;
}

.service-demo-note small {
  color: var(--muted);
  line-height: 1.45;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1rem;
}

.album-player {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(214, 161, 93, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(214, 161, 93, 0.12), rgba(248, 242, 232, 0.055)),
    var(--panel);
  box-shadow: var(--shadow);
}

.album-player-main {
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  min-height: 18rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 6, 5, 0.42);
}

.album-player-main h3 {
  margin: 0.55rem 0 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.94;
}

.album-player-main p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}

.album-track-list {
  display: grid;
  gap: 0.7rem;
}

.album-track-button {
  width: 100%;
  display: grid;
  gap: 0.35rem;
  min-height: 4.4rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 242, 232, 0.045);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.album-track-button:hover,
.album-track-button:focus-visible,
.album-track-button.is-active {
  border-color: rgba(244, 200, 137, 0.72);
  background: rgba(214, 161, 93, 0.13);
}

.album-track-button:hover {
  transform: translateY(-1px);
}

.album-track-button span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.album-track-button small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.album-track {
  display: grid;
  align-content: space-between;
  min-height: 15rem;
  gap: 1.2rem;
  padding: 1.1rem;
  border: 1px solid rgba(214, 161, 93, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(214, 161, 93, 0.12), rgba(248, 242, 232, 0.055)),
    var(--panel);
  box-shadow: var(--shadow);
}

.album-track h3 {
  margin: 0.55rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.album-track audio {
  align-self: end;
}

.album-note {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.featured-song-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  padding: clamp(1rem, 4vw, 2rem);
  border: 1px solid rgba(214, 161, 93, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(214, 161, 93, 0.15), rgba(248, 242, 232, 0.055)),
    var(--panel);
  box-shadow: var(--shadow);
}

.featured-song-card h2 {
  margin: 0.35rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.featured-song-card p {
  max-width: 46rem;
}

.featured-song-player {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 6, 5, 0.48);
}

.wave-line {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 30px;
}

.wave-line i {
  display: block;
  width: 12%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 161, 93, 0.1), var(--gold), rgba(201, 206, 200, 0.18));
}

.wave-line i:nth-child(2),
.wave-line i:nth-child(5) {
  height: 18px;
}

.wave-line i:nth-child(3) {
  height: 28px;
}

.wave-line i:nth-child(4) {
  height: 12px;
}

.experience-card,
.price-card {
  justify-content: space-between;
}

.featured-card {
  background:
    linear-gradient(145deg, rgba(214, 161, 93, 0.16), rgba(248, 242, 232, 0.06)),
    var(--panel);
  border-color: rgba(214, 161, 93, 0.34);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.3rem;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.18rem;
  font-weight: 850;
}

.process-list {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 17rem;
  padding: 1.1rem;
}

.process-list li::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(248, 242, 232, 0.13);
  font-size: 2rem;
  font-weight: 900;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 3rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-grid,
.contact-grid,
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.story-copy,
.trust-list {
  display: grid;
  gap: 1rem;
}

.story-copy p {
  font-size: 1.08rem;
}

.trust-list div {
  padding: 1rem;
}

.trust-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.price-card h3 {
  margin: 1.2rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

details {
  padding: 1rem;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin: 0.8rem 0 0;
}

.brief-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: var(--panel-strong);
}

.brief-form label {
  display: grid;
  gap: 0.4rem;
}

.brief-form label span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.field-hint {
  color: var(--soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 6, 5, 0.7);
  padding: 0.88rem 0.9rem;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(214, 161, 93, 0.88);
  box-shadow: 0 0 0 3px rgba(214, 161, 93, 0.14);
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem !important;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.86rem;
}

.service-hero {
  min-height: 76svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 4rem) 4vw 4rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.96), rgba(7, 6, 5, 0.72), rgba(7, 6, 5, 0.28)),
    url("/assets/hero-sanctuary.png") center / cover;
}

.service-hero h1 {
  max-width: 12ch;
}

.service-hero p {
  max-width: 43rem;
  font-size: 1.12rem;
}

.service-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.owner-hero {
  min-height: 72svh;
}

.owner-studio-section {
  background:
    linear-gradient(120deg, rgba(214, 161, 93, 0.11), transparent 34rem),
    #0e0c09;
}

.status-grid,
.studio-grid {
  display: grid;
  gap: 1rem;
}

.status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.studio-grid {
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
  align-items: start;
}

.status-card,
.studio-output {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.status-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 16rem;
  padding: 1rem;
}

.status-card h3,
.studio-output h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.status-card p {
  margin: 0;
  color: var(--muted);
}

.owner-form {
  background: var(--panel);
}

.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.owner-actions .button:disabled {
  cursor: not-allowed;
  color: var(--soft);
  border-color: rgba(248, 242, 232, 0.12);
  background: rgba(248, 242, 232, 0.035);
  box-shadow: none;
}

.studio-output {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.studio-output textarea {
  min-height: 28rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
  line-height: 1.55;
}

.command-panel {
  padding: 0.95rem;
  border: 1px solid rgba(214, 161, 93, 0.28);
  border-radius: 8px;
  background: rgba(214, 161, 93, 0.09);
}

.command-panel strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.command-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-panel {
  min-height: 15rem;
}

.service-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.62;
}

.content-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 4rem) 4vw 4rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.96), rgba(7, 6, 5, 0.76), rgba(7, 6, 5, 0.34)),
    url("/assets/hero-sanctuary.png") center / cover;
}

.content-hero h1 {
  max-width: 13ch;
}

.content-hero p {
  max-width: 48rem;
  font-size: 1.1rem;
}

.content-grid,
.article-grid,
.seo-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.content-grid.two,
.article-layout,
.rights-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.article-card,
.package-card,
.notice-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.content-card,
.article-card,
.package-card {
  display: flex;
  flex-direction: column;
  min-height: 15rem;
}

.content-card ul,
.package-card ul,
.notice-panel ul,
.article-body ul,
.article-body ol {
  color: var(--muted);
  line-height: 1.68;
  padding-left: 1.15rem;
}

.package-card strong {
  color: var(--ink);
}

.package-price {
  margin: 0.5rem 0 0.8rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.notice-panel {
  background:
    linear-gradient(145deg, rgba(214, 161, 93, 0.13), rgba(248, 242, 232, 0.05)),
    var(--panel);
}

.route-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.route-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem;
  color: var(--muted);
  background: rgba(248, 242, 232, 0.045);
}

.route-list a:hover {
  color: var(--ink);
  border-color: rgba(214, 161, 93, 0.4);
}

.article-body {
  max-width: 780px;
}

.article-body h2 {
  max-width: 15ch;
  margin-top: 2.4rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.article-body h3 {
  margin-top: 1.8rem;
}

.article-body p,
.article-body li {
  font-size: 1.02rem;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.audio-status {
  color: var(--soft);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.45rem 4vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #070605;
}

.site-footer div {
  display: grid;
  gap: 0.2rem;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.site-footer a:hover {
  color: var(--ink);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 1rem;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 1rem auto;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 8px;
    padding: 0.6rem;
    background: rgba(7, 6, 5, 0.97);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 8px;
    padding: 0.9rem 0.8rem;
  }

  .hero,
  .service-hero {
    min-height: 88svh;
    padding-inline: 1.1rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 6, 5, 0.96) 0%, rgba(7, 6, 5, 0.78) 65%, rgba(7, 6, 5, 0.32) 100%),
      linear-gradient(0deg, var(--black) 0%, transparent 36%);
  }

  .section {
    padding-inline: 1.1rem;
  }

  .transformation-grid,
  .album-grid,
  .album-player,
  .featured-song-card,
  .experience-grid,
  .pricing-grid,
  .process-list,
  .faq-grid,
  .content-grid,
  .content-grid.two,
  .article-grid,
  .seo-grid,
  .package-grid,
  .article-layout,
  .rights-grid,
  .split-grid,
  .contact-grid,
  .service-hero-grid,
  .service-panel-grid,
  .status-grid,
  .studio-grid {
    grid-template-columns: 1fr;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero {
    min-height: 82svh;
    padding-top: calc(var(--header) + 1.2rem);
    padding-bottom: 2rem;
  }

  .hero-actions,
  .button,
  .site-footer {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
