:root {
  --bg: #070707;
  --text: #f8f3ea;
  --muted: #c8bfb2;
  --gold-strong: #f1c765;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1160px;
  --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-logo: "Cinzel", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 168, 74, 0.65);
  border-radius: 50%;
  color: var(--gold-strong);
  background: radial-gradient(circle at 30% 20%, rgba(241, 199, 101, 0.22), rgba(185, 32, 45, 0.06));
  box-shadow: 0 0 26px rgba(216, 168, 74, 0.18);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(216, 168, 74, 0.22);
  animation: pulse-ring 2.8s ease-in-out infinite;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a,
.footer-nav a,
.footer-actions a,
.social-link {
  position: relative;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-strong), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.footer-actions a:hover,
.social-link:hover {
  color: var(--gold-strong);
}

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

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid rgba(216, 168, 74, 0.56);
  border-radius: 999px;
  color: var(--gold-strong);
  font-weight: 800;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
}

.section {
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-dark,
.section-deep {
  background: var(--bg);
}

.section-deep {
  background:
    linear-gradient(135deg, rgba(185, 32, 45, 0.14), transparent 42%),
    linear-gradient(180deg, #090909 0%, #111 100%);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 70px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 37%, rgba(241, 199, 101, 0.14) 44%, transparent 52%),
    linear-gradient(74deg, transparent 0 58%, rgba(185, 32, 45, 0.12) 65%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: light-sweep 9s ease-in-out infinite alternate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/jm-oliveira-album-show.jpeg");
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.78) 42%, rgba(7, 7, 7, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.92) 0%, transparent 34%),
    radial-gradient(circle at 78% 25%, rgba(216, 168, 74, 0.28), transparent 30%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
}

.stage-beams {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.stage-beams span {
  position: absolute;
  top: -18%;
  width: 18vw;
  min-width: 160px;
  height: 128%;
  background: linear-gradient(180deg, rgba(241, 199, 101, 0.34), rgba(241, 199, 101, 0.04) 58%, transparent);
  filter: blur(18px);
  opacity: 0.2;
  transform-origin: top center;
  animation: beam-drift 8s ease-in-out infinite alternate;
}

.stage-beams span:nth-child(1) {
  left: 56%;
  transform: rotate(18deg);
}

.stage-beams span:nth-child(2) {
  left: 72%;
  background: linear-gradient(180deg, rgba(185, 32, 45, 0.32), rgba(185, 32, 45, 0.03) 62%, transparent);
  animation-delay: -2.5s;
  transform: rotate(-15deg);
}

.stage-beams span:nth-child(3) {
  left: 36%;
  width: 12vw;
  animation-delay: -5s;
  transform: rotate(9deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: clamp(30px, 7vw, 90px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  position: relative;
  margin-bottom: 16px;
  font-family: var(--font-logo);
  font-size: clamp(4.1rem, 9.4vw, 7.9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-shadow: 0 14px 58px rgba(0, 0, 0, 0.72);
}

h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: min(52vw, 440px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-strong), rgba(185, 32, 45, 0.76), transparent);
  box-shadow: 0 0 22px rgba(241, 199, 101, 0.42);
  transform-origin: left;
  animation: title-line 3.4s ease-in-out infinite alternate;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.24;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: #fff9ee;
  font-size: clamp(1.2rem, 2.3vw, 1.85rem);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-actions,
.cta-content,
.music-tags,
.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.55), transparent 64%);
  transform: translateX(-70%);
  transition: transform 650ms ease;
}

.btn:hover::before {
  transform: translateX(70%);
}

.btn > *,
.btn {
  isolation: isolate;
}

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

.btn-primary {
  color: #1a0808;
  background: linear-gradient(135deg, var(--gold-strong), #e3a73a 44%, #fff0b0);
  box-shadow: 0 16px 44px rgba(216, 168, 74, 0.28);
  animation: cta-glow 2.8s ease-in-out infinite;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
}

.hero-proof span,
.music-tags span,
.event-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.05);
}

.booking-panel,
.contact-card,
.feature-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.booking-panel::before,
.contact-card::before,
.feature-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, transparent, rgba(241, 199, 101, 0.14), transparent 58%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 260ms ease, transform 560ms ease;
}

