:root {
  --bg: #f2eee7;
  --paper: #fbf8f3;
  --ink: #171717;
  --muted: #67615a;
  --line: #d8d1c7;
  --accent: #bc9460;
  --accent-dark: #8f6e46;
  --dark: #171615;
  --shadow: 0 16px 40px rgba(23, 23, 23, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.45)),
    var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.site-header,
.contact-strip,
.profile,
.project-section,
.media-section,
.gallery-section,
.booking-section,
.site-footer {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  justify-self: start;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
}

.brand-dot-accent {
  background: var(--accent);
}

.brand-dot-ink {
  background: var(--ink);
}

.brand-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav,
.hero-actions,
.names-ribbon,
.media-links {
  display: flex;
  gap: 14px;
}

.site-nav {
  justify-content: center;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  justify-self: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 0;
  position: relative;
  transition: color 180ms ease;
}

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

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  justify-self: end;
  padding: 5px;
  border-radius: 999px;
  background: #efe8dd;
  border: 1px solid rgba(188, 148, 96, 0.16);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 54px;
  padding: 9px 15px;
  border-radius: 999px;
  cursor: pointer;
  font: 700 0.82rem Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-btn.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 6px 14px rgba(23, 23, 23, 0.12);
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.active:hover {
  transform: translateY(-1px);
}

.hero {
  margin-top: 18px;
}

.hero-band {
  padding: 26px 30px 18px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font: 700 0.72rem/1.4 Arial, Helvetica, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.inverse {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}

h1 {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(4.6rem, 9.2vw, 8.4rem);
  white-space: nowrap;
  overflow: hidden;
}

.focus-title {
  animation: true-focus-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: center left;
}

.interactive-title {
  color: var(--ink);
  cursor: default;
}

.interactive-title .hero-char {
  --char-prox: 0;
  display: inline-block;
  color: color-mix(in srgb, var(--ink) calc(84% + (var(--char-prox) * 16%)), var(--accent-dark));
  transform: translateY(calc(var(--char-prox) * -10px)) scale(calc(1 + (var(--char-prox) * 0.035)));
  text-shadow: 0 calc(var(--char-prox) * 10px) calc(18px * var(--char-prox)) rgba(143, 110, 70, calc(var(--char-prox) * 0.22));
  transition: transform 120ms ease, color 120ms ease, text-shadow 120ms ease;
  will-change: transform, color, text-shadow;
}

.interactive-title .hero-char.space {
  width: 0.28em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.03rem;
}

.hero-tagline {
  margin-top: 12px;
  color: var(--ink);
  font: 700 1.18rem/1.4 Arial, Helvetica, sans-serif;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 0;
}

.hero-left {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.intro + .intro {
  margin-top: 14px;
}

.hero-actions {
  margin-top: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font: 700 0.95rem Arial, Helvetica, sans-serif;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-light {
  background: transparent;
  border: 1px solid var(--line);
}

.availability {
  margin-top: 22px;
  color: var(--ink);
  font-weight: 700;
}

.hero-video {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  padding: 30px;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(23, 22, 21, 0.08), rgba(23, 22, 21, 0.68)),
    linear-gradient(135deg, #d7c09f 0%, #b08958 42%, #6d5744 100%);
  overflow: hidden;
}

.play {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.play.small {
  width: 58px;
  height: 58px;
}

.play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-36%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--accent-dark);
}

.hero-video-copy {
  max-width: 26rem;
}

.hero-video-copy h2,
.hero-video-copy p {
  color: white;
}

.contact-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 30px;
  border-top: 1px solid var(--line);
}

.contact-link,
.footer-link {
  font: 700 1rem/1.4 Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: var(--ink);
}

.profile,
.collaboration-section,
.project-section,
.media-section,
.gallery-section,
.booking-section {
  margin-top: 18px;
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
}

.profile-visual {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.portrait-placeholder,
.gallery-item {
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #eee4d4, #d9c2a1);
  border: 1px solid var(--line);
  color: rgba(23, 23, 23, 0.52);
  font: 700 0.76rem/1.4 Arial, Helvetica, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.portrait-placeholder {
  min-height: 420px;
}

.caption-stack {
  margin-top: 18px;
}

.side-note {
  max-width: 18rem;
}

.profile-copy {
  padding: 28px 30px 30px;
}

.profile-intro {
  margin-top: 14px;
  color: var(--ink);
  font: 700 1.08rem/1.6 Arial, Helvetica, sans-serif;
}

.copy-columns {
  margin-top: 22px;
  column-count: 2;
  column-gap: 28px;
}

.copy-columns p {
  margin-bottom: 16px;
  break-inside: avoid;
}

.collaboration-section {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.collab-grid {
  display: grid;
  padding: 28px 30px 30px;
}

.editorial-collabs {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.collab-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.16));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.collab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(23, 23, 23, 0.08);
  border-color: #ccb79a;
}

.artist-enigma,
.artist-shaggy,
.artist-big-mountain,
.artist-maxi-priest,
.artist-ki-mani {
  grid-column: span 2;
}

.artist-maxi-priest {
  grid-column: 2 / span 2;
}

.artist-ki-mani {
  grid-column: 4 / span 2;
}

.collab-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  min-height: 240px;
  padding: 20px;
  color: #fff;
  isolation: isolate;
}

.collab-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 22, 21, 0.04), rgba(23, 22, 21, 0.72)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.15), transparent 30%);
  z-index: -1;
}

