@import url("https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@300;400;500;600&family=Italiana&display=swap");
:root {
  --wine: #951b27;
  --wine-dark: #68131b;
  --ink: #2a2a2a;
  --cream: #f5f1eb;
  --paper: #fcfaf7;
  --taupe: #b5a69a;
  --serif: "Italiana", Georgia, serif;
  --sans: "Afacad Flux", Arial, sans-serif;
  --repertoire-dark: #171313;

  /* ========================================================
     TYPOGRAPHY — EDIT FONT SIZES ONLY IN THIS BLOCK
     ======================================================== */
  --type-heading-weight: 400;

  /* Body copy */
  --type-body: 20px;
  --type-small: 14px;

  --type-h1-hero: clamp(42px, 4.7vw, 70px);
  --type-h2-standard: clamp(38px, 4.2vw, 58px);
  --type-h3-standard: 24px;
  --type-h4-standard: 24px;
  --type-h5-standard: 24px;
  --type-h6-standard: 24px;

  /* Each section points to the standard h2 size by default.
     Replace var(--type-h2-standard) with 40px, for example,
     when one section needs an individual size. */
  --type-h2-intro: var(--type-h2-standard);
  --type-h2-about: var(--type-h2-standard);
  --type-h2-moments: var(--type-h2-standard);
  --type-h2-formations: var(--type-h2-standard);
  --type-h2-process: var(--type-h2-standard);
  --type-h2-videos: var(--type-h2-standard);
  --type-h2-photo-stream: var(--type-h2-standard);
  --type-h2-location: 45px;
  --type-h2-faq: var(--type-h2-standard);
  --type-h2-contact: var(--type-h2-standard);

  /* Deliberately larger editorial title in the repertoire section. */
  --type-h2-repertoire: clamp(58px, 7.4vw, 112px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--type-body);
  line-height: 1.7;
  font-weight: 300;
}

/* ==========================================================
   HEADING TYPOGRAPHY — SINGLE SOURCE OF TRUTH
   Do not configure font properties for h1–h6 elsewhere.
   ========================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-weight: var(--type-heading-weight);
  font-style: normal;
}

h1,
h2 {
  text-wrap: balance;
}

.hero h1 {
  font-size: var(--type-h1-hero);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero h1 em {
  font-family: inherit;
  font-size: 1.2em;
  font-style: normal;
  font-weight: inherit;
  line-height: 0.9;
}

main h2:not(.repertoire-title) {
  line-height: 1;
  letter-spacing: -0.025em;
}

main h2 em {
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
}

/* Individual h2 controls for each section. */
.intro h2 {
  font-size: var(--type-h2-intro);
}

.gallery-studio-copy h2 {
  font-size: var(--type-h2-about);
}

.moments-heading h2 {
  font-size: var(--type-h2-moments);
}

.formation-title h2 {
  font-size: var(--type-h2-formations);
}

.process > h2 {
  font-size: var(--type-h2-process);
}

.video-lead h2 {
  font-size: var(--type-h2-videos);
}

.photo-stream-heading h2 {
  font-size: var(--type-h2-photo-stream);
}

.location-heading h2 {
  font-size: var(--type-h2-location);
}

.faq-heading h2 {
  font-size: var(--type-h2-faq);
}

.contact h2 {
  font-size: var(--type-h2-contact);
}

main h3 {
  font-size: var(--type-h3-standard);
  line-height: 1.25;
}

main h4 {
  font-size: var(--type-h4-standard);
  line-height: 1.25;
}

main h5 {
  font-size: var(--type-h5-standard);
  line-height: 1.25;
}

main h6 {
  font-size: var(--type-h6-standard);
  line-height: 1.25;
}

