:root {
  color-scheme: dark;
  --bg: #11100e;
  --bg-soft: #181613;
  --bg-raised: #201d18;
  --text: #f5efe5;
  --muted: #bdb3a3;
  --subtle: #837868;
  --line: rgba(245, 239, 229, 0.13);
  --accent: #c7ad7a;
  --accent-strong: #e1c789;
  --ink: #080706;
  --danger: #d76552;
  --success: #8fbf8d;
  --radius: 8px;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-condensed: "Arial Narrow", "Helvetica Neue Condensed", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 0%, rgba(199, 173, 122, 0.11), transparent 30%),
    linear-gradient(180deg, #11100e 0%, #151310 58%, #0d0c0b 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(245, 239, 229, 0.09);
  background: rgba(17, 16, 14, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  height: 74px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.brand img {
  width: clamp(128px, 18vw, 218px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color 180ms var(--ease);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.03);
}

.language-toggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--subtle);
  min-width: 36px;
  min-height: 30px;
  padding: 0 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.language-toggle button.is-active {
  background: var(--text);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  content: "";
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 18px var(--gutter) 22px;
  background: rgba(17, 16, 14, 0.98);
}

.mobile-menu.is-open {
  display: grid;
  gap: 14px;
}

.mobile-menu a {
  padding: 10px 0;
  color: var(--text);
  font-family: var(--font-condensed);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

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

.section + .section {
  padding-top: clamp(18px, 3vw, 34px);
}

.hero {
  width: min(1380px, 100%);
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 76px) var(--gutter) clamp(44px, 6vw, 76px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.hero-copy {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero h1 {
  margin: 0;
  max-width: min(940px, 100%);
  font-family: var(--font-condensed);
  font-size: clamp(72px, 12.5vw, 178px);
  font-stretch: condensed;
  font-weight: 950;
  line-height: .78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-logo-title {
  line-height: 1;
}

.hero-logo-title img {
  width: min(900px, 100%);
  height: auto;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, .02);
  color: var(--text);
}

.hero-art {
  position: relative;
  width: min(1040px, 100%);
}

.portrait-frame {
  position: relative;
  width: 100%;
  height: clamp(520px, 64svh, 880px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #edece8;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.portrait-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 16, 14, .08) 54%, rgba(17, 16, 14, .34) 100%);
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 44%;
  filter: contrast(1.04);
}

.date-list {
  display: grid;
}

.date-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(8, 7, 6, .12);
  padding: 13px 0;
}

.date-day {
  font-family: var(--font-condensed);
  font-size: 28px;
  font-weight: 950;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.date-month {
  display: block;
  margin-top: 4px;
  color: rgba(8, 7, 6, .56);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.date-title {
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.date-location {
  margin-top: 3px;
  color: rgba(8, 7, 6, .56);
  font-size: 12px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading.is-compact {
  grid-template-columns: 1fr;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 18px);
}

.dates-section {
  padding-top: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(18px, 3vw, 38px);
}

.dates-section .section-heading {
  margin-bottom: clamp(18px, 3vw, 34px);
}

.dates-section .section-kicker {
  margin-bottom: 8px;
}

.dates-section .section-heading h2 {
  font-size: clamp(38px, 5.8vw, 72px);
}

.date-list {
  border-top: 1px solid var(--line);
}

.date-row {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  column-gap: clamp(12px, 2vw, 26px);
  padding: 12px 0;
}

.date-row.sortable-card {
  grid-template-columns: 30px 58px minmax(0, 1fr) auto;
}

.date-row .date-location,
.date-row .date-month {
  color: var(--muted);
}

.date-row .date-title {
  margin: 0;
  color: var(--text);
  display: -webkit-box;
  font-size: clamp(17px, 1.65vw, 23px);
  font-weight: 900;
  overflow: hidden;
  line-height: 1.07;
  text-overflow: clip;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.date-event {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.date-event .map-link {
  display: block;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  text-decoration-color: rgba(199, 173, 122, .3);
  text-underline-offset: 3px;
  white-space: nowrap;
}

.date-row .date-day {
  color: var(--accent-strong);
  font-size: clamp(30px, 3.5vw, 42px);
}

.map-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(199, 173, 122, .45);
  text-underline-offset: 4px;
  transition: color 180ms var(--ease), text-decoration-color 180ms var(--ease);
}

.map-link:hover,
.map-link:focus-visible {
  color: var(--accent-strong);
  text-decoration-color: currentColor;
  outline: none;
}

.date-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
}

.date-actions .button {
  min-height: 32px;
  padding: 0 12px;
  font-size: 10px;
  letter-spacing: .11em;
  white-space: nowrap;
}

.date-more {
  display: flex;
  justify-content: center;
  padding: 18px 0 2px;
}

.date-more .button {
  min-width: 148px;
  min-height: 34px;
  padding: 0 18px;
  font-size: 10px;
}

.sortable-card {
  position: relative;
}

.drag-handle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(245, 239, 229, .2);
  border-radius: 50%;
  background: rgba(17, 16, 14, .72);
  color: var(--muted);
  cursor: grab;
  touch-action: none;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), opacity 180ms var(--ease);
}

.drag-handle svg {
  width: 16px;
  height: 16px;
}

.drag-handle:hover,
.drag-handle:focus-visible {
  border-color: rgba(225, 199, 137, .72);
  background: rgba(32, 29, 24, .94);
  color: var(--text);
  outline: none;
}

.music-card .drag-handle,
.video-card .drag-handle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  opacity: .74;
}

.music-card:hover .drag-handle,
.music-card:focus-within .drag-handle,
.video-card:hover .drag-handle,
.video-card:focus-within .drag-handle {
  opacity: 1;
}

.date-row .drag-handle {
  align-self: center;
  justify-self: start;
}

.sortable-card.is-dragging {
  opacity: .96;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  cursor: grabbing;
}

body.is-sorting {
  cursor: grabbing;
  user-select: none;
}

.sortable-placeholder {
  min-height: 120px;
  border: 1px dashed rgba(225, 199, 137, .54);
  border-radius: var(--radius);
  background: rgba(225, 199, 137, .08);
}

.sortable-placeholder-row {
  min-height: 92px;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

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

.music-card,
.video-card,
.bio-panel,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.music-card,
.video-card {
  position: relative;
  overflow: hidden;
}

.video-card.has-video-playlist {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  grid-template-rows: auto auto;
}

.music-card {
  min-height: 244px;
}

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

.music-player {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 229, .08);
  border-radius: calc(var(--radius) - 2px);
  background: #000;
}

.music-player iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 40vw, 420px);
  border: 0;
}

.content-type {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.music-title,
.video-title {
  margin: 12px 0 0;
  font-size: clamp(21px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1;
}

.music-subtitle,
.video-description {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(199, 173, 122, .55);
  text-underline-offset: 4px;
}

.video-embed {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-content {
  padding: 20px;
}

.video-card.has-video-playlist .video-embed {
  grid-column: 1;
  grid-row: 1;
}

.video-card.has-video-playlist .video-content {
  grid-column: 1;
  grid-row: 2;
}

.video-active-title {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.video-playlist {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 20px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
  overflow: hidden;
}

.video-playlist-heading {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.video-playlist-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
  min-height: 48px;
  padding: 11px 0;
  border: 0;
  border-top: 1px solid rgba(245, 239, 229, .1);
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.video-playlist-heading + .video-playlist-item {
  margin-top: 10px;
}

.video-playlist-item:hover,
.video-playlist-item:focus-visible,
.video-playlist-item.is-active {
  color: var(--text);
}

.video-playlist-item:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}

.video-playlist-index {
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.video-playlist-name {
  min-width: 0;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.bio-booking-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
}

.contact-section {
  position: relative;
}

.legacy-anchor {
  position: absolute;
  top: calc(-1 * 88px);
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.contact-heading {
  margin-bottom: clamp(20px, 3vw, 34px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
  gap: 18px;
  align-items: start;
}

.bio-panel {
  padding: clamp(24px, 4vw, 40px);
}

.bio-panel p {
  margin: 0;
}

.bio-panel .section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .18em;
}

.bio-panel #bioText {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.34;
}

.press-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.booking-panel {
  padding: clamp(18px, 3vw, 26px);
}

.booking-panel-main {
  max-width: 860px;
  margin: 0 auto;
}

.contact-grid .booking-panel-main {
  max-width: none;
  margin: 0;
}

.booking-heading {
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(245, 239, 229, .1);
  padding-bottom: 16px;
}

.booking-heading h2,
.booking-heading h3 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.demo-instructions {
  margin: 0 0 18px;
  padding: 14px 0 16px;
  border-bottom: 1px solid rgba(245, 239, 229, .1);
}

.demo-instructions h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.demo-instructions p {
  margin: 0 0 10px;
  color: rgba(245, 239, 229, .82);
  font-size: 14px;
  line-height: 1.35;
}

.demo-instructions ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-instructions li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.demo-instructions li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.demo-instructions code {
  color: var(--text);
  font-family: inherit;
  font-weight: 800;
}

.demo-panel {
  display: flex;
  flex-direction: column;
  min-height: 760px;
}

.demo-frame {
  flex: 1 1 auto;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 229, .08);
  border-radius: calc(var(--radius) - 2px);
  background: #080706;
}

.demo-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

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

.field {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.field-full {
  grid-column: 1 / -1;
}

.field-wide {
  grid-column: span 2;
}

.form-section {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 239, 229, .1);
}

.form-grid .form-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.form-section h3 {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

label {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  overflow-wrap: normal;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, .18);
  color: var(--text);
  min-height: 40px;
  padding: 9px 11px;
  font-size: 14px;
  line-height: 1.3;
  outline: none;
}

select {
  color-scheme: dark;
}

select option,
select optgroup {
  background: #11100e;
  color: #f5efe5;
}

select option:disabled {
  color: #837868;
}

select option:checked {
  background: #c7ad7a;
  color: #080706;
}

input[type="date"] {
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: .86;
  filter: invert(1);
}

.date-control {
  position: relative;
  width: 100%;
  min-height: 40px;
}

.date-control input {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 40px;
  opacity: 0;
  cursor: pointer;
}

.date-control-display {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, .18);
  color: var(--text);
  padding: 9px 38px 9px 11px;
  font-size: 14px;
  line-height: 1.3;
}

.date-control-display.is-placeholder {
  color: var(--muted);
}

.date-control:focus-within .date-control-display {
  border-color: rgba(225, 199, 137, .72);
}

.date-control-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 12px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border: 1.5px solid var(--muted);
  border-radius: 3px;
  pointer-events: none;
}

.date-control-icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  border-top: 1.5px solid var(--muted);
}

textarea {
  min-height: 88px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(225, 199, 137, .72);
}

.form-note {
  margin: 16px 0 0;
  color: var(--subtle);
  font-size: 13px;
}

.form-status {
  min-height: 18px;
  margin-top: 10px;
  color: var(--accent-strong);
  font-size: 12px;
}

.pac-container {
  z-index: 10000;
  border: 1px solid rgba(245, 239, 229, .14);
  border-radius: 8px;
  background: #15130f;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .48);
  color: var(--text);
  font-family: inherit;
}

.pac-item {
  border-top: 1px solid rgba(245, 239, 229, .08);
  padding: 9px 11px;
  color: var(--muted);
  cursor: pointer;
}

.pac-item:first-child {
  border-top: 0;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(225, 199, 137, .1);
}

.pac-item-query,
.pac-matched {
  color: var(--text);
}

.pac-icon {
  filter: invert(1);
  opacity: .58;
}

#bookingForm .button {
  min-height: 42px;
  margin-top: 12px;
  padding: 0 18px;
  font-size: 11px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px var(--gutter) 42px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 24px;
}

.footer-logo {
  width: 180px;
}

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

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
}

.platform-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 239, 229, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .025);
  color: var(--muted);
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.platform-link svg {
  width: 23px;
  height: 23px;
}

