:root {
  --font-main: "Seravek-Medium", "Seravek", "Gill Sans", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sand: #e7d1a8;
  --clay: #b45631;
  --rust: #7d2f1d;
  --ink: #14100d;
  --night: #11171a;
  --smoke: rgba(255, 247, 232, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --green: #6e8a74;
  --gold: #d99b4a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: #fff7e8;
  font-family: var(--font-main);
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(20, 16, 13, 0.96), rgba(125, 47, 29, 0.96));
  transform: translateY(100%);
}

.page-transition.active {
  animation: sectionWipe 760ms cubic-bezier(0.77, 0, 0.175, 1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 64px);
  transition: background 260ms ease, padding 260ms ease, border-color 260ms ease;
}

.site-header.scrolled {
  padding-block: 14px;
  background: rgba(17, 23, 26, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.header-actions,
.language-switch,
.hero-actions,
.contact-actions,
.stats-row,
.card-topline,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.desktop-nav {
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 247, 232, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav a,
.menu-panel a,
.album-card a,
.track-strip a {
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.menu-panel a:hover,
.album-card a:hover,
.track-strip a:hover {
  color: var(--sand);
}

.header-actions {
  gap: 14px;
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.18);
}

.language-switch a {
  display: grid;
  min-width: 34px;
  min-height: 30px;
  place-items: center;
  border: 0;
  color: rgba(255, 247, 232, 0.58);
  background: transparent;
  cursor: pointer;
}

.language-switch a.active {
  color: var(--ink);
  background: var(--sand);
}

.menu-button {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease;
}

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

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

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-content: start;
  justify-items: center;
  overflow-y: auto;
  padding: clamp(118px, 14vh, 150px) clamp(20px, 6vw, 88px) 36px;
  background:
    radial-gradient(circle at 8% 0%, rgba(226, 161, 71, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(15, 22, 24, 0.985), rgba(26, 18, 14, 0.985));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 240ms ease, visibility 240ms ease, transform 240ms ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(880px, 100%);
}

.menu-panel a {
  display: flex;
  min-width: 0;
  min-height: 78px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(231, 209, 168, 0.08), transparent 54%),
    rgba(255, 255, 255, 0.035);
  font-family: var(--font-main);
  font-size: clamp(30px, 5.2vw, 48px);
  line-height: 1;
  white-space: nowrap;
}

.menu-panel a:hover {
  border-color: rgba(231, 209, 168, 0.42);
  background:
    linear-gradient(145deg, rgba(231, 209, 168, 0.15), transparent 58%),
    rgba(255, 255, 255, 0.055);
  transform: translateY(-2px);
}

.menu-footer {
  display: flex;
  width: min(880px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 247, 232, 0.62);
  font-size: 12px;
  text-transform: uppercase;
}

.menu-footer span {
  color: var(--sand);
  font-weight: 800;
}

.menu-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.menu-footer-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 247, 232, 0.72);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-footer-links a:hover {
  border-color: rgba(231, 209, 168, 0.4);
  color: var(--sand);
  background: rgba(231, 209, 168, 0.08);
}

.section {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 110px clamp(22px, 7vw, 88px) 80px;
}

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

.hero-media {
  background-image: url("./assets/kyto-outback-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 23, 26, 0.86) 0%, rgba(17, 23, 26, 0.36) 48%, rgba(20, 16, 13, 0.68) 100%),
    linear-gradient(0deg, rgba(20, 16, 13, 1) 0%, rgba(20, 16, 13, 0) 36%);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-main);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(76px, 16vw, 184px);
  line-height: 0.82;
}

h2 {
  margin-bottom: 22px;
  max-width: 900px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.94;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 34px);
}

.hero-copy,
.section-copy p,
.world-card p,
.about-copy p,
.discography-header p,
.album-card p,
.singles-header p,
.thanks-inner p,
.contact-inner p {
  color: var(--smoke);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 34px;
}

.hero-actions,
.contact-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--ink);
}

.email-button {
  text-transform: none;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 7vw, 88px);
  bottom: 36px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 70px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding-top: 10px;
}

