:root {
  --navy: #0b3447;
  --navy-dark: #072734;
  --ink: #153746;
  --ink-soft: #5c737d;
  --cream: #fff9ed;
  --cream-deep: #fff1ce;
  --paper: #ffffff;
  --coral: #cf3c34;
  --coral-soft: #fff0ed;
  --yellow: #f6c844;
  --yellow-soft: #fff5c9;
  --aqua: #087d77;
  --aqua-soft: #e5f8f5;
  --green: #137a49;
  --green-dark: #0d623a;
  --line: rgba(11, 52, 71, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 10px 30px rgba(7, 39, 52, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 39, 52, 0.15);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --font-display: "Fredoka", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Avenir Next", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--navy);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--navy-dark);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 8px 28px rgba(7, 39, 52, 0.07);
}

.header__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  width: fit-content;
}

.brand__logo-frame {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 8.5rem;
  height: 4.7rem;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.brand__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
}

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 3px solid var(--navy);
  border-radius: 50% 46% 52% 44%;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--coral);
  transform: rotate(-5deg);
}

.brand__mark svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

.brand__name {
  display: grid;
  line-height: 1;
}

.brand__name strong {
  font-family: var(--font-display);
  font-size: 1.38rem;
  letter-spacing: -0.03em;
}

.brand__name small {
  margin-top: 0.17rem;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  gap: 4px;
  place-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  display: none;
  gap: 0.25rem;
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.site-nav[data-open="true"] {
  display: grid;
}

.site-nav a {
  padding: 0.75rem 0.85rem;
  border-radius: 11px;
  color: var(--ink-soft);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
  background: var(--cream);
}

.header__button {
  display: none !important;
}

.button {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.77rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--large {
  min-height: 3.35rem;
  padding: 0.92rem 1.3rem;
  font-size: 0.95rem;
}

.button--primary,
.button--whatsapp {
  color: var(--paper);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(19, 122, 73, 0.2);
}

.button--primary:hover,
.button--whatsapp:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(13, 98, 58, 0.26);
}

.button--secondary {
  border-color: var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
}

.button--secondary:hover {
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.button--light {
  color: var(--navy-dark);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.button--light:hover {
  background: var(--yellow-soft);
}

.eyebrow {
  display: inline-flex;
  gap: 0.42rem;
  align-items: center;
  margin: 0 0 0.72rem;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow--light span {
  color: var(--yellow);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 2.3rem 0 4.5rem;
  background:
    radial-gradient(circle at 4% 10%, rgba(246, 200, 68, 0.33), transparent 23rem),
    radial-gradient(circle at 94% 84%, rgba(11, 153, 145, 0.18), transparent 24rem),
    var(--cream);
}

.shape {
  position: absolute;
  z-index: -1;
  display: block;
  pointer-events: none;
}

.shape--one {
  top: 14%;
  left: -2rem;
  width: 5.5rem;
  height: 5.5rem;
  border: 1.1rem solid rgba(217, 71, 62, 0.1);
  border-radius: 50%;
}

.shape--two {
  right: 4%;
  bottom: 5%;
  width: 3.5rem;
  height: 3.5rem;
  background: repeating-linear-gradient(
    45deg,
    rgba(246, 200, 68, 0.45) 0 4px,
    transparent 4px 10px
  );
  transform: rotate(17deg);
}

.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 10.8vw, 4.9rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 span {
  position: relative;
  display: inline;
  color: var(--coral);
  background: linear-gradient(transparent 72%, rgba(246, 200, 68, 0.5) 0);
}

.hero__lead {
  max-width: 42rem;
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero__assurances {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  list-style: none;
}

.hero__assurances li {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.hero__assurances svg {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.17rem;
  border-radius: 50%;
  color: var(--green);
  background: rgba(19, 122, 73, 0.11);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.hero__visual {
  position: relative;
  min-height: 28.5rem;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 5px solid var(--paper);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.8rem;
  left: 0.85rem;
  display: grid;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-photo figcaption span,
.hero-photo--magic figcaption,
.hero-photo--clown figcaption {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.hero-photo--main {
  z-index: 1;
  top: 0;
  right: 0;
  width: 89%;
  height: 72%;
  border-radius: 35% 16% 27% 16%;
  transform: rotate(1.5deg);
}

.hero-photo--main::after,
.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(4, 25, 35, 0.68));
  pointer-events: none;
}

.hero-photo--main figcaption,
.gallery-item figcaption {
  z-index: 2;
}

.hero-photo--magic {
  z-index: 3;
  bottom: 0.5rem;
  left: 0;
  width: 51%;
  height: 40%;
  border-radius: 18% 18% 18% 34%;
  transform: rotate(-3deg);
}

.hero-photo--magic img {
  object-position: center 38%;
}

.hero-photo--clown {
  z-index: 2;
  right: 1%;
  bottom: 0;
  width: 38%;
  height: 44%;
  border-radius: 22% 31% 20% 20%;
  transform: rotate(4deg);
}

.hero-photo--clown img {
  object-position: center 19%;
}

.hero-photo--magic::after,
.hero-photo--clown::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(4, 25, 35, 0.72));
}

.hero-photo--magic figcaption,
.hero-photo--clown figcaption {
  z-index: 2;
  display: block;
  font-size: 0.82rem;
}

.hero-sticker {
  position: absolute;
  z-index: 5;
  top: 48%;
  left: 6%;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  padding: 0.5rem;
  border: 3px solid var(--navy);
  border-radius: 47% 53% 42% 58%;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--paper);
  text-align: center;
  transform: rotate(-8deg);
}

.hero-sticker strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.85;
}

.hero-sticker span {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.quick-facts {
  position: relative;
  z-index: 6;
  margin-top: -2.15rem;
}

.quick-facts__grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.quick-facts article {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
}

.quick-facts article + article {
  border-top: 1px solid var(--line);
}

.quick-facts__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 15px;
}

.quick-facts__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quick-facts__icon--yellow {
  color: #7b5d00;
  background: var(--yellow-soft);
}

.quick-facts__icon--coral {
  color: var(--coral);
  background: var(--coral-soft);
}

.quick-facts__icon--aqua {
  color: var(--aqua);
  background: var(--aqua-soft);
}

.quick-facts article div {
  display: grid;
}

.quick-facts strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
}

.quick-facts article div span {
  margin-top: 0.16rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: 4.75rem 0;
}

.section-heading {
  max-width: 47rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.faq__intro h2,
.contact h2,
.experience h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p:last-child,
.faq__intro > p,
.contact__copy > p:last-child,
.experience__copy > p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
}

.services {
  background: var(--cream);
}

.services__grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__media {
  position: relative;
  min-height: 15.5rem;
  overflow: hidden;
  background: var(--navy);
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(7, 39, 52, 0.42));
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card--magic .service-card__media img {
  object-position: 54% 40%;
}

.service-card--clown .service-card__media img {
  object-position: center 18%;
}

.service-card--dino .service-card__media img {
  object-position: center 23%;
}

.service-card__number {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  right: 0.8rem;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(7, 39, 52, 0.82);
  font-family: var(--font-display);
  font-size: 0.78rem;
  backdrop-filter: blur(7px);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem;
}

.service-card__kicker {
  margin: 0 0 0.3rem !important;
  color: var(--coral) !important;
  font-size: 0.7rem !important;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-card--dino .service-card__kicker,
.service-card--puppets .service-card__kicker {
  color: #087d77 !important;
}

.service-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.service-card__body > p:not(.service-card__kicker) {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--navy);
  background: var(--cream-deep);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.service-card--clown .tag-list li {
  background: var(--coral-soft);
}

.service-card--dino .tag-list li,
.service-card--puppets .tag-list li {
  background: var(--aqua-soft);
}

.service-card__link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: auto;
  padding-top: 1.05rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card__link span {
  color: var(--coral);
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.service-card__link:hover span {
  transform: translateX(4px);
}

.service-card__media--illustration {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.2) 0 0.55rem, transparent 0.6rem),
    radial-gradient(circle at 83% 30%, rgba(246, 200, 68, 0.45) 0 0.45rem, transparent 0.5rem),
    linear-gradient(145deg, #0b7e7a, var(--navy));
}

.service-card__media--illustration::after {
  display: none;
}

.puppet-stage {
  width: 86%;
  height: 86%;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.22));
}

.puppet-stage__curtain,
.puppet-stage__side,
.puppet-stage__base {
  fill: var(--coral);
}

.puppet-stage__top {
  fill: #b62f31;
}

.puppet-stage__opening {
  fill: var(--navy-dark);
}

.puppet-stage__face--one {
  fill: var(--yellow);
}

.puppet-stage__face--two {
  fill: #f6b28b;
}

.puppet-stage__ear,
.puppet-stage__hair {
  fill: #8e5b2f;
}

.puppet-stage__eye {
  fill: var(--navy-dark);
}

.puppet-stage__smile {
  fill: none;
  stroke: var(--navy-dark);
  stroke-linecap: round;
  stroke-width: 5;
}

.puppet-stage__star {
  fill: var(--yellow);
}

/* Four distinct show worlds */
.services {
  padding: 5rem 0 0;
  background: #fffdf8;
}

.services__intro {
  padding-bottom: 3rem;
}

.show-jump {
  display: grid;
  gap: 0.65rem;
  max-width: 61rem;
  margin: 0 auto;
}

.show-jump a {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 39, 52, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.show-jump a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.show-jump a span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #fff;
  background: #652b8c;
  font-family: var(--font-display);
  font-size: 0.68rem;
}

.show-jump a:nth-child(2) span {
  background: #4f8708;
}

.show-jump a:nth-child(3) span {
  background: #d80b5b;
}

.show-jump a:nth-child(4) span {
  background: #c52e22;
}

.show-jump a:nth-child(5) span {
  background: #075995;
}

.show-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 4.8rem 0;
  scroll-margin-top: 5.6rem;
}

