:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --border: rgba(11, 11, 11, 0.16);
  --text: #0b0b0b;
  --text-muted: #555555;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.2);
  --bg-soft: #fafaf8;
  --bg-softer: #f4f4f2;
  --bg-accent-soft: #fff4e8;
  --bg-white: #ffffff;
  --bg-offwhite: #fafaf8;
  --bg-light: #f4f4f2;
  --bg-orange-soft: #fff4e8;
  --text-main: #0b0b0b;
  --layer-shadow: 0 18px 40px rgba(11, 11, 11, 0.06);
  --diag-height: 56px;
  --diag-slope: 70%;
  --hero-height: clamp(70vh, 78vh, 85vh);
  --about-hero-height: clamp(55vh, 60vh, 65vh);
  --slant-height: 48px;
  --slant-slope: 82%;
  --radius-sm: 10px;
  --radius-md: 14px;
  --max-width: 1120px;
  --section-pad: 96px;
  --hero-gap: 72px;
  --h1-size: clamp(2.8rem, 5vw, 4.3rem);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

a:hover,
a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--text);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.hero {
  position: relative;
  min-height: var(--hero-height);
  padding: 0;
  color: #ffffff;
  width: 100%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: var(--hero-height);
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
  color: #ffffff;
}

.hero .button.secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--h1-size);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

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

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.45);
  z-index: 1;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-tight {
  padding-top: 64px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 12px;
}

.section.diagonal {
  background: var(--section-bg, #ffffff);
  box-shadow: var(--layer-shadow);
  overflow: hidden;
  padding-bottom: calc(var(--section-pad) + var(--diag-height));
}

.section.diagonal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--diag-height);
  background: var(--section-bg, #ffffff);
  box-shadow: var(--layer-shadow);
  z-index: 0;
}

.section.diagonal > .container {
  position: relative;
  z-index: 1;
}

.diagonal-right::after {
  clip-path: polygon(0 0, 100% 0, 100% var(--diag-slope), 0 100%);
}

.diagonal-left::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--diag-slope));
}

.section-soft {
  --section-bg: var(--bg-soft);
}

.section-white {
  --section-bg: #ffffff;
}

.section-accent {
  --section-bg: var(--bg-accent-soft);
}

.editorial h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin: 0 0 12px;
}

.section p.lead {
  color: var(--text-muted);
  max-width: 720px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-grid {
  margin-top: 36px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 8px 22px rgba(11, 11, 11, 0.04);
}

.card:hover,
.card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(11, 11, 11, 0.4);
  box-shadow: 0 12px 26px rgba(11, 11, 11, 0.06);
}

.card h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.4rem;
}

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

.card-media {
  width: 100%;
  border-radius: calc(var(--radius-md) - 2px);
  border: 1px solid var(--border);
  object-fit: cover;
}

.card-grid--resources {
  grid-template-columns: 1fr;
}

.card--resource {
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  min-height: unset;
}

.card--resource .card-media {
  width: clamp(200px, 34%, 320px);
  height: auto;
}

.card--resource .card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card--resource .button-row {
  margin-top: auto;
}

.card .button-row {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  gap: 20px;
}

.contact-block h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--text);
  font-weight: 600;
  font-family: var(--font-body);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px);
  background: #f86a0a;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

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

.micro-note {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  max-width: 640px;
}

.form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form textarea {
  min-height: 160px;
  resize: vertical;
}

footer {
  border-top: 1px solid var(--border);
  background: #0b0b0b;
  padding: 44px 0 52px;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  font-size: 0.95rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffffff;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-copy {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
}

.editorial {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.editorial .eyebrow {
  margin-bottom: 6px;
}

.about-content {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.about-content h2 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.about-content p {
  margin: 0;
  color: var(--text);
}

.about-highlight {
  font-weight: 600;
}

.about-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.about-link {
  color: var(--text-muted);
}

.about-link a {
  color: var(--accent);
  text-decoration: none;
}

.about-link a:hover,
.about-link a:focus-visible {
  text-decoration: underline;
}

.about-hero {
  position: relative;
  height: var(--about-hero-height);
  overflow: hidden;
  width: 100%;
  background: #ffffff;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.45), rgba(11, 11, 11, 0.06));
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-hero-text {
  max-width: 560px;
  color: #ffffff;
}

.about-hero-text h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
}

.about-hero-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.music-hero {
  position: relative;
  height: var(--about-hero-height);
  overflow: hidden;
  width: 100%;
  background: #ffffff;
}

.music-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.music-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.42), rgba(11, 11, 11, 0.06));
  z-index: 1;
}

.music-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.music-hero-text {
  max-width: 560px;
  color: #ffffff;
}

.music-hero-text h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
}

.music-hero-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.music-block {
  position: relative;
  background: var(--section-bg, #ffffff);
  box-shadow: var(--layer-shadow);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.music-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-pattern, none);
  opacity: 0.7;
  pointer-events: none;
}

.music-block > .container {
  position: relative;
  z-index: 1;
}

.music-content {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.music-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.music-item {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.music-item:hover,
.music-item:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.6);
}

.modal-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(11, 11, 11, 0.35);
  width: min(100%, 980px);
  max-height: 90vh;
  overflow: auto;
  padding: 32px;
  z-index: 1;
}

