:root {
  --color-bg: #0b0b0b;
  --color-surface: #14110f;
  --color-cream: #f4efe7;
  --color-cream-2: #ebe1d3;
  --color-text: #151515;
  --color-muted: #6b625b;
  --color-white: #ffffff;
  --color-red: #e63f1b;
  --color-red-dark: #b92f15;
  --color-line: rgba(230, 63, 27, 0.28);
  --font-title: "Anton", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
}

img,
iframe {
  display: block;
  width: 100%;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  color: var(--color-white);
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(11, 11, 11, 0.95);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  padding-block: 10px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  width: 236px;
  height: 236px;
  padding: 0;
  transition: width 180ms ease, height 180ms ease;
}

.brand img {
  position: relative;
  z-index: 1;
  width: 220px;
  height: auto;
  transition: width 180ms ease;
}

.brand::before {
  display: none;
}

.footer-brand {
  width: 192px;
  height: 192px;
}

.footer-brand img {
  width: 180px;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  width: 112px;
  height: 112px;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  width: 102px;
}

.site-nav {
  display: flex;
  align-self: start;
  justify-content: center;
  gap: clamp(10px, 1.35vw, 18px);
  margin-top: 22px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--color-red);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  border: 0;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta {
  align-self: start;
  margin-top: 22px;
}

.header-cta,
.button-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(230, 63, 27, 0.22);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--color-red-dark);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--color-white);
}

.button-outline:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-bg);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0, rgba(0, 0, 0, 0.6) 120px, rgba(0, 0, 0, 0) 270px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.8) 38%, rgba(0, 0, 0, 0.16) 70%, rgba(0, 0, 0, 0.38) 100%),
    url("assets/site/hero/foto-oficial-pagina.jpg") left center / 132% auto no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 74% 48%, rgba(230, 63, 27, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), #0b0b0b 96%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
}

.eyebrow,
.section-kicker {
  color: var(--color-red);
  font-size: 0.77rem;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.08;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(4rem, 7vw, 6.8rem);
}

.hero h1::after,
.section-kicker::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 20px;
  content: "";
  background: var(--color-red);
}

.hero-text {
  max-width: 590px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.section {
  padding: 86px 0;
}

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

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

.section h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.14;
}