.repertoire-title {
  font-size: var(--type-h2-repertoire);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

@media (max-width: 800px) {
  :root {
    --type-h1-hero: 42px;
    --type-h2-standard: clamp(34px, 10vw, 46px);
    --type-h3-standard: 22px;
    --type-h4-standard: 22px;
    --type-h5-standard: 22px;
    --type-h6-standard: 22px;
    
    .repertoire-title {
    font-size: clamp(15vw, 8vw, 58px);
    line-height: 0.9;
    letter-spacing: -0.04em;
  }
  }
}

@media (max-width: 680px) {
  :root {
    --type-body: 15px;
    --type-small: 13px;
    --type-h2-repertoire: clamp(10vw, 9vw, 52px);;
  }

  .repertoire-title {
    line-height: 0.91;
    letter-spacing: -0.035em;
  }
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.skip {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 99;
  background: #fff;
  padding: 10px;
}
.skip:focus {
  top: 12px;
}
.header {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 4vw;
  gap: 38px;
  background: rgba(252, 250, 247, 0.95);
  backdrop-filter: blur(14px);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid rgba(80, 60, 55, 0.12);
}
.brand {
  margin-right: auto;
  position: relative;
}
.brand img {
  width: 180px;
  transition: opacity 0.25s ease;
}
.header nav {
  display: flex;
  gap: 25px;
}
.header nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.header nav a:hover {
  color: var(--wine);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 29px;
  border-radius: 100px;
  background: var(--wine);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s;
  overflow: hidden;
  position: relative;
}
.button:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 0 22px;
}
.button.dark {
  background: var(--ink);
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  color: #fff;
  display: flex;
  overflow: hidden;
  min-height: 100svh;
  align-items: flex-end;
  padding: 100px 7vw 150px;
}
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-photo {
  background: url("assets/bg-3.png") center top / cover no-repeat;
  transform: scale(1.01);
  filter: saturate(0.72) contrast(1.03);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}
.hero-shade {
  background:
    linear-gradient(rgba(12, 10, 10, 0.48), rgba(12, 10, 10, 0.48)),
    linear-gradient(
      0deg,
      rgba(12, 10, 10, 0.88) 0%,
      transparent 58%,
      rgba(12, 10, 10, 0.18) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 9px;
  font-weight: 400;
  color: var(--wine);
  margin: 0 0 23px;
}
.eyebrow i,
.place i,
.instruments i {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 8px;
}
.eyebrow.light {
  color: #eee2da;
}
.section h2,
.story h2,
.formations h2,
.videos h2,
.contact h2 {
  margin: 0;
}
.hero h1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero h1 em {
  color: #d7aaa0;
}
h2 em {
  color: #d7aaa0;
}
.hero-content > p:not(.eyebrow) {
  width: 100%;
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 34px;
}
.text-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid currentColor;
  padding: 6px 0;
}
.text-link span {
  font-size: 18px;
  margin-left: 8px;
}
.hero-proof {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(28, 23, 21, 0.8);
  backdrop-filter: blur(12px);
  padding: 22px 6vw;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-proof span {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}
.hero-proof span:last-child {
  border: 0;
}
.section {
  padding: 120px max(6vw, calc((100vw - 1360px) / 2));
}
.intro {
  text-align: center;
  padding-top: 170px;
  padding-bottom: 155px;
  position: relative;
  overflow: hidden;
  background: #f4f0ea;
  min-height: 720px;
  display: grid;
  place-items: center;
}
.intro h2 {
  margin: auto;
  max-width: 900px;
  color: #171414;
}
.intro-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 860px;
  text-align: left;
  margin: 55px auto 0;
  margin-top: 45px;
  margin-bottom: 35px;
  color: #514a47;
}
.intro-copy p {
  margin: 0;
}
.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 820px;
  background: var(--cream);
}
.story-image {
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-copy {
  padding: 12vw 9vw;
  align-self: center;
}
.story-copy h2 {
  margin-bottom: 35px;
}
.story-copy > p:not(.eyebrow) {
  color: #625a57;
}
.stats {
  display: flex;
  gap: 60px;
  border-top: 1px solid #cfc5bc;
  margin-top: 42px;
  padding-top: 30px;
}
.stats div {
  display: flex;
  flex-direction: column;
}
.stats strong {
  font: 44px var(--serif);
  color: var(--wine);
}
.stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 80px;
  margin-bottom: 65px;
}
.section-head > div {
  max-width: 800px;
}
.section-head > p {
  max-width: 380px;
  color: #665f5c;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
}
.service-card > span {
  font: 13px var(--serif);
  color: var(--wine);
}
.service-pic {
  height: 320px;
  background-size: cover;
  background-position: center;
  margin: 12px 0 24px;
  filter: saturate(0.72);
}
.pic-one {
  background-image: url("https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=700&q=80");
}
.pic-two {
  background-image: url("https://images.unsplash.com/photo-1507502707541-f369a3b18502?auto=format&fit=crop&w=700&q=80");
}
.pic-three {
  background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=700&q=80");
}
.pic-four {
  background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=700&q=80");
}
.service-card:nth-child(even) {
  margin-top: 65px;
}
.service-card h3 {
  margin: 0 0 10px;
}
.service-card p {
  font-size: 14px;
  color: #6d6562;
}
.services > .button {
  display: flex;
  width: max-content;
  margin: 55px auto 0;
}
.formations {
  background: var(--wine-dark);
  color: #fff;
  padding: 130px max(7vw, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10vw;
  row-gap: 40px;
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
.formations:before {
  content: "V";
  position: absolute;
  left: 2vw;
  top: -8vw;
  font: 50vw/1 var(--serif);
  color: rgba(255, 255, 255, 0.025);
}
.formation-title,
.formation-list,
.instruments {
  position: relative;
}

.formation-title > p:last-child {
  max-width: 500px;
  color: #dfcfca;
  margin-top: 35px;
}
.formation-list article {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    padding 0.3s,
    background 0.3s;
}
.formation-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.formation-list article > span {
  font: 15px var(--serif);
  color: #d9a79f;
}
.formation-list h3 {
  margin: 0;
}
.formation-list p {
  color: #d4c6c1;
  margin: 6px 0 0;
}
.instruments {
  grid-column: 1/-1;
  text-align: center;
  margin: 60px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: #e1d1cc;
  margin-top: 38px;
  margin-bottom: 0;
}
.repertoire {
  grid-template-columns: 0.85fr 1fr;
  gap: 10vw;
  align-items: center;
  display: block;
  padding: 0;
  --rep-progress: 0;
  background: var(--repertoire-dark);
}
.repertoire-art {
  position: relative;
  padding: 35px 0 0 45px;
}
.repertoire-art:before {
  content: "";
  position: absolute;
  inset: 0 30px 35px 0;
  background: #eaded5;
}
.repertoire-art img {
  position: relative;
  width: 100%;
  height: 670px;
  object-fit: cover;
  filter: saturate(0.65);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.5s;
}
.note {
  position: absolute;
  z-index: 2;
  right: -45px;
  top: -25px;
  font: 140px var(--serif);
  color: var(--wine);
}

.repertoire-copy > p {
  color: #655d59;
}
.repertoire-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.repertoire-copy li {
  padding: 9px 0;
  border-bottom: 1px solid #d8d0ca;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.repertoire-copy aside {
  border-left: 2px solid var(--wine);
  padding: 6px 0 6px 22px;
  margin: 35px 0;
}
.repertoire-copy aside h3 {
  margin: 0;
}
.repertoire-copy aside p {
  font-size: 13px;
  margin: 5px 0;
}
.wine {
  color: var(--wine);
}
.process {
  background: var(--cream);
  text-align: center;
}
.process > h2 {
  margin-bottom: 70px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
}
.process-grid article {
  padding: 25px 30px;
  border-left: 1px solid #cfc4bb;
}
.process-grid article:last-child {
  border-right: 1px solid #cfc4bb;
}
.process-grid b {
  font: 42px var(--serif);
  color: #cdbeb2;
}

.process-grid p {
  color: #6d6460;
  line-height: 1.45;
}

.tech-note {
  font-size: var(--type-small);
  line-height: 1.45;
  margin: 60px 0 0;
  color: #786f6a;
}
.videos {
  background: #171313;
  color: #fff;
  padding: 125px 7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.video-lead {
  max-width: 760px;
}

.video-lead > p:last-child {
  color: #c9bdb8;
}
.video-placeholder {
  width: 100%;
  max-width: 1040px;
  margin: 55px auto 0;

  /* Proporção padrão de vídeo */
  aspect-ratio: 16 / 9;

  background: #000;
  overflow: hidden;
  position: relative;
}

.video-placeholder iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  border: 0;
}



.rating-testimonials {
  width: 100%;
  max-width: 1040px;
  margin: 55px auto 0;
  display: flex;
  align-items: center;
  gap: 55px;
  border-top: 1px solid #5b504d;
  padding-top: 35px;
  text-align: left;
}
.rating {
  display: flex;
  flex: 0 0 auto;
  gap: 30px;
  align-items: center;
}
.rating > strong {
  font: 75px var(--serif);
}
.rating span {
  color: #d7aaa0;
  letter-spacing: 0.25em;
}
.rating p {
  margin: 0;
}
.rating a {
  text-decoration: underline;
  font-size: 12px;
}
.location {
  text-align: center;
}
.location h2 {
  max-width: 950px;
  margin: auto;
}
.location > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 820px;
  text-align: left;
  margin: 45px auto;
  color: #625a57;
}
.location .button {
  margin-top: 15px;
}
.place {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  margin-top: 50px;
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 10vw;
  background: var(--cream);
}
.faq-heading {
  position: sticky;
  top: 120px;
  height: max-content;
}

.faq-heading > p:last-child {
  color: #6a625e;
}
.accordion details {
  border-top: 1px solid #cbbfb6;
  padding: 25px 0;
  transition:
    padding 0.3s,
    background 0.3s;
}
.accordion details:last-child {
  border-bottom: 1px solid #cbbfb6;
}
.accordion summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion h3 {
  margin: 0;
}
.accordion summary span {
  width: 18px;
  height: 18px;
  position: relative;
}
.accordion summary span:before,
.accordion summary span:after {
  content: "";
  position: absolute;
  top: 9px;
  width: 18px;
  height: 1px;
  background: var(--wine);
}
.accordion summary span:after {
  transform: rotate(90deg);
  transition: 0.2s;
}
.accordion details[open] summary span:after {
  transform: rotate(0);
}
.accordion details p {
  max-width: 650px;
  color: #655d59;
}
.contact {
  min-height: 740px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.86)),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=2000&q=82")
      center/cover;
}
.contact-inner {
  z-index: 1;
  max-width: 890px;
}
.contact-inner > img {
  margin: 0 auto 22px;
}