.modal-close {
  position: sticky;
  top: 12px;
  margin-left: auto;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #f4f4f2;
  color: #0b0b0b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--accent-soft);
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.modal-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.modal-grid img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--layer-shadow);
}

.modal-content h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.modal-content p {
  color: var(--text-muted);
}

.modal-media {
  margin-top: 18px;
}

.modal-media iframe {
  border: 0;
  border-radius: 12px;
}

body.modal-open {
  overflow: hidden;
}


body.creaband-page {
  --accent: #6b64c5;
  --accent-soft: rgba(107, 100, 197, 0.2);
  --bg-soft: #f4f1ff;
  --bg-accent-soft: #fff6da;
  --bg-offwhite: #f7f6ff;
  --bg-light: #f1f0ff;
  --text-muted: #4b4b66;
}

.creaband-logo {
  max-width: 360px;
  width: min(70vw, 360px);
  margin: 0 0 20px;
}


.creaband-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.creaband-intro-logo img {
  width: min(100%, 360px);
  margin-left: auto;
}

@media (max-width: 900px) {
  .creaband-intro {
    grid-template-columns: 1fr;
  }

  .creaband-intro-logo img {
    margin: 0 auto;
  }
}
.creaband-page .section-accent {
  --section-bg: var(--bg-accent-soft);
}

.creaband-page .button.primary:hover,
.creaband-page .button.primary:focus-visible {
  background: #5a53b6;
}


.section.creaband-hero {
  --section-bg: #0e0c24;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(14, 12, 36, 0.65), rgba(14, 12, 36, 0.55)),
    url("../img/creaband-hero.png") center/cover no-repeat;
}

.section.creaband-hero .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.section.creaband-hero .lead {
  color: rgba(255, 255, 255, 0.86);
}

.section.creaband-hero::after {
  background: transparent;
  box-shadow: none;
}
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 24px));
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(11, 11, 11, 0.2);
  padding: 16px;
  display: none;
  gap: 12px;
  z-index: 1100;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-panel {
  display: none;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cookie-banner.is-config-open .cookie-panel {
  display: block;
}

.cookie-panel .button {
  margin-top: 10px;
}

.music-band {
  --section-bg: var(--bg-offwhite);
  --section-pattern: radial-gradient(circle at 15% 10%, rgba(233, 196, 106, 0.25), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(231, 111, 81, 0.18), transparent 50%);
}

.music-adaptations {
  --section-bg: var(--bg-white);
  --section-pattern: linear-gradient(120deg, rgba(42, 157, 143, 0.12), transparent 55%);
}

.music-festera {
  --section-bg: var(--bg-light);
  --section-pattern: radial-gradient(circle at 20% 15%, rgba(244, 162, 97, 0.2), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(38, 70, 83, 0.14), transparent 60%);
}

.music-chamber {
  --section-bg: var(--bg-offwhite);
  --section-pattern: linear-gradient(160deg, rgba(84, 78, 104, 0.12), transparent 55%);
}

.music-audiovisual {
  --section-bg: var(--bg-white);
  --section-pattern: radial-gradient(circle at 10% 80%, rgba(42, 157, 143, 0.12), transparent 55%),
    radial-gradient(circle at 90% 15%, rgba(231, 111, 81, 0.12), transparent 50%);
}

.music-discography {
  --section-bg: var(--bg-offwhite);
  --section-pattern: linear-gradient(135deg, rgba(241, 196, 15, 0.12), transparent 55%);
}

.section--slant {
  background: var(--section-bg, #ffffff);
  box-shadow: var(--layer-shadow);
  overflow: hidden;
  padding-top: var(--section-pad);
  padding-bottom: calc(var(--section-pad) + var(--slant-height));
  margin-bottom: calc(var(--slant-height) * -1);
}

.section--slant::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--slant-height);
  background: var(--section-bg, #ffffff);
  box-shadow: var(--layer-shadow);
  z-index: 0;
}

.section--slant::after {
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 100% var(--slant-slope), 0 100%);
}

.section--slant > .container {
  position: relative;
  z-index: 1;
}

.section--alt::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 var(--slant-slope));
}

.section--intro {
  --section-bg: var(--bg-offwhite);
}

.section--direction {
  --section-bg: var(--bg-white);
}

.section--training {
  --section-bg: var(--bg-orange-soft);
}

.section--composition {
  --section-bg: var(--bg-offwhite);
}

.section--slant:last-of-type {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--left {
  transform: translateX(-24px);
}

.reveal--right {
  transform: translateX(24px);
}

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

@media (max-width: 600px) {
  .about-title {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .about-hero img {
    height: 42vh;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    min-height: 70vh;
  }
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--resources {
    grid-template-columns: 1fr;
  }

  .card--resource {
    flex-direction: column;
  }

  .card--resource .card-media {
    width: 100%;
  }

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

  .modal-card {
    padding: 24px;
  }

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

  .nav-links {
    position: absolute;
    right: 4%;
    top: 64px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: var(--radius-md);
    flex-direction: column;
    gap: 12px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  :root {
    --diag-height: 24px;
    --diag-slope: 100%;
    --slant-height: 20px;
    --slant-slope: 100%;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .section.diagonal::after {
    clip-path: none;
  }

  .section--slant::after {
    clip-path: none;
  }

  .about-hero {
    height: 52vh;
  }

  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 16px);
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