.platform-link:hover,
.platform-link:focus-visible {
  border-color: rgba(225, 199, 137, .72);
  background: rgba(225, 199, 137, .1);
  color: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.legal-main {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 106px) 0 clamp(54px, 8vw, 96px);
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(28px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(58px, 10vw, 128px);
  font-weight: 950;
  line-height: .84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 760px;
  margin: clamp(18px, 3vw, 26px) 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.18;
}

.legal-hero .legal-updated {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-tabs {
  display: grid;
  gap: 8px;
  justify-self: end;
  width: min(100%, 360px);
}

.legal-tabs a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.legal-tabs a:hover,
.legal-tabs a:focus-visible,
.legal-tabs a.is-active {
  border-color: rgba(225, 199, 137, .62);
  background: rgba(225, 199, 137, .08);
  color: var(--text);
  outline: none;
}

.legal-content {
  display: grid;
  gap: 0;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 780px);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(24px, 4.5vw, 46px) 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.legal-section p,
.legal-list {
  grid-column: 2;
}

.legal-section p {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 740;
  line-height: 1.34;
}

.legal-section p + p {
  margin-top: 12px;
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 720;
  line-height: 1.35;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 18px;
}

.legal-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.legal-link-list a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(199, 173, 122, .55);
  text-underline-offset: 4px;
}

.legal-link-list a:hover,
.legal-link-list a:focus-visible {
  color: var(--accent-strong);
  outline: none;
}

.gig-page {
  min-height: 100svh;
}

.gig-hero {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) 0;
}

