:root {
  color-scheme: dark;
  --bg: #101113;
  --bg-soft: #17191d;
  --ink: #f7f2e8;
  --muted: #c4bdad;
  --line: rgba(247, 242, 232, 0.15);
  --amber: #f3b45b;
  --cyan: #58c7d4;
  --rose: #d77a84;
  --lime: #58d66f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --header-height: 100px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(16, 17, 19, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 750;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(247, 242, 232, 0.32);
  border-radius: 50%;
  background: rgba(247, 242, 232, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
}

.brand-name {
  white-space: nowrap;
}

.brand-logo {
  width: clamp(13.5rem, 28vw, 23rem);
  max-width: 50vw;
  max-height: 5.35rem;
  object-fit: contain;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-groups {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(0.78rem, 1.6vw, 1.35rem);
}

.nav-group {
  min-width: max-content;
  display: grid;
  justify-items: center;
  gap: 0.16rem;
}

.nav-main {
  color: var(--ink);
  font-weight: 800;
}

.nav-sub {
  min-height: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-sub:empty::before {
  content: "";
}

.nav-language {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  padding-top: 0.18rem;
}

.nav-language a {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.05);
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 242, 232, 0.06);
  color: var(--ink);
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 4rem) clamp(1rem, 4vw, 3.5rem) 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(0.98) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 17, 19, 0.96) 0%, rgba(16, 17, 19, 0.78) 42%, rgba(16, 17, 19, 0.32) 100%),
    linear-gradient(0deg, rgba(16, 17, 19, 0.96) 0%, rgba(16, 17, 19, 0.48) 56%, rgba(16, 17, 19, 0.36) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 45rem;
}

.hero-copy,
.service-hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.6rem, 13vw, 9.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  max-width: 7ch;
}

.hero-text {
  max-width: 40rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #101113;
}

.button-secondary {
  border-color: rgba(247, 242, 232, 0.28);
  background: rgba(16, 17, 19, 0.48);
  color: var(--ink);
}

.button-icon {
  width: 1.18rem;
  height: 1.18rem;
}

.button-icon svg,
.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.artist-card {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 24rem;
  margin-left: auto;
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 8px;
  background: rgba(16, 17, 19, 0.62);
  padding: 0.85rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.artist-card img {
  width: 5rem;
  height: 5rem;
  border-radius: 6px;
  object-fit: cover;
}

.artist-card p {
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-weight: 760;
}

.artist-card a,
.text-link {
  color: var(--cyan);
  font-weight: 800;
}

.stream-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #121417;
}

.stream-strip a {
  min-height: 6.6rem;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 1.15rem clamp(1rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.stream-strip a:hover,
.stream-strip a:focus-visible {
  background: rgba(88, 199, 212, 0.08);
}

.stream-strip a:last-child {
  border-right: 0;
}

.stream-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stream-strip strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3.5rem);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 2rem;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 11ch;
}

.section-lead {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(16, 17, 19, 0.72);
}

.about-section,
.service-about-section {
  background: #15171a;
}

.about-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-layout .section-heading {
  width: auto;
  margin: 0;
}

.about-copy {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.about-copy p {
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.music-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.2rem;
  align-items: stretch;
}

.spotify-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0c0d;
  min-height: 352px;
}

.spotify-frame iframe {
  display: block;
  border: 0;
  border-radius: 8px;
}

.music-copy {
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(88, 199, 212, 0.14), rgba(243, 180, 91, 0.1)),
    var(--bg-soft);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.music-copy h3,
.feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
}

.music-copy p,
.feature-card p,
.discography-section {
  background: #101113;
}

.discography-lead {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.release-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.4rem, 1fr));
  gap: 0.9rem;
}

.release-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 19rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #181b1f;
}

.release-card img,
.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

.release-cover {
  display: grid;
  place-items: end start;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(88, 199, 212, 0.18), rgba(243, 180, 91, 0.18)),
    #17191d;
  color: var(--ink);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.06;
}

.release-card div {
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: 1rem;
}