.contact-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 25px auto;
  color: #eadeda;
}
.contact .button {
  background: #fff;
  color: var(--wine-dark);
  margin: 15px;
}
.contact small {
  display: block;
}
footer {
  background: #171313;
  color: #eee4df;
  padding: 70px 7vw 25px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.5fr;
  align-items: center;
  gap: 8vw;
}
.footer-main img {
  width: 240px;
}
.footer-main p {
  color: #bfb2ad;
}
.footer-main > a:last-child {
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
  border-top: 1px solid #4c4441;
  border-bottom: 1px solid #4c4441;
  margin-top: 55px;
  padding: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  color: #897d79;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mobile-cta {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.99);
  filter: blur(3px);
  transition:
    opacity 0.9s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.9s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}
@media (max-width: 1000px) {
  .header nav {
    position: fixed;
    inset: 88px 0 auto;
    background: var(--paper);
    height: calc(100vh - 88px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: 0.3s;
  }
  .header nav.open {
    transform: none;
  }
  .header nav a {
    font: 32px var(--serif);
    text-transform: none;
  }
  .header > .button {
    display: none;
  }
  .menu-toggle {
    display: block;
    border: 0;
    background: none;
    width: 44px;
    height: 44px;
    position: relative;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--ink);
    margin: 6px;
  }
  .menu-toggle b {
    position: absolute;
    font-size: 0;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .formations,
  .repertoire {
    grid-template-columns: 1fr;
  }
  .formations {
    gap: 50px;
  }
  .repertoire-art {
    max-width: 600px;
  }
  .story-copy {
    padding: 10vw 7vw;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .faq-heading {
    position: static;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-main > a:last-child {
    text-align: left;
  }
}
@media (max-width: 680px) {
  body {
    padding-bottom: 62px;
  }
  .header {
    height: 74px;
    padding: 0 20px;
  }
  .brand img {
    width: 165px;
  }
  .header nav {
    inset: 74px 0 auto;
    height: calc(100vh - 74px);
  }
  .hero {
    min-height: max(780px, 100svh);
    padding: 110px 22px 95px;
    align-items: flex-end;
  }

  .hero-content {
    margin-top: auto;
  }

  .hero h1 {
    line-height: 0.9;
  }

  .hero-photo {
    background-image: url("assets/bg-mobile-1.png");
    background-color: #000;
    background-size: contain;
    background-position: top;
  }

  .desktop-break {
    display: none;
  }
  .hero-content > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.25;
    margin-inline: auto;
  }
  .hero-actions {
    align-items: center;
    flex-direction: column;
    gap: 18px;
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }
  .hero-proof span {
    padding: 5px;
    font-size: 8px;
  }
  .section {
    padding: 85px 22px;
  }
  .intro {
    padding-top: 95px;
    min-height: 700px;
  }

  .intro-copy,
  .location > div {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .story {
    grid-template-columns: 1fr;
  }
  .story-image {
    height: 520px;
  }
  .story-copy {
    padding: 85px 22px;
  }

  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 25px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(even) {
    margin-top: 25px;
  }
  .service-pic {
    height: 400px;
  }
  .formations {
    padding: 90px 22px;
  }

  .instruments {
    line-height: 2.5;
  }
  .repertoire {
    gap: 60px;
  }
  .repertoire-art {
    padding-left: 20px;
  }
  .repertoire-art img {
    height: 500px;
  }
  .note {
    right: -8px;
    font-size: 100px;
  }

  .repertoire-copy ul {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article {
    border-left: 0;
    border-top: 1px solid #cfc4bb;
    padding-left: 0;
  }
  .process-grid article:last-child {
    border-right: 0;
  }
  .videos {
    padding: 90px 22px;
  }

 
  .rating-testimonials {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .rating {
    align-items: flex-start;
  }
  .rating > strong {
    font-size: 58px;
  }
  .testimonials {
    border-left: 0;
    border-top: 1px solid #514845;
    padding-left: 0;
    padding-top: 30px;
    width: 100%;
  }

  .faq {
    gap: 50px;
  }
  .accordion h3 {
    padding-right: 15px;
  }
  .contact {
    min-height: 680px;
  }

  footer {
    padding: 60px 22px 20px;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 8px;
    z-index: 30;
    min-height: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0s linear 0.28s;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .button {
    transition: none;
  }
}
/* Editorial image experiences */
.intro-haze {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  background:
    linear-gradient(
      180deg,
      rgba(244, 240, 234, 0.18) 0%,
      rgba(244, 240, 234, 0.26) 35%,
      #f4f0ea 93%,
      #f4f0ea 100%
    ),
    linear-gradient(
      90deg,
      #f4f0ea 0%,
      rgba(244, 240, 234, 0.57) 23%,
      rgba(244, 240, 234, 0.57) 77%,
      #f4f0ea 100%
    ),
    url("assets/bg-2.png")
      center 46% / cover no-repeat;
  filter: blur(2px);
  opacity: 0.31;
}
.intro-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}
.gallery-studio {
  min-height: 830px;
  padding: 120px max(8vw, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 8vw;
  position: relative;
  overflow: hidden;
  background: #f4f0ea;
  padding-top: 90px;
}
.gallery-studio-copy h2 {
  margin: 0;
}
.gallery-studio-copy h2 em {
  color: var(--wine);
}
.gallery-studio-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: #3d3d3c;
  margin: 20px 0;
}
.stacked-gallery {
  height: 630px;
  position: relative;
  perspective: 1200px;
  transition: transform 0.25s ease-out;
  will-change: transform;
}
.stack-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(49, 36, 30, 0.17);
  transition: transform 0.5s ease;
}
.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.7s;
}
.stack-card figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  background: rgba(252, 250, 247, 0.88);
  backdrop-filter: blur(10px);
  padding: 7px 15px;
  border-radius: 99px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.stack-back {
  width: 68%;
  height: 86%;
  left: 6%;
  top: 2%;
  transform: rotate(-2deg);
}
.stack-front {
  width: 47%;
  height: 56%;
  right: 1%;
  bottom: 2%;
  transform: rotate(4deg);
}
.stacked-gallery:hover .stack-back {
  transform: rotate(-4deg) translate(-6px, -5px);
}
.stacked-gallery:hover .stack-front {
  transform: rotate(1deg) translate(8px, -8px);
}
.moments-gallery {
  background: #171313;
  color: #fff;
  padding: 115px 0 80px;
  overflow: hidden;
}
.moments-heading {
  text-align: center;
  padding: 0 22px 60px;
}
.moments-heading h2 {
  max-width: 900px;
  margin: 0 auto;
}
.moments-heading p:last-child {
  color: #a99c97;
  font-size: 12px;
}
.gallery-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  outline: none;
  padding: 55px 0 35px;
  margin-top: -35px;
  scroll-snap-type: x proximity;
}
.gallery-viewport::-webkit-scrollbar {
  display: none;
}
.gallery-viewport.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.gallery-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0 calc((100vw - min(31vw, 430px)) / 2);
}
.gallery-track figure {
  width: min(31vw, 430px);
  margin: 0;
  scroll-snap-align: center;
  transform-origin: center bottom;
  transition:
    transform 0.35s,
    opacity 0.35s;
  opacity: 0.62;
  will-change: transform;
}
.gallery-track figure:nth-child(3n + 1) {
  transform: translateY(28px) rotate(-1.5deg);
}
.gallery-track figure:nth-child(3n + 2) {
  transform: translateY(-8px);
}
.gallery-track figure:nth-child(3n) {
  transform: translateY(28px) rotate(1.5deg);
}
.gallery-track figure.is-center {
  opacity: 1;
  transform: translateY(-10px) scale(1.035);
}
.gallery-track img {
  width: 100%;
  height: min(54vw, 590px);
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(0.76);
}
.gallery-track figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: baseline;
  margin-top: 18px;
}
.gallery-track b {
  font: 27px var(--serif);
}
.gallery-track span {
  font-size: 10px;
  color: #a99c97;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: right;
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
.gallery-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid #685e5b;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.gallery-controls button:hover {
  background: var(--wine);
  border-color: var(--wine);
}
.gallery-controls span {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #8f827e;
}
@media (max-width: 1200px) {
  .header nav {
    gap: 15px;
  }
  .header nav a {
    font-size: 10px;
  }
  .gallery-studio {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .intro {
    padding-top: 110px;
    padding-bottom: 100px;
  }
  .gallery-studio {
    grid-template-columns: 1fr;
    padding: 90px 22px;
    gap: 50px;
  }
  .stacked-gallery {
    height: min(560px, 82vw);
    max-width: 620px;
    width: 100%;
    margin: auto;
    transform: none !important;
  }
  .gallery-track {
    gap: 18px;
    padding: 0 12vw;
  }
  .gallery-track figure {
    width: 70vw;
  }
  .gallery-track img {
    height: 92vw;
  }
  .gallery-track figcaption {
    display: block;
  }
  .gallery-track span {
    display: block;
    text-align: left;
    margin-top: 4px;
  }
  .moments-gallery {
    padding-top: 85px;
  }
}
/* Motion and contemporary detailing */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 100;
  pointer-events: none;
}
.header.is-scrolled {
  position: fixed;
  animation: header-in 0.45s ease both;
  box-shadow: 0 8px 30px rgba(45, 30, 27, 0.06);
}
@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.button:after {
  content: "\2197";
  display: inline-block;
  margin-left: 0;
  width: 0;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: 0.3s;
}
.button:hover:after {
  width: 15px;
  margin-left: 10px;
  opacity: 1;
  transform: none;
}
.gallery-studio:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  right: 7%;
  top: 12%;
  background: radial-gradient(
    circle,
    rgba(149, 27, 39, 0.1),
    rgba(149, 27, 39, 0) 68%
  );
  animation: soft-pulse 7s ease-in-out infinite;
}
.gallery-studio-copy,
.stacked-gallery {
  position: relative;
  z-index: 1;
}
.studio-stats {
  display: flex;
  gap: 44px;
  border-top: 1px solid rgba(75, 58, 50, 0.2);
  padding: 24px 0 28px;
  margin-top: 25px;
}
.studio-stats div {
  display: flex;
  flex-direction: column;
}
.studio-stats strong {
  font: 42px/1 var(--serif);
  color: var(--wine);
}
.studio-stats span {
  margin-top: 7px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.stack-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.9);
}
@keyframes soft-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
.gallery-track figure.is-center img {
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.28);
}
.formation-list article:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent);
}
.repertoire-art:hover img {
  transform: translate(7px, -7px);
  filter: saturate(0.9);
}
.accordion details[open] {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(255, 255, 255, 0.42);
}
.process-grid .reveal:nth-child(2),
.formation-list.reveal {
  transition-delay: 0.08s;
}
.process-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.process-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
@media (max-width: 800px) {
  .studio-stats {
    gap: 25px;
  }
  .studio-stats strong {
    font-size: 36px;
  }
  .gallery-studio:before {
    width: 360px;
    height: 360px;
    right: -30%;
    top: 45%;
  }
  .reveal {
    filter: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header.is-scrolled {
    animation: none;
  }
  .gallery-studio:before {
    animation: none;
  }
  .stacked-gallery {
    transform: none !important;
  }
}
/* Seamless atmospheric intro */
.gallery-studio:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 180px;
  background: linear-gradient(#f4f0ea, transparent);
  pointer-events: none;
}
/* Layered repertoire parallax */
.repertoire-parallax {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: var(--repertoire-dark);
  height: 1200px;
  min-height: 1080px;
}
.repertoire-bg {
  position: absolute;
  background-size: cover;
  will-change: transform;
  z-index: 0;
  inset: -30% -12%;
  background-image: url("assets/bg-1.png");
  background-position: center;
  filter: saturate(0.65) brightness(0.56);
  transform:
    translate3d(
      0,
      calc(var(--rep-progress) * 10%),
      0
    )
    scale(1.12);}

.repertoire-parallax:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 13, 12, 0.25),
    transparent 30%,
    transparent 65%,
    rgba(20, 13, 12, 0.58)
  );
  pointer-events: none;
}
.repertoire-title {
  margin: 0;
  text-align: center;
  color: #fff;

  position: absolute;
  top: 9%;
  left: 50%;
  z-index: 2;
  width: min(1280px, 94vw);

  transform: translate3d(
    -50%,
    calc(var(--rep-progress) * -80px),
    0
  );
  will-change: transform;
  text-shadow: none;
}
.repertoire-title em {
  display: block;
  color: #e5b5ad;
}
.repertoire-scroll {
  position: absolute;
  bottom: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.repertoire-scroll i {
  font-style: normal;
  font-size: 18px;
  animation: scroll-nudge 1.6s ease-in-out infinite;
}
.repertoire-content {
  margin: 0 auto;
  padding: 120px 28px 135px;
  text-align: center;
  max-width: none;
  color: #f5eeea;
  background: var(--repertoire-dark);
  padding-top: 80px;
}
.repertoire-content > p {
  font: 20px/1.2 var(--sans);
  margin: 0 auto 25px;
  max-width: 760px;
  color: #e7deda;
}
.repertoire-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 50px 0 55px;
}
.repertoire-content li {
  padding: 12px 20px;
  border: 1px solid #d6cdc6;
  margin: -1px 0 0 -1px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.13em;
  transition: 0.25s;
  color: #eee5e1;
  border-color: rgba(255, 255, 255, 0.22);
}
.repertoire-content li:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  transform: translateY(-3px);
}