.scroll-cue span {
  width: 4px;
  height: 18px;
  background: var(--sand);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.section-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.music {
  background: linear-gradient(135deg, #14100d 0%, #221713 45%, #26312a 100%);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.platform-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.platform-card::after {
  content: "";
  position: absolute;
  top: -36px;
  right: -34px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(231, 209, 168, 0.18);
  background: rgba(231, 209, 168, 0.05);
  transform: rotate(18deg);
  pointer-events: none;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 209, 168, 0.54);
  background: rgba(231, 209, 168, 0.1);
}

.platform-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(231, 209, 168, 0.24);
  background: rgba(20, 16, 13, 0.42);
  color: var(--sand);
}

.platform-icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-icon-spotify {
  border-color: rgba(29, 185, 84, 0.38);
  background: rgba(29, 185, 84, 0.14);
  color: #fff7e8;
}

.platform-icon-spotify circle {
  fill: #1db954;
  stroke: none;
}

.platform-icon-spotify path {
  stroke: #fff7e8;
  stroke-width: 1.8;
}

.platform-icon-apple {
  color: #fff7e8;
}

.platform-icon-youtube {
  border-color: rgba(255, 77, 64, 0.38);
  background: rgba(255, 77, 64, 0.12);
}

.platform-icon-youtube circle {
  stroke: rgba(255, 77, 64, 0.92);
}

.platform-icon-youtube path {
  fill: rgba(255, 77, 64, 0.96);
  stroke: none;
}

