:root {
  --ink: #151413;
  --muted: #5e625f;
  --paper: #fbfaf7;
  --shell: #efe9df;
  --blue: #3f8fc3;
  --blue-dark: #1f577d;
  --gold: #d39d43;
  --green: #244d3e;
  --line: rgba(21, 20, 19, 0.14);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(12, 20, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 17, 18, 0.78), rgba(12, 17, 18, 0.18));
  backdrop-filter: blur(10px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  font-family: Georgia, serif;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.88), rgba(8, 10, 9, 0.42) 46%, rgba(8, 10, 9, 0.1)),
    linear-gradient(0deg, rgba(8, 10, 9, 0.72), rgba(8, 10, 9, 0.06) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 54px;
}

.eyebrow,
.section-kicker,
.role {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #111;
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 48px 0 0;
}

.hero-facts div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 2px 0 0;
  font-size: 1.06rem;
  font-weight: 900;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.booking-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.contact-panel {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-line {
  display: grid;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.08rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-line span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.split,
.project,
.press {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split-media img,
.project img,
.press img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-copy p,
.project-copy p,
.press-copy p,
.rhythm p {
  color: var(--muted);
  font-size: 1.04rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.stats-grid span,
.chips li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px;
  font-weight: 800;
}

.services {
  border-top: 1px solid var(--line);
}

.service-grid,
.member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.service-grid article,
.member-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.service-grid article {
  padding: 22px;
}

.service-grid p,
.member-card p {
  color: var(--muted);
}

.rhythm {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.project {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
  background: var(--shell);
}

.members h2 {
  max-width: 780px;
}

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

.member-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.member-card div {
  padding: 18px;
}

.member-card .role {
  margin-bottom: 8px;
  color: var(--blue-dark);
}

.press {
  border-top: 1px solid var(--line);
}

.final-cta {
  width: min(940px, calc(100% - 36px));
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #111;
}

.footer p {
  margin: 0;
  font-weight: 900;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 840px;
  }

  .hero > img {
    object-position: 58% center;
  }

  .booking-band,
  .split,
  .project,
  .press,
  .rhythm {
    grid-template-columns: 1fr;
  }

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

  .stats-grid,
  .hero-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand span:last-child {
    max-width: 210px;
    line-height: 1.1;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-actions,
  .inline-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

/* Histórico de apresentações */
.performances { border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.performances-intro { max-width: 760px; color: var(--muted); font-size: 1.04rem; }
.performance-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 32px; }
.performance-grid article { padding: 24px; border: 1px solid var(--line); border-top: 3px solid var(--gold); border-radius: 8px; background: var(--white); }
.performance-grid .performance-meta { margin-bottom: 14px; color: var(--green); font-size: 0.875rem; font-weight: 800; }
.performance-grid article > p:last-child { margin-bottom: 0; color: var(--muted); }
.performance-spaces { margin-top: 24px; padding: 24px; border-radius: 8px; background: var(--shell); }
.performance-spaces p { max-width: 960px; margin-bottom: 0; }
@media (max-width: 980px) { .performance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .performance-grid { grid-template-columns: 1fr; } }
