:root {
  --color-primary: #6e4d8b;
  --color-primary-dark: #352044;
  --color-plum: #160d20;
  --color-night: #09080d;
  --color-ivory: #fbf8ef;
  --color-gold: #c9a95f;
  --color-gold-text: #7b5d18;
  --color-gold-soft: #e4cf96;
  --color-text: #211a27;
  --color-muted: #685e70;
  --color-line: rgba(110, 77, 139, .18);
  --shadow-soft: 0 24px 80px rgba(24, 14, 32, .18);
  --font-display: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrapper: min(1180px, calc(100vw - 40px));
  --radius: 8px;
  --space-section: clamp(72px, 8vw, 132px);
  --motion-ease-out: cubic-bezier(.22, 1, .36, 1);
  --motion-ease-standard: cubic-bezier(.65, 0, .35, 1);
  --motion-duration-fast: 180ms;
  --motion-duration-base: 320ms;
  --motion-duration-slow: 620ms;
  --motion-stagger: 70ms;
}

* {
  box-sizing: border-box;
}

html {
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-gold-soft);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(9, 8, 13, .45);
}

.wrapper {
  width: var(--wrapper);
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 18px;
  background: var(--color-ivory);
  color: var(--color-night);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(20px, 3vw, 44px);
  color: #fff;
  transition: background var(--motion-duration-base) var(--motion-ease-out), padding var(--motion-duration-base) var(--motion-ease-out), border-color var(--motion-duration-base) var(--motion-ease-out);
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(9, 8, 13, .9);
  backdrop-filter: blur(18px);
}

.site-header--solid {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(17, 16, 25, .96);
  box-shadow: 0 18px 42px rgba(9, 8, 13, .28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  min-width: 132px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 22px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.site-nav > a,
.nav-group__label {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  padding: 12px 0;
  opacity: .9;
  white-space: nowrap;
}

.site-nav > a::after,
.nav-group__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-duration-fast) var(--motion-ease-out);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.nav-group__label:hover::after,
.nav-group__label.is-active::after,
.nav-group.is-active .nav-group__label::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
}

.nav-group__button {
  display: inline-grid;
  width: 26px;
  min-height: 44px;
  place-items: center;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  opacity: .9;
}

.nav-group__button::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--motion-duration-fast) var(--motion-ease-out);
}

.nav-group:hover .nav-group__button::before,
.nav-group:focus-within .nav-group__button::before,
.nav-group.is-open .nav-group__button::before {
  transform: translateY(3px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  z-index: 60;
  display: grid;
  gap: 2px;
  width: max-content;
  min-width: 248px;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  background: rgba(17, 11, 24, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
  transition: opacity var(--motion-duration-fast) var(--motion-ease-out), transform var(--motion-duration-fast) var(--motion-ease-out), visibility var(--motion-duration-fast) var(--motion-ease-out);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.nav-dropdown a {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  opacity: 1;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.header-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform var(--motion-duration-fast) var(--motion-ease-out), background var(--motion-duration-fast) var(--motion-ease-out), border-color var(--motion-duration-fast) var(--motion-ease-out), color var(--motion-duration-fast) var(--motion-ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(.985);
}

.button--primary {
  color: #fff;
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, var(--color-primary), #8a5cad);
  box-shadow: 0 16px 36px rgba(110, 77, 139, .26);
}

.button--ghost {
  color: #fff;
  border-color: var(--color-gold);
  background: rgba(0, 0, 0, .18);
}

.button--secondary {
  color: var(--color-gold-soft);
  border-color: rgba(228, 207, 150, .55);
  background: rgba(255, 255, 255, .04);
}

.button--outline {
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
  background: transparent;
}

.button:disabled {
  cursor: not-allowed;
  opacity: .72;
}

.button:disabled:hover {
  transform: none;
}

.scroll-to-top {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 45;
  display: inline-flex;
  min-width: 132px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, var(--color-primary), #8a5cad);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  box-shadow: 0 18px 46px rgba(53, 32, 68, .32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity var(--motion-duration-base) var(--motion-ease-out),
    transform var(--motion-duration-base) var(--motion-ease-out),
    visibility var(--motion-duration-base) var(--motion-ease-out),
    background var(--motion-duration-fast) var(--motion-ease-out),
    border-color var(--motion-duration-fast) var(--motion-ease-out);
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.scroll-to-top:hover {
  border-color: rgba(255, 255, 255, .48);
  transform: translate3d(0, -2px, 0);
}

.scroll-to-top:active {
  transform: translate3d(0, 0, 0) scale(.985);
}

.scroll-to-top__icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
}

.scroll-to-top__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.is-menu-open .scroll-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  min-height: 44px;
  align-items: center;
  padding: 10px 0;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--color-gold);
  transition: transform var(--motion-duration-fast) var(--motion-ease-out);
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link:active span {
  transform: translateX(2px);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--color-night);
}

.hero--home {
  min-height: clamp(580px, 66vh, 640px);
}

.hero--inner {
  min-height: 560px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: .78;
}

.hero--inner .hero__media img {
  object-position: center;
  opacity: .45;
  filter: saturate(.86) contrast(1.08);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 8, 13, .96) 0%, rgba(9, 8, 13, .84) 34%, rgba(9, 8, 13, .22) 67%, rgba(9, 8, 13, .58) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  padding-top: 92px;
}

.hero__content h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 5.45vw, 88px);
  font-weight: 400;
  line-height: .97;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero--inner .hero__content h1 {
  max-width: 860px;
  font-size: clamp(44px, 5vw, 78px);
}

.hero__content h1 span {
  color: var(--color-gold-soft);
}

.hero__content p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 64px;
}

.hero-music-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: clamp(-2px, 1.8vh, 18px);
  left: 0;
  width: 100%;
  height: clamp(150px, 16.25vw, 260px);
  color: var(--color-gold-soft);
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-music-overlay__staff {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 32px, 0) scaleX(.72) scaleY(.9);
  transform-origin: 50% 78%;
  animation: hero-staff-breathe 10.8s var(--motion-ease-out) infinite both;
  animation-delay: var(--hero-music-delay, 0s);
}