.platform-label,
.platform-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.platform-label {
  margin-bottom: 18px;
  padding-right: 54px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-card strong {
  color: #fff7e8;
  font-size: 14px;
  line-height: 1.35;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stats-row div {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 18px 18px;
  border: 1px solid rgba(231, 209, 168, 0.13);
  background:
    linear-gradient(145deg, rgba(231, 209, 168, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.stats-row div::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.72;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-main);
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 0.96;
}

.stats-row span {
  color: rgba(255, 247, 232, 0.66);
  font-size: 13px;
  text-transform: uppercase;
}

.spotify-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.card-topline {
  justify-content: space-between;
  padding: 18px;
  color: rgba(255, 247, 232, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35d06d;
  box-shadow: 0 0 0 0 rgba(53, 208, 109, 0.42);
  animation: pulse 1.8s infinite;
}

.spotify-card iframe {
  display: block;
}

.world {
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.82), rgba(18, 44, 42, 0.56), rgba(20, 16, 13, 0.72)),
    linear-gradient(0deg, rgba(20, 16, 13, 0.96), rgba(20, 16, 13, 0.36) 55%, rgba(20, 16, 13, 0.72)),
    url("./assets/kyto-port-douglas-beach.png") center / cover fixed;
}

.world-header {
  margin-bottom: 44px;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.world-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 16, 13, 0.42);
  backdrop-filter: blur(10px);
  transition: transform 240ms ease, background 240ms ease;
}

.world-card:hover {
  transform: translateY(-8px);
  background: rgba(20, 16, 13, 0.62);
}

.world-card span {
  display: block;
  margin-bottom: 90px;
  color: var(--sand);
  font-weight: 800;
}

.about {
  background:
    linear-gradient(130deg, rgba(20, 16, 13, 0.98), rgba(38, 22, 17, 0.94)),
    url("./assets/kyto-outback-hero.png") center / cover;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: center;
}

.about-portrait {
  position: relative;
  margin: 0;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 16, 13, 0.2), rgba(20, 16, 13, 0));
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-copy p {
  max-width: 720px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.about-tags span {
  padding: 11px 14px;
  border: 1px solid rgba(231, 209, 168, 0.28);
  color: var(--sand);
  background: rgba(231, 209, 168, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.discography {
  background:
    radial-gradient(circle at 80% 10%, rgba(180, 86, 49, 0.28), transparent 34%),
    linear-gradient(140deg, #151c1b 0%, #14100d 52%, #261611 100%);
}

.discography-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  margin-bottom: 44px;
}

.discography-header p {
  margin-bottom: 10px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "featured featured"
    "album-two album-three"
    "album-four album-five";
  gap: 18px;
  align-items: stretch;
}

.album-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: rgba(231, 209, 168, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.album-card.featured {
  grid-area: featured;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  min-height: 0;
}

.album-card:nth-child(2) {
  grid-area: album-two;
}

.album-card:nth-child(3) {
  grid-area: album-three;
}

.album-card:nth-child(4) {
  grid-area: album-four;
}

.album-card:nth-child(5) {
  grid-area: album-five;
}

.album-card:not(.featured) {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
  min-height: 250px;
}

.album-card.featured .album-art {
  aspect-ratio: 1;
  align-self: stretch;
}

.album-card.featured .album-art img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
}

.album-card:not(.featured) .album-art,
.album-card:not(.featured) .album-art img {
  min-height: 100%;
}

.album-card:not(.featured) .album-art img {
  height: 100%;
  aspect-ratio: auto;
}

.album-art {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.album-art:focus {
  outline: 2px solid rgba(231, 209, 168, 0.68);
  outline-offset: 3px;
}

.album-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  display: block;
  transition: transform 280ms ease, filter 280ms ease;
}

.album-card:hover .album-art img,
.album-card:focus-within .album-art img {
  transform: scale(1.04);
  filter: brightness(0.7) saturate(1.08);
}

.album-preview {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(231, 209, 168, 0.28);
  background: rgba(20, 16, 13, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.album-card:not(.featured) .album-preview {
  left: 10px;
  right: 10px;
  bottom: 10px;
  gap: 10px;
  padding: 12px;
}

.album-card:hover .album-preview,
.album-card:focus-within .album-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.album-preview-meta {
  min-width: 0;
}

.album-preview-meta span,
.album-control {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.album-preview-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
}

.album-preview-meta strong {
  display: block;
  overflow-wrap: anywhere;
  color: #fff7e8;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.08;
}

.album-card:not(.featured) .album-preview-meta strong {
  font-size: 15px;
  line-height: 1.1;
}

.album-preview-controls {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 8px;
  align-items: center;
}

.album-card:not(.featured) .album-preview-controls {
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 6px;
}

.album-control {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231, 209, 168, 0.32);
  color: var(--sand);
  background: rgba(231, 209, 168, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.album-card:not(.featured) .album-control {
  min-height: 34px;
}

.album-control:hover {
  transform: translateY(-1px);
  border-color: rgba(231, 209, 168, 0.62);
  background: rgba(231, 209, 168, 0.14);
}

.album-control-main {
  gap: 8px;
}

.album-card:not(.featured) .album-control-main {
  font-size: 0;
}

.album-control-main::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.album-control-main.is-playing {
  border-color: var(--sand);
  color: var(--ink);
  background: var(--sand);
}

.album-control-main.is-playing::before {
  width: 9px;
  height: 12px;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 32%, transparent 32% 58%, currentColor 58% 100%);
}

.album-preview audio {
  display: none;
}

.album-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.album-card.featured .album-content {
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(231, 209, 168, 0.06), transparent 44%),
    linear-gradient(90deg, rgba(20, 16, 13, 0.18), rgba(255, 255, 255, 0.025));
}

.album-kicker {
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.album-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-main);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.album-card.featured h3 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.94;
}

.album-card:not(.featured) h3 {
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.05;
}

.album-card:not(.featured) .album-content {
  padding: 20px;
}

.album-card:not(.featured) .album-kicker {
  margin-bottom: 8px;
}

.album-card p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.55;
}

.album-card.featured p {
  max-width: 700px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.album-card a {
  margin-top: auto;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.track-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.track-strip span,
.track-strip a {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.track-strip span {
  color: var(--sand);
}

.track-strip a {
  color: rgba(255, 247, 232, 0.72);
}

.quality {
  background:
    radial-gradient(circle at 12% 14%, rgba(231, 209, 168, 0.18), transparent 30%),
    linear-gradient(135deg, #0f1414 0%, #14100d 48%, #2b1710 100%);
}

.quality-inner {
  display: grid;
  gap: 38px;
}

.quality-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.quality-copy h2 {
  max-width: 740px;
  font-size: clamp(44px, 6vw, 82px);
}

.quality-copy p {
  max-width: 720px;
  margin-bottom: 0;
}

.quality-visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 34vw, 540px);
  padding: 0;
  border: 1px solid rgba(231, 209, 168, 0.2);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.quality-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.14), transparent 44%, rgba(20, 16, 13, 0.52)),
    linear-gradient(0deg, rgba(20, 16, 13, 0.72), transparent 42%, rgba(20, 16, 13, 0.18));
  opacity: 1;
  pointer-events: none;
}

.quality-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  height: auto;
  border: 1px solid rgba(231, 209, 168, 0.16);
  background: linear-gradient(135deg, rgba(255, 247, 232, 0.08), transparent 34%);
  opacity: 1;
  pointer-events: none;
}

.quality-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quality-orbit {
  position: absolute;
  top: 34px;
  right: 34px;
  display: grid;
  width: min(250px, 56%);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(231, 209, 168, 0.22);
  background:
    radial-gradient(circle, rgba(255, 247, 232, 0.18) 0 2px, transparent 3px),
    repeating-radial-gradient(circle, transparent 0 25px, rgba(231, 209, 168, 0.18) 26px 27px),
    linear-gradient(135deg, rgba(217, 155, 74, 0.13), rgba(110, 138, 116, 0.08));
  opacity: 0.92;
}

.quality-orbit span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(231, 209, 168, 0.22);
}

