:root {
  --black: #050505;
  --ink: #090909;
  --graphite: #111111;
  --panel: #171717;
  --white: #f7f5f1;
  --muted: #b9b7b1;
  --red: #f51c42;
  --yellow: #efff00;
  --green: #25d366;
  --line: rgba(255,255,255,.14);
  --shell: min(1180px, calc(100% - 64px));
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; background: var(--black); color: var(--white); font-family: var(--body); line-height: 1.6; overflow-x: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 14px; color: var(--ink); background: var(--yellow); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
section[id] { scroll-margin-top: 80px; }
.eyebrow { margin: 0 0 22px; color: var(--red); font-family: var(--display); font-size: .78rem; font-weight: 900; letter-spacing: .18em; line-height: 1; text-transform: uppercase; }
.eyebrow--yellow { display: inline-block; padding: 9px 12px 8px; background: var(--yellow); color: var(--ink); transform: rotate(-1.5deg); }
.eyebrow--dark { color: var(--ink); }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 900; letter-spacing: -.045em; line-height: .9; text-transform: uppercase; }
h2 { font-size: clamp(2.9rem, 5.2vw, 5.7rem); }
p { margin: 0; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; display: grid; grid-template-columns: 150px 1fr 150px; align-items: center; width: 100%; height: 106px; padding: 0 max(32px, calc((100vw - 1280px) / 2)); border-bottom: 1px solid rgba(255,255,255,.12); transition: height .25s ease, background .25s ease, backdrop-filter .25s ease; }
.site-header.is-scrolled { height: 82px; background: rgba(5,5,5,.9); backdrop-filter: blur(12px); }
.brand { width: 108px; height: 70px; display: grid; place-items: center; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(38px, 5.5vw, 88px); }
.desktop-nav a, .contact-link { position: relative; font-family: var(--display); font-size: 1.02rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav a::after, .contact-link::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.desktop-nav a:hover::after, .contact-link:hover::after { transform: scaleX(1); }
.contact-link { justify-self: end; margin-right: -18px; }
.menu-toggle, .mobile-menu { display: none; }

.hero { position: relative; min-height: max(760px, 100svh); overflow: hidden; isolation: isolate; background: #090909; }
.hero-poster, .hero-video, .hero-shade, .hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-poster img, .hero-video { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-video--mobile { display: none; }
.hero-shade { z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.8) 35%, rgba(0,0,0,.26) 70%, rgba(0,0,0,.48) 100%), linear-gradient(0deg, rgba(0,0,0,.46), transparent 55%); }
.hero-grain { z-index: 2; opacity: .08; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-content { --hero-cta-width: 268px; position: relative; z-index: 4; display: flex; flex-direction: column; justify-content: center; min-height: max(760px, 100svh); padding-top: 165px; padding-bottom: 92px; }
.hero h1 { max-width: 790px; font-size: clamp(4.15rem, 7vw, 7.4rem); text-wrap: balance; }
.hero h1 em { display: inline-block; color: var(--red); font-style: normal; }
.hero-content > p { max-width: 615px; margin: 30px 0 34px; color: #f2f0eb; font-size: clamp(1rem, 1.45vw, 1.25rem); line-height: 1.55; }
.hero-tag { position: absolute; z-index: 5; top: 154px; right: max(32px, calc((100vw - 1180px) / 2)); padding: 10px 16px 8px; background: var(--yellow); color: var(--ink); font-family: var(--display); font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; transform: rotate(-2deg); }
.button { display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-height: 56px; padding: 0 28px; border: 0; font-family: var(--display); font-size: .88rem; font-weight: 900; letter-spacing: .09em; line-height: 1; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { width: var(--hero-cta-width); min-width: 268px; background: var(--red); color: white; }
.hero-arrow { align-self: flex-start; width: 70px; height: auto; margin: 8px 0 0 calc((var(--hero-cta-width) - 70px) / 2 - 24px); }
.hero-arrow--mobile { display: none; }
.hero-edge { position: absolute; z-index: 6; left: 0; bottom: -1px; width: 100%; height: 140px; pointer-events: none; }

.band { overflow: hidden; background: var(--ink); }
.band::before { content: ""; position: absolute; top: 8%; right: -10%; width: 35vw; aspect-ratio: 1; border: 1px solid rgba(245,28,66,.2); border-radius: 50%; }
.band-grid { display: grid; grid-template-columns: 1.05fr .78fr; gap: clamp(52px, 7vw, 96px); align-items: center; }
.band-copy h2 { max-width: 720px; font-size: clamp(2.8rem, 4.35vw, 4.7rem); }
.band-copy > p:not(.eyebrow) { max-width: 620px; margin-top: 22px; color: var(--muted); font-size: 1rem; }
.band-photo { position: relative; width: 100%; max-width: 470px; margin: 0 0 0 auto; }
.band-photo::before { content: ""; position: absolute; z-index: -1; inset: -18px 18px 18px -18px; border: 1px solid var(--red); }
.band-photo img { width: 100%; height: clamp(440px, 42vw, 560px); object-fit: cover; object-position: 50% 70%; filter: saturate(.8) contrast(1.04); }
.band-photo figcaption { position: absolute; right: -20px; bottom: 22px; max-width: 200px; padding: 12px 14px; background: var(--yellow); color: var(--ink); font-family: var(--display); font-size: .72rem; font-weight: 900; letter-spacing: .1em; line-height: 1.15; text-transform: uppercase; transform: rotate(-2deg); }

.events { overflow: hidden; padding: 64px 0; background: #101010; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 72px; align-items: end; margin-bottom: 28px; }
.section-heading .eyebrow { grid-column: 1 / -1; justify-self: start; }
.section-heading > p:not(.eyebrow) { max-width: 510px; color: var(--muted); font-size: 1.05rem; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.event-card { position: relative; display: flex; align-items: flex-end; min-height: 0; height: 310px; padding: 0; background: var(--graphite); overflow: hidden; }
.event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.68) contrast(1.06); }
.event-card:nth-child(2) img { object-position: center 24%; }
.event-card:nth-child(3) img { object-position: center 32%; }
.event-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.7) 45%, rgba(0,0,0,.14) 100%); }
.event-card > div { position: relative; z-index: 1; width: 100%; height: 220px; padding: 24px 28px; }
.event-card h3 { min-height: 2.7em; margin-bottom: 12px; font-size: clamp(1.65rem, 2.4vw, 2.55rem); }
.event-card p { color: #d2d0cb; font-size: .9rem; line-height: 1.45; }
.formats { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-top: 2px; padding: 24px 34px; background: var(--red); }
.formats .eyebrow { color: var(--ink); }
.formats h3 { display: grid; gap: .32em; max-width: 650px; color: var(--ink); font-size: clamp(2rem, 3.25vw, 3.55rem); text-transform: none; }
.formats > p { color: #22030a; font-size: .94rem; font-weight: 600; }

.commitment { padding: 88px 0; background: var(--white); color: var(--ink); }
.commitment-grid { display: grid; grid-template-columns: .95fr 1.05fr; column-gap: 70px; row-gap: 0; align-items: start; }
.commitment-title { grid-column: 1; grid-row: 1 / span 2; }
.commitment-title h2 { max-width: 610px; font-size: clamp(2.9rem, 4.7vw, 5rem); }
.commitment-copy { grid-column: 2; grid-row: 1; padding-top: 0; }
.commitment-copy p { max-width: 590px; margin-bottom: 12px; color: #343434; font-size: .92rem; line-height: 1.42; }
.commitment-visual { grid-column: 2; grid-row: 2; align-self: end; width: min(100%, 470px); margin: 2px 0 -1px auto; line-height: 0; }
.commitment-visual img { width: 100%; height: auto; }
.commitment-list { grid-column: 1 / -1; grid-row: 3; display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border-top: 1px solid #c9c6bf; list-style: none; }
.commitment-list li { position: relative; padding: 18px 14px 14px 0; border-right: 1px solid #c9c6bf; font-family: var(--display); font-size: clamp(.88rem, 1.2vw, 1.08rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; text-transform: uppercase; }
.commitment-list li:not(:first-child) { padding-left: 18px; }
.commitment-list li:last-child { border-right: 0; }
.commitment-list li::before { content: ""; display: block; width: 7px; height: 7px; margin-bottom: 12px; background: var(--red); }

.live { background: var(--ink); }
.section-heading--wide { grid-template-columns: 1.35fr .65fr; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.video-card, .video-card--wide { position: relative; align-self: stretch; width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; padding: 0; border: 0; background: var(--panel); color: white; overflow: hidden; cursor: pointer; }
.video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.92), transparent 60%); }
.video-card:hover img { transform: scale(1.035); filter: brightness(.8); }
.play { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; place-items: center; width: 64px; height: 64px; padding-left: 4px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(5,5,5,.5); transform: translate(-50%, -50%); }
.video-label { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; font-family: var(--display); font-size: 1.35rem; font-weight: 900; line-height: 1; text-align: left; text-transform: uppercase; }
.video-label small { display: block; margin-top: 8px; color: var(--yellow); font-size: .66rem; letter-spacing: .14em; }
.video-carousel-controls { display: none; }

.repertoire { overflow: hidden; background: var(--red); color: var(--ink); }
.repertoire::after { content: ""; position: absolute; top: 0; right: 8%; width: 1px; height: 100%; background: rgba(0,0,0,.2); transform: rotate(18deg); }
.repertoire { padding: 88px 0; }
.repertoire-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(250px, .98fr) minmax(260px, .8fr); gap: 22px; align-items: center; }
.repertoire h2 { max-width: 580px; font-size: clamp(2.8rem, 4.1vw, 4.55rem); }
.repertoire-visual { display: flex; justify-content: flex-start; align-items: center; min-width: 0; margin-left: -10px; }
.repertoire-visual img { display: block; width: min(100%, 408px); height: auto; max-height: 612px; object-fit: contain; }
.repertoire-copy { align-self: center; }
.repertoire-copy p { max-width: 390px; margin-bottom: 26px; color: white; font-size: 1rem; font-weight: 400; line-height: 1.55; }
.button--repertoire { min-height: 52px; padding-inline: 26px; background: var(--yellow); color: var(--ink); }
.text-link { display: inline-flex; gap: 12px; align-items: center; padding-bottom: 5px; border-bottom: 2px solid currentColor; font-family: var(--display); font-size: .9rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.instagram { overflow: hidden; padding: 0; background: #0d0d0d; }
.instagram-layout { display: grid; grid-template-columns: minmax(0, 600px) minmax(0, 540px); gap: 40px; align-items: stretch; min-height: 550px; }
.instagram-heading { align-self: start; margin-top: 80px; }
.instagram-heading h2 { max-width: 640px; font-size: clamp(3.45rem, 4.1vw, 4.35rem); }
.instagram-heading h2 span { display: block; }
.instagram-account { display: flex; justify-content: flex-start; margin-top: 38px; }
.instagram-kicker { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.instagram-kicker .eyebrow { margin: 0; }
.instagram-kicker svg { flex: 0 0 auto; width: 28px; height: 28px; color: white; }
.instagram-phones { align-self: start; justify-self: end; display: flex; gap: 10px; height: clamp(260px, 27vw, 390px); margin-top: 80px; margin-right: 10px; line-height: 0; }
.instagram-phone { display: block; height: 100%; }
.instagram-phone img { width: auto; height: 100%; object-fit: contain; }
.instagram-grid { display: none; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 205px; gap: 9px; }
.instagram-grid a { position: relative; overflow: hidden; background: var(--panel); }
.instagram-grid a { grid-column: span 2; }
.instagram-grid a:nth-child(1) { grid-row: span 2; }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .45s ease, filter .35s ease; }
.instagram-grid a:hover img { transform: scale(1.04); filter: saturate(1); }
.instagram-grid a::after { content: "↗"; position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.7); opacity: 0; transition: opacity .2s ease; }
.instagram-grid a:hover::after { opacity: 1; }

.clients { overflow: hidden; padding: 72px 0 0; background: var(--white); color: var(--ink); }
.clients-stage { position: relative; min-height: 780px; }
.clients-heading { position: absolute; z-index: 3; top: 0; left: 0; width: 540px; }
.clients-heading .eyebrow { margin-bottom: 16px; }
.clients-heading h2 { font-size: clamp(2.7rem, 3.2vw, 3.2rem); }
.clients-heading h2 span { display: block; }
.clients-accent { display: block; width: 66px; height: 4px; margin-top: 24px; background: var(--red); }
.clients-musician { position: absolute; z-index: 2; top: 70px; right: 0; width: 480px; margin: 0; line-height: 0; }
.clients-musician img { width: 100%; height: auto; }
.clients-logo-groups { position: absolute; z-index: 1; top: 264px; left: 0; display: grid; width: 660px; row-gap: 18px; }
.clients-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: center; gap: 14px; }
.clients-band--last { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.client-logo { display: flex; align-items: center; justify-content: center; min-width: 0; height: 60px; padding: 7px; }
.client-logo img { width: auto; max-width: 100%; height: auto; max-height: 48px; object-fit: contain; }
.client-logo--wide img { max-height: 34px; }
.client-logo--square img { max-width: 82%; max-height: 58px; }

.contact { position: relative; padding: 64px 0; background: var(--red); color: var(--ink); scroll-margin-top: 80px; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle at 70% 20%, #fff 0 1px, transparent 1px); background-size: 7px 7px; }
.contact-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-intro { position: sticky; top: 105px; }
.contact-intro h2 { max-width: 570px; font-size: clamp(2.9rem, 4.7vw, 5rem); }
.contact-intro > p:not(.eyebrow) { max-width: 440px; margin: 22px 0; font-size: .96rem; font-weight: 600; }
.whatsapp-secondary { min-height: 50px; padding: 0 22px; border: 0; background: #177f40; color: white; font-family: var(--display); font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; padding: 28px 32px; background: var(--ink); color: var(--white); box-shadow: 14px 14px 0 rgba(0,0,0,.15); }
.demo-note { grid-column: 1 / -1; margin-bottom: 8px; padding: 10px 12px; border-left: 3px solid var(--yellow); color: #ccc; background: #151515; font-size: .78rem; }
.field { display: flex; flex-direction: column; }
.field--full, .privacy, .quote-form .button, .form-status { grid-column: 1 / -1; }
.field label { margin-bottom: 8px; font-family: var(--display); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #444; border-radius: 0; padding: 13px 14px; color: white; background: #151515; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--yellow); outline: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--red); }
.field-error { min-height: 0; color: #ff7890; font-size: .72rem; }
.field-error:not(:empty) { min-height: 18px; padding-top: 4px; }
.privacy { color: #a8a8a8; font-size: .78rem; }
.button--dark { width: 100%; background: var(--red); color: white; }
.button--dark[disabled] { cursor: wait; opacity: .7; }
.form-status { min-height: 24px; color: var(--yellow); font-weight: 700; }
.form-status.is-error { color: #ff7890; }

.footer { padding: 20px 0; background: #050505; }
.footer-minimal { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand { display: block; width: 92px; }
.footer-brand img { width: 100%; height: auto; }
.footer-bottom { color: #777; font-size: .75rem; text-align: right; }

.whatsapp-float { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: grid; place-items: center; width: 58px; height: 58px; border: 2px solid white; border-radius: 50%; background: var(--green); color: white; box-shadow: 0 9px 28px rgba(0,0,0,.35); transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 31px; height: 31px; }

.video-dialog { width: min(1060px, calc(100% - 40px)); max-width: none; padding: 0; border: 1px solid #353535; background: #080808; color: white; }
.video-dialog::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(5px); }
.dialog-panel { padding: 18px; }
.dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 2px 14px; }
.dialog-head h2 { font-size: 1.3rem; letter-spacing: .02em; }
.dialog-close { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #555; background: transparent; color: white; font-size: 2rem; line-height: 1; cursor: pointer; }
.video-dialog video { width: 100%; max-height: 76vh; background: black; object-fit: contain; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 701px) {
  .repertoire { padding: 56px 0; }
  .video-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .video-grid::-webkit-scrollbar { display: none; }
  .video-card, .video-card--wide { flex: 0 0 calc((100% - 28px) / 3); scroll-snap-align: start; }
  .video-carousel-controls { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
  .video-carousel-controls button { display: grid; place-items: center; width: 46px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.28); background: transparent; color: white; font-size: 1.25rem; line-height: 1; cursor: pointer; transition: border-color .2s ease, color .2s ease, opacity .2s ease; }
  .video-carousel-controls button:hover { border-color: var(--yellow); color: var(--yellow); }
  .video-carousel-controls button:disabled { opacity: .3; cursor: default; }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 42px, 760px); }
  .section { padding: 88px 0; }
  .events { padding: 64px 0; }
  .site-header { grid-template-columns: 130px 1fr 130px; height: 92px; padding-inline: 22px; }
  .band-grid, .section-heading, .formats, .commitment-grid, .repertoire-grid, .instagram-heading, .contact-grid { grid-template-columns: 1fr; }
  .band-grid { gap: 48px; }
  .band-copy h2 { max-width: 700px; }
  .band-photo { max-width: 520px; margin-left: auto; }
  .section-heading, .instagram-heading { gap: 32px; }
  .section-heading .eyebrow { grid-column: auto; }
  .event-grid { grid-template-columns: repeat(3, 1fr); }
  .event-card { height: 300px; }
  .event-card > div { height: 210px; min-height: 0; padding: 22px; }
  .event-card h3 { font-size: 1.65rem; }
  .event-card p { font-size: .82rem; }
  .formats { gap: 30px; }
  .commitment-grid { gap: 25px; }
  .commitment-title, .commitment-copy, .commitment-visual, .commitment-list { grid-column: 1; grid-row: auto; }
  .commitment-copy { padding-top: 0; }
  .commitment-visual { justify-self: center; width: min(100%, 520px); margin: -6px auto -25px; }
  .commitment-list { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .repertoire-grid, .instagram-heading, .contact-grid { gap: 44px; }
  .repertoire-visual { justify-self: center; width: min(100%, 320px); }
  .repertoire-visual img { width: min(100%, 300px); max-height: 450px; }
  .repertoire-copy { max-width: 560px; }
  .instagram-layout { grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr); gap: 32px; min-height: 580px; }
  .instagram-heading { margin-top: 60px; }
  .instagram-heading h2 { font-size: clamp(3.2rem, 5.8vw, 4rem); }
  .instagram-phones { height: 413px; margin-top: 60px; margin-right: 0; }
  .instagram-phone:nth-child(2) { display: none; }
  .clients { padding: 78px 0 112px; }
  .clients-stage { min-height: 0; }
  .clients-heading { position: static; width: auto; }
  .clients-heading h2 { max-width: 650px; font-size: clamp(3rem, 7vw, 4.2rem); }
  .clients-musician { position: static; width: min(76vw, 360px); margin: 44px auto 52px; transform: none; }
  .clients-logo-groups { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; column-gap: 22px; }
  .clients-band { display: contents; }
  .client-logo { height: 108px; padding: 22px 12px; border-top: 1px solid #ddd9d2; }
  .client-logo img { max-height: 58px; }
  .client-logo--wide img { max-height: 38px; }
  .client-logo--square img { max-width: 78%; max-height: 68px; }
  .logo-movistar { order: 14; }
  .logo-santander { order: 15; }
  .logo-pfizer { order: 16; }
  .logo-volkswagen { order: 17; }
  .contact-intro { position: static; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 34px); }
  html { scroll-padding-top: 0; }
  .section { padding: 64px 0; }
  h2 { font-size: clamp(2.65rem, 11.5vw, 3.6rem); }
  .site-header, .site-header.is-scrolled { grid-template-columns: 1fr auto; height: 76px; padding: 0 17px; }
  .brand { width: 84px; height: 58px; }
  .desktop-nav, .contact-link { display: none; }
  .menu-toggle { justify-self: end; display: grid; place-content: center; gap: 7px; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.32); background: rgba(0,0,0,.38); color: white; }
  .menu-toggle span { width: 22px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: 76px; right: 17px; display: flex; flex-direction: column; width: min(250px, calc(100vw - 34px)); padding: 9px 20px; border: 1px solid #353535; background: rgba(8,8,8,.97); box-shadow: 0 18px 35px rgba(0,0,0,.45); }
  .mobile-menu a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: .82rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-menu a:last-child { border: 0; color: var(--red); }
  .hero { min-height: max(790px, 100svh); }
  .hero-poster img { object-position: center 35%; }
  .hero-video--desktop { display: none; }
  .hero-video--mobile { display: block; object-position: center 32%; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.97) 5%, rgba(0,0,0,.78) 49%, rgba(0,0,0,.14) 88%), linear-gradient(90deg, rgba(0,0,0,.35), transparent 65%); }
  .hero-content { justify-content: flex-end; min-height: max(790px, 100svh); padding-top: 150px; padding-bottom: 100px; }
  .hero h1 { max-width: 100%; font-size: clamp(3.2rem, 16vw, 4.85rem); }
  .hero-content > p { max-width: 95%; margin: 22px 0 25px; font-size: .94rem; line-height: 1.48; }
  .hero-content { --hero-cta-width: min(100%, 300px); }
  .button--primary { width: var(--hero-cta-width); min-width: 0; min-height: 53px; }
  .hero-arrow--desktop { display: none; }
  .hero-arrow--mobile { display: block; width: 62px; margin: 7px 0 0 calc((var(--hero-cta-width) - 62px) / 2 - 21px); }
  .hero-edge { height: 70px; }
  .band-grid { gap: 36px; }
  .band-copy h2 { font-size: clamp(2.55rem, 11vw, 3.2rem); }
  .band-copy > p:not(.eyebrow) { margin-top: 18px; font-size: .92rem; line-height: 1.5; }
  .band-photo { justify-self: center; width: calc(100% - 8px); margin-inline: auto !important; }
  .band-photo img { height: clamp(360px, 48svh, 410px); object-position: 48% 69%; }
  .band-photo::before { inset: -8px; }
  .band-photo figcaption { right: -10px; bottom: 16px; max-width: 175px; padding: 10px 12px; }
  .events { padding: 54px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading > p:not(.eyebrow) { font-size: .92rem; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { height: 260px; min-height: 0; padding: 0; }
  .event-card > div { height: auto; min-height: 0; padding: 22px 24px; }
  .event-card h3 { min-height: 0; }
  .event-card h3 { font-size: 1.9rem; }
  .event-card p { font-size: .86rem; }
  .formats { padding: 26px 24px; }
  .formats h3 { font-size: 2.05rem; }
  .formats > p { font-size: .88rem; }
  .commitment { padding: 58px 0; }
  .commitment-title h2 { font-size: clamp(2.5rem, 10.8vw, 3.1rem); }
  .commitment-copy p { margin-bottom: 13px; font-size: .88rem; line-height: 1.43; }
  .commitment-visual { width: min(100%, 356px); }
  .commitment-list { grid-template-columns: 1fr 1fr; column-gap: 18px; row-gap: 4px; }
  .commitment-list li { min-height: 76px; padding-top: 13px; padding-bottom: 10px; border-right: 0; border-bottom: 0; font-size: .82rem; }
  .commitment-list li::before { width: 6px; height: 6px; margin-bottom: 8px; }
  .commitment-list li:nth-child(even), .commitment-list li:first-child { padding-left: 16px; }
  .video-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(82vw, 320px); gap: 12px; overflow-x: auto; padding: 0 17px 14px; margin-inline: -17px; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: thin; scrollbar-color: var(--red) #222; }
  .video-card, .video-card--wide, .video-card:last-child { grid-column: auto; min-height: 0; aspect-ratio: 4 / 3; scroll-snap-align: start; }
  .video-card img, .video-card:last-child img { object-position: center; }
  .repertoire { padding: 44px 0 84px; }
  .repertoire h2 { font-size: clamp(2.7rem, 11vw, 3.35rem); }
  .repertoire-grid { grid-template-columns: 49% 51%; gap: 36px 0; align-items: start; }
  .repertoire-title { grid-column: 1 / -1; }
  .repertoire-title .eyebrow { display: none; }
  .repertoire-visual { grid-column: 1; grid-row: 2; justify-self: start; align-self: start; width: min(80vw, 280px); margin: 0 0 0 -52px; }
  .repertoire-visual img { width: 100%; max-height: none; }
  .repertoire-copy { grid-column: 2; grid-row: 2; z-index: 2; align-self: start; min-width: 0; max-width: none; margin-top: 52px; padding-right: 8px; }
  .repertoire-copy p { margin-bottom: clamp(78px, 22vw, 108px); font-size: .875rem; line-height: 1.45; }
  .button--repertoire { width: 100%; min-height: 48px; padding-inline: 12px; font-size: .85rem; }
  .instagram { padding: 64px 0 104px; }
  .instagram-layout { display: block; min-height: 0; }
  .instagram-heading { margin: 0 0 40px; }
  .instagram-heading h2 { font-size: clamp(2.65rem, 11.5vw, 3.6rem); }
  .instagram-heading h2 span { display: inline; }
  .instagram-account { justify-content: flex-start; margin-top: 30px; }
  .instagram-phones { display: flex; justify-content: center; width: 100%; height: auto; margin: 0 auto; }
  .instagram-phone:first-child { display: block; width: min(72vw, 290px); height: auto; }
  .instagram-phone:nth-child(2) { display: none; }
  .instagram-phone img { width: 100%; height: auto; }
  .instagram-kicker { margin-bottom: 18px; }
  .instagram-kicker svg { width: 25px; height: 25px; }
  .instagram-grid { display: none; grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 7px; }
  .instagram-grid a { grid-column: span 1; grid-row: span 1; }
  .instagram-grid a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .instagram-grid a:nth-child(3) { grid-column: span 1; }
  .clients { padding: 52px 0 76px; }
  .clients-heading h2 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .clients-heading h2 span { white-space: nowrap; }
  .clients-musician { display: none; }
  .clients-logo-groups { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px 8px; margin-top: 42px; }
  .client-logo { grid-column: span 2; height: 74px; padding: 6px 4px; border-top: 0; }
  .client-logo img { max-height: 46px; }
  .client-logo--wide img { max-height: 27px; }
  .client-logo--square img { max-width: 76%; max-height: 52px; }
  .client-logo--wa-safe { padding-right: 4px; }
  .logo-pfizer { grid-column: 2 / span 2; }
  .logo-volkswagen { grid-column: 4 / span 2; }
  .contact { padding: 62px 0; }
  .contact-intro h2 { font-size: clamp(2.65rem, 11vw, 3.2rem); }
  .contact-intro > p:not(.eyebrow) { margin: 18px 0; font-size: .9rem; }
  .contact-grid { gap: 30px; }
  .quote-form { grid-template-columns: 1fr; gap: 13px; padding: 22px 20px; box-shadow: 9px 9px 0 rgba(0,0,0,.15); }
  .demo-note, .field--full, .privacy, .quote-form .button, .form-status { grid-column: auto; }
  .footer { padding: 14px 0; }
  .footer-minimal { gap: 16px; }
  .footer-brand { width: 64px; }
  .footer-bottom { margin-right: 70px; font-size: .68rem; line-height: 1.25; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .dialog-panel { padding: 10px; }
  .video-dialog { width: calc(100% - 20px); }
}

@media (max-width: 380px) {
  .repertoire-copy { margin-top: 44px; }
  .repertoire-copy p { margin-bottom: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none !important; }
  .reveal { opacity: 1; transform: none; }
}