.booking-panel:hover::before,
.contact-card:hover::before,
.feature-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
  transform: translateX(45%);
}

.feature-card,
.testimonial-card,
.gallery-item,
.event-list span,
.music-tags span {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.feature-card:hover,
.testimonial-card:hover,
.event-list span:hover,
.music-tags span:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 199, 101, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 34px rgba(216, 168, 74, 0.08);
}

.booking-panel {
  padding: 26px;
  backdrop-filter: blur(18px);
}

.artist-mini {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.artist-initials {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(241, 199, 101, 0.74);
  border-radius: 50%;
  color: #1a0808;
  font-family: var(--font-logo);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(135deg, var(--gold-strong), #d8a84a 58%, #fff0b0);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36), 0 0 28px rgba(216, 168, 74, 0.2);
}

.artist-initials::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(241, 199, 101, 0.14);
}

.artist-mini strong {
  display: block;
  color: #fff8ee;
  font-family: var(--font-display);
  font-size: 1.38rem;
  line-height: 1;
}

.artist-mini small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 700;
}

.panel-kicker,
.card-icon {
  color: var(--gold-strong);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.booking-panel h2 {
  font-family: var(--font-body);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.panel-link {
  color: var(--gold-strong);
  font-weight: 800;
  border-bottom: 1px solid rgba(216, 168, 74, 0.5);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.about,
.repertoire,
.contact {
  background:
    radial-gradient(circle at 10% 15%, rgba(216, 168, 74, 0.1), transparent 28%),
    #0c0c0c;
}

.section-copy p,
.text-block p,
.contact p,
.feature-card p,
.testimonial-card cite,
.cta-content p {
  color: var(--muted);
}

.artist-frame {
  position: relative;
  overflow: hidden;
  max-width: 340px;
  margin: 32px 0 0;
  border: 1px solid rgba(241, 199, 101, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #111;
  box-shadow: var(--shadow);
}

.artist-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 22% 15%, rgba(241, 199, 101, 0.18), transparent 28%);
}

.artist-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center top;
  background: #fff;
  filter: saturate(0.9) contrast(1.04);
}

.artist-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff8ee;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 900;
}

.text-block {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.75;
}

.text-block strong {
  color: #fff8ee;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 236px;
  padding: 24px;
}

.feature-card h3 {
  margin: 18px 0 10px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 60% 20%, rgba(216, 168, 74, 0.42), transparent 24%),
    linear-gradient(135deg, #181111, #090909 58%, #4b1018);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
  transition: transform 700ms ease, filter 220ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.86)),
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.14), transparent 46%);
  transform: translateX(-105%);
  transition: transform 700ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(241, 199, 101, 0.4);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.08);
}

.gallery-item:hover::after {
  transform: translateX(105%);
}

.gallery-photo {
  grid-row: span 1;
}

.gallery-item:nth-child(1) img {
  object-fit: contain;
  object-position: center;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(4) img {
  object-position: center top;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.gallery-item figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
}

.video-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 168, 74, 0.13), transparent 28%),
    linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
}

.video-section .section-heading {
  max-width: 820px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 360px));
  justify-content: center;
  gap: 16px;
}

.video-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  background: #050505;
  object-fit: contain;
}

.video-card h3 {
  margin: 12px 4px 2px;
  color: #fff8ee;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 78px) 0;
  background:
    linear-gradient(135deg, rgba(185, 32, 45, 0.92), rgba(64, 10, 15, 0.95)),
    #5d1118;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 199, 101, 0.24), transparent 24%),
    linear-gradient(100deg, transparent 0 38%, rgba(255, 255, 255, 0.14) 48%, transparent 58%);
  animation: cta-sheen 7s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
}