.repertoire-accordion {
  max-width: 900px;
  margin: 0 auto 45px;
  text-align: left;
}

.repertoire-accordion details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px 0;
  transition:
    padding 0.3s,
    background 0.3s;
}

.repertoire-accordion details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.repertoire-accordion summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.repertoire-accordion summary::-webkit-details-marker {
  display: none;
}

.repertoire-content .repertoire-accordion h3 {
  margin: 0;
  font-size: 22px;
  color: #fff;
  text-align: left;
}

.repertoire-accordion summary span {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.repertoire-accordion summary span:before,
.repertoire-accordion summary span:after {
  content: "";
  position: absolute;
  top: 9px;
  width: 18px;
  height: 1px;
  background: #e5b5ad;
}

.repertoire-accordion summary span:after {
  transform: rotate(90deg);
  transition: 0.2s;
}

.repertoire-accordion details[open] summary span:after {
  transform: rotate(0);
}

.repertoire-content .repertoire-accordion ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  columns: 2;
  column-gap: 40px;
  justify-content: normal;
  flex-wrap: nowrap;
}

.repertoire-content .repertoire-accordion li {
  padding: 7px 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: none;
  font-size: 14px;
  letter-spacing: normal;
  color: #e7deda;
  break-inside: avoid;
  text-align: left;
}

