:root {
  --black: #080808;
  --black-soft: #151515;
  --cream: #f2eedf;
  --cream-deep: #ddd5c0;
  --silver: #c8c8c4;
  --white: #fffdf6;
  --yellow: #ffd21c;
  --red: #f22a1f;
  --red-deep: #c91412;
  --purple: #6811d8;
  --purple-deep: #3c0064;
  --cyan: #14dce3;
  --line-dark: rgba(8, 8, 8, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --shell: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(88px, 10vw, 156px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--yellow);
}

.section-black {
  background: var(--black);
  color: var(--white);
}

.section-cream {
  background: var(--cream);
  color: var(--black);
}

.section-red {
  background: var(--red);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.96);
}

.site-header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 152px;
  height: 54px;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.brand img,
.brand .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand .custom-logo-link {
  display: block;
  width: 100%;
  height: 100%;
}

.desktop-nav {
  justify-self: center;
}

.desktop-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav__links li {
  margin: 0;
}

.desktop-nav__links a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.desktop-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.desktop-nav__links a:hover::after,
.desktop-nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-light);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  padding: 28px var(--gutter) 40px;
  background: var(--purple);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1), visibility 0.35s;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu__top button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu nav {
  align-self: center;
}

.mobile-menu nav a {
  display: block;
  padding: 7px 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(42px, 14vw, 72px);
  line-height: 1;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button--yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 6px 6px 0 var(--purple);
}

.button--yellow:hover,
.button--yellow:focus-visible {
  box-shadow: 10px 10px 0 var(--red);
}

.button--cream {
  background: var(--cream);
  color: var(--black);
  box-shadow: 7px 7px 0 var(--yellow);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 3px;
  background: var(--yellow);
}

.eyebrow--dark {
  color: rgba(8, 8, 8, 0.6);
}

.hero {
  position: relative;
  min-height: min(930px, 100svh);
  padding-top: 82px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -140px -140px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(104, 17, 216, 0.3);
  border-radius: 50%;
}

.hero__noise,
.sambinha__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.2) 38% 39%, transparent 39%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1.5px);
  background-size: 68px 68px, 7px 7px;
  mix-blend-mode: screen;
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: calc(min(930px, 100svh) - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  padding-block: clamp(64px, 7vw, 104px) 60px;
}

.hero__content h1 {
  max-width: 900px;
  margin: 20px 0 22px;
  font-family: var(--display);
  font-size: clamp(58px, 6.4vw, 104px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.93;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__content > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(17px, 1.4vw, 21px);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-family: var(--condensed);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin-top: clamp(48px, 6vw, 84px);
  border-top: 1px solid var(--line-light);
}

.hero__proof div {
  padding: 18px 18px 0 0;
  border-right: 1px solid var(--line-light);
}

.hero__proof div + div {
  padding-left: 18px;
}

.hero__proof div:last-child {
  border-right: 0;
}

.hero__proof strong {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.hero__proof span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__visual {
  min-width: 0;
}

.hero__image-wrap {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.72;
  margin-left: auto;
  background: #e4e2dc;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 18px 18px 0 var(--purple), -18px -18px 0 rgba(255, 210, 28, 0.95);
  overflow: hidden;
}

.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.48), transparent 36%);
  pointer-events: none;
}

.hero__image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__stamp {
  position: absolute;
  z-index: 3;
  right: -16px;
  top: 34px;
  width: 106px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 0 0 0 7px var(--black), 0 0 0 9px var(--red);
}

.hero__caption {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--white);
  line-height: 1;
}

.hero__caption span {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 94px);
  letter-spacing: 0.02em;
}