.hero-music-overlay__line,
.hero-music-overlay__glow,
.hero-music-bar {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.hero-music-overlay__line {
  stroke-width: 1.05;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  animation: hero-staff-line 10.8s var(--motion-ease-out) infinite both;
  animation-delay: calc(var(--hero-music-delay, 0s) + var(--line-delay, 0s));
}

.hero-music-overlay__glow {
  stroke-width: 4;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  filter: blur(10px) drop-shadow(0 0 18px rgba(228, 207, 150, .28));
  animation: hero-staff-glow 10.8s var(--motion-ease-out) infinite both;
  animation-delay: calc(var(--hero-music-delay, 0s) + .3s);
}

.hero-music-bar {
  stroke-width: 1.15;
  stroke-dasharray: 84;
  stroke-dashoffset: 84;
  opacity: 0;
  animation: hero-bar-appear 10.8s var(--motion-ease-out) infinite both;
  animation-delay: calc(var(--hero-music-delay, 0s) + var(--bar-delay, 0s));
}

.hero-music-clef,
.hero-music-note {
  fill: currentColor;
  font-family: var(--font-display);
  line-height: 1;
  text-anchor: middle;
  dominant-baseline: central;
  transform-box: fill-box;
  transform-origin: center;
  text-shadow: 0 0 18px rgba(228, 207, 150, .28), 0 12px 30px rgba(0, 0, 0, .24);
}

.hero-music-clef {
  font-size: 118px;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(-12px, 0, 0) scale(.82) rotate(-4deg);
  animation: hero-clef-appear 10.8s var(--motion-ease-out) infinite both;
  animation-delay: calc(var(--hero-music-delay, 0s) + .55s);
}

.hero-music-note {
  font-size: var(--note-size, 44px);
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 0, 0) scale(.72) rotate(var(--note-rotate, 0deg));
  animation: hero-note-appear var(--note-duration, 9.6s) var(--motion-ease-out) infinite both;
  animation-delay: calc(var(--hero-music-delay, 0s) + var(--note-delay, 0s));
  will-change: opacity, transform, filter;
}

@keyframes hero-staff-breathe {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 34px, 0) scaleX(.72) scaleY(.9);
  }

  16% {
    opacity: .76;
    filter: blur(2px);
  }

  52% {
    opacity: .74;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scaleX(1) scaleY(1);
  }

  78% {
    opacity: .42;
  }

  100% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, -24px, 0) scaleX(1.025) scaleY(1.02);
  }
}

@keyframes hero-staff-line {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
  }

  18% {
    opacity: .58;
  }

  46% {
    stroke-dashoffset: 0;
  }

  72% {
    opacity: .48;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: -1;
  }
}

@keyframes hero-staff-glow {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
  }

  22% {
    opacity: .22;
  }

  48% {
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: -1;
  }
}

@keyframes hero-bar-appear {
  0%,
  18% {
    opacity: 0;
    stroke-dashoffset: 84;
  }

  36% {
    opacity: .42;
    stroke-dashoffset: 0;
  }

  76% {
    opacity: .34;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: -84;
  }
}

@keyframes hero-clef-appear {
  0%,
  10% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(-16px, 4px, 0) scale(.78) rotate(-5deg);
  }

  28% {
    opacity: .72;
    filter: blur(1px);
    transform: translate3d(0, 0, 0) scale(1) rotate(-3deg);
  }

  74% {
    opacity: .56;
  }

  100% {
    opacity: 0;
    filter: blur(9px);
    transform: translate3d(8px, -2px, 0) scale(.94) rotate(-2deg);
  }
}

@keyframes hero-note-appear {
  0%,
  14% {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, 0, 0) scale(.72) rotate(var(--note-rotate, 0deg));
  }

  28% {
    opacity: .94;
    filter: blur(0);
    transform: translate3d(0, -2px, 0) scale(1) rotate(var(--note-rotate, 0deg));
  }

  58% {
    opacity: .7;
    filter: blur(1px);
    transform: translate3d(0, 1px, 0) scale(.98) rotate(var(--note-rotate, 0deg));
  }

  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, -6px, 0) scale(.9) rotate(var(--note-rotate, 0deg));
  }
}

.ornament {
  width: min(360px, 58vw);
  height: 24px;
  margin-bottom: 26px;
  color: var(--color-gold);
}

.ornament::before,
.ornament::after {
  content: "";
  display: inline-block;
  width: 42%;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  opacity: .9;
}

.ornament span {
  display: inline-block;
  width: 16%;
  text-align: center;
}

.ornament span::before {
  content: "✦";
  font-size: 14px;
}

.sound-divider {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: -24px;
  left: 0;
  height: 80px;
  color: var(--color-gold);
  pointer-events: none;
}

.sound-divider::before {
  content: "𝄞";
  position: absolute;
  bottom: 7px;
  left: 42px;
  font-size: 58px;
  opacity: .55;
}

.sound-divider span {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: min(380px, 70vw);
  height: 60px;
  transform: translateX(-50%);
  opacity: .86;
  background: repeating-linear-gradient(90deg, transparent 0 8px, currentColor 8px 10px, transparent 10px 18px);
  clip-path: polygon(0 48%, 4% 42%, 8% 52%, 12% 38%, 16% 58%, 20% 24%, 24% 62%, 28% 34%, 32% 72%, 36% 26%, 40% 62%, 44% 44%, 48% 68%, 52% 18%, 56% 64%, 60% 42%, 64% 76%, 68% 30%, 72% 62%, 76% 40%, 80% 56%, 84% 44%, 88% 52%, 92% 46%, 100% 50%);
}

.breadcrumb {
  position: relative;
  z-index: 0;
  margin-top: 92px;
  padding-block: 10px;
  color: #fff;
  font-size: 13px;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--color-primary);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08), inset 0 -1px rgba(201, 169, 95, .5);
  pointer-events: none;
}

.breadcrumb::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0 8px,
      rgba(255, 255, 255, .11) 8px 9px,
      transparent 9px 16px
    ),
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, .1) 0 2px, transparent 2.5px),
    radial-gradient(circle at 64% 35%, rgba(255, 255, 255, .08) 0 1.5px, transparent 2px);
  background-size: 100% 64px, 360px 64px, 360px 64px;
  opacity: .44;
  pointer-events: none;
}

.breadcrumb ol {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb a {
  color: #fff;
}

.spacer-like-breadcrumb{
  height:92px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 255, 255, .78);
}

.section {
  padding: var(--space-section) 0;
}

:where(#testimonios, #preguntas, #inversion, #calendly, #programa, #adultos, #ninos, #reconocimientos, #discografia) {
  scroll-margin-top: 112px;
}

.ivory {
  background: var(--color-ivory);
}

.dark-band {
  color: #fff;
  background: radial-gradient(circle at 14% 20%, rgba(110, 77, 139, .26), transparent 28%), linear-gradient(135deg, var(--color-plum), #231430);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--color-gold-text);
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dark-band .section-kicker,
.cta-band .section-kicker {
  color: var(--color-gold-soft);
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.12;
}

p {
  font-size: 16px;
}

.routes-section {
  position: relative;
  padding-top: clamp(58px, 6.5vw, 96px);
}

.routes-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(201, 169, 95, .24) 0 56px, transparent 56px 64px);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
}