.repertoire-content .repertoire-accordion li:hover {
  background: none;
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: none;
}

@media (max-width: 680px) {
  .repertoire-content .repertoire-accordion ul {
    columns: 1;
  }

  .repertoire-content .repertoire-accordion h3 {
    font-size: 18px;
  }

  .repertoire-accordion details {
    padding: 18px 0;
  }
}
.repertoire-content aside {
  max-width: 620px;
  margin: 0 auto 38px;
  padding: 35px;
  border-top: 1px solid #cfc5bd;
  border-bottom: 1px solid #cfc5bd;
  border-color: rgba(255, 255, 255, 0.2);
}
.repertoire-content aside h3 {
  margin: 0 0 8px;
}
.repertoire-content aside p {
  margin: 0;
  color: #c9bbb6;
}
.repertoire-content .text-link {
  display: inline-block;
}
@keyframes scroll-nudge {
  0%,
  100% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(5px);
  }
}
@media (max-width: 680px) {
  .gallery-studio {
    padding-top: 70px;
  }
  .repertoire-parallax {
    height: 78svh;
    min-height: 620px;
  }
  .repertoire-title {
    top: 11%;
    width: 98vw;

  }
  .repertoire-bg,
  .repertoire-couple {
    inset: -4% -28%;
    background-position: center;
  }
  .repertoire-couple {
    -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 45%,
    rgba(0, 0, 0, 0.95) 55%,
    rgba(0, 0, 0, 0.7) 65%,
    rgba(0, 0, 0, 0.35) 75%,
    rgba(0, 0, 0, 0.1) 84%,
    transparent 90%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 45%,
    rgba(0, 0, 0, 0.95) 55%,
    rgba(0, 0, 0, 0.7) 65%,
    rgba(0, 0, 0, 0.35) 75%,
    rgba(0, 0, 0, 0.1) 84%,
    transparent 90%,
    transparent 100%
  );

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;

    width: min(64vw, 350px);
    bottom: -7%;
  }
  .repertoire-content {
    padding: 0 22px 100px;
    padding-top: 65px;
  }
  .repertoire-content > p {
    font-size: 18px;
  }
  .repertoire-content ul {
    display: grid;
    grid-template-columns: 1fr;
    margin: 40px 0;
  }
  .repertoire-content li {
    margin: -1px 0 0;
  }
  .repertoire-content aside {
    padding: 28px 12px;
  }
  .repertoire-scroll {
    bottom: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .repertoire-bg,
  .repertoire-title,
  .repertoire-couple {
    transform: none;
  }
  .repertoire-scroll i {
    animation: none;
  }
}
/* Header states, hero details, and repertoire accents */
.brand-light {
  position: absolute;
  inset: 0;
}
.header:not(.is-scrolled) {
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 8, 8, 0.52), transparent);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.header:not(.is-scrolled) .brand-dark,
.header.is-scrolled .brand-light {
  opacity: 0;
}
.header:not(.is-scrolled) .brand-light,
.header.is-scrolled .brand-dark {
  opacity: 1;
}
.header:not(.is-scrolled) .button-small {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.header:not(.is-scrolled) .menu-toggle span {
  background: #fff;
}

.hero-inset {
  position: absolute;
  z-index: 4;
  right: 5vw;
  bottom: 132px;
  width: clamp(230px, 23vw, 370px);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(18, 14, 13, 0.66);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.hero-inset img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  filter: saturate(0.7);
}
.hero-inset figcaption {
  display: flex;
  flex-direction: column;
  padding: 14px 16px 16px;
}
.hero-inset span {
  color: var(--wine);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero-inset b {
  margin-top: 3px;
  font: 16px/1.25 var(--serif);
}
@keyframes hero-breathe {
  from {
    transform: scale(1.01);
  }
  to {
    transform: scale(1.055);
  }
}
.intro-inner::before {
  content: "";
  display: block;
  width: 1px;
  height: 52px;
  margin: 0 auto 28px;
  background: rgba(149, 27, 39, 0.45);
}
.repertoire-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(23, 19, 19, 0.12) 0%,
    transparent 44%,
    var(--repertoire-dark) 100%
  );
  pointer-events: none;
}
.repertoire-parallax::after {
  background: linear-gradient(
    180deg,
    rgba(23, 19, 19, 0.15),
    transparent 48%,
    var(--repertoire-dark) 98%
  );
}
.repertoire-title span,
.repertoire-title em {
  display: block;
  white-space: nowrap;
}
.repertoire-couple {
  position: absolute;
  z-index: 3;
  top: auto;
  right: auto;
  left: 50%;
  width: clamp(625px, 29vw, 450px);
  height: auto;
  max-width: none;
  transform: translate3d(
    -50%,
    calc(var(--rep-progress) * 140px),
    0
  );
  filter: saturate(0.78) brightness(0.8)
    drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.82) 65%,
    rgba(0, 0, 0, 0.3) 82%,
    transparent 98%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.82) 65%,
    rgba(0, 0, 0, 0.3) 82%,
    transparent 98%
  );
  object-fit: contain;
  pointer-events: none;
  will-change: transform;
  bottom: 1%;
}
.repertoire-content .wine {
  color: #e5b5ad;
}
@media (max-width: 1100px) {
  .hero-inset {
    display: none;
  }
  .hero-content {
    max-width: 900px;
  }
}
@media (max-width: 680px) {
  .header:not(.is-scrolled) nav.open {
    color: var(--ink);
  }

  .repertoire-bg {
    inset: -30% -38%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    animation: none;
  }
  .repertoire-couple {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Testimonial carousel */
.testimonials {
  flex: 1;
  min-width: 0;
  border-left: 1px solid #514845;
  padding-left: 45px;
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 235px;
}

.testimonial {
  position: absolute;
  inset: 0;
  margin: 0;
  text-align: left;
  opacity: 0;
  transform: translateX(45px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.testimonial > p {
  max-width: 560px;
  margin: 0 0 22px;
  font: 28px/1.32 var(--serif);
  color: #f1e7e3;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  padding: 0;
  color: inherit;
  background: transparent;
}

.testimonial footer b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.testimonial footer span {
  color: #9d8f8a;
  font-size: 12px;
}

.testimonial-dots {
  display: flex;
  justify-content: flex-start;
  gap: 9px;
}

.testimonial-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #665b57;
  cursor: pointer;
  transition:
    width 0.3s,
    border-radius 0.3s,
    background 0.3s;
}

.testimonial-dots button.active {
  width: 25px;
  border-radius: 10px;
  background: #d7aaa0;
}

/* Horizontal masonry photo stream */
.photo-stream {
  padding: 0 0 150px;
  overflow: hidden;
  background: #f5f1eb;
}

.photo-stream-heading {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
}

.photo-stream-heading h2 {
  margin: 0;
}

.photo-stream-heading h2 em {
  color: var(--wine);
}

.photo-stream-heading > p:last-child {
  color: #756b66;
}

.masonry-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  outline: none;
}

.masonry-viewport::-webkit-scrollbar {
  display: none;
}

.masonry-viewport.dragging {
  cursor: grabbing;
}

.masonry-track {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: max-content;
  padding: 0 16px;
}

.masonry-set {
  display: grid;
  grid-auto-flow: column dense;
  grid-template-rows: 33vh 33vh;
  grid-auto-columns: 33vh;
  gap: 16px;
  width: max-content;
  flex: 0 0 auto;
}

.masonry-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  cursor: zoom-in;
  background: #d8d0ca;
}

.masonry-item.wide {
  grid-column: span 2;
}

.masonry-item.tall {
  grid-row: span 2;
}

.masonry-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
  filter: saturate(0.82);
}