.cta-content > div {
  max-width: 760px;
}

.cta-content h2 {
  margin-bottom: 10px;
}

.events .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
}

.event-list span {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  color: #fff7e9;
}

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

.testimonial-card {
  margin: 0;
  padding: 26px;
}

.testimonial-card p {
  color: #fff8ee;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
}

.testimonial-card cite {
  display: block;
  font-style: normal;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 7vw, 80px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.btn-wide {
  width: 100%;
}

.social-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.site-footer {
  padding: clamp(72px, 9vw, 118px) 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 168, 74, 0.09), transparent 34%),
    #050505;
}

.footer-shell {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.footer-main {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 28px;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(241, 199, 101, 0.58);
  border-radius: 50%;
  color: var(--gold-strong);
  font-family: var(--font-logo);
  font-weight: 900;
  background: rgba(216, 168, 74, 0.08);
}

.footer-brand strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1;
}

.footer-brand p {
  margin: 8px 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
}

.footer-nav,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-nav a,
.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.035);
}

.developer-credit {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(200, 191, 178, 0.48);
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
}

.developer-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 12px;
  border: 1px solid rgba(55, 224, 113, 0.26);
  border-radius: 999px;
  color: rgba(200, 191, 178, 0.72);
  background: rgba(55, 224, 113, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
}

.developer-credit a:hover {
  color: #dff8e6;
  border-color: rgba(55, 224, 113, 0.48);
  background: rgba(55, 224, 113, 0.1);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  color: #101010;
  background: #37e071;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  animation: whatsapp-breathe 2.4s ease-in-out infinite;
}

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

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    max-width: 520px;
  }

  .artist-frame {
    max-width: 420px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    position: relative;
    z-index: 55;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 55;
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle span {
    height: 2px;
    background: var(--text);
    border-radius: 999px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 24px;
    background: rgba(7, 7, 7, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    font-size: 1.35rem;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(7, 7, 7, 0.58)),
      linear-gradient(0deg, rgba(7, 7, 7, 0.94), transparent 48%);
  }

  .stage-beams span {
    opacity: 0.13;
  }

  .cards-grid,
  .gallery-grid,
  .video-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo {
    grid-row: span 1;
  }

}

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

  .hero-particles {
    display: none;
  }
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.14);
  }
}

@keyframes light-sweep {
  0% {
    transform: translateX(-6%) skewX(-8deg);
  }
  100% {
    transform: translateX(8%) skewX(7deg);
  }
}

@keyframes beam-drift {
  0% {
    opacity: 0.12;
    translate: -18px 0;
  }
  100% {
    opacity: 0.3;
    translate: 20px 0;
  }
}

@keyframes title-line {
  0% {
    transform: scaleX(0.54);
    opacity: 0.66;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes cta-glow {
  0%,
  100% {
    box-shadow: 0 16px 44px rgba(216, 168, 74, 0.28);
  }
  50% {
    box-shadow: 0 18px 58px rgba(216, 168, 74, 0.46), 0 0 20px rgba(255, 240, 176, 0.18);
  }
}

@keyframes cta-sheen {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.55;
  }
  50% {
    transform: translateX(18%);
    opacity: 1;
  }
}

@keyframes whatsapp-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34), 0 0 0 rgba(55, 224, 113, 0);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(55, 224, 113, 0.1);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding: 14px;
  }

  h1 {
    font-size: clamp(3.45rem, 17vw, 5.15rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-actions,
  .cta-content {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .booking-panel,
  .feature-card,
  .testimonial-card,
  .contact-card {
    padding: 22px;
  }

  .footer-main {
    padding: 30px 18px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-actions {
    width: 100%;
  }

  .footer-actions {
    max-width: 280px;
  }

  .footer-actions a {
    justify-content: center;
  }

  .artist-mini {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .artist-initials {
    width: 64px;
    height: 64px;
    font-size: 1.12rem;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
  }
}