.show-panel__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.show-panel__copy {
  position: relative;
  z-index: 3;
}

.show-panel__number {
  display: inline-flex;
  margin: 0 0 0.75rem;
  padding: 0.38rem 0.66rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  line-height: 1.3;
  text-transform: uppercase;
}

.show-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 13vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-wrap: balance;
}

.show-panel__lead {
  max-width: 39rem;
  margin: 1.15rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.show-panel__features {
  display: grid;
  gap: 0.65rem;
  margin: 1.35rem 0 1.6rem;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.show-panel__features li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.show-panel__features li span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  font-size: 0.7rem;
}

.show-button {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.88rem 1.15rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.show-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 39, 52, 0.18);
}

.show-button span {
  font-size: 1.15rem;
}

.show-panel__media {
  position: relative;
  z-index: 2;
  min-height: 22rem;
}

.show-panel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mago Jubilin: violet night and gold */
.show-panel--magic {
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(246, 200, 68, 0.18), transparent 15rem),
    radial-gradient(circle at 88% 76%, rgba(112, 46, 151, 0.5), transparent 25rem),
    linear-gradient(135deg, #0b1738, #2c164c 58%, #4d1f6d);
}

.show-panel--magic .show-panel__number {
  color: #2b1547;
  background: #f8bd22;
}