.quality-orbit span:nth-child(1) {
  width: 72%;
  aspect-ratio: 1;
}

.quality-orbit span:nth-child(2) {
  width: 46%;
  aspect-ratio: 1;
}

.quality-orbit span:nth-child(3) {
  width: 18%;
  aspect-ratio: 1;
  background: rgba(231, 209, 168, 0.12);
}

.quality-deck {
  position: absolute;
  left: 30px;
  top: 38px;
  z-index: 2;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  width: min(300px, calc(100% - 60px));
  padding: 18px;
  border: 1px solid rgba(231, 209, 168, 0.22);
  background:
    linear-gradient(135deg, rgba(20, 16, 13, 0.92), rgba(51, 35, 27, 0.78)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.quality-cover-mark {
  display: grid;
  width: 76px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(231, 209, 168, 0.24);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(231, 209, 168, 0.98), rgba(217, 155, 74, 0.78)),
    var(--sand);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.quality-play-mark {
  display: grid;
  align-self: center;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(231, 209, 168, 0.24);
  border-radius: 50%;
  color: var(--sand);
  background: rgba(231, 209, 168, 0.08);
}

.quality-play-mark span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.quality-track-lines {
  grid-column: 1 / 3;
  display: grid;
  gap: 8px;
}

.quality-track-lines span {
  display: block;
  height: 6px;
  background: linear-gradient(90deg, rgba(231, 209, 168, 0.56), rgba(231, 209, 168, 0.06));
}

.quality-track-lines span:nth-child(2) {
  width: 74%;
}

.quality-track-lines span:nth-child(3) {
  width: 52%;
}

.quality-signal {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 194px;
  z-index: 2;
  width: calc(100% - 56px);
  height: 132px;
  overflow: visible;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-signal path {
  vector-effect: non-scaling-stroke;
}

.signal-shadow {
  stroke: rgba(0, 0, 0, 0.38);
  stroke-width: 18;
}

.signal-main {
  stroke: rgba(231, 209, 168, 0.94);
  stroke-width: 4;
}

.signal-detail {
  stroke: rgba(110, 138, 116, 0.78);
  stroke-width: 2;
}

.quality-spectrum {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 114px;
  z-index: 1;
  display: flex;
  height: 116px;
  align-items: end;
  gap: 7px;
  opacity: 0.96;
}

.quality-spectrum span {
  flex: 1;
  min-width: 4px;
  border: 1px solid rgba(231, 209, 168, 0.16);
  background: linear-gradient(180deg, rgba(231, 209, 168, 0.96), rgba(180, 86, 49, 0.58) 66%, rgba(20, 16, 13, 0.42));
}

.quality-spectrum span:nth-child(1) {
  height: 28%;
}

.quality-spectrum span:nth-child(2) {
  height: 48%;
}

.quality-spectrum span:nth-child(3) {
  height: 76%;
}

.quality-spectrum span:nth-child(4) {
  height: 42%;
}

.quality-spectrum span:nth-child(5) {
  height: 92%;
}

.quality-spectrum span:nth-child(6) {
  height: 60%;
}

.quality-spectrum span:nth-child(7) {
  height: 84%;
}

.quality-spectrum span:nth-child(8) {
  height: 36%;
}

.quality-spectrum span:nth-child(9) {
  height: 70%;
}

.quality-spectrum span:nth-child(10) {
  height: 54%;
}

.quality-spectrum span:nth-child(11) {
  height: 88%;
}

.quality-spectrum span:nth-child(12) {
  height: 46%;
}

.quality-codec-row {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quality-codec-row span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(231, 209, 168, 0.26);
  color: var(--sand);
  background: rgba(20, 16, 13, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quality-grid article {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(231, 209, 168, 0.18);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.quality-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(231, 209, 168, 0.12);
  transform: rotate(16deg);
}

.quality-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(231, 209, 168, 0.22);
  color: var(--sand);
  background: rgba(231, 209, 168, 0.08);
}

.quality-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-grid article > span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quality-grid h3 {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.04;
}

.quality-grid p {
  color: var(--smoke);
  font-size: 15px;
  line-height: 1.65;
}

.quality-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.singles {
  background: linear-gradient(150deg, #14100d 0%, #171f1d 48%, #2d1a12 100%);
}

.singles-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
  margin-bottom: 44px;
}

.single-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.single-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 56px minmax(104px, auto);
  gap: 14px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 247, 232, 0.78);
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.single-row:hover {
  padding-inline: 10px;
  color: #fff7e8;
  background: rgba(255, 255, 255, 0.05);
}

.single-title {
  min-width: 0;
}

.single-row > span,
.single-row em {
  color: var(--sand);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.single-row strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.15;
}

.single-row audio {
  display: none;
}

.preview-button {
  display: inline-flex;
  justify-self: end;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(231, 209, 168, 0.34);
  padding: 0 12px;
  color: var(--sand);
  background: rgba(231, 209, 168, 0.08);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.preview-button::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

.single-row:hover .preview-button:not(.is-playing),
.preview-button:hover {
  border-color: rgba(231, 209, 168, 0.64);
  background: rgba(231, 209, 168, 0.14);
}

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

.preview-button.is-playing {
  border-color: var(--sand);
  color: var(--ink);
  background: var(--sand);
}

.preview-button.is-playing::before {
  width: 8px;
  height: 11px;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 32%, transparent 32% 58%, currentColor 58% 100%);
}

.thanks {
  background:
    linear-gradient(rgba(20, 16, 13, 0.82), rgba(20, 16, 13, 0.92)),
    url("./assets/kyto-outback-hero.png") center / cover fixed;
}

.thanks-inner {
  text-align: center;
}

.thanks-inner h2,
.thanks-inner p {
  margin-inline: auto;
}

.thanks-inner p {
  max-width: 850px;
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.thanks-grid span {
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  background: linear-gradient(140deg, var(--sand), #f4ead6 45%, #9eb3a1);
  color: var(--ink);
}

.contact-inner {
  text-align: center;
}

.contact-inner h2,
.contact-inner p {
  margin-inline: auto;
}

.contact-inner p,
.contact .eyebrow {
  color: rgba(20, 16, 13, 0.68);
}

.contact .button.ghost {
  border-color: rgba(20, 16, 13, 0.24);
  background: rgba(20, 16, 13, 0.06);
}

.contact-actions {
  justify-content: center;
  margin-top: 34px;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 7vw, 88px);
  background: var(--ink);
  color: rgba(255, 247, 232, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes slowDrift {
  from {
    transform: scale(1.04) translate3d(-8px, -4px, 0);
  }
  to {
    transform: scale(1.08) translate3d(10px, 6px, 0);
  }
}

@keyframes sectionWipe {
  0% {
    transform: translateY(100%);
  }
  46% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.36;
  }
  50% {
    transform: translateY(28px);
    opacity: 1;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(53, 208, 109, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(53, 208, 109, 0);
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    padding: 18px 20px;
  }

  .hero {
    min-height: 92svh;
    padding-inline: 22px;
  }

  .split,
  .about-layout,
  .world-grid,
  .discography-header,
  .singles-header,
  .quality-hero,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .section-inner {
    width: min(100% - 36px, 1180px);
  }

  .platform-grid,
  .album-grid,
  .stats-row,
  .single-list,
  .thanks-grid {
    grid-template-columns: 1fr;
  }

  .album-grid {
    grid-template-areas: none;
  }

  .album-card,
  .album-card.featured {
    display: flex;
    grid-area: auto;
    grid-column: auto;
    grid-row: auto;
  }

  .album-grid .album-card:nth-child(2),
  .album-grid .album-card:nth-child(3),
  .album-grid .album-card:nth-child(4),
  .album-grid .album-card:nth-child(5) {
    grid-area: auto;
  }

  .album-card:not(.featured) {
    display: flex;
    min-height: 100%;
  }

  .album-card.featured .album-content {
    padding: 22px;
  }

  .album-card.featured h3 {
    font-size: clamp(24px, 8vw, 42px);
  }

  .album-card.featured p {
    font-size: 16px;
  }

  .album-card.featured .album-art img,
  .album-card:not(.featured) .album-art,
  .album-card:not(.featured) .album-art img {
    min-height: 0;
  }

  .album-card:not(.featured) .album-art img {
    height: auto;
    aspect-ratio: 1;
  }

  .album-preview {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .album-card:not(.featured) .album-preview {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 14px;
    padding: 16px;
  }

  .album-card:not(.featured) .album-preview-meta strong {
    font-size: clamp(16px, 2vw, 22px);
  }

  .album-card:not(.featured) .album-preview-controls {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .album-card:not(.featured) .album-control {
    min-height: 38px;
  }

  .album-card:not(.featured) .album-control-main {
    font-size: 11px;
  }

  .world {
    background-attachment: scroll;
  }

  .thanks {
    background-attachment: scroll;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 520px;
  }

  .world-card {
    min-height: 230px;
  }

  .quality-grid article {
    min-height: auto;
  }

  .quality-visual {
    min-height: 430px;
  }

  .world-card span {
    margin-bottom: 54px;
  }

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

  .menu-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .menu-overlay {
    padding: 112px 20px 28px;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .menu-panel a {
    min-height: 58px;
    padding: 0 16px;
    font-size: clamp(28px, 10vw, 42px);
  }

  .menu-footer {
    gap: 12px;
    margin-top: 16px;
    padding-top: 14px;
  }

  .menu-footer-links {
    gap: 8px;
  }

  .menu-footer-links a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .language-switch {
    display: none;
  }

  h1 {
    font-size: clamp(66px, 24vw, 96px);
  }

  h2 {
    font-size: 42px;
  }

  .hero-copy,
  .section-copy p,
  .world-card p,
  .about-copy p,
  .discography-header p,
  .album-card p,
  .singles-header p,
  .thanks-inner p,
  .contact-inner p {
    font-size: 16px;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 430px;
  }

  .single-row {
    grid-template-columns: 34px minmax(0, 1fr) 42px;
    gap: 10px;
    min-height: 86px;
    padding-block: 12px;
  }

  .preview-button {
    grid-column: 2 / 4;
    justify-self: start;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .quality-visual {
    min-height: 420px;
  }

  .quality-codec-row {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-row div {
    width: 100%;
  }
}

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