.masonry-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.masonry-play span {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(10, 8, 8, 0.35);
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(2px);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.masonry-item.video:hover .masonry-play span {
  transform: scale(1.08);
  background: var(--wine);
  border-color: var(--wine);
}

.lightbox {
  width: min(92vw, 1200px);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(10, 8, 8, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox-media {
  position: relative;
}

.lightbox-media > img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-video {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.lightbox-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.lightbox-media.is-video > img {
  display: none;
}

.lightbox-media.is-video .lightbox-video {
  display: block;
}

.lightbox button {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  background: rgba(10, 8, 8, 0.4);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.lightbox button:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.lightbox > button[aria-label="Fechar imagem"] {
  right: 0;
  top: -48px;
  background: transparent;
  font-size: 25px;
}

.lightbox-prev,
.lightbox-next {
  top: 35vh;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 16px;
  padding-bottom: 4px;
}

.lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.lightbox-thumbs .lightbox-thumb {
  position: relative;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.55;
  filter: saturate(0.8);
  transition: opacity 0.2s, outline-color 0.2s;
  outline: 2px solid transparent;
  outline-offset: 2px;
  overflow: hidden;
  background: #000;
}

.lightbox-thumbs .lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-thumbs .lightbox-thumb:hover {
  opacity: 0.85;
}

.lightbox-thumbs .lightbox-thumb.active {
  opacity: 1;
  outline-color: var(--wine);
}

.lightbox-thumbs .thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

@media (max-width: 680px) {
  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    top: 32vh;
  }

  .lightbox-thumbs .lightbox-thumb {
    width: 56px;
    height: 56px;
  }
}

/* Belo Horizonte editorial collage */
.location-collage {
  align-items: start;
  overflow: hidden;
  display: grid;
  color: #f8f4f1;
  background: #070707;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 125px max(6vw, calc((100vw - 1320px) / 2));
}

.location-heading {
  grid-column: 5 / 9;
  grid-row: 1;
  align-self: center;
  padding: 30px 34px;
  text-align: left;
}

.location-heading h2 {
  margin: 15px 0 0;
}

.location-heading p {
  color: #645c58;
}

.location-photo {
  margin: 0;
  overflow: hidden;
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 1s ease;
}

.location-photo:hover img {
  transform: scale(1.035);
}

.location-one {
  grid-column: 1 / 5;
  grid-row: 1;
  height: 470px;
  margin: 35px 0 0;
}

.location-two {
  margin-top: -40px;
  grid-column: 9 / 13;
  grid-row: 1;
  height: 540px;
  margin: 0;
}

.location-three {
  margin-top: 40px;
  grid-column: 1 / 4;
  grid-row: 2;
  height: 390px;
  margin: 55px 0 0;
}

.location-copy {
  margin-top: 40px;
  grid-column: 4 / 8;
  grid-row: 2;
  align-self: center;
  margin: 55px 0 0;
  padding: 35px 40px;
}

.location-copy p {
  color: #645c58;
}

.location-copy .button {
  margin-top: 20px;
}

.location-four {
  margin-top: 40px;
  grid-column: 8 / 12;
  grid-row: 2;
  height: 420px;
  margin: 20px 0 0;
}

.story-badge {
  grid-column: 11 / 13;
  grid-row: 2;
  margin-top: 40px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story-badge svg {
  width: clamp(120px, 11vw, 168px);
  height: clamp(120px, 11vw, 168px);
  animation: badge-spin 16s linear infinite;
}

.story-badge text {
  font: 11px/1 var(--sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  fill: var(--ink);
}

.story-badge-arrow {
  position: absolute;
  font-size: 22px;
  color: var(--wine);
}

.story-badge:hover svg {
  animation-play-state: paused;
}

@keyframes badge-spin {
  to {
    transform: rotate(360deg);
  }
}

.location-place {
  margin: 45px 0 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  grid-column: 1 / 13;
  grid-row: 3;
  margin-top: 55px;
}

.location-place i {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin: 0 9px;
  background: currentColor;
  vertical-align: middle;
}

@media (max-width: 800px) {
  .repertoire-parallax {
    height: 760px;
    min-height: 760px;
  }

  .repertoire-couple {
    bottom: 1%;
  }

  .formations {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .testimonial > p {
    font-size: 26px;
  }

  .testimonial-track {
    min-height: 280px;
  }

  .masonry-set {
    grid-template-rows: 170px 170px;
    grid-auto-columns: 170px;
  }

  .location-collage {
    display: block;
    padding: 90px 22px;
  }

  .location-heading {
    margin-bottom: 30px;
    padding: 0;
  }

  .location-photo,
  .location-four {
    height: 380px;
    margin: 22px 0 !important;
  }

  .location-copy {
    padding: 20px 0;
    margin-top: 0 !important;
  }

  .location-three {
    height: 300px;
  }

  .story-badge {
    height: auto;
    margin: 30px 0 !important;
  }
}

/* Dark portfolio mosaic — Belo Horizonte */

.location-collage .location-photo {
  margin: 0;
  border-radius: 18px;
  background: #161414;
}

.location-collage .location-photo img {
  filter: saturate(0.58) contrast(1.03);
}

.location-collage .location-one {
  grid-column: 1 / 4;
  grid-row: 1;
  height: 370px;
}

.location-collage .location-heading {
  grid-column: 4 / 7;
  grid-row: 1;
  align-self: center;
  padding: 25px 18px;
  color: #fff;
}

.location-collage .location-heading .eyebrow {
  color: #b9ada8;
}

.location-collage .location-heading h2 {
  margin: 18px 0 0;
  color: #fff;
}

.location-collage .location-heading h2 em {
  color: #d7aaa0;
}

.location-collage .location-two {
  grid-column: 7 / 10;
  grid-row: 1;
  height: 370px;
}

.location-collage .location-three {
  grid-column: 10 / 13;
  grid-row: 1;
  height: 370px;
}

.location-collage .location-four {
  grid-column: 1 / 7;
  grid-row: 2;
  height: 390px;
}

.location-collage .location-five {
  grid-column: 7 / 10;
  grid-row: 2;
  height: 390px;
}

.location-collage .location-copy {
  grid-column: 10 / 13;
  grid-row: 2;
  align-self: center;
  margin: 0;
  padding: 28px 12px 28px 22px;
}

.location-collage .location-copy p {
  color: #c4b9b4;
}

.location-collage .location-copy .button {
  margin-top: 20px;
}

.location-collage .location-place {
  grid-column: 1 / 13;
  grid-row: 3;
  margin: 38px 0 0;
  color: #897d78;
  text-align: center;
}

@media (max-width: 900px) {
  .location-collage {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 85px 22px 70px;
  }

  .location-collage .location-one,
  .location-collage .location-heading,
  .location-collage .location-two,
  .location-collage .location-three,
  .location-collage .location-four,
  .location-collage .location-five,
  .location-collage .location-copy,
  .location-collage .location-place {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .location-collage .location-heading,
  .location-collage .location-copy {
    padding: 28px 8px;
  }

  .location-collage .location-photo {
    height: 330px;
  }

  .location-collage .location-four {
    grid-column: 1 / 3;
  }

  .location-collage .location-place {
    grid-column: 1 / 3;
  }
}

@media (max-width: 560px) {
  .location-collage {
    display: block;
  }

  .location-collage .location-photo {
    height: 360px;
    margin-bottom: 18px;
  }

  .location-collage .location-heading,
  .location-collage .location-copy {
    padding: 42px 0;
  }
}

/* Small utility text */

main .eyebrow,
main .place,
main .location-place {
  font-size: 9px;
}

@media (max-width: 800px) {
  .location-heading,
  .location-copy {
    padding: 30px 0;
  }

  .location-one,
  .location-two,
  .location-three,
  .location-four {
    height: 380px;
    margin: 20px 0;
  }
}

/* Mobile fix: repertoire couple photo was overriding earlier mobile sizing
   because an unconditional rule later in the file reset its width/position. */
/* ==========================================================
   REPERTÓRIO PARALLAX — MOBILE
   ========================================================== */
@media (max-width: 680px) {
  .repertoire-parallax {
    /*
     * Mais altura = mais tempo para o efeito acontecer.
     * Não use 78svh nem 760px nessa seção.
     */
    height: 960px;
    min-height: 960px;
  }

  .repertoire-title {
    /*
     * O título começa completamente visível.
     */
    top: 7%;
    left: 50%;
    width: 94vw;

    font-size: clamp(30px, 8.2vw, 40px);
    line-height: 0.92;
    letter-spacing: -0.035em;

    z-index: 2;
  }

  .repertoire-title span,
  .repertoire-title em {
    display: block;
    white-space: nowrap;
  }

  .repertoire-bg {
    /*
     * Somente o fundo recebe inset.
     * Não coloque .repertoire-couple junto nesta regra.
     */
    inset: -25% -45%;
    background-position: center;
  }

  .repertoire-couple {
    /*
     * Limpa o inset aplicado por regras anteriores.
     */
    inset: auto;

    top: auto;
    right: auto;
    left: 50%;
    bottom: 4%;

    /*
     * A imagem volta a ter presença semelhante ao desktop.
     */
    width: min(92vw, 430px);
    height: auto;
    max-width: none;

    /*
     * A imagem fica acima do título quando os dois se encontram.
     */
    z-index: 3;

    transform: translate3d(-50%, 0, 0);
    transform-origin: center bottom;

    pointer-events: none;
    will-change: transform;
  }
}





@media (max-width: 800px) {
  .repertoire-title {
    width: calc(100vw - 36px);
    max-width: 680px;

    font-size: clamp(38px, 10vw, 58px);
    line-height: 0.9;
    letter-spacing: -0.04em;

    text-align: center;
    text-wrap: balance;
  }

  .repertoire-title span,
  .repertoire-title em {
    display: block;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .repertoire-parallax {
    height: 850px;
    min-height: 850px;
  }


  .repertoire-content {
    padding: 0 22px 90px;
  }
}