.gig-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.gig-title {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(54px, 10vw, 128px);
  font-weight: 950;
  line-height: .84;
  text-transform: uppercase;
}

.gig-meta {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  color: var(--muted);
}

.gig-meta .map-link,
.gig-map-link {
  width: fit-content;
}

.gig-map-link {
  display: grid;
  gap: 2px;
}

.gig-map-link span + span {
  color: var(--muted);
}

.gig-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, .025);
}

.biography-page .site-shell {
  overflow: visible;
}

.biography-back-link {
  white-space: nowrap;
}

.biography-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 118px) 0 clamp(36px, 6vw, 76px);
}

.biography-hero-copy h1 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: clamp(58px, 9vw, 118px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.biography-hero-copy p {
  max-width: 680px;
  margin: clamp(18px, 3vw, 28px) 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 29px);
  font-weight: 800;
  line-height: 1.15;
}

.biography-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: #edece8;
  aspect-ratio: 4 / 5;
}

.biography-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 43%;
  filter: contrast(1.04);
}

.biography-article {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 760px);
  gap: clamp(24px, 5vw, 80px);
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 62px) 0 clamp(42px, 7vw, 94px);
  border-top: 1px solid var(--line);
}

.biography-section {
  display: contents;
}

.biography-section h2 {
  margin: 0;
  padding-top: 28px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.biography-section p {
  grid-column: 2;
  margin: 0;
  padding-top: 24px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 780;
  line-height: 1.28;
}

.biography-section p + p {
  padding-top: 14px;
  color: var(--muted);
}

.biography-stats {
  border-top: 1px solid var(--line);
}

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

.biography-stats-grid section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.8vw, 28px);
  background: rgba(255, 255, 255, .025);
}