.section p {
  color: var(--color-muted);
  line-height: 1.75;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-top: 16px;
  border: 1px solid rgba(230, 63, 27, 0.24);
  border-radius: 50%;
  color: var(--color-red);
  background: rgba(230, 63, 27, 0.08);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-link:hover,
.icon-link:focus-visible {
  color: var(--color-white);
  background: var(--color-red);
  transform: translateY(-2px);
}

.icon-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.youtube-link path {
  fill: currentColor;
  stroke: none;
}

.about-release {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1.22fr;
  gap: 56px;
  align-items: start;
}

.release-photo {
  position: sticky;
  top: 108px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-bg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.release-photo img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.release-copy h2 {
  max-width: 850px;
}

.release-text {
  columns: 2 280px;
  column-gap: 34px;
  margin-top: 24px;
}

.release-text p {
  margin-top: 0;
  break-inside: avoid;
}

.center-heading {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 42px;
}

.center-heading .section-kicker::after {
  margin-inline: auto;
}

.services-grid,
.music-projects-grid,
.stats-grid,
.gallery-grid,
.video-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(6, 1fr);
}

.services-photo-grid article {
  overflow: hidden;
  min-height: 330px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #151210;
}

.services-photo-grid img {
  height: 138px;
  object-fit: cover;
}

.services-photo-grid h3,
.services-photo-grid p {
  padding-inline: 18px;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.music-projects-grid {
  grid-template-columns: repeat(4, 1fr);
}

.music-card,
.project-card,
.gallery-card,
blockquote {
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 20px 50px rgba(29, 18, 12, 0.08);
}

.music-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.music-card img {
  height: 170px;
  object-fit: cover;
}

.music-card div,
.project-card div,
.gallery-card div {
  padding: 20px;
}

.music-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.music-card .tag {
  align-items: flex-start;
  min-height: 34px;
  line-height: 1.35;
}

.music-card h3 {
  margin-top: 14px;
}

.music-card p {
  flex: 1;
}

.music-card .icon-link {
  margin-top: auto;
}

.tag {
  display: inline-flex;
  color: var(--color-red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card {
  display: flex;
  flex: 0 0 min(360px, 84vw);
  flex-direction: column;
  color: var(--color-text);
}

.project-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.project-card h3 {
  color: var(--color-text);
}

.project-card img {
  height: 150px;
  object-fit: cover;
}

.project-card p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.project-details {
  margin-top: 16px;
}

.project-details summary {
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.project-details p {
  margin-top: 12px;
}

.project-card .icon-link {
  margin-top: auto;
}

.project-external-link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  color: var(--color-red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-external-link:hover,
.project-external-link:focus-visible {
  color: var(--color-red-dark);
  text-decoration: underline;
}

.carousel-shell {
  position: relative;
}

.projects-carousel,
.testimonials-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 22px;
  scrollbar-color: var(--color-red) rgba(255, 255, 255, 0.16);
}

.projects-carousel .project-card {
  scroll-snap-align: start;
}

.testimonials-carousel .testimonial-card {
  scroll-snap-align: start;
}

.carousel-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0);
  background: rgba(11, 11, 11, 0);
  box-shadow: none;
  backdrop-filter: blur(4px);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.carousel-shell:hover .carousel-control,
.carousel-control:focus-visible {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(11, 11, 11, 0.3);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  opacity: 1;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  border-color: rgba(230, 63, 27, 0.5);
  color: var(--color-white);
  background: rgba(230, 63, 27, 0.82);
  transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev {
  left: 46px;
}

.carousel-control-next {
  right: 46px;
}

.stats-band {
  padding: 34px 0;
  color: var(--color-white);
  background: #100f0e;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 8px 26px;
  border-left: 1px solid var(--color-line);
}

.stats-grid strong {
  display: block;
  color: var(--color-red);
  font-size: 2rem;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 18px 40px rgba(29, 18, 12, 0.08);
}

.tabs button {
  min-width: 110px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--color-text);
  background: transparent;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.tabs button.is-active {
  color: var(--color-white);
  background: var(--color-red);
}

.gallery-panel {
  display: none;
  margin-top: 26px;
}

.gallery-panel.is-active {
  display: block;
}

.gallery-grid {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-panel[data-gallery-panel="photos"] .gallery-grid {
  max-height: 640px;
  overflow: hidden;
}

.gallery-panel[data-gallery-panel="photos"] .gallery-grid::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, rgba(244, 239, 231, 0), var(--color-cream));
  pointer-events: none;
}

.gallery-panel[data-gallery-panel="photos"].is-expanded .gallery-grid {
  max-height: none;
}

.gallery-panel[data-gallery-panel="photos"].is-expanded .gallery-grid::after {
  display: none;
}

.gallery-expand {
  display: flex;
  width: min(100%, 280px);
  margin: 24px auto 0;
}

.gallery-note {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  padding: 16px 18px;
  border: 1px solid rgba(230, 63, 27, 0.22);
  border-radius: 8px;
  background: #fffaf2;
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.gallery-photo-link {
  display: block;
  cursor: pointer;
}

.gallery-photo-link:hover img,
.gallery-photo-link:focus-visible img {
  opacity: 0.9;
  transform: scale(1.03);
}

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

.video-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 18px 40px rgba(29, 18, 12, 0.08);
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-bg);
}

.video-thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.video-thumb:hover img {
  transform: scale(1.04);
  opacity: 0.86;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-red);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.video-card div {
  padding: 18px 20px;
}

.video-card h3 {
  margin-bottom: 0;
}

.agenda-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.instagram-heading {
  margin-bottom: 28px;
}

.instagram-widget {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  text-align: center;
}

.instagram-widget > * {
  width: 100%;
}

.instagram-widget iframe {
  width: 100% !important;
  max-width: 100%;
}

.agenda-list {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.agenda-list.is-collapsible {
  max-height: var(--agenda-collapsed-height);
  overflow: hidden;
}

.agenda-list.is-collapsible::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  content: "";
  background: linear-gradient(180deg, rgba(244, 239, 231, 0), var(--color-cream));
  pointer-events: none;
}

.agenda-list.is-expanded {
  max-height: none;
}

.agenda-list.is-expanded::after {
  display: none;
}

.agenda-expand {
  display: flex;
  width: min(100%, 280px);
  margin: 24px auto 0;
}

.agenda-expand[hidden] {
  display: none;
}

.empty-message {
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fffaf2;
}

.event-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fffaf2;
}

.event-card time {
  display: grid;
  place-items: center;
  width: 58px;
  height: 70px;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--color-bg);
  text-transform: uppercase;
}

.event-card time strong {
  font-size: 1.8rem;
  line-height: 1;
}

.event-card time span,
.event-card > span {
  color: var(--color-red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0 0 4px;
}

.event-card p {
  margin: 0;
}

.contact-panel {
  padding: 34px;
  border-radius: 8px;
  color: var(--color-white);
  background: var(--color-bg);
}

.contact-panel p,
.contact-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.button-full {
  width: 100%;
}

.testimonials-shell {
  margin-top: 6px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(560px, 86vw);
  min-height: 360px;
  text-align: center;
}

blockquote {
  margin: 0;
  padding: 30px;
}

blockquote p {
  margin-top: 0;
  font-weight: 600;
}

cite {
  display: block;
  color: var(--color-red);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.testimonial-card cite {
  margin-top: auto;
}

.site-footer {
  padding: 58px 0 20px;
  color: var(--color-white);
  background: var(--color-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 52px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.copyright {
  width: min(100% - 40px, var(--container));
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.82rem;
}

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

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

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

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

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 18px;
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-release,
  .agenda-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .release-photo {
    position: static;
    max-width: 420px;
  }

  .services-grid,
  .music-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 148px;
  }

  .brand {
    width: 160px;
    height: 160px;
  }

  .site-header.is-scrolled .brand,
  .site-header.is-open .brand {
    width: 86px;
    height: 86px;
  }

  .site-header.is-scrolled .brand img,
  .site-header.is-open .brand img {
    width: 78px;
  }

  .footer-brand {
    width: 152px;
    height: 152px;
  }

  .footer-brand img {
    width: 142px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.32) 40%, rgba(0, 0, 0, 0.95)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.5)),
      url("assets/site/hero/foto-oficial-pagina.jpg") 58% center / cover no-repeat;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero-actions,
  .section-header-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .release-text {
    columns: 1;
  }

  .services-grid,
  .music-projects-grid,
  .gallery-grid,
  .video-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-panel[data-gallery-panel="photos"] .gallery-grid {
    max-height: 780px;
  }

  .event-card {
    grid-template-columns: 58px 1fr;
  }

  .event-card > span {
    grid-column: 2;
  }

  .contact-panel,
  blockquote {
    padding: 24px;
  }

}