.hero__caption em {
  font-family: var(--condensed);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 13px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.ticker i {
  color: var(--purple);
  font-size: 22px;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading--light {
  border-color: var(--line-light);
}

.section-heading p {
  margin: 0;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
}

.bio {
  padding-block: var(--section);
}

.bio__grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.bio__visual {
  position: relative;
}

.bio__photo {
  aspect-ratio: 0.76;
  background: #deddda;
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--red);
}

.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.bio__badge {
  position: absolute;
  right: -38px;
  bottom: 44px;
  width: 126px;
  height: 126px;
  padding: 16px;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--black);
  text-align: center;
  transform: rotate(-7deg);
  box-shadow: 0 0 0 8px var(--cream), 0 0 0 10px var(--black);
}

.bio__badge strong {
  font-family: var(--display);
  font-size: 40px;
  line-height: 0.9;
}

.bio__badge span {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.bio__copy h2,
.gallery__title h2,
.music__intro h2,
.media__top h2,
.contact__copy h2,
.sambinha__copy h2 {
  margin: 18px 0 26px;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.bio__copy h2 {
  max-width: 760px;
  font-size: clamp(56px, 6.4vw, 96px);
}

.bio__lead {
  max-width: 760px;
  margin: 0 0 32px;
  font-family: var(--condensed);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.15;
}

.bio__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  color: rgba(8, 8, 8, 0.68);
  font-size: 15px;
}

.bio__columns p {
  margin: 0;
}

.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 235px;
  margin-top: 36px;
  padding: 13px 0;
  border-bottom: 2px solid var(--black);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outline-link span {
  transition: transform 0.2s ease;
}

.outline-link:hover span,
.outline-link:focus-visible span {
  transform: translateY(4px);
}

.music {
  padding-block: var(--section);
}

.music__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 58px;
}

.music__intro h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 106px);
}

.music__intro h2 em,
.gallery__title h2 em,
.media__top h2 em,
.contact__copy h2 em {
  color: var(--yellow);
  font-family: var(--condensed);
  font-weight: 700;
  text-transform: none;
}

.music__intro p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

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

.song-card {
  position: relative;
  border: 1px solid var(--line-light);
  background: var(--black-soft);
  overflow: hidden;
}

.song-card__media {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
}

.song-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.72), transparent 50%);
}

.song-card--yellow .song-card__media {
  background: var(--yellow);
}

.song-card--red .song-card__media {
  background: var(--red);
}

.song-card--purple .song-card__media {
  background: var(--purple);
}

.song-card--cyan .song-card__media {
  background: var(--cyan);
}

.song-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.3s ease;
}

.song-card:hover .song-card__media img {
  transform: scale(1.045);
  filter: saturate(1.15) contrast(1.05);
}

.song-card__index {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 16px;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
}

.song-card__body {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 25px 24px 24px;
}

.song-card__body h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.song-card__body p {
  margin: 13px 0 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.mini-player {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mini-player.is-playing {
  border-color: rgba(255, 210, 28, 0.58);
  background: rgba(255, 210, 28, 0.08);
}

.mini-player audio {
  display: none;
}

.mini-player__toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0 0 0 2px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mini-player__toggle:hover,
.mini-player__toggle:focus-visible {
  transform: scale(1.06);
}

.mini-player__toggle:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.mini-player__timeline {
  min-width: 0;
}

.mini-player__progress {
  --progress: 0%;
  width: 100%;
  height: 4px;
  display: block;
  margin: 0;
  appearance: none;
  border: 0;
  border-radius: 999px;
  outline: none;
  background: linear-gradient(to right, var(--yellow) 0 var(--progress), rgba(255, 255, 255, 0.2) var(--progress) 100%);
  cursor: pointer;
}

.mini-player__progress::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  appearance: none;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
}

.mini-player__progress::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--yellow);
}

.mini-player__progress:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 210, 28, 0.24);
}

.mini-player__time {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.sambinha {
  position: relative;
  overflow: hidden;
  background: var(--purple);
  color: var(--white);
}

.sambinha::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -120px;
  border: 75px solid var(--red);
  border-radius: 50%;
}

.sambinha__grid {
  position: relative;
  z-index: 2;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-block: var(--section) 0;
}