.biography-stats-grid h3 {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.biography-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
  list-style: none;
}

.biography-list li {
  padding-top: 9px;
  border-top: 1px solid rgba(245, 239, 229, .09);
}

.hidden {
  display: none !important;
}

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

  .menu-toggle {
    display: block;
  }

  .header-inner {
    height: 66px;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 0;
  }

  .hero-art {
    width: 100%;
    min-height: 54svh;
  }

  .portrait-frame {
    position: relative;
    width: 100%;
    height: 54svh;
    min-height: 420px;
    border-radius: var(--radius);
  }

  .portrait-frame img {
    object-position: 54% 42%;
  }

  .date-day {
    font-size: 22px;
  }

  .date-title {
    font-size: 13px;
  }

  .hero-copy {
    width: 100%;
    padding: 28px 0 24px;
  }

  .hero h1 {
    font-size: clamp(58px, 22vw, 96px);
  }

  .section-heading,
  .bio-booking-grid,
  .contact-grid,
  .legal-hero,
  .legal-section,
  .biography-hero,
  .biography-article,
  .biography-stats-grid,
  .gig-card {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-top: 36px;
  }

  .legal-tabs {
    justify-self: stretch;
    width: 100%;
  }

  .legal-section {
    gap: 12px;
  }

  .legal-section p,
  .legal-list {
    grid-column: 1;
  }

  .biography-hero {
    padding-top: 32px;
  }

  .biography-hero-media {
    max-height: 60svh;
  }

  .biography-article {
    gap: 0;
  }

  .biography-section {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }

  .biography-section h2,
  .biography-section p {
    padding-top: 0;
  }

  .biography-section p {
    margin-top: 12px;
  }

  .booking-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .demo-panel {
    min-height: 720px;
  }

  .demo-frame {
    min-height: 560px;
  }

  .date-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 12px 0;
  }

  .date-row.sortable-card {
    grid-template-columns: 30px 48px minmax(0, 1fr);
  }

  .date-row .date-actions {
    grid-column: 3;
  }

  .date-row .date-day {
    font-size: 30px;
  }

  .date-row .date-title {
    font-size: clamp(17px, 4.8vw, 23px);
    line-height: 1.08;
  }

  .date-event {
    margin-top: 3px;
    font-size: 12px;
  }

  .date-actions {
    align-items: center;
    justify-content: flex-start;
  }

  .date-actions .button {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: .1em;
  }

  .date-more {
    padding: 12px 0 0;
  }

  .date-more .button {
    min-width: 126px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 9px;
  }

  .music-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card.has-video-playlist {
    display: block;
  }

  .video-playlist {
    max-height: 285px;
    padding: 16px;
    border-top: 1px solid var(--line);
    border-left: 0;
    overflow: auto;
  }

  .video-playlist-item {
    min-height: 44px;
  }

  .music-content {
    padding: 16px;
  }

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

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

  .platform-links {
    justify-content: flex-start;
  }

  .legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 16px;
  }

  .brand img {
    width: 136px;
  }

  .language-toggle button {
    min-width: 32px;
    padding: 0 8px;
  }

  .portrait-frame {
    min-height: 390px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .platform-links {
    display: grid;
    grid-template-columns: repeat(4, 42px);
  }

  .booking-panel {
    padding: 18px;
  }

  .booking-heading h2,
  .booking-heading h3 {
    font-size: clamp(32px, 10vw, 42px);
  }

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

  .field-wide {
    grid-column: auto;
  }

  .section {
    padding: 58px 0;
  }

  .section + .section {
    padding-top: 24px;
  }

  .dates-section {
    padding: 40px 0 24px;
  }

  .dates-section .section-heading {
    margin-bottom: 18px;
  }

  .dates-section .section-heading h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .date-row.sortable-card {
    grid-template-columns: 26px 40px minmax(0, 1fr);
    gap: 7px 10px;
  }

  .date-row {
    padding: 10px 0;
  }

  .date-row .date-day {
    font-size: 27px;
  }

  .date-row .date-month {
    margin-top: 2px;
    font-size: 9px;
  }

  .date-row .date-title {
    font-size: clamp(16px, 5vw, 20px);
  }

  .date-event {
    margin-top: 3px;
    font-size: 11.5px;
  }

  .date-row .date-location {
    font-size: 12px;
  }

  .date-actions {
    margin-top: 2px;
    gap: 7px;
  }

  .date-actions .button {
    min-height: 28px;
    padding: 0 9px;
    font-size: 8.5px;
  }

  .date-more {
    padding-top: 10px;
  }

  .date-more .button {
    min-height: 28px;
    font-size: 8.5px;
  }

  .date-row .drag-handle {
    width: 24px;
    height: 24px;
  }

  .date-row .drag-handle svg {
    width: 14px;
    height: 14px;
  }

  .music-player iframe {
    height: 360px;
  }
}

@media (max-width: 360px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

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