.collab-photo strong {
  display: block;
  max-width: 10ch;
  color: #fff;
  font-size: clamp(1.85rem, 2.4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.collab-photo-meta {
  color: rgba(255, 255, 255, 0.82);
  font: 700 0.72rem/1.4 Arial, Helvetica, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artist-enigma .collab-photo {
  background:
    linear-gradient(135deg, rgba(70, 48, 33, 0.28), rgba(17, 17, 17, 0.7)),
    linear-gradient(135deg, #b99869, #4e3f37 54%, #1c1d28 100%);
}

.artist-shaggy .collab-photo {
  background:
    linear-gradient(135deg, rgba(133, 70, 30, 0.22), rgba(17, 17, 17, 0.72)),
    linear-gradient(135deg, #d6aa69, #8a603f 48%, #3f342c 100%);
}

.artist-big-mountain .collab-photo {
  background:
    linear-gradient(135deg, rgba(86, 61, 34, 0.18), rgba(17, 17, 17, 0.72)),
    linear-gradient(135deg, #c6a57e, #89684c 48%, #374635 100%);
}

.artist-maxi-priest .collab-photo {
  background:
    linear-gradient(135deg, rgba(76, 52, 32, 0.18), rgba(17, 17, 17, 0.72)),
    linear-gradient(135deg, #d3b28c, #8d6653 50%, #313c47 100%);
}

.artist-ki-mani .collab-photo {
  background:
    linear-gradient(135deg, rgba(97, 64, 37, 0.18), rgba(17, 17, 17, 0.72)),
    linear-gradient(135deg, #d8bc92, #8e6b4d 42%, #394530 100%);
}

.collab-copy {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 280px;
}

.collab-role {
  color: var(--accent-dark);
  font: 700 0.72rem/1.4 Arial, Helvetica, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collab-copy h3 {
  margin-top: 10px;
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  margin-bottom: 12px;
}

.collab-highlight {
  margin-bottom: 12px;
  color: var(--ink);
  font: 700 1rem/1.55 Arial, Helvetica, sans-serif;
}

.collab-copy p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.section-topline {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 24px 30px 18px;
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  color: var(--ink);
  font: 700 1.15rem/1.5 Arial, Helvetica, sans-serif;
}

.project-layout,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.project-statement,
.booking-name {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.project-text,
.booking-copy {
  padding: 28px 30px;
}

.project-text p + p,
.booking-copy p + p {
  margin-top: 14px;
}

.media-feature {
  padding: 0 30px 24px;
}

.wide-video {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: end;
  padding: 26px;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(23, 22, 21, 0.08), rgba(23, 22, 21, 0.62)),
    linear-gradient(135deg, #dcc8aa 0%, #ab885c 46%, #6f5845 100%);
  overflow: hidden;
}

.wide-video-copy h2,
.wide-video-copy p {
  color: white;
}

.media-links {
  padding: 0 30px 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.media-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  font: 700 1rem/1.5 Arial, Helvetica, sans-serif;
}

.media-link.static {
  color: var(--ink);
}

.link-label {
  color: var(--accent-dark);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 30px 30px;
}

.gallery-item {
  min-height: 240px;
  box-shadow: 0 12px 24px rgba(23, 23, 23, 0.03);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(23, 23, 23, 0.08);
  filter: saturate(1.06) contrast(1.02);
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 22px 30px;
}

.footer-note {
  text-align: right;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
  transition: transform 700ms ease, box-shadow 700ms ease;
}

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

@keyframes true-focus-in {
  0% {
    opacity: 0.6;
    transform: translateY(10px) scale(0.992);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: -0.04em;
  }
}

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

@media (max-width: 980px) {
  .site-header,
  .hero-main,
  .profile,
  .project-layout,
  .booking-layout,
  .section-topline,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 18px;
  }

  .site-nav {
    justify-content: start;
    justify-self: start;
    gap: 18px;
  }

  .language-switcher {
    justify-self: start;
  }

  .hero-left,
  .profile-visual,
  .project-statement,
  .booking-name {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .copy-columns {
    column-count: 1;
  }

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

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 20px, 1220px);
    padding-top: 10px;
  }

  .site-header,
  .hero-band,
  .hero-left,
  .hero-video,
  .contact-strip,
  .profile-visual,
  .profile-copy,
  .section-topline,
  .project-statement,
  .project-text,
  .media-feature,
  .media-links,
  .gallery-strip,
  .booking-name,
  .booking-copy,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.6rem);
    white-space: normal;
  }

  .interactive-title .hero-char {
    transform: none;
    text-shadow: none;
  }

  .hero-video,
  .wide-video {
    min-height: 240px;
  }

  .portrait-placeholder,
  .gallery-item {
    min-height: 200px;
  }

  .editorial-collabs {
    grid-template-columns: 1fr;
  }

  .artist-enigma,
  .artist-shaggy,
  .artist-big-mountain,
  .artist-maxi-priest,
  .artist-ki-mani {
    grid-column: span 1;
  }
}