.project-tag {
  display: inline-block;
  padding: 7px 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.project-tag--dark {
  background: var(--black);
  color: var(--white);
}

.sambinha__logo {
  width: min(100%, 430px);
  margin: 30px 0 26px;
}

.sambinha__copy h2 {
  max-width: 720px;
  margin-top: 0;
  font-size: clamp(54px, 6vw, 90px);
}

.sambinha__copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.sambinha__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.text-link--cream:hover,
.text-link--cream:focus-visible {
  color: var(--yellow);
}

.sambinha__visual {
  position: relative;
  align-self: end;
  min-height: 660px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.sambinha__sun {
  position: absolute;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  left: 50%;
  bottom: 70px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-50%);
  box-shadow: 0 0 0 36px rgba(255, 210, 28, 0.12);
}

.sambinha__visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 525px);
  max-height: 720px;
  object-fit: contain;
  object-position: center bottom;
}

.sambinha__burst {
  position: absolute;
  z-index: 3;
  right: -14px;
  top: 130px;
  width: 124px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
  clip-path: polygon(50% 0, 61% 20%, 82% 7%, 83% 30%, 100% 34%, 87% 52%, 100% 68%, 78% 72%, 80% 95%, 59% 82%, 47% 100%, 39% 79%, 17% 93%, 17% 69%, 0 63%, 15% 47%, 1% 30%, 25% 27%, 24% 4%, 43% 18%);
}

.gallery {
  padding-block: var(--section);
}

.gallery__title {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 56px;
}

.gallery__title h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 106px);
}

.gallery__title h2 em {
  color: var(--red);
}

.gallery__title p {
  margin: 0 0 12px;
  color: rgba(8, 8, 8, 0.6);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery__item {
  grid-column: span 4;
  grid-row: span 2;
  margin: 0;
  background: #d7d7d2;
  overflow: hidden;
}

.gallery__item--tall {
  grid-row: span 3;
}

.gallery__item--wide {
  grid-column: span 8;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.78);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.3s ease;
}

.gallery__item:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.media {
  padding-block: var(--section);
}

.media__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 60px;
}

.media__top h2 {
  margin: 0;
  font-size: clamp(64px, 8vw, 118px);
}

.media__top h2 em {
  color: var(--yellow);
}

