:root {
  color-scheme: dark;
  --bg: oklch(13% 0.025 145);
  --bg-2: oklch(16% 0.032 145);
  --surface: oklch(20% 0.035 145);
  --surface-2: oklch(24% 0.04 145);
  --text: oklch(96% 0.014 104);
  --muted: oklch(76% 0.025 112);
  --soft: oklch(58% 0.027 120);
  --line: oklch(35% 0.04 140);
  --accent: oklch(87% 0.055 112);
  --accent-deep: oklch(57% 0.07 124);
  --green: oklch(61% 0.09 145);
  --shadow: 0 28px 80px oklch(7% 0.03 145 / 0.68);
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, oklch(24% 0.06 125 / 0.52), transparent 32rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 44%, var(--bg));
  color: var(--text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::selection {
  background: var(--accent);
  color: oklch(13% 0.025 145);
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--accent);
  color: oklch(13% 0.025 145);
  padding: 10px 14px;
  border-radius: 4px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--gutter);
  color: var(--text);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: oklch(13% 0.025 145 / 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding-block: 8px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px var(--gutter) clamp(76px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle at 50% 54%, transparent 0%, oklch(8% 0.03 145 / 0.22) 38%, oklch(8% 0.03 145 / 0.76) 100%),
    linear-gradient(180deg, oklch(8% 0.03 145 / 0.14) 0%, oklch(8% 0.03 145 / 0.24) 34%, oklch(8% 0.03 145 / 0.78) 74%, var(--bg) 100%),
    url("assets/jungle-hero.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.82;
}

.hero__content {
  width: min(1120px, 100%);
}

.hero h1,
.section h2,
.booking-section h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(4.2rem, 11vw, 9rem);
  text-shadow: 0 6px 34px oklch(7% 0.03 145 / 0.9);
  white-space: nowrap;
}

.hero__role {
  margin: clamp(12px, 2vw, 22px) 0 0;
  color: var(--text);
  font-size: clamp(1.05rem, 2.3vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 4px 18px oklch(7% 0.03 145 / 0.9);
}

.hero__line {
  max-width: 520px;
  margin: 24px 0 0;
  color: oklch(90% 0.018 104);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  text-shadow: 0 4px 18px oklch(7% 0.03 145 / 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg,
.text-link svg,
.scroll-cue svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button--primary {
  background: var(--accent);
  color: oklch(13% 0.025 145);
  box-shadow: 0 18px 48px oklch(65% 0.07 124 / 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: oklch(93% 0.05 112);
}

.button--ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: oklch(11% 0.025 145 / 0.38);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: oklch(87% 0.055 112 / 0.1);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  color: var(--text);
}

.section {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section h2,
.booking-section h2 {
  font-size: clamp(3.25rem, 8vw, 6.8rem);
}

.section__head p,
.booking-panel p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  color: oklch(94% 0.05 112);
}

.soundcloud-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.soundcloud-frame iframe {
  display: block;
}

.music-grid {
  display: block;
}

.profile-section {
  padding-top: 10px;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 6vw, 78px) 0;
}

.signal-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.signal-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.signal-list span {
  color: var(--accent);
  font-weight: 800;
}

.signal-list strong {
  font-size: clamp(1.12rem, 2.2vw, 1.65rem);
  line-height: 1.3;
}

.profile-card {
  justify-self: end;
  width: min(360px, 100%);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section {
  padding-top: clamp(42px, 6vw, 92px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: start;
}

.about-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.about-copy p {
  max-width: 68ch;
  margin: 0;
}

.about-copy p + p {
  margin-top: 26px;
}

.booking-section {
  position: relative;
  padding: clamp(64px, 9vw, 116px) var(--gutter);
  background:
    linear-gradient(180deg, oklch(11% 0.025 145 / 0.82), oklch(11% 0.025 145 / 0.96)),
    url("assets/jungle-hero.png");
  background-size: cover;
  background-position: center bottom;
  border-top: 1px solid var(--accent-deep);
}

.booking-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--accent);
  font-weight: 800;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: oklch(94% 0.05 112);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--accent-deep);
  border-radius: 4px;
  background: oklch(12% 0.025 145 / 0.84);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
}

.booking-form textarea {
  min-height: 146px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(87% 0.055 112 / 0.16);
}

.booking-form__wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.94rem;
}

.site-footer a {
  color: var(--accent);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 94svh;
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
    white-space: normal;
  }

  .section__head,
  .music-grid,
  .profile-grid,
  .about-layout,
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .section__head {
    display: grid;
  }

  .profile-card {
    justify-self: start;
    width: min(300px, 100%);
  }

  .booking-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    font-size: 1rem;
  }

  .nav {
    gap: 10px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 54px;
  }

  .signal-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .soundcloud-frame iframe {
    height: 390px;
  }

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

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