.route-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-card {
  min-width: 0;
}

.route-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--color-gold);
}

.route-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.route-card p {
  min-height: 96px;
  color: #4f4757;
}

.route-card img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  margin-top: 24px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(.85) contrast(1.03);
  box-shadow: var(--shadow-soft);
}

.route-card--voice-heals img {
  object-position: 68% center;
}

.split-section,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.split-section p {
  color: rgba(255, 255, 255, .74);
}

.split-section .split-subtitle {
  margin: 18px 0 0;
  color: var(--color-gold-soft);
  font-size: clamp(19px, 1.75vw, 25px);
  font-weight: 850;
  line-height: 1.3;
}

.ivory .split-section p {
  color: var(--color-muted);
}

.two-column p {
  color: var(--color-muted);
}

.portrait-frame img {
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .34);
}

.portrait-frame--vertical {
  justify-self: center;
  width: min(100%, 280px);
}

.portrait-frame--vertical img {
  width: 100%;
  aspect-ratio: 210 / 354;
  object-fit: contain;
  object-position: center center;
}

.portrait-frame--studio img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  object-position: 18% center;
}

.portrait-frame--home-mic {
  justify-self: center;
  width: min(100%, 440px);
}

.portrait-frame--home-mic img {
  width: 100%;
  aspect-ratio: 1524 / 1600;
  object-fit: cover;
  object-position: center 34%;
}

.proof-band {
  background: #fffaf1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.proof-grid div {
  min-width: 0;
  padding: 32px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.proof-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-gold-text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.08;
}

.proof-grid p {
  margin: 0;
  color: var(--color-muted);
}

.achievements-section .section-heading,
.discography-section .section-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.achievements-section .section-heading p:not(.section-kicker) {
  color: var(--color-muted);
}

.achievement-timeline {
  position: relative;
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.achievement-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(201, 169, 95, .12), rgba(201, 169, 95, .72), rgba(201, 169, 95, .12));
  transform: translateX(-50%);
}

.achievement-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  align-items: center;
}

.achievement-item::before {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 1;
  width: 18px;
  height: 18px;
  background: var(--color-gold);
  border: 5px solid var(--color-ivory);
  box-shadow: 0 12px 30px rgba(42, 25, 54, .18);
  transform: translateX(-50%) rotate(45deg);
}

.achievement-card {
  grid-column: 1;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.achievement-item:nth-child(odd) .achievement-card {
  text-align: right;
}

.achievement-item:nth-child(even) .achievement-card {
  grid-column: 3;
}

.achievement-year {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 11px;
  margin-bottom: 16px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(201, 169, 95, .18);
  border: 1px solid rgba(201, 169, 95, .34);
}

.achievement-card h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.1vw, 34px);
}

.achievement-card p {
  margin: 0;
  color: var(--color-muted);
}

.discography-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, .76);
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}

.album-card {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: #fff;
}

.album-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 1;
  margin-bottom: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .28);
}

.album-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
  transition: transform var(--motion-duration-base) var(--motion-ease-out), filter var(--motion-duration-base) var(--motion-ease-out);
}

.album-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(9, 8, 13, 0);
  transition: opacity var(--motion-duration-fast) var(--motion-ease-out), background var(--motion-duration-fast) var(--motion-ease-out);
}

.album-card__overlay span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #fff;
}

.album-card__title,
.album-card__year {
  display: block;
}

.album-card__title {
  color: #fff;
  font-weight: 850;
  line-height: 1.25;
}

.album-card__year {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 800;
}

.album-card:hover .album-card__cover img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.055);
}

.album-card:hover .album-card__overlay,
.album-card:focus-visible .album-card__overlay {
  opacity: 1;
  background: rgba(9, 8, 13, .34);
}

.discography-actions {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.template-note {
  padding-left: 18px;
  border-left: 3px solid var(--color-gold);
}

.children-program {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 5% 72%, rgba(201, 169, 95, .2), transparent 19%),
    radial-gradient(circle at 94% 16%, rgba(110, 77, 139, .13), transparent 22%),
    var(--color-ivory);
}

.children-program__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}

.children-program__lead {
  max-width: 660px;
  margin-top: 22px;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.18;
}

.children-program__copy > p:not(.section-kicker):not(.children-program__lead),
.children-program__promise > p:not(.section-kicker),
.children-program__promise span {
  color: var(--color-muted);
}

.children-program__list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--color-muted);
  list-style: none;
}

.children-program__list li {
  position: relative;
  padding-left: 30px;
}

.children-program__list li::before {
  content: "♪";
  position: absolute;
  top: -.18em;
  left: 0;
  color: var(--color-gold-text);
  font-size: 22px;
}

.children-program__visual {
  position: relative;
  min-height: 372px;
  padding: 42px 0 0;
}

.children-program__photo {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: 10px;
  margin: 32px 0 0 auto;
  background: #fff;
  box-shadow: 0 28px 70px rgba(42, 25, 54, .16);
}

.children-program__photo img,
.children-program__singing img {
  width: 100%;
  object-fit: cover;
}

.children-program__photo img {
  aspect-ratio: 580 / 328;
}

.children-program__toy {
  position: absolute;
  top: -12px;
  right: -18px;
  z-index: 2;
  width: min(62%, 300px);
  overflow: visible;
  filter: drop-shadow(0 18px 24px rgba(42, 25, 54, .16));
}

.children-program__key {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transition: transform 620ms var(--motion-ease-out), opacity 420ms var(--motion-ease-out);
  transition-delay: var(--toy-delay, 0ms);
}

.children-program__note {
  position: absolute;
  z-index: 3;
  display: block;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  text-shadow: 0 10px 22px rgba(42, 25, 54, .12);
  transition: opacity 480ms var(--motion-ease-out), transform 680ms var(--motion-ease-out);
}

.children-program__note--one { top: 18%; left: -5%; transform: rotate(-12deg); }
.children-program__note--two { right: 2%; bottom: 7%; color: var(--color-gold-text); transform: rotate(10deg); }
.children-program__note--three { top: 59%; left: 3%; color: #ba7896; transform: rotate(-7deg); }

.children-program__guarantee {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}

.children-program__guarantee img {
  width: 96px;
  height: 90px;
  object-fit: contain;
}

.children-program__guarantee p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.children-program__guarantee strong {
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
}

.children-videos .section-heading p:not(.section-kicker),
.children-videos__grid p {
  color: rgba(255, 255, 255, .76);
}

.children-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.children-videos__grid article {
  min-width: 0;
}

.children-videos__grid h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(25px, 2.2vw, 32px);
}

.motion-ready .children-program__visual:not(.is-visible) .children-program__key {
  opacity: 0;
  transform: translate3d(0, -18px, 0) rotate(-4deg);
}

.motion-ready .children-program__visual:not(.is-visible) .children-program__note {
  opacity: 0;
  transform: translate3d(0, -24px, 0) rotate(-10deg);
}

.instrument-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.instrument-card {
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.instrument-card img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  filter: saturate(.9);
}

.instrument-card div {
  padding: 22px;
}

.instrument-card h3 {
  font-size: 25px;
}

.instrument-card h3 a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.instrument-card p {
  min-height: 78px;
  color: var(--color-muted);
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.segmented :where(span, a) {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(110, 77, 139, .22);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.segmented a {
  transition: background var(--motion-duration-fast) var(--motion-ease-out), border-color var(--motion-duration-fast) var(--motion-ease-out), color var(--motion-duration-fast) var(--motion-ease-out);
}

.segmented a:hover {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.instrument-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.method-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid rgba(110, 77, 139, .16);
  background: rgba(255, 255, 255, .5);
}

.method-panel ul {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-panel li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(110, 77, 139, .16);
}

.method-panel strong {
  color: var(--color-primary-dark);
}

.method-panel span {
  color: var(--color-muted);
}

.detail-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.detail-grid article,
blockquote,
.goal-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.detail-grid p,
blockquote p {
  color: var(--color-muted);
}

.studio-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 52px);
}

.studio-service-grid article {
  min-width: 0;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.studio-service-grid a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.studio-service-grid img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: transform var(--motion-duration-slow) var(--motion-ease-out), filter var(--motion-duration-slow) var(--motion-ease-out);
}

.studio-service-grid article {
  overflow: hidden;
}

.studio-service-grid__body {
  display: block;
  padding: clamp(26px, 4vw, 44px);
}

.studio-service-grid__body p {
  color: var(--color-muted);
}

.studio-service-grid__body strong {
  color: var(--color-primary-dark);
}

.studio-service-grid a:hover img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.02);
}

.studio-content-grid,
.studio-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.studio-content-grid > article {
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.studio-content-grid .content-list {
  margin-top: 22px;
}

.studio-subservice {
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid var(--color-line);
}

.studio-subservice h4 {
  margin-top: 0;
}

.studio-video-grid {
  align-items: start;
}

.studio-video h3 {
  min-height: 2.3em;
  color: #fff;
}

.studio-video .video-frame {
  margin-top: 18px;
}

.studio-video__fallback {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-gold-soft);
  font-weight: 800;
}

.testimonial-section {
  color: #fff;
  background: var(--color-primary-dark);
}

.testimonial-section .section-heading {
  margin-bottom: 34px;
}

.testimonial-section blockquote {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
}

.testimonial-section blockquote span {
  display: block;
  height: 50px;
  margin-bottom: 16px;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 74px;
  line-height: .9;
}

.testimonial-section blockquote p {
  color: rgba(255, 255, 255, .82);
}

.testimonial-section cite {
  color: #fff;
}

.goal-panel ul {
  padding-left: 22px;
  margin: 0;
  color: var(--color-muted);
}

.tabs-block {
  max-width: 920px;
}

.tab-list {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-list button {
  min-height: 48px;
  padding: 12px 20px;
  color: var(--color-primary-dark);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--color-line);
}

.tab-list button[aria-selected="true"] {
  color: #fff;
  background: var(--color-primary);
}

.tab-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-line);
}

.tab-panel h3,
.tab-panel h4 {
  margin-top: 0;
}

.content-list {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  color: var(--color-muted);
}

.content-list + h4,
.program-note + h4 {
  margin-top: 28px;
}

.program-note {
  color: var(--color-muted);
}

.source-footnote {
  margin-top: 16px;
  color: var(--color-gold-text);
  font-size: 14px;
  font-style: italic;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.price-card strong {
  display: block;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
}

.hero--cuda {
  min-height: clamp(700px, 82vh, 860px);
}

.hero--cuda .hero__media img {
  object-position: center;
  opacity: .38;
}

.hero--cuda .hero__actions {
  margin-bottom: 0;
}

.cuda-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .78fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.cuda-hero-copy {
  min-width: 0;
}

.cuda-hero-video {
  align-self: center;
  width: 100%;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111019;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame--hero {
  border-color: rgba(228, 207, 150, .42);
}

.video-link-card {
  display: block;
  color: #fff;
}

.video-link-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: opacity var(--motion-duration-fast) var(--motion-ease-out), transform var(--motion-duration-fast) var(--motion-ease-out);
}

.video-link-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  gap: 12px;
  place-content: center;
  justify-items: center;
  padding: 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .8);
  background: linear-gradient(180deg, rgba(9, 8, 13, .08), rgba(9, 8, 13, .32));
}

.video-link-card__play {
  position: relative;
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  background: #e62117;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .32);
}

.video-link-card__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}

.video-link-card:hover img {
  opacity: .95;
  transform: scale(1.035);
}

.video-link-card:hover .video-link-card__overlay {
  background: linear-gradient(180deg, rgba(9, 8, 13, .02), rgba(9, 8, 13, .2));
}

.cuda-check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  color: var(--color-muted);
  list-style: none;
}

.cuda-check-list li {
  position: relative;
  padding-left: 24px;
}

.cuda-check-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

.cuda-check-list--light {
  color: rgba(255, 255, 255, .78);
}

.cuda-video-panel {
  margin: 0;
}

.cuda-video-panel figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.cuda-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.cuda-card-grid article,
.cuda-resource-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.cuda-card-grid h3,
.cuda-resource-grid h3 {
  font-size: 24px;
}

.cuda-card-grid p,
.cuda-resource-grid p {
  color: var(--color-muted);
}

.cuda-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cuda-proof-line {
  max-width: 900px;
  margin: -16px 0 30px;
  padding: 18px 22px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(110, 77, 139, .16);
}

.cuda-proof-line strong {
  color: var(--color-primary-dark);
}

.cuda-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.cuda-cta-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.cuda-stats div,
.cuda-cta-stats div {
  padding: 22px;
  text-align: center;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--color-line);
}

.cuda-stats strong,
.cuda-cta-stats strong {
  display: block;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.cuda-stats span,
.cuda-cta-stats span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-section .section-kicker {
  color: var(--color-gold-soft);
}

.testimonial-section .section-heading p {
  color: rgba(255, 255, 255, .74);
}

.testimonial-grid--videos {
  align-items: start;
}

.video-testimonial {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.video-testimonial blockquote {
  min-height: 290px;
}

.video-testimonial blockquote p {
  font-size: 21px;
}

.cuda-video-more {
  margin-top: 48px;
}

.cuda-video-more h3 {
  color: #fff;
}

.cuda-video-more p {
  color: rgba(255, 255, 255, .74);
}

.cuda-video-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.cuda-video-grid a {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
}

.cuda-video-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: .78;
  transition: opacity var(--motion-duration-fast) var(--motion-ease-out), transform var(--motion-duration-fast) var(--motion-ease-out);
}

.cuda-video-grid span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(9, 8, 13, .78);
}

.cuda-video-grid a:hover img {
  opacity: .96;
  transform: scale(1.03);
}

.cuda-resource-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 13px;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(110, 77, 139, .22);
  background: rgba(251, 248, 239, .72);
}

.resource-links--press a {
  text-transform: none;
  letter-spacing: 0;
}

.cuda-include-panel {
  margin-top: 28px;
}

.cuda-price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.cuda-price-grid .price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card__eyebrow,
.price-card__badge {
  margin: 0;
  color: var(--color-gold-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-card__badge {
  align-self: flex-start;
  padding: 7px 10px;
  color: #fff;
  background: var(--color-primary);
}

.price-card--featured {
  border-color: rgba(201, 169, 95, .68);
  box-shadow: 0 24px 70px rgba(42, 25, 54, .14);
}

.cuda-price-grid .button {
  margin-top: auto;
}

.cuda-mini-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}

.cuda-mini-grid article {
  padding: 18px;
}

.cuda-mini-grid h3 {
  font-size: 21px;
}

.calendar-frame {
  min-height: 680px;
  overflow: hidden;
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.calendar-frame iframe {
  width: 100%;
  height: 680px;
  border: 0;
}

.calendar-frame--cantautor {
  display: grid;
  align-content: start;
  background: #fffaf1;
}

.calendar-frame__notice {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, .74);
  border-bottom: 1px solid var(--color-line);
}

.calendar-frame__notice strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.calendar-frame__notice span {
  color: var(--color-muted);
  font-size: 14px;
}

.cta-band .cuda-cta-stats {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 34px;
}

.cta-band .cuda-cta-stats:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta-band .cuda-cta-stats:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-band .cuda-cta-stats div {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

.cta-band .cuda-cta-stats strong {
  color: var(--color-gold-soft);
}

.cta-band .cuda-cta-stats span {
  color: rgba(255, 255, 255, .76);
}

.cuda-secondary-links {
  margin-top: 22px;
  font-size: 14px;
}

.cuda-secondary-links a {
  text-decoration: underline;
  text-decoration-color: rgba(228, 207, 150, .5);
  text-underline-offset: 5px;
}

.cuda-corporate-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
}

.cuda-corporate-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--color-muted);
}

.hero--cantautor {
  min-height: clamp(760px, 86vh, 920px);
}

.hero--cantautor .hero__media img {
  object-position: center;
  opacity: .38;
  filter: saturate(.78) contrast(1.08);
}

.hero--cantautor .hero__scrim {
  background:
    radial-gradient(circle at 50% 18%, rgba(214, 54, 46, .24), transparent 28%),
    linear-gradient(180deg, rgba(9, 8, 13, .94) 0%, rgba(22, 13, 32, .82) 48%, rgba(9, 8, 13, .93) 100%);
}

.cantautor-hero {
  max-width: 1080px;
  padding-bottom: 58px;
  text-align: center;
}

.cantautor-logo-lockup {
  width: min(520px, 92vw);
  margin: 0 auto 18px;
  overflow: hidden;
}

.cantautor-logo-lockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.cantautor-hero .section-kicker {
  color: var(--color-gold-soft);
}

.cantautor-hero h1,
.cantautor-hero p {
  margin-right: auto;
  margin-left: auto;
}

.cantautor-hero h1 {
  max-width: 980px;
}

.cantautor-hero .hero__actions {
  justify-content: center;
  margin-bottom: 40px;
}

.cantautor-hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}

.cantautor-hero-facts:has(> :nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cantautor-hero-facts div {
  min-width: 0;
  padding: 18px 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}

.cantautor-hero-facts strong {
  display: block;
  color: var(--color-gold-soft);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.cantautor-hero-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.cantautor-solution-card h3 {
  color: var(--color-primary-dark);
  font-size: 38px;
}

.cantautor-solution-card .section-kicker {
  margin-bottom: 8px;
}

.cantautor-value-band {
  background: #fffaf1;
}

.cantautor-value-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.cantautor-cost-list {
  display: grid;
  gap: 16px;
}

.cantautor-cost-list div {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  color: var(--color-muted);
  border-bottom: 1px solid rgba(110, 77, 139, .16);
}

.cantautor-cost-list strong {
  color: var(--color-primary-dark);
  font-size: 24px;
  white-space: nowrap;
}

.cantautor-cost-list .cantautor-cost-total {
  padding-top: 6px;
  padding-bottom: 0;
  border-bottom: 0;
}

.cantautor-cost-total span,
.cantautor-cost-total strong {
  color: #cf332d;
}

.cantautor-launch-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 16%, rgba(214, 54, 46, .42), transparent 30%),
    linear-gradient(135deg, var(--color-plum), #2d1627 56%, #551d24);
}

.cantautor-launch-card .price-card__eyebrow,
.cantautor-launch-card .source-footnote {
  color: var(--color-gold-soft);
}

.cantautor-launch-card strong {
  color: #fff;
  font-size: 58px;
}

.cantautor-launch-card p {
  color: rgba(255, 255, 255, .78);
}

.cantautor-launch-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.cantautor-discount {
  margin: 0;
  color: var(--color-gold-soft);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cantautor-include-grid,
.cantautor-question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cantautor-include-grid article,
.cantautor-question-grid article,
.cantautor-timeline article {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.cantautor-include-grid h3,
.cantautor-question-grid h3,
.cantautor-timeline h3 {
  font-size: 24px;
}

.cantautor-include-grid p,
.cantautor-question-grid p {
  margin: 0;
  color: var(--color-muted);
}

.cantautor-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cantautor-timeline > article > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  background: #cf332d;
}

.cantautor-timeline .content-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.cantautor-testimonial-link {
  margin-top: 12px;
  color: var(--color-gold-soft);
}

.cantautor-stats {
  margin-bottom: 28px;
}

.cantautor-limited-panel {
  align-items: center;
  margin-top: 28px;
}

.cantautor-limited-panel p {
  color: var(--color-muted);
}

.cantautor-question-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cantautor-question-grid article {
  position: relative;
  padding-top: 48px;
}

.cantautor-question-grid article::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 28px;
  width: 12px;
  height: 12px;
  background: #cf332d;
  transform: rotate(45deg);
}

.cantautor-question-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-dark), #3d1e2c);
}

.cantautor-question-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.cantautor-final-cta .wrapper {
  max-width: 860px;
}

.cantautor-signoff {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.cantautor-signoff img {
  width: min(280px, 72vw);
  height: 108px;
  object-fit: cover;
  object-position: center 59%;
  opacity: .96;
}

.cantautor-signoff p {
  margin: 0;
  font-size: 14px;
}

.hero--bodas {
  min-height: clamp(660px, 76vh, 820px);
}

.hero--bodas .hero__media img {
  object-position: center;
  opacity: .5;
  filter: saturate(.84) contrast(1.08);
}

.hero--bodas .hero__scrim {
  background:
    radial-gradient(circle at 28% 24%, rgba(201, 169, 95, .2), transparent 30%),
    linear-gradient(90deg, rgba(9, 8, 13, .98) 0%, rgba(9, 8, 13, .9) 38%, rgba(9, 8, 13, .34) 72%, rgba(9, 8, 13, .64) 100%);
}

.hero--bodas .section-kicker {
  color: var(--color-gold-soft);
}

.hero--bodas .hero__actions {
  margin-bottom: 0;
}

.bodas-portrait {
  margin: 0;
}

.bodas-portrait img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.bodas-steps,
.bodas-occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bodas-steps article,
.bodas-occasion-grid article {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.bodas-steps span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  background: var(--color-primary-dark);
}

.bodas-steps h3,
.bodas-occasion-grid h3 {
  font-size: 24px;
}

.bodas-steps p,
.bodas-occasion-grid p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.bodas-include-list {
  display: grid;
  gap: 0;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}

.bodas-include-list div {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.bodas-include-list div:first-child {
  padding-top: 0;
}

.bodas-include-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bodas-include-list strong {
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bodas-include-list span {
  color: rgba(255, 255, 255, .76);
}

.bodas-keepsake h3 {
  color: var(--color-primary-dark);
  font-size: clamp(31px, 3vw, 42px);
}

.bodas-final-cta .wrapper {
  max-width: 820px;
}

.source-image {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.hero--voice-heals {
  min-height: clamp(620px, 76vh, 780px);
}

.hero--voice-heals .hero__media img {
  object-position: center;
  opacity: .92;
  filter: saturate(.94) contrast(1.05);
}

.hero--voice-heals .hero__scrim {
  background: linear-gradient(90deg, rgba(9, 8, 13, .98) 0%, rgba(9, 8, 13, .92) 42%, rgba(9, 8, 13, .25) 72%, rgba(9, 8, 13, .58) 100%);
}

.voice-portrait-frame {
  justify-self: center;
  width: min(100%, 520px);
  margin: 0;
}

.source-image.voice-sana-portrait {
  aspect-ratio: 464 / 760;
  object-position: center top;
}

.voice-mode-grid,
.voice-feature-grid {
  display: grid;
  gap: 24px;
}

.voice-mode-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.voice-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.voice-mode-card,
.voice-feature-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 50px rgba(42, 25, 54, .08);
}

.voice-mode-card p,
.voice-feature-card p {
  color: var(--color-muted);
}

.voice-mode-card .content-list {
  margin-top: 18px;
}

.voice-feature-card {
  min-height: 190px;
}

.voice-feature-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-gold-text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.voice-media-section .section-heading p:not(.section-kicker),
.voice-album-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, .74);
}

.voice-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .65fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
}

.voice-live-moment {
  margin: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}

.voice-live-moment img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.voice-live-moment figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.voice-live-moment figcaption span {
  flex: 0 0 auto;
  color: var(--color-gold);
  font-weight: 800;
}

.voice-video-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
}

.voice-video-feature h3,
.voice-album-copy h3 {
  margin-bottom: 0;
  color: #fff;
}

.voice-video-card {
  aspect-ratio: 9 / 13;
}

.voice-video-card img {
  object-position: center;
}

.voice-album-feature {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-top: clamp(34px, 6vw, 76px);
  padding: clamp(24px, 4vw, 52px);
  background: linear-gradient(120deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  border: 1px solid rgba(228, 207, 150, .3);
}

.voice-album-cover {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
}

.voice-album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-duration-base) var(--motion-ease-out);
}

.voice-album-cover span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 10px 13px;
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fff;
}

.voice-album-cover:hover img,
.voice-album-cover:focus-visible img {
  transform: scale(1.04);
}

.voice-album-copy {
  max-width: 650px;
}

.voice-album-copy h3 {
  font-size: clamp(38px, 5vw, 66px);
}

.voice-feature-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.7vw, 28px);
  font-weight: 400;
  line-height: 1.12;
}

.voice-feature-card p {
  margin: 0;
}

.voice-feature-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.voice-feature-grid--compact .voice-feature-card {
  min-height: 0;
}

.voice-concept {
  max-width: 880px;
}

.voice-concept p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
}

blockquote {
  margin: 0;
}

blockquote p {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.28;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--color-primary-dark);
  font-style: normal;
  font-weight: 800;
}

.faq {
  max-width: 920px;
}

.faq details {
  padding: 22px 0;
  border-top: 1px solid rgba(110, 77, 139, .24);
}

.faq details:last-child {
  border-bottom: 1px solid rgba(110, 77, 139, .24);
}

.faq summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--color-primary-dark);
  font-weight: 800;
  cursor: pointer;
}

.faq details p {
  max-width: 720px;
  color: var(--color-muted);
}

.contact-section {
  background: #fff;
}

.contact-list {
  padding: 0;
  margin: 24px 0 0;
  color: var(--color-primary-dark);
  font-weight: 700;
  list-style: none;
}

.contact-list a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 95, .5);
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid rgba(110, 77, 139, .22);
  border-radius: 0;
}

.form-note {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.cta-band {
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--color-plum), #2b1738);
}

.cta-band .wrapper {
  max-width: 760px;
}

.cta-band p {
  color: rgba(255, 255, 255, .76);
}

.site-footer {
  padding: 72px 0 34px;
  color: rgba(255, 255, 255, .78);
  background: #111019;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 44px;
}

.footer-brand img {
  width: 220px;
  height: auto;
  opacity: .9;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 24px;
}

.site-footer address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.site-footer address a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}

.footer-note {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 44px;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-note p {
  font-size: 13px;
}

.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 16px, 0);
  transition: opacity var(--motion-duration-slow) var(--motion-ease-out), filter var(--motion-duration-slow) var(--motion-ease-out), transform var(--motion-duration-slow) var(--motion-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.motion-ready .routes-section .route-card[data-reveal="route-card"] {
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, clamp(34px, 4vw, 54px), 0) scale(.965);
  transform-origin: 50% 72%;
  transition:
    opacity 1800ms var(--motion-ease-out),
    filter 2000ms cubic-bezier(.16, 1, .3, 1),
    transform 2000ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(120ms + var(--route-reveal-delay, 0ms));
}

.motion-ready .routes-section .route-card[data-reveal="route-card"] img {
  filter: saturate(.72) contrast(.96) blur(5px);
  transform: translate3d(0, 18px, 0) scale(1.045);
  transition:
    filter 2050ms cubic-bezier(.16, 1, .3, 1),
    transform 2200ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(260ms + var(--route-reveal-delay, 0ms));
}

.motion-ready .routes-section .route-card[data-reveal="route-card"].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.motion-ready .routes-section .route-card[data-reveal="route-card"].is-visible img {
  filter: saturate(.85) contrast(1.03);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .dark-band .split-section > [data-reveal="split-copy"],
.motion-ready .dark-band .split-section > [data-reveal="split-media"] {
  --dark-drop-y: -64px;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, var(--dark-drop-y), 0) scale(.982);
  transform-origin: 50% 0%;
  transition:
    opacity 850ms cubic-bezier(.32, 0, .67, 0),
    filter 900ms cubic-bezier(.32, 0, .67, 0),
    transform 1000ms cubic-bezier(.32, 0, .67, 0);
}

.motion-ready .dark-band .split-section > [data-reveal="split-copy"] {
  transition-delay: 120ms;
}

.motion-ready .dark-band .split-section > [data-reveal="split-media"] {
  transition-delay: 320ms;
}

.motion-ready .dark-band .split-section > [data-reveal="split-copy"].is-visible,
.motion-ready .dark-band .split-section > [data-reveal="split-media"].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    width: 48px;
    height: 48px;
    place-content: center;
    color: #fff;
    background: rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .28);
  }

  .menu-toggle__bar,
  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    z-index: 55;
    inset: 82px 16px auto 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    background: rgba(17, 11, 24, .96);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition: opacity var(--motion-duration-base) var(--motion-ease-out), transform var(--motion-duration-base) var(--motion-ease-out), visibility var(--motion-duration-base) var(--motion-ease-out);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav > a,
  .nav-group__label {
    min-height: 48px;
    padding: 14px 4px;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 0;
    min-height: auto;
  }

  .nav-group__button {
    justify-self: end;
    width: 44px;
    min-height: 48px;
  }

  .nav-dropdown {
    position: static;
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 0 0 12px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    display: none;
  }

  .nav-group.is-open .nav-dropdown,
  .nav-group.is-open:focus-within .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    min-height: 44px;
    padding: 9px 10px;
    color: rgba(255, 255, 255, .82);
  }

  .header-cta {
    display: none;
  }

  .route-grid,
  .instrument-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discography-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .achievement-timeline::before {
    left: 28px;
  }

  .achievement-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .achievement-item::before {
    left: 28px;
  }

  .achievement-card,
  .achievement-item:nth-child(even) .achievement-card {
    grid-column: 2;
  }

  .achievement-item:nth-child(odd) .achievement-card {
    text-align: left;
  }

  .detail-grid,
  .testimonial-grid,
  .proof-grid,
  .children-program__grid,
  .children-videos__grid,
  .price-grid,
  .cantautor-value-grid,
  .cantautor-timeline,
  .cuda-hero-grid,
  .cuda-resource-grid,
  .cuda-price-grid {
    grid-template-columns: 1fr;
  }

  .cuda-card-grid,
  .cuda-card-grid--four,
  .bodas-steps,
  .bodas-occasion-grid,
  .cantautor-include-grid,
  .cantautor-question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cuda-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .children-program__visual {
    width: min(100%, 620px);
    justify-self: center;
  }

  .cuda-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cantautor-hero-facts {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .cantautor-hero-facts:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-testimonial blockquote {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .studio-service-grid {
    grid-template-columns: 1fr;
  }

  .studio-content-grid,
  .studio-video-grid {
    grid-template-columns: 1fr;
  }

  .studio-video h3 {
    min-height: 0;
  }

  :root {
    --wrapper: min(100vw - 28px, 640px);
    --space-section: 64px;
  }

  .site-header {
    padding: 14px;
  }

  .spacer-like-breadcrumb {
    height: 81px;
  }

  .breadcrumb {
    margin-top: 80px;
  }

  .hero--home {
    min-height: 700px;
  }

  .hero__media img {
    object-position: 68% center;
    opacity: .5;
  }

  .hero__scrim {
    background: linear-gradient(180deg, rgba(9, 8, 13, .95) 0%, rgba(9, 8, 13, .86) 45%, rgba(9, 8, 13, .62) 100%);
  }

  .hero__content {
    padding-top: 84px;
  }

  .hero__content h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-music-overlay {
    bottom: 2px;
    width: 100%;
    height: 104px;
    opacity: .58;
  }

  .hero-music-note {
    font-size: clamp(16px, 6vw, 25px);
  }

  .button {
    width: 100%;
  }

  .scroll-to-top {
    left: max(14px, env(safe-area-inset-left));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-width: 118px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 11px;
  }

  .scroll-to-top__icon {
    width: 20px;
    height: 20px;
  }

  .contact-list a,
  .footer-links a,
  .site-footer address a {
    min-height: 44px;
  }

  .route-grid,
  .instrument-grid,
  .discography-grid,
  .split-section,
  .two-column,
  .contact-grid,
  .method-panel,
  .proof-grid,
  .footer-grid,
  .cantautor-include-grid,
  .cantautor-question-grid,
  .bodas-steps,
  .bodas-occasion-grid,
  .cuda-card-grid,
  .cuda-card-grid--four,
  .cuda-stats,
  .cuda-cta-stats,
  .cta-band .cuda-cta-stats {
    grid-template-columns: 1fr;
  }

  .achievement-timeline {
    gap: 22px;
  }

  .achievement-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .achievement-timeline::before,
  .achievement-item::before {
    left: 21px;
  }

  .achievement-item::before {
    width: 14px;
    height: 14px;
    border-width: 4px;
  }

  .achievement-card {
    padding: 24px;
  }

  .discography-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .discography-grid .album-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 16px) / 2);
  }

  .cuda-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .children-program__visual {
    min-height: 282px;
    padding-top: 22px;
  }

  .children-program__photo {
    margin-top: 20px;
  }

  .children-program__toy {
    top: -20px;
    right: -10px;
    width: min(68%, 260px);
  }

  .children-program__note--one {
    left: 0;
  }

  .children-program__note--three {
    top: 52%;
  }

  .children-program__guarantee {
    gap: 14px;
  }

  .children-program__guarantee img {
    width: 74px;
    height: 70px;
  }

  .cuda-corporate-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .calendar-frame,
  .calendar-frame iframe {
    min-height: 620px;
    height: 620px;
  }

  .hero--cantautor {
    min-height: 780px;
  }

  .hero--bodas {
    min-height: 680px;
  }

  .cantautor-logo-lockup {
    height: 138px;
    margin-bottom: 10px;
  }

  .cantautor-hero .hero__actions {
    margin-bottom: 28px;
  }

  .cantautor-hero-facts {
    grid-template-columns: 1fr;
  }

  .cantautor-hero-facts:has(> :nth-child(3):last-child),
  .cta-band .cuda-cta-stats:has(> :nth-child(2):last-child),
  .cta-band .cuda-cta-stats:has(> :nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }

  .cantautor-hero-facts strong {
    font-size: 34px;
  }

  .cantautor-launch-card strong {
    font-size: 44px;
  }

  .cantautor-cost-list div,
  .cantautor-question-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .cantautor-cost-list strong {
    font-size: 22px;
  }

  .route-card p,
  .instrument-card p {
    min-height: 0;
  }

  .motion-ready .dark-band .split-section > [data-reveal="split-copy"],
  .motion-ready .dark-band .split-section > [data-reveal="split-media"] {
    --dark-drop-y: -42px;
    transform: translate3d(0, var(--dark-drop-y), 0) scale(.99);
  }

  .method-panel {
    padding: 28px;
  }

  .method-panel li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-note {
    flex-direction: column;
  }

  .sound-divider::before {
    left: 16px;
    font-size: 44px;
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
}