.media__top p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.media__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.stat-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px clamp(20px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 90px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.stat-card span {
  max-width: 220px;
  margin-top: 10px;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.media__feature {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 50px;
  align-items: end;
  margin-top: 64px;
  padding: clamp(30px, 5vw, 64px);
  background: var(--yellow);
  color: var(--black);
  box-shadow: 14px 14px 0 var(--purple-deep);
}

.media__feature h3 {
  max-width: 760px;
  margin: 22px 0 0;
  font-family: var(--condensed);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.media__feature-links {
  display: grid;
}

.media__feature-links a {
  padding: 13px 0;
  border-bottom: 2px solid var(--black);
  font-family: var(--condensed);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 58px solid rgba(104, 17, 216, 0.17);
}

.contact::before {
  left: -100px;
  top: -100px;
}

.contact::after {
  right: -90px;
  bottom: -120px;
}

.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding-block: var(--section);
}

.contact__copy h2 {
  margin: 24px 0 26px;
  font-size: clamp(62px, 7.4vw, 112px);
}

.contact__copy h2 em {
  color: var(--purple);
}

.contact__copy p {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
}

.contact__main-link {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 48px);
  background: var(--black);
  color: var(--white);
  box-shadow: 12px 12px 0 var(--purple);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact__main-link:hover,
.contact__main-link:focus-visible {
  transform: translate(-4px, -4px);
  box-shadow: 18px 18px 0 var(--red);
}

.contact__main-link span {
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__main-link strong {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 400;
  line-height: 1;
}

.contact__main-link i {
  position: absolute;
  right: 24px;
  top: 20px;
  color: var(--yellow);
  font-size: 26px;
  font-style: normal;
}

.outline-link--dark {
  width: 100%;
  margin-top: 28px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(2, minmax(150px, 0.5fr));
  gap: 60px;
  padding-bottom: 64px;
}

.site-footer__brand img {
  width: 210px;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.site-footer__brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-label {
  margin-bottom: 9px;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__counter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-variant-numeric: tabular-nums;
}

.site-footer__counter strong {
  color: var(--white);
  font-size: 13px;
}

.site-footer__counter-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 210, 28, 0.12);
}

.whatsapp-fab {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #071c0c;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: scale(1.08) rotate(-4deg);
}

.fallback-page {
  min-height: 70vh;
  padding-block: 160px 80px;
}

.fallback-page h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 400;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay {
  transition-delay: 0.13s;
}

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

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 150px 1fr auto;
  }

  .desktop-nav__links {
    gap: 16px;
  }

  .desktop-nav__links a {
    font-size: 13px;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
    gap: 48px;
  }

  .hero__image-wrap {
    box-shadow: 12px 12px 0 var(--purple), -12px -12px 0 var(--yellow);
  }

  .bio__grid {
    gap: 68px;
  }

  .sambinha__grid {
    grid-template-columns: 1fr 0.8fr;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 142px;
    height: 48px;
  }

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

  .menu-toggle {
    display: flex;
  }

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

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 70px 90px;
  }

  .hero__content h1 {
    max-width: 820px;
  }

  .hero__image-wrap {
    width: min(78vw, 560px);
    margin: 0 auto;
  }

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

  .bio__visual {
    width: min(76vw, 560px);
  }

  .bio__columns {
    max-width: 790px;
  }

  .music__intro,
  .gallery__title,
  .media__top,
  .media__feature {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .sambinha__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .sambinha__visual {
    min-height: 560px;
  }

  .sambinha__sun {
    width: min(64vw, 460px);
  }

  .gallery__grid {
    grid-auto-rows: 150px;
  }

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

  .stat-card {
    min-height: 155px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

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

  .contact__actions {
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  :root {
    --section: 78px;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .hero__grid {
    gap: 54px;
    padding-block: 54px 72px;
  }

  .hero__content h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .hero__content > p {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .hero__proof div,
  .hero__proof div + div {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .hero__proof div:last-child {
    border-bottom: 0;
  }

  .hero__proof span {
    margin-top: 0;
  }

  .hero__image-wrap {
    width: calc(100% - 18px);
    box-shadow: 9px 9px 0 var(--purple), -9px -9px 0 var(--yellow);
  }

  .hero__stamp {
    right: 10px;
    width: 88px;
    font-size: 13px;
  }

  .hero__caption {
    left: 14px;
    right: 14px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .bio__visual {
    width: calc(100% - 18px);
  }

  .bio__badge {
    right: -10px;
    bottom: 28px;
    width: 106px;
    height: 106px;
  }

  .bio__copy h2,
  .gallery__title h2,
  .music__intro h2,
  .media__top h2,
  .contact__copy h2,
  .sambinha__copy h2 {
    font-size: clamp(50px, 15.5vw, 72px);
  }

  .bio__columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .song-card__media {
    aspect-ratio: 1.05;
  }

  .sambinha__logo {
    width: 88%;
  }

  .sambinha__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sambinha__actions .button,
  .sambinha__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .sambinha__visual {
    min-height: 470px;
  }

  .sambinha__burst {
    right: 0;
    top: 50px;
    width: 100px;
    font-size: 20px;
  }

  .gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 9px;
  }

  .gallery__item,
  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery__item:first-child,
  .gallery__item:nth-child(4) {
    grid-row: span 2;
  }

  .media__feature {
    padding: 28px 22px;
    box-shadow: 8px 8px 0 var(--purple-deep);
  }

  .contact__main-link {
    padding: 28px 22px;
    box-shadow: 8px 8px 0 var(--purple);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 28px;
  }

  .site-footer__brand {
    grid-column: span 2;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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