.release-card p {
  margin: 0;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.release-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.release-list {
  width: min(1180px, 100%);
  margin: 0.9rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.release-list a {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 3.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15171a;
  padding: 0.65rem 0.8rem;
}

.release-list span {
  color: var(--amber);
  font-weight: 850;
}

.release-list strong {
  min-width: 0;
}

.release-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.discography-button {
  width: fit-content;
  margin: 1rem auto 0;
}

.tickets-section {
  background: #f3efe6;
  color: #101113;
}

.tickets-section .eyebrow {
  color: #a04f4d;
}

.tickets-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.ticket-jump-list {
  width: min(1180px, 100%);
  margin: -1.5rem auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ticket-jump-list a {
  border: 1px solid rgba(16, 17, 19, 0.18);
  border-radius: 999px;
  background: #fffaf0;
  padding: 0.6rem 0.85rem;
  color: #101113;
  font-weight: 850;
}

.tour-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4.5vw, 3.8rem);
}

.show-group {
  display: grid;
  gap: 1rem;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.show-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
  border-top: 1px solid rgba(16, 17, 19, 0.14);
  padding-top: 1.25rem;
}

.show-group-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.show-group-heading p {
  margin-bottom: 0;
  color: rgba(16, 17, 19, 0.72);
}

.show-card,
.empty-shows {
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: 8px;
  background: #fffaf0;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.show-card {
  display: grid;
  min-height: 14rem;
  align-content: space-between;
  gap: 1rem;
}

.show-date {
  color: #a04f4d;
  font-size: 0.85rem;
  font-weight: 850;
  text-transform: uppercase;
}

.show-card h3 {
  margin-bottom: 0.3rem;
}

.show-card p,
.empty-shows p {
  color: rgba(16, 17, 19, 0.72);
}

.show-card .button,
.empty-shows .button,
.ticket-soon {
  width: fit-content;
  background: #101113;
  color: #f7f2e8;
}

.ticket-soon {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  font-weight: 850;
  opacity: 0.68;
}

.show-card-more {
  background: #101113;
  color: #f7f2e8;
}

.tour-source-card {
  width: min(100%, 42rem);
}

.show-card-more p {
  color: rgba(247, 242, 232, 0.72);
}

.show-card-more .button {
  background: #f7f2e8;
  color: #101113;
}

.local-services-section {
  background: #dcebe7;
  color: #101113;
}

.local-services-section .eyebrow {
  color: #2f7b85;
}

.local-services-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.local-services-inner h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.local-services-inner p {
  color: rgba(16, 17, 19, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.local-services-section .button-primary {
  background: #101113;
  color: #f7f2e8;
}

.empty-shows {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.empty-shows h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  line-height: 1.02;
}

.visual-section {
  background: #111315;
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.feature-card {
  min-height: 18rem;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    #181b1f;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.feature-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 3rem;
  border-radius: 50%;
  background: rgba(243, 180, 91, 0.14);
  color: var(--amber);
}

.faq-section {
  background: #15171a;
}

.services-faq-section {
  background: #101113;
}

.faq-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #181b1f;
  padding: 1rem clamp(1rem, 3vw, 1.35rem);
}

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

.faq-list p {
  max-width: 58rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-hero {
  isolation: isolate;
  width: min(1180px, calc(100% - 2rem));
  min-height: 92vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 29rem);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
}

.service-hero-copy {
  position: relative;
  z-index: 1;
}

.service-hero-copy h1 {
  max-width: 11.6ch;
  font-size: clamp(3rem, 7.2vw, 7.2rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.service-portrait {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15171a;
  box-shadow: var(--shadow);
}

.service-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.portrait-caption {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  background: rgba(16, 17, 19, 0.92);
}

.portrait-caption p {
  margin: 0;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f3efe6;
  color: #101113;
}

.proof-strip div {
  min-height: 7.4rem;
  display: grid;
  align-content: center;
  gap: 0.1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  border-right: 1px solid rgba(16, 17, 19, 0.15);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.proof-strip span {
  color: rgba(16, 17, 19, 0.68);
}

.result-section,
.way-section {
  background: #111315;
}

.result-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.result-feature,
.result-bars,
.package-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #181b1f;
}

.result-feature {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.result-kicker {
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.result-feature h3 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.result-feature p:last-child {
  color: var(--muted);
}

.result-bars {
  display: grid;
  align-content: center;
  gap: 1.4rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.bar-row {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr) 4rem;
  gap: 0.8rem;
  align-items: center;
}

.bar-row span:first-child {
  color: var(--muted);
  font-weight: 800;
}

.bar-row strong {
  text-align: right;
}

.bar-track {
  overflow: hidden;
  height: 0.9rem;
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.1);
}

.bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.packages-section {
  background: #f3efe6;
  color: #101113;
}

.packages-section .eyebrow {
  color: #a04f4d;
}

.package-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.package-card {
  min-height: 19rem;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  border-color: rgba(16, 17, 19, 0.14);
  background: #fffaf0;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.package-card-main {
  grid-column: span 2;
}

.package-number {
  margin: 0;
  color: #a04f4d;
  font-weight: 900;
}

.package-card h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.package-card p,
.package-card li {
  color: rgba(16, 17, 19, 0.72);
}

.package-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.1rem;
}

.package-card strong,
.proposal-note {
  align-self: end;
  color: #101113;
  font-weight: 900;
}

.process-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.process-grid article {
  min-height: 15rem;
  display: grid;
  align-content: end;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.process-grid span {
  margin-bottom: 3rem;
  color: var(--lime);
  font-weight: 900;
}

.process-grid p,
.honest-list p {
  color: var(--muted);
}

.honest-section {
  background: #15171a;
}

.honest-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.honest-list p {
  min-height: 11rem;
  display: grid;
  align-content: end;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101113;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.landing-page .hero-copy h1,
.landing-page .service-hero-copy h1 {
  max-width: 12ch;
}

.landing-page .section-heading h2 {
  max-width: 15ch;
}

.keyword-section {
  background: #15171a;
}

.keyword-grid,
.related-link-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.keyword-card,
.related-link-card {
  min-height: 15rem;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #181b1f;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.keyword-card span,
.related-link-card span {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.keyword-card p,
.related-link-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.related-link-section {
  background: #101113;
}

.related-link-card {
  min-height: 12rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.related-link-card:hover,
.related-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 180, 91, 0.45);
  background: #1d2024;
}

@media (max-width: 1180px) {
  .service-hero {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 26rem);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .service-hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(3.15rem, 5.6vw, 5.4rem);
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    justify-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: #101113;
    padding: 0.75rem 1rem 1rem;
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .nav-groups {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .nav-group {
    justify-items: stretch;
    border-bottom: 1px solid var(--line);
    padding: 0.45rem 0 0.55rem;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
  }

  .nav-main {
    min-height: 2.8rem;
    font-size: 1.08rem;
  }

  .nav-sub {
    min-height: 2rem;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
  }

  .nav-sub:empty {
    display: none;
  }

  .nav-language {
    justify-content: flex-start;
    padding-top: 0.75rem;
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 92vh;
    padding-bottom: 2.5rem;
  }

  .hero-inner,
  .music-layout,
  .service-hero,
  .result-layout,
  .about-layout,
  .show-group-heading,
  .local-services-inner {
    grid-template-columns: 1fr;
  }

  .artist-card {
    margin-left: 0;
  }

  .tickets-grid,
  .feature-grid,
  .keyword-grid,
  .related-link-grid,
  .release-list,
  .package-grid,
  .process-grid,
  .honest-list,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .package-card-main {
    grid-column: span 1;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 17, 19, 0.15);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .empty-shows {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-name {
    max-width: 10rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo {
    width: 11.5rem;
    max-width: 56vw;
    max-height: 3.4rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 8rem);
  }

  .service-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 4rem);
  }

  h1 {
    font-size: clamp(3rem, 20vw, 4.8rem);
  }

  .service-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3rem);
    overflow-wrap: break-word;
  }

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

  .stream-strip {
    grid-template-columns: 1fr;
  }

  .stream-strip a {
    min-height: 5.6rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stream-strip a:last-child {
    border-bottom: 0;
  }

  .release-grid {
    grid-template-columns: 1fr;
  }

  .release-list a {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.15rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .bar-row {
    grid-template-columns: 1fr;
  }

  .bar-row strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