@media (max-width: 980px) {
  .voice-mode-grid {
    grid-template-columns: 1fr;
  }

  .voice-feature-grid,
  .voice-feature-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-media-grid {
    grid-template-columns: 1fr .7fr;
  }

  .voice-album-feature {
    grid-template-columns: minmax(200px, 290px) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .hero--voice-heals .hero__media img {
    object-position: 67% center;
    opacity: .72;
  }

  .hero--voice-heals .hero__scrim {
    background: linear-gradient(180deg, rgba(9, 8, 13, .98) 0%, rgba(9, 8, 13, .9) 48%, rgba(9, 8, 13, .68) 100%);
  }

  .voice-feature-grid,
  .voice-feature-grid--compact {
    grid-template-columns: 1fr;
  }

  .voice-media-grid,
  .voice-album-feature {
    grid-template-columns: 1fr;
  }

  .voice-video-feature {
    padding: 20px;
  }

  .voice-video-card {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .voice-live-moment figcaption {
    flex-direction: column;
    gap: 4px;
  }

  .voice-album-cover {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
    transition-delay: 0ms;
    will-change: auto;
  }

  .hero-music-overlay {
    display: none;
  }

  .motion-ready .routes-section .route-card[data-reveal="route-card"],
  .motion-ready .routes-section .route-card[data-reveal="route-card"] img,
  .motion-ready .dark-band .split-section > [data-reveal="split-copy"],
  .motion-ready .dark-band .split-section > [data-reveal="split-media"] {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
    transition-delay: 0ms;
    will-change: auto;
  }

  .motion-ready .routes-section .route-card[data-reveal="route-card"],
  .motion-ready .dark-band .split-section > [data-reveal="split-copy"],
  .motion-ready .dark-band .split-section > [data-reveal="split-media"] {
    filter: none;
  }

  .motion-ready .routes-section .route-card[data-reveal="route-card"] img {
    filter: saturate(.85) contrast(1.03);
  }
}

/* RED-CMS portable theme additions. The visual rules above are sourced from
   the current 28-page Adriana Granobles HTML package. */
.theme-preview-notice {
  position: relative;
  z-index: 80;
  margin: 0;
  padding: 10px 20px;
  color: #fff;
  background: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-align: center;
}

.adriana-preview .site-header {
  position: relative;
  grid-template-columns: 1fr;
  justify-items: center;
}

.brand--preview {
  width: auto;
  color: #fff;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
}

.brand__preview-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--color-night);
  background: var(--color-gold-soft);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.adriana-preview .preview-navigation {
  position: relative;
  inset: auto;
  z-index: 10;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  background: var(--color-night);
}

.adriana-preview .hero--preview {
  min-height: clamp(520px, 66vh, 640px);
  background:
    radial-gradient(circle at 75% 30%, rgba(201, 169, 95, .26), transparent 26%),
    radial-gradient(circle at 70% 70%, rgba(110, 77, 139, .55), transparent 38%),
    linear-gradient(135deg, var(--color-night), var(--color-primary-dark));
}

.adriana-preview .hero--preview::before {
  position: absolute;
  z-index: 0;
  right: clamp(-80px, 2vw, 30px);
  width: min(44vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(228, 207, 150, .42);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(228, 207, 150, .06), 0 0 0 86px rgba(110, 77, 139, .12);
  content: "";
}

.adriana-preview .breadcrumb {
  margin-top: 0;
}

.adriana-layout {
  min-width: 0;
  overflow: clip;
}

.adriana-layout__slot,
.redcms-component,
.redcms-legacy-content {
  min-width: 0;
}

.adriana-layout__slot > :first-child,
.redcms-component > :first-child {
  margin-top: 0;
}

.adriana-layout__slot > :last-child,
.redcms-component > :last-child {
  margin-bottom: 0;
}

.adriana-layout__slot.route-grid > :only-child,
.adriana-layout__slot.instrument-grid > :only-child,
.adriana-layout__slot.detail-grid > :only-child,
.adriana-layout__slot.two-column > :only-child,
.adriana-layout__slot.split-section > :only-child,
.adriana-layout__slot.contact-grid > :only-child,
.adriana-layout__slot.method-panel > :only-child {
  grid-column: 1 / -1;
}

.redcms-component {
  height: 100%;
  overflow-wrap: anywhere;
}

.redcms-component h2 {
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.dark-band .redcms-component h2,
.cta-band .redcms-component h2 {
  color: #fff;
}

.redcms-component--other.method-panel {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.redcms-component--form {
  width: 100%;
}

.redcms-component--form .template-note {
  color: var(--color-muted);
  border-left-color: var(--color-gold);
}

.preview-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.preview-gallery-grid img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.preview-gallery-grid figcaption {
  padding: 14px 16px;
  color: var(--color-muted);
  font-size: 14px;
}

.preview-video {
  min-height: 240px;
  display: grid;
  padding: 32px;
  place-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--color-night), var(--color-primary-dark));
  text-align: center;
}

.preview-footer {
  padding-top: 24px;
}

@media (max-width: 760px) {
  .adriana-preview .preview-navigation {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .preview-gallery-grid,
  .redcms-component--other.method-panel {
    grid-template-columns: 1fr;
  }
}