.show-panel--magic .show-panel__lead {
  color: rgba(255, 255, 255, 0.78);
}

.show-panel--magic .show-panel__features {
  color: rgba(255, 255, 255, 0.9);
}

.show-panel--magic .show-panel__features span {
  color: #291346;
  background: #f8bd22;
}

.show-panel--magic .show-button {
  color: #281344;
  background: #f8bd22;
}

.show-panel__media--magic {
  min-height: 25rem;
}

.show-panel__media--magic > .show-panel__image {
  position: absolute;
  inset: 0 0 2rem 8%;
  width: 88%;
  height: calc(100% - 2rem);
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 46% 46% 24px 24px;
  object-position: center 35%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.show-panel__mini-photo {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 43%;
  aspect-ratio: 1.2;
  overflow: hidden;
  border: 4px solid #f8bd22;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  transform: rotate(-4deg);
}

.show-panel__mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.magic-wand {
  position: absolute;
  z-index: 4;
  top: 1rem;
  left: 1rem;
  width: 5.2rem;
  height: 0.72rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f8bd22 0 20%, #fff 20% 36%, #091632 36%);
  box-shadow: 0 0 20px rgba(248, 189, 34, 0.55);
  transform: rotate(-42deg);
}

.show-panel__decoration {
  position: absolute;
  z-index: -1;
  color: rgba(248, 189, 34, 0.24);
  line-height: 1;
}

.show-panel__decoration--star {
  top: 8%;
  right: 4%;
  font-size: 8rem;
  transform: rotate(12deg);
}

.show-panel__decoration--spark {
  bottom: 8%;
  left: 4%;
  font-size: 6rem;
  transform: rotate(-10deg);
}

/* Dino Aventuras: jungle greens */
.show-panel--dino {
  color: #173c2a;
  background:
    radial-gradient(circle at 92% 14%, rgba(108, 166, 12, 0.25), transparent 19rem),
    linear-gradient(135deg, #f3f9df, #dff1b7);
}

.show-panel--dino::before {
  position: absolute;
  z-index: -1;
  right: -7rem;
  bottom: -8rem;
  width: 25rem;
  height: 25rem;
  border: 4.5rem solid rgba(50, 105, 41, 0.08);
  border-radius: 50%;
  content: "";
}

.show-panel--dino .show-panel__number {
  color: #fff;
  background: #3e7112;
}

.show-panel--dino h3 {
  color: #23522d;
}

.show-panel--dino .show-panel__lead {
  color: #4e6d58;
}

.show-panel--dino .show-panel__features span {
  color: #fff;
  background: #548708;
}

.show-panel--dino .show-button {
  color: #fff;
  background: #23522d;
}

.show-panel__media--dino {
  min-height: 25rem;
}

.show-panel__media--dino > .show-panel__image {
  position: absolute;
  inset: 0 0 0 0;
  border: 7px solid #fff;
  border-radius: 34px 100px 34px 100px;
  object-position: center;
  box-shadow: 0 25px 60px rgba(35, 82, 45, 0.22);
}

.dino-cutout {
  position: absolute;
  z-index: 4;
  right: -5%;
  bottom: -12%;
  width: 53%;
  filter: drop-shadow(0 18px 17px rgba(23, 60, 42, 0.35));
  pointer-events: none;
}

.dino-tracks {
  position: absolute;
  top: 1rem;
  right: 4%;
  display: flex;
  gap: 1rem;
  color: rgba(62, 113, 18, 0.12);
  font-size: 2.8rem;
  transform: rotate(-18deg);
}

.dino-tracks span:nth-child(2) {
  transform: translateY(1.4rem);
}

/* Santa Claus y sus ayudantes: traditional Christmas colors */
.show-panel--christmas {
  color: #173f32;
  background:
    radial-gradient(circle at 8% 85%, rgba(210, 171, 73, 0.2), transparent 18rem),
    linear-gradient(135deg, #fffaf0, #e8f3e8);
}

.show-panel--christmas .show-panel__number {
  color: #fff;
  background: #b5232b;
}

.show-panel--christmas h3 {
  color: #17613f;
}

.show-panel--christmas .show-panel__lead {
  color: #526b60;
}

.show-panel--christmas .show-panel__features span {
  color: #fff;
  background: #b5232b;
}

.show-panel--christmas .show-button {
  color: #fff;
  background: #17613f;
}

.show-panel__media--christmas {
  display: grid;
  place-items: center;
  min-height: 27rem;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 42px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.6) 0 3px, transparent 4px) 0 0 / 31px 31px,
    linear-gradient(145deg, #19583d, #0c3829);
  box-shadow: 0 25px 60px rgba(12, 56, 41, 0.24);
}

.christmas-scene {
  width: 94%;
  height: auto;
  margin-top: 3rem;
}

.christmas-scene__moon,
.christmas-scene__snow {
  fill: #fff9dc;
}

.christmas-scene__tree {
  fill: #2d8a54;
}

.christmas-scene__trunk {
  fill: #81512e;
}

.christmas-scene__ornament,
.christmas-scene__gift--one {
  fill: #d72b35;
}

.christmas-scene__gift--two {
  fill: #d6ad42;
}

.christmas-scene__star,
.christmas-scene__ribbon {
  fill: #ffd65a;
}

.christmas-sign {
  position: absolute;
  z-index: 4;
  top: 1.2rem;
  left: 50%;
  display: grid;
  padding: 0.5rem 1.2rem 0.62rem;
  border: 4px solid #d6ad42;
  border-radius: 14px;
  color: #fff;
  background: #a91f29;
  font-family: var(--font-display);
  line-height: 0.95;
  text-align: center;
  transform: translateX(-50%) rotate(-2deg);
}

.christmas-sign span {
  color: #ffe084;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.christmas-sign strong {
  font-size: 1.25rem;
}

.christmas-snow {
  position: absolute;
  z-index: -1;
  color: rgba(23, 97, 63, 0.14);
  font-size: 5rem;
  line-height: 1;
}

.christmas-snow--one {
  top: 10%;
  left: 4%;
}

.christmas-snow--two {
  right: 7%;
  bottom: 8%;
  color: rgba(181, 35, 43, 0.13);
}

/* Payaso Bombo: circus red, orange and blue */
.show-panel--clown {
  color: #572018;
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 255, 255, 0.38), transparent 15rem),
    linear-gradient(135deg, #fff1cc, #ffd183);
}

.show-panel--clown .show-panel__number {
  color: #fff;
  background: #c52e22;
}

.show-panel--clown h3 {
  color: #bd2b21;
}

.show-panel--clown .show-panel__lead {
  color: #74524a;
}

.show-panel--clown .show-panel__features span {
  color: #fff;
  background: #075995;
}

.show-panel--clown .show-button {
  color: #fff;
  background: #c52e22;
}

.show-panel__media--clown {
  display: grid;
  place-items: center;
  min-height: 29rem;
}

.clown-photo-frame {
  position: absolute;
  inset: 0 15% 0 10%;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 46% 46% 30px 30px;
  background: #c52e22;
  box-shadow: 10px 12px 0 #075995, 0 25px 50px rgba(87, 32, 24, 0.2);
  transform: rotate(-2deg);
}

.clown-photo-frame .show-panel__image {
  object-position: center 17%;
}

.clown-ball {
  position: absolute;
  z-index: 4;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(87, 32, 24, 0.17);
}

.clown-ball--one {
  top: 10%;
  right: 5%;
  width: 4.5rem;
  height: 4.5rem;
  background: #f8bd22;
}

.clown-ball--two {
  right: 4%;
  bottom: 15%;
  width: 3.2rem;
  height: 3.2rem;
  background: #e20d61;
}

.circus-rays {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -9rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(197, 46, 34, 0.08) 0 12deg,
    transparent 12deg 24deg
  );
  transform: translateY(-50%);
}

