:root {
    --ink: #f6f0e7;
    --muted: #c8bfb4;
    --coal: #0b0b0d;
    --charcoal: #151315;
    --panel: #201b1b;
    --line: rgba(246, 240, 231, 0.16);
    --orange: #f06425;
    --gold: #f4a23a;
    --ember: #c93220;
    --cyan: #48c7d9;
    --cyan-soft: #a5e8ef;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    color-scheme: dark;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
  }
  
  body {
    margin: 0;
    background:
      linear-gradient(180deg, rgba(240, 100, 37, 0.05), transparent 520px),
      var(--coal);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
  }
  
  img,
  iframe {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration-color: rgba(72, 199, 217, 0.55);
    text-underline-offset: 0.18em;
  }
  
  a:hover,
  a:focus-visible {
    color: var(--cyan-soft);
  }
  
  .hero {
    position: relative;
    min-height: 92svh;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--line);
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(11, 11, 13, 0.92) 0%, rgba(11, 11, 13, 0.68) 42%, rgba(11, 11, 13, 0.24) 100%),
      linear-gradient(0deg, rgba(11, 11, 13, 0.88) 0%, rgba(11, 11, 13, 0.18) 40%, rgba(11, 11, 13, 0.48) 100%);
    z-index: -1;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    left: max(20px, calc((100vw - 1180px) / 2));
    bottom: 0;
    width: 72px;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    z-index: 1;
  }
  
  .hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #161111;
  }
  
  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
    filter: saturate(1.08) contrast(1.04);
  }
  
  .nav {
    width: min(1180px, calc(100% - 40px));
    margin: 0;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    isolation: isolate;
  }
  
  .nav__brand {
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.05rem;
  }
  
  .nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(246, 240, 231, 0.12);
    border-radius: 6px;
    background: rgba(11, 11, 13, 0.34);
    backdrop-filter: blur(12px);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  }
  
  .nav__links a {
    position: relative;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
  }
  
  .nav__links a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: center;
    transition: opacity 160ms ease, transform 160ms ease;
  }
  
  .nav__links a:hover,
  .nav__links a:focus-visible {
    background: rgba(246, 240, 231, 0.08);
    color: var(--ink);
    transform: translateY(-1px);
  }
  
  .nav__links a:hover::after,
  .nav__links a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
  }
  
  .hero__content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    align-self: center;
    padding: 90px 0 120px;
  }
  
  .eyebrow {
    margin: 0 0 12px;
    color: var(--cyan-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  h1,
  h2,
  h3,
  p {
    margin-top: 0;
  }
  
  h1 {
    margin-bottom: 14px;
    font-size: clamp(4.2rem, 13vw, 10rem);
    line-height: 0.85;
    letter-spacing: 0;
    text-transform: uppercase;
  }
  
  h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.98;
    letter-spacing: 0;
  }
  
  h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
    letter-spacing: 0;
  }
  
  .hero__lede {
    width: min(640px, 100%);
    margin-bottom: 30px;
    color: var(--ink);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
  }
  
  .hero__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: min(760px, 100%);
    margin: 0 0 30px;
  }
  
  .hero__signals span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid rgba(246, 240, 231, 0.22);
    border-radius: 4px;
    background: rgba(11, 11, 13, 0.48);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }
  
  .hero__actions,
  .press__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
  }
  
  .button:hover,
  .button:focus-visible {
    transform: translateY(-1px);
  }
  
  .button--primary {
    background: var(--orange);
    color: #120b08;
    box-shadow: 0 14px 35px rgba(240, 100, 37, 0.24);
  }
  
  .button--primary:hover,
  .button--primary:focus-visible {
    background: #ff7a3f;
    color: #120b08;
  }
  
  .button--secondary {
    background: rgba(246, 240, 231, 0.06);
    border-color: var(--line);
    color: var(--ink);
  }
  
  .section {
    border-bottom: 1px solid var(--line);
  }
  
  .section__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 84px 0;
  }
  
  .section__intro {
    width: min(620px, 100%);
    color: var(--muted);
    font-size: 1.05rem;
  }
  
  .section-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 34px;
  }
  
  .section-heading h2 {
    margin-bottom: 0;
  }
  
  .section-heading > p {
    width: min(420px, 100%);
    margin: 0;
    color: var(--muted);
  }
  
  .section--split,
  .section--profile {
    background: var(--coal);
  }
  
  .split,
  .booking,
  .contact,
  .press {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: start;
  }
  
  .copy {
    color: var(--muted);
    font-size: 1.12rem;
  }
  
  .copy p:last-child,
  .press__copy p:last-child {
    margin-bottom: 0;
  }
  
  .profile-section {
    display: grid;
    gap: 34px;
  }
  
  .profile-header {
    width: min(920px, 100%);
  }
  
  .profile-header h2 {
    margin-bottom: 0;
  }
  
  .profile-body {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 18px;
    align-items: stretch;
  }
  
  .profile-body .copy {
    width: 100%;
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(246, 240, 231, 0.14);
    border-radius: 6px;
    background:
      linear-gradient(145deg, rgba(240, 100, 37, 0.07), transparent 48%),
      rgba(246, 240, 231, 0.025);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
  }
  
  .profile-body .copy > span {
    display: block;
    margin-bottom: 18px;
    color: var(--cyan-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .profile-card {
    padding: 28px;
    border: 1px solid rgba(246, 240, 231, 0.14);
    border-radius: 6px;
    background:
      linear-gradient(145deg, rgba(240, 100, 37, 0.12), transparent 44%),
      linear-gradient(315deg, rgba(72, 199, 217, 0.08), transparent 52%),
      var(--panel);
    box-shadow: var(--shadow);
  }
  
  .profile-card > span {
    display: block;
    margin-bottom: 14px;
    color: var(--cyan-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .profile-card dl {
    margin: 0;
  }
  
  .profile-card div {
    display: grid;
    grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    padding: 17px 0;
    border-top: 1px solid rgba(246, 240, 231, 0.12);
  }
  
  .profile-card div:first-child {
    border-top: 0;
  }
  
  .profile-card dt {
    color: var(--cyan-soft);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .profile-card dd {
    margin: 0;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.2;
  }
  
  .section--music,
  .section--release,
  .section--live-media,
  .section--band {
    background: #131010;
  }
  
  .section--band {
    background:
      linear-gradient(135deg, rgba(240, 100, 37, 0.08), transparent 38%),
      linear-gradient(315deg, rgba(72, 199, 217, 0.06), transparent 42%),
      #0f0f12;
  }
  
  .band-section {
    display: grid;
    gap: 28px;
  }
  
  .band-heading {
    margin-bottom: 0;
  }
  
  .band-heading > div {
    width: min(720px, 100%);
  }
  
  .band-heading p:not(.eyebrow) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
  }
  
  .member-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  
  .member-card {
    overflow: hidden;
    border: 1px solid rgba(246, 240, 231, 0.14);
    border-radius: 6px;
    background: rgba(246, 240, 231, 0.045);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transition: border-color 160ms ease, transform 160ms ease;
  }
  
  .member-card:hover {
    border-color: rgba(240, 100, 37, 0.62);
    transform: translateY(-2px);
  }
  
  .member-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.02);
  }
  
  .member-card div {
    min-height: 86px;
    padding: 16px;
    border-top: 1px solid rgba(246, 240, 231, 0.1);
  }
  
  .member-card h3 {
    margin-bottom: 2px;
    font-size: 1.15rem;
    text-transform: uppercase;
  }
  
  .member-card p {
    margin: 0;
    color: var(--cyan-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  .music-section {
    display: grid;
    gap: 22px;
  }
  
  .music-heading {
    margin-bottom: 0;
    display: block;
  }
  
  .music-heading p:not(.eyebrow) {
    width: min(620px, 100%);
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
  }
  
  .platform-links {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-top: -2px;
  }
  
  .platform-links a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(246, 240, 231, 0.16);
    border-radius: 4px;
    background: rgba(246, 240, 231, 0.045);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
  }
  
  .platform-links a:first-child {
    border-color: rgba(240, 100, 37, 0.62);
    background: rgba(240, 100, 37, 0.14);
  }
  
  .platform-links a:hover,
  .platform-links a:focus-visible {
    border-color: rgba(72, 199, 217, 0.62);
    color: var(--ink);
  }
  
  .music-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    overflow: hidden;
    border: 1px solid rgba(246, 240, 231, 0.14);
    border-radius: 6px;
    background: #151212;
    box-shadow: var(--shadow);
  }
  
  .music-showcase .embed {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
  }
  
  .music-showcase iframe {
    height: 100%;
    min-height: 352px;
  }
  
  .featured-tracks {
    padding: 22px 24px;
    border-right: 1px solid rgba(246, 240, 231, 0.12);
    background:
      linear-gradient(135deg, rgba(240, 100, 37, 0.08), transparent 42%),
      linear-gradient(315deg, rgba(72, 199, 217, 0.055), transparent 52%),
      rgba(0, 0, 0, 0.2);
  }
  
  .featured-tracks > span {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .featured-tracks article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px 0;
    border-top: 1px solid rgba(246, 240, 231, 0.12);
  }
  
  .featured-tracks small {
    grid-row: span 2;
    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
  }
  
  .featured-tracks h3 {
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 1.14rem;
    line-height: 1.2;
  }
  
  .featured-tracks p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.38;
  }
  
  .embed {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #000;
    box-shadow: var(--shadow);
  }
  
  .embed iframe {
    border: 0;
  }
  
  .section--live-media {
    background:
      linear-gradient(180deg, rgba(72, 199, 217, 0.05), transparent 58%),
      #0d0d10;
  }
  
  .live-section {
    display: grid;
    gap: 52px;
  }
  
  .live-media {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: center;
  }
  
  .live-media__copy p {
    color: var(--muted);
    font-size: 1.08rem;
  }
  
  .photo-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: repeat(2, minmax(160px, 1fr));
    gap: 12px;
  }
  
  .photo-grid img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    border: 1px solid rgba(246, 240, 231, 0.14);
    border-radius: 6px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
  }
  
  .photo-grid__large {
    grid-row: 1 / span 2;
  }
  
  .shows-block {
    padding-top: 34px;
    border-top: 1px solid rgba(246, 240, 231, 0.12);
  }
  
  .shows-block .section-heading {
    margin-bottom: 22px;
  }
  
  .shows-block .section-heading h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1;
    text-transform: uppercase;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 12px;
  }
  
  .gallery-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(246, 240, 231, 0.14);
    border-radius: 6px;
    background: #050505;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  }
  
  .gallery-grid__wide {
    grid-column: span 2;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.03);
    transition: transform 260ms ease, filter 260ms ease;
  }
  
  .gallery-grid figure:hover img {
    transform: scale(1.035);
    filter: saturate(1.12) contrast(1.06);
  }
  
  .gallery-grid figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(246, 240, 231, 0.16);
    border-radius: 4px;
    background: rgba(11, 11, 13, 0.68);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }
  
  .section--release {
    background:
      linear-gradient(90deg, rgba(11, 11, 13, 0.92), rgba(11, 11, 13, 0.74) 48%, rgba(11, 11, 13, 0.9)),
      url("../img/sea-of-fire-cover.jpg") center / cover,
      #100d0c;
  }
  
  .release {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
  }
  
  .release__art {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #000;
    box-shadow: var(--shadow);
    transform: rotate(-1.5deg);
  }
  
  .release__art img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
  
  .release__copy p {
    width: min(650px, 100%);
    color: var(--muted);
    font-size: 1.08rem;
  }
  
  .release__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
  }
  
  .release__meta span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(246, 240, 231, 0.18);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.22);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
  }
  
  .booking {
    align-items: stretch;
  }
  
  .booking__panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background:
      linear-gradient(145deg, rgba(240, 100, 37, 0.11), rgba(72, 199, 217, 0.04)),
      var(--panel);
    box-shadow: var(--shadow);
  }
  
  .checklist {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
  }
  
  .checklist li {
    position: relative;
    padding: 0 0 16px 26px;
    color: var(--muted);
  }
  
  .checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 9px;
    height: 9px;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(240, 100, 37, 0.18);
  }
  
  .shows {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  
  .shows article {
    min-height: 132px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(246, 240, 231, 0.045);
    transition: border-color 160ms ease, transform 160ms ease;
  }
  
  .shows article:hover {
    border-color: rgba(240, 100, 37, 0.62);
    transform: translateY(-2px);
  }
  
  .shows p {
    margin: 0;
    color: var(--muted);
  }
  
  .section--press {
    background:
      linear-gradient(135deg, #0e0c0c 0%, #16100f 48%, #0b0b0d 100%);
  }
  
  .press {
    align-items: center;
  }
  
  .press-gallery {
    grid-column: 1 / -1;
    margin-top: 18px;
    padding-top: 56px;
    border-top: 1px solid rgba(246, 240, 231, 0.12);
  }
  
  .press__image {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #151515;
    box-shadow: var(--shadow);
  }
  
  .press__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }
  
  .press__copy p {
    color: var(--muted);
    font-size: 1.07rem;
  }
  
  .press__actions {
    margin-top: 24px;
  }
  
  .asset-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }
  
  .asset-card {
    min-width: 0;
    display: grid;
    grid-template-rows: 122px auto;
    overflow: hidden;
    border: 1px solid rgba(246, 240, 231, 0.14);
    border-radius: 6px;
    background: rgba(246, 240, 231, 0.04);
    color: var(--ink);
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
  }
  
  .asset-card:hover,
  .asset-card:focus-visible {
    border-color: rgba(72, 199, 217, 0.62);
    background: rgba(246, 240, 231, 0.07);
    transform: translateY(-2px);
  }
  
  .asset-card img {
    width: 100%;
    height: 122px;
    object-fit: cover;
  }
  
  .asset-card--logo img {
    object-fit: contain;
    padding: 10px 12px;
    background:
      radial-gradient(circle at 40% 40%, rgba(72, 199, 217, 0.18), transparent 55%),
      #08090b;
  }
  
  .asset-card span {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  .section--contact {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent),
      var(--ember);
    color: #fff8f1;
  }
  
  .section--contact .eyebrow {
    color: #fff8f1;
  }
  
  .contact {
    align-items: center;
  }
  
  address {
    display: grid;
    gap: 6px;
    font-style: normal;
    font-weight: 800;
  }
  
  address a {
    text-decoration-color: rgba(255, 255, 255, 0.55);
  }
  
  .contact__mail {
    font-size: clamp(1.5rem, 4vw, 3.2rem);
    line-height: 1;
    word-break: break-word;
  }
  
  @media (max-width: 860px) {
    .hero {
      min-height: 860px;
    }
  
    .hero::after {
      background:
        linear-gradient(0deg, rgba(11, 11, 13, 0.92) 0%, rgba(11, 11, 13, 0.42) 62%, rgba(11, 11, 13, 0.66) 100%);
    }
  
    .hero__media img {
      object-position: 67% center;
    }
  
    .nav {
      align-items: flex-start;
    }
  
    .nav__links {
      max-width: 370px;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 4px;
    }
  
    .hero__content {
      align-self: end;
      padding-bottom: 70px;
    }
  
    .shows,
    .member-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .split,
    .profile-section,
    .profile-body,
    .booking,
    .contact,
    .press,
    .release,
    .live-media,
    .music-showcase {
      grid-template-columns: 1fr;
    }
  
    .featured-tracks {
      border-right: 0;
      border-bottom: 1px solid rgba(246, 240, 231, 0.12);
    }
  
    .photo-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .section-heading {
      display: grid;
      align-items: start;
    }
  
    .gallery-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: 190px;
    }
  
    .platform-links {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 560px) {
    .nav {
      width: min(100% - 28px, 1180px);
      padding-top: 18px;
    }
  
    .nav__links {
      display: none;
    }
  
    .hero {
      min-height: 760px;
    }
  
    .hero__content,
    .section__inner {
      width: min(100% - 28px, 1180px);
    }
  
    .hero__actions,
    .press__actions,
    .hero__signals {
      display: grid;
    }
  
    .button {
      width: 100%;
    }
  
    .section__inner {
      padding: 58px 0;
    }
  
    .shows,
    .asset-grid,
    .member-grid,
    .photo-grid {
      grid-template-columns: 1fr;
    }
  
    .platform-links {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
  
    .music-showcase {
      border-radius: 4px;
    }
  
    .featured-tracks {
      padding: 18px;
    }
  
    .featured-tracks article {
      grid-template-columns: 28px minmax(0, 1fr);
      column-gap: 10px;
    }
  
    .photo-grid {
      grid-template-rows: none;
    }
  
    .photo-grid__large {
      grid-row: auto;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 230px;
    }
  
    .gallery-grid__wide {
      grid-column: auto;
    }
  
    .asset-card {
      grid-template-rows: 120px auto;
    }
  
    .asset-card img {
      height: 120px;
    }
  
    .booking__panel {
      padding: 22px;
    }
  }
  