:root {
  --ink: #090706;
  --charcoal: #14100e;
  --plum: #2c1427;
  --gold: #e7a73c;
  --gold-soft: #f2c66e;
  --rose: #9a6b61;
  --ivory: #fbf5e8;
  --muted: #cbbda5;
  --line: rgba(242, 198, 110, 0.22);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sb-demo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 8px clamp(14px, 4vw, 48px);
  color: #f6f0ff;
  background: #111118;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sb-demo-bar a {
  color: #c4a7ff;
}

.sb-demo-bar span {
  color: rgba(246, 240, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  background: var(--ink);
  overflow-x: hidden;
}

body.theme-board {
  --ink: #080912;
  --charcoal: #101326;
  --plum: #2b205f;
  --gold: #f2a95a;
  --gold-soft: #ffd38a;
  --rose: #b36877;
  --ivory: #fff5dd;
  --muted: #c8c4d8;
  --line: rgba(255, 211, 138, 0.28);
}

body.menu-open {
  overflow: hidden;
}

body.artist-modal-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 7, 6, 0.76);
  backdrop-filter: blur(18px);
}

body.theme-board .site-header {
  background: rgba(8, 9, 18, 0.78);
  border-bottom-color: rgba(255, 211, 138, 0.16);
}

.brand-mark {
  width: 94px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  color: rgba(251, 245, 232, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--gold-soft);
}

.header-cta,
.button,
.experience-card a,
.artist-bio a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.header-cta,
.button.primary,
.experience-card a,
.artist-bio a {
  color: #100a05;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 36px rgba(231, 167, 60, 0.2);
}

.button.secondary {
  color: var(--ivory);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 4px));
}

.menu-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 4px));
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 38px 0 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 124px clamp(28px, 8vw, 56px) 44px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 211, 138, 0.12), transparent 34%),
    linear-gradient(180deg, #080912, #060711);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 211, 138, 0.14);
  color: var(--ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 11vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

section,
.site-footer {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.section-dark {
  background: radial-gradient(circle at 15% 20%, rgba(154, 107, 97, 0.24), transparent 30%), var(--ink);
}

.section-warm {
  color: var(--ivory);
  background: linear-gradient(135deg, #1b1110, #2c1427 55%, #130d0b);
}

.section-light {
  color: #1d140e;
  background: linear-gradient(180deg, #fbf5e8, #ead7b6);
}

body.theme-board .section-dark {
  background: radial-gradient(circle at 14% 18%, rgba(74, 66, 170, 0.34), transparent 32%), var(--ink);
}

body.theme-board .section-warm {
  background: linear-gradient(135deg, #11172a, #2b205f 54%, #0b101d);
}

body.theme-board .section-light {
  color: #151221;
  background: linear-gradient(180deg, #fff4dc, #d9cfb5);
}

.intro,
.artists,
.events,
.final-cta {
  position: relative;
  overflow: hidden;
}

.intro::before,
.artists::before,
.events::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.intro > *,
.artists > *,
.events > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.intro::before {
  background:
    linear-gradient(135deg, rgba(17, 23, 42, 0.82), rgba(43, 32, 95, 0.88)),
    url("../images/restaurant-dining.jpg") center / cover;
  opacity: 0.92;
}

.artists::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 211, 138, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(8, 9, 18, 0.9), rgba(8, 9, 18, 0.96)),
    url("../images/music-stage-bg.jpg") center / cover;
}

.events::before {
  background:
    linear-gradient(135deg, rgba(43, 32, 95, 0.82), rgba(8, 9, 18, 0.9)),
    url("../images/live-music.jpg") center / cover;
}

.final-cta::before {
  background:
    linear-gradient(90deg, rgba(8, 9, 18, 0.96), rgba(8, 9, 18, 0.82) 42%, rgba(8, 9, 18, 0.7)),
    url("../images/plated-food.jpg"),
    url("../images/live-music.jpg"),
    url("../images/group-dining.jpg"),
    url("../images/table-setting.jpg");
  background-size: 100% 100%, 25% 100%, 25% 100%, 25% 100%, 25% 100%;
  background-position: center, left center, 33.333% center, 66.666% center, right center;
  background-repeat: no-repeat;
}

.hero {
  position: relative;
  min-height: calc(100svh - 38px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: clamp(28px, 4vw, 54px);
  background: #080912;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 211, 138, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(8, 9, 18, 0.46), rgba(8, 9, 18, 0.88)),
    linear-gradient(90deg, rgba(8, 9, 18, 0.62), rgba(8, 9, 18, 0.16) 48%, rgba(8, 9, 18, 0.62));
  opacity: 1;
  z-index: 1;
}

body.theme-board .hero::before {
  background:
    radial-gradient(circle at center, rgba(255, 211, 138, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(8, 9, 18, 0.44), rgba(8, 9, 18, 0.88)),
    linear-gradient(90deg, rgba(8, 9, 18, 0.64), rgba(8, 9, 18, 0.14) 48%, rgba(8, 9, 18, 0.64));
  opacity: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
}

.hero-glow {
  position: absolute;
  z-index: 2;
  width: 52vw;
  max-width: 760px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 167, 60, 0.24), transparent 66%);
  filter: blur(12px);
}

body.theme-board .hero-glow {
  background: radial-gradient(circle, rgba(43, 32, 95, 0.42), rgba(242, 169, 90, 0.16), transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(820px, 100%);
  margin-top: 12px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.45rem, 5.5vw, 4.95rem);
  max-width: 760px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 18px auto 0;
  color: rgba(251, 245, 232, 0.82);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.instagram-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.instagram-eyebrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: rgba(251, 245, 232, 0.82);
  font-size: 1.06rem;
  line-height: 1.75;
}

.intro-dining-photo {
  margin: 8px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 211, 138, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-dining-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.section-light .eyebrow {
  color: #83551e;
}

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

.experiences::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 245, 221, 0.88), rgba(217, 207, 181, 0.9)),
    url("../images/india-stage.jpg") center / cover;
}

.experiences > * {
  position: relative;
}

body.theme-board .experiences {
  color: var(--ivory);
}

body.theme-board .experiences::before {
  background:
    linear-gradient(180deg, rgba(8, 9, 18, 0.76), rgba(16, 19, 38, 0.88)),
    url("../images/india-stage.jpg") center / cover;
}

body.theme-board .section-light .eyebrow {
  color: var(--gold-soft);
}

body.theme-board .experience-card {
  border-color: rgba(255, 211, 138, 0.2);
  background: rgba(8, 9, 18, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

body.theme-board .experience-card span {
  color: var(--gold-soft);
}

body.theme-board .experience-card p,
body.theme-board .booking-note {
  color: rgba(255, 245, 221, 0.76);
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.experience-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(29, 20, 14, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 60px rgba(65, 42, 14, 0.12);
}

.experience-card span {
  color: #8a5a22;
  font-weight: 800;
}

.experience-card p,
.booking-note {
  color: rgba(29, 20, 14, 0.72);
  line-height: 1.7;
}

.booking-note {
  max-width: 800px;
  margin: 28px auto 0;
  text-align: center;
  font-weight: 600;
}

.artist-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 260px;
}

.featured-artist {
  position: sticky;
  top: 110px;
  align-self: start;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 9, 18, 0.18), rgba(8, 9, 18, 0.9)),
    var(--artist-image, url("../images/tushar-joshi-live.jpg")) center / cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

body.theme-board .featured-artist {
  background:
    linear-gradient(180deg, rgba(8, 9, 18, 0.18), rgba(8, 9, 18, 0.9)),
    var(--artist-image, url("../images/tushar-joshi-live.jpg")) center / cover;
}

.featured-artist-copy {
  display: grid;
  gap: 18px;
  min-height: 460px;
  padding: 30px;
  align-content: end;
}

.featured-artist h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.featured-artist p:not(.eyebrow) {
  max-width: 420px;
  color: rgba(251, 245, 232, 0.84);
  line-height: 1.7;
}

.featured-artist .button {
  justify-self: start;
}

.artist-list {
  display: grid;
  gap: 12px;
}

.artist-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.artist-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 20px;
  border: 0;
  color: var(--ivory);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.artist-avatar {
  display: none;
}

.artist-item button span {
  font-size: 1.1rem;
  font-weight: 800;
}

.artist-item button small {
  color: var(--muted);
  font-weight: 700;
}

.artist-bio {
  display: none;
  padding: 0 20px 22px;
  color: rgba(251, 245, 232, 0.78);
  line-height: 1.7;
}

.artist-bio a {
  margin-top: 16px;
  min-height: 40px;
}

.artist-item.is-open .artist-bio {
  display: block;
}

.artist-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  padding: 0;
  color: var(--ivory);
  background: rgba(4, 5, 10, 0.78);
  backdrop-filter: blur(16px);
}

.artist-modal.is-open {
  display: block;
}

.artist-modal-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #080912;
  overflow: hidden;
  touch-action: pan-y;
}

.artist-modal-close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 211, 138, 0.34);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(8, 9, 18, 0.72);
  backdrop-filter: blur(10px);
}

.artist-modal-close svg,
.artist-modal-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.artist-modal-media {
  position: relative;
  height: 54svh;
  min-height: 320px;
  background: #111326;
}

.artist-modal-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, #080912);
}

.artist-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-modal-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  display: grid;
  gap: 14px;
  max-height: 46svh;
  padding: 26px 20px 0;
  overflow-y: auto;
}

.artist-modal-copy h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 12vw, 3.5rem);
  line-height: 1;
}

.artist-modal-copy p:not(.eyebrow) {
  color: rgba(251, 245, 232, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.artist-modal-copy .button {
  width: 100%;
  margin-top: 4px;
}

.artist-modal-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: max(16px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.artist-modal-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 211, 138, 0.28);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
}

.artist-modal-controls span {
  justify-self: center;
  color: rgba(251, 245, 232, 0.64);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.events {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

.photo-stack img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(251, 245, 232, 0.18);
  box-shadow: var(--shadow);
}

.photo-stack img:first-child {
  min-height: 520px;
}

.photo-stack div {
  display: grid;
  gap: 14px;
}

.event-copy {
  max-width: 560px;
}

.event-copy p:not(.eyebrow),
.final-cta p {
  margin-top: 20px;
  color: rgba(251, 245, 232, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.event-tags span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 700;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.final-cta div {
  max-width: 780px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(62px, 8vw, 104px);
  padding-bottom: 0;
  color: rgba(251, 245, 232, 0.68);
  border-top: 1px solid rgba(242, 198, 110, 0.14);
  background:
    radial-gradient(circle at 20% 0%, rgba(154, 107, 97, 0.18), transparent 34%),
    linear-gradient(180deg, #100b09, #060403);
}

body.theme-board .site-footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(43, 32, 95, 0.34), transparent 34%),
    linear-gradient(180deg, #101326, #060711);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 8vw, 112px);
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: clamp(38px, 5vw, 64px);
  border-bottom: 1px solid rgba(242, 198, 110, 0.14);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: block;
  width: 168px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-tagline {
  max-width: 340px;
  color: var(--ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.28;
}

.footer-copy {
  margin-top: 14px;
  color: rgba(251, 245, 232, 0.64);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  width: min(720px, 100%);
  padding-top: 28px;
  border-top: 1px solid rgba(242, 198, 110, 0.14);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.footer-title {
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(251, 245, 232, 0.66);
  font-size: 0.9rem;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-icon-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.footer-column a:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 0 22px;
  color: rgba(251, 245, 232, 0.38);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--gold-soft);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .section-grid,
  .artist-layout,
  .events {
    grid-template-columns: 1fr;
  }

  .experience-list {
    grid-template-columns: 1fr;
  }

  .featured-artist {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .featured-artist-copy {
    min-height: 420px;
  }

  .artist-layout {
    padding-bottom: 0;
  }

  .artists .featured-artist {
    display: none;
  }

  .artist-list {
    gap: 10px;
  }

  .artist-item,
  .artist-item.is-open {
    border-color: rgba(255, 211, 138, 0.18);
    background: rgba(8, 9, 18, 0.66);
  }

  .artist-item button {
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
    min-height: 82px;
    padding: 12px 14px;
    text-align: left;
  }

  .artist-avatar {
    display: block;
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 211, 138, 0.28);
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
  }

  .artist-item button span,
  .artist-item button small {
    grid-column: 2;
    min-width: 0;
    text-align: left;
  }

  .artist-item button span {
    align-self: end;
    justify-self: start;
    font-size: 1rem;
  }

  .artist-item button small {
    align-self: start;
    justify-self: start;
    font-size: 0.78rem;
  }

  .artist-bio,
  .artist-item.is-open .artist-bio {
    display: none;
  }

  .artist-modal-close {
    top: max(104px, calc(env(safe-area-inset-top) + 104px));
    right: 16px;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack > img:first-child {
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 320px;
  }

  .photo-stack div {
    display: none;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    display: none;
  }

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

  .footer-columns {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .footer-column {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 82px;
  }

  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: calc(100svh - 38px);
    padding-top: 118px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.04;
    max-width: 350px;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .featured-artist,
  .featured-artist-copy {
    min-height: 390px;
  }

  .button,
  .header-cta,
  .experience-card a,
  .artist-bio a,
  .footer-booking {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(8, 9, 18, 0.5), rgba(8, 9, 18, 0.88)),
      url("../images/music-stage-bg.jpg") center / cover;
  }
}