/* Personajes: a bold multicolor parade */
.show-panel--characters {
  color: #fff;
  background:
    radial-gradient(circle at 7% 16%, rgba(248, 189, 34, 0.24), transparent 17rem),
    radial-gradient(circle at 92% 78%, rgba(226, 13, 97, 0.28), transparent 22rem),
    linear-gradient(135deg, #052d5e, #075995 58%, #063f78);
}

.show-panel--characters .show-panel__number {
  color: #16365d;
  background: #f8bd22;
}

.show-panel--characters h3 {
  max-width: 11ch;
  color: #fff;
}

.show-panel--characters .show-panel__lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.79);
  line-height: 1.76;
}

.show-panel--characters .show-panel__features {
  color: rgba(255, 255, 255, 0.94);
}

.show-panel--characters .show-panel__features span {
  color: #fff;
  background: #e20d61;
  box-shadow: 0 4px 12px rgba(2, 24, 54, 0.16);
}

.show-panel--characters .show-panel__features li:nth-child(2) span {
  color: #16365d;
  background: #f8bd22;
}

.show-panel--characters .show-panel__features li:nth-child(3) span {
  background: #5f9408;
}

.show-panel--characters .show-button {
  color: #16365d;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2, 24, 54, 0.22);
}

.show-panel--characters .show-button:hover {
  box-shadow: 0 17px 34px rgba(2, 24, 54, 0.3);
}

.show-panel__media--characters {
  min-height: 29rem;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.13), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 45%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 18px),
    #082f61;
  box-shadow:
    0 28px 65px rgba(2, 24, 54, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.character-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46%;
  height: 66%;
  padding: 1rem;
  border: 5px solid #fff;
  border-radius: 45% 45% 24px 24px;
  color: #16365d;
  text-align: center;
  box-shadow:
    0 18px 35px rgba(2, 24, 54, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.character-card::after {
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 42%);
  content: "";
  pointer-events: none;
}

.character-card--classic {
  z-index: 2;
  top: 18%;
  left: 3%;
  background: #f8bd22;
  transform: rotate(-8deg);
}

.character-card--adventure {
  z-index: 3;
  top: 6%;
  left: 28%;
  color: #fff;
  background: #5f9408;
  transform: rotate(1deg);
}

.character-card--current {
  z-index: 4;
  top: 18%;
  right: 3%;
  color: #fff;
  background: #e20d61;
  transform: rotate(8deg);
}

.character-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(3.3rem, 10vw, 5.2rem);
  height: clamp(3.3rem, 10vw, 5.2rem);
  margin-bottom: 0.75rem;
  border: 4px solid currentColor;
  border-radius: 50%;
  font-size: clamp(1.25rem, 4vw, 2.1rem);
}

.character-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.4vw, 1.45rem);
  letter-spacing: -0.015em;
  line-height: 1;
}

.character-card small {
  position: relative;
  z-index: 1;
  margin-top: 0.35rem;
  max-width: 12ch;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.78;
}

.character-stage-label {
  position: absolute;
  z-index: 6;
  right: 15%;
  bottom: 1.1rem;
  left: 15%;
  display: grid;
  padding: 0.5rem 1rem 0.62rem;
  border: 3px solid #fff;
  border-radius: 16px;
  color: #16365d;
  background: #fff;
  font-family: var(--font-display);
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(2, 24, 54, 0.24);
}

.character-stage-label span {
  color: #e20d61;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.character-stage-label strong {
  margin-top: 0.16rem;
  font-size: 1.2rem;
}

.character-confetti {
  position: absolute;
  z-index: -1;
  width: 5rem;
  height: 5rem;
  border: 1rem solid rgba(248, 189, 34, 0.14);
  border-radius: 50%;
}

.character-confetti--one {
  top: 8%;
  right: 4%;
}

.character-confetti--two {
  bottom: 7%;
  left: 4%;
  border-color: rgba(226, 13, 97, 0.16);
  transform: scale(0.7);
}

.media-backlog[hidden] {
  display: none;
}

.media-backlog {
  margin-top: 2rem;
  padding: 1.4rem;
  border: 2px dashed rgba(11, 52, 71, 0.2);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.media-backlog h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.media-backlog__grid {
  display: grid;
  gap: 0.75rem;
}

.media-slot {
  display: grid;
  min-height: 9rem;
  place-content: center;
  padding: 1rem;
  border: 1px dashed rgba(11, 52, 71, 0.25);
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  background: #fff;
  text-align: center;
}

.media-slot span {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-slot strong {
  margin-top: 0.25rem;
  color: var(--navy);
  font-family: var(--font-display);
}

.event-types {
  isolation: isolate;
  overflow: hidden;
  background: var(--yellow-soft);
}

.event-types::before,
.event-types::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.event-types::before {
  top: -8rem;
  right: -6rem;
  width: 19rem;
  height: 19rem;
  border: 4rem solid rgba(217, 71, 62, 0.055);
}

.event-types::after {
  bottom: -5rem;
  left: -4rem;
  width: 13rem;
  height: 13rem;
  border: 2.2rem solid rgba(11, 153, 145, 0.07);
}

.event-types__layout {
  display: grid;
  gap: 2rem;
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 1rem;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(11, 52, 71, 0.28);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.event-types__grid {
  display: grid;
  gap: 0.85rem;
}

.event-types__grid article {
  padding: 1.2rem;
  border: 1px solid rgba(11, 52, 71, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 20px rgba(123, 93, 0, 0.05);
}

.event-types__grid article > span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 17px;
  color: var(--coral);
  background: var(--coral-soft);
}

.event-types__grid article:nth-child(2) > span,
.event-types__grid article:nth-child(4) > span {
  color: var(--aqua);
  background: var(--aqua-soft);
}

.event-types__grid svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.event-types__grid h3 {
  margin: 0.8rem 0 0;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
}

.event-types__grid p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.experience {
  background: var(--cream);
}

.experience__card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.experience__media {
  position: relative;
  min-height: 19rem;
}

.experience__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 62%, rgba(7, 39, 52, 0.54));
}

.experience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience__badge {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(7, 39, 52, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.experience__copy {
  position: relative;
  padding: 1.5rem;
}

.experience__copy::after {
  position: absolute;
  top: 1.25rem;
  right: 1.3rem;
  width: 3.2rem;
  height: 3.2rem;
  border: 0.7rem solid rgba(246, 200, 68, 0.13);
  border-radius: 50%;
  content: "";
}

.experience h2 {
  max-width: 13ch;
  color: var(--paper);
}

.experience__copy > p {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.45rem;
  padding: 0;
  font-size: 0.84rem;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.check-list span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.08rem;
  border-radius: 50%;
  color: var(--navy-dark);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
}

.gallery {
  background: #fffdf8;
}

.gallery__grid {
  display: grid;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--wide img {
  object-position: center 35%;
}

.gallery-item--portrait img {
  object-position: center 18%;
}

.gallery-item--square img {
  object-position: center;
}

.gallery-item--bottom img {
  object-position: center 35%;
}

.gallery-item figcaption {
  position: absolute;
  right: 1rem;
  bottom: 0.95rem;
  left: 1rem;
  display: grid;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.1;
}

.gallery-item figcaption span {
  margin-top: 0.23rem;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
}

.process {
  background: var(--aqua-soft);
}

.process__grid {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__grid li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.2rem;
  border: 1px solid rgba(11, 52, 71, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
}

.process__number {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50% 47% 52% 45%;
  color: var(--navy-dark);
  background: var(--yellow);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transform: rotate(-5deg);
}

.process__grid li:nth-child(2) .process__number {
  color: var(--paper);
  background: var(--coral);
  transform: rotate(4deg);
}

.process__grid li:nth-child(3) .process__number {
  color: var(--paper);
  background: var(--aqua);
  transform: rotate(-3deg);
}

.process__grid h3 {
  margin: 0.15rem 0 0;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.1;
}

.process__grid p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.faq {
  background: #fffdf8;
}

.faq__layout {
  display: grid;
  gap: 2rem;
}

.faq__intro h2 {
  max-width: 9ch;
}

.faq__list {
  display: grid;
  gap: 0.65rem;
}

.faq__list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.faq__list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

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

.faq__list summary::after {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cream-deep);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  content: "+";
}

.faq__list details[open] summary::after {
  content: "−";
}

.faq__list details[open] summary {
  padding-bottom: 0.6rem;
}

.faq__list details p {
  margin: 0;
  padding: 0 1.05rem 1.05rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.contact {
  padding: 1rem 0 5.5rem;
  background: #fffdf8;
}

.contact__card {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background:
    radial-gradient(circle at 92% 8%, rgba(246, 200, 68, 0.2), transparent 16rem),
    linear-gradient(135deg, var(--navy), #075e61);
  box-shadow: var(--shadow-lg);
}

.contact__spark {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.12);
  font-size: 5rem;
  line-height: 1;
}

.contact__spark--one {
  top: -1rem;
  right: 8%;
  transform: rotate(13deg);
}

.contact__spark--two {
  bottom: -1.3rem;
  left: 40%;
  color: rgba(246, 200, 68, 0.13);
  font-size: 4rem;
  transform: rotate(-9deg);
}

.contact h2 {
  max-width: 14ch;
  color: var(--paper);
}

.contact__copy > p:last-child {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.73);
}

.contact__actions {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.contact__phone {
  display: grid;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.contact__phone span {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 3rem 0 5.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-dark);
}

.footer__top {
  display: grid;
  gap: 2rem;
}

.brand--footer .brand__mark {
  border-color: var(--paper);
  color: var(--navy-dark);
  box-shadow: 4px 4px 0 var(--coral);
}

.brand--footer .brand__logo-frame {
  width: 10.5rem;
  height: 6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
}

.brand--footer .brand__name strong {
  color: var(--paper);
}

.brand--footer .brand__name small {
  color: rgba(255, 255, 255, 0.58);
}

.footer__brand p {
  max-width: 23rem;
  margin: 1rem 0 0;
  font-size: 0.83rem;
}

.footer__column h2 {
  margin: 0 0 0.75rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer__column ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  list-style: none;
}

.footer__column a:hover,
.footer__bottom a:hover {
  color: var(--yellow);
}

.footer__bottom {
  display: grid;
  gap: 0.6rem;
  margin-top: 2.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.72rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  width: fit-content;
  color: var(--paper);
  font-weight: 700;
}

.mobile-actions {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0.55rem;
  padding: 0.58rem 0.75rem calc(0.58rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -8px 30px rgba(7, 39, 52, 0.1);
  backdrop-filter: blur(15px);
}

.mobile-actions a {
  display: inline-flex;
  gap: 0.42rem;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 800;
}

.mobile-actions a.mobile-actions__primary {
  border-color: var(--green);
  color: var(--paper);
  background: var(--green);
}

.mobile-actions svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (min-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 3rem));
  }

  .hero__assurances {
    grid-template-columns: repeat(2, max-content);
    gap: 1rem;
  }

  .quick-facts__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-facts article {
    align-items: flex-start;
  }

  .quick-facts article + article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

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

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

  .show-jump a:last-child {
    grid-column: 1 / -1;
  }

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

  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 700px) {
  .hero {
    padding-top: 3.6rem;
  }

  .hero__grid {
    gap: 2.8rem;
  }

  .hero__visual {
    min-height: 36rem;
  }

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

  .show-panel__media,
  .show-panel__media--magic,
  .show-panel__media--dino,
  .show-panel__media--christmas,
  .show-panel__media--clown,
  .show-panel__media--characters {
    min-height: 31rem;
  }

  .service-card__media {
    min-height: 18rem;
  }

  .experience__copy,
  .contact__card {
    padding: 2.2rem;
  }

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

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

  .process__grid li {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }

  .contact__card {
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
    align-items: center;
  }
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  body.menu-open {
    overflow: auto;
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 5.7rem;
  }

  .brand__logo-frame {
    width: 9.4rem;
    height: 5.2rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav[data-open="true"] {
    position: static;
    display: flex;
    justify-content: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
  }

  .header__button {
    display: inline-flex !important;
  }

  .hero {
    min-height: 41rem;
    padding: 4.2rem 0 5.8rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
    gap: 2.2rem;
  }

  .hero__visual {
    min-height: 34rem;
  }

  .hero-photo--main {
    width: 91%;
    height: 75%;
  }

  .section {
    padding: 6.3rem 0;
  }

  .section-heading {
    margin-bottom: 2.7rem;
  }

  .services__grid {
    gap: 1.25rem;
  }

  .services {
    padding-top: 6.3rem;
  }

  .services__intro {
    padding-bottom: 4.2rem;
  }

  .show-jump {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .show-jump a:last-child {
    grid-column: auto;
  }

  .show-panel {
    padding: 7rem 0;
    scroll-margin-top: 6.2rem;
  }

  .show-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5.5rem;
  }

  .show-panel__copy {
    padding-inline: 1rem;
  }

  .show-panel__media,
  .show-panel__media--magic,
  .show-panel__media--dino,
  .show-panel__media--christmas,
  .show-panel__media--clown,
  .show-panel__media--characters {
    min-height: 35rem;
  }

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

  .service-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 23rem;
  }

  .service-card__media {
    min-height: 100%;
  }

  .service-card__body {
    padding: 1.6rem;
  }

  .event-types__layout {
    grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
    gap: 4rem;
    align-items: center;
  }

  .experience__card {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    min-height: 34rem;
  }

  .experience__media {
    min-height: 100%;
  }

  .experience__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.2rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 16rem;
  }

  .gallery-item {
    min-height: 0;
  }

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

  .gallery-item--portrait {
    grid-row: span 2;
  }

  .process__grid {
    gap: 1.1rem;
  }

  .process__grid li {
    min-height: 13.5rem;
    padding: 1.65rem;
  }

  .process__grid li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 2.65rem;
    right: -1.42rem;
    width: 1.75rem;
    height: 1px;
    background: rgba(11, 52, 71, 0.2);
    content: "";
  }

  .faq__layout {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
    gap: 5rem;
    align-items: start;
  }

  .faq__intro {
    position: sticky;
    top: 7rem;
  }

  .contact {
    padding-bottom: 6.5rem;
  }

  .contact__card {
    padding: 3rem;
  }

  .footer__brand {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }

  .mobile-actions {
    display: none;
  }
}

@media (min-width: 1120px) {
  .site-nav {
    gap: 0.4rem;
  }

  .site-nav a {
    padding-inline: 0.95rem;
  }

  .hero__grid {
    gap: 4rem;
  }

  .hero__visual {
    min-height: 37rem;
  }

  .hero-sticker {
    width: 7.2rem;
    height: 7.2rem;
  }

  .quick-facts article {
    padding: 1.2rem 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
