:root {
  color-scheme: only light;
  --black: #09080d;
  --ink: #18131f;
  --white: #ffffff;
  --paper: #faf8ff;
  --purple: #4c1d95;
  --violet: #7c3aed;
  --violet-soft: #a78bfa;
  --fuchsia: #d946ef;
  --pink: #ec4899;
  --cyan: #a78bfa;
  --yellow: #f9a8d4;
  --adita-pink: #ec4899;
  --adita-mint: #fdf2f8;
  --adita-yellow: #fbcfe8;
  --adita-violet: #6d28d9;
  --border: rgba(255, 255, 255, 0.16);
  --inner: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--black);
  background: var(--yellow);
  transform: translateY(-160%);
}

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

.visually-hidden,
.hero h1.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.inner {
  width: min(calc(100% - 48px), var(--inner));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px max(24px, calc((100% - var(--inner)) / 2));
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(9, 8, 13, 0.14);
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 210px;
  height: 68px;
  object-fit: contain;
  object-position: center;
}

.brand-link-magia img {
  width: 224px;
}

.brand-link-adita img {
  width: 250px;
}

.header-light {
  color: var(--ink);
  color-scheme: only light;
  forced-color-adjust: none;
  background: var(--white) !important;
  border-bottom-color: rgba(18, 18, 18, 0.16);
}

.header-light .nav-toggle {
  color: var(--ink);
  border-color: rgba(18, 18, 18, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  padding-block: 8px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--pink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  height: 88svh;
  max-height: 900px;
  align-items: end;
  color: var(--white);
  background-color: var(--black);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-angelina {
  background-image: url("assets/angelina/portada.jpeg");
  background-position: center center;
}

.hero-magia {
  background-image: url("assets/magia/plataforma-360-hero.png");
  background-position: center top;
}

.hero-adita {
  background-image: url("assets/adita/pijamada-1.jpeg");
  background-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--inner));
  margin-inline: auto;
  padding-block: 150px 74px;
}

.hero-content-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-pink {
  color: var(--pink);
}

.eyebrow-cyan {
  color: var(--cyan);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 7.6rem;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.55);
}

.hero-magia h1,
.hero-adita h1 {
  font-size: 6rem;
  line-height: 0.9;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.25;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--violet);
}

.button-light {
  color: var(--black);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-adita {
  color: var(--white);
  background: var(--adita-violet);
}

.live-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--violet);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.live-strip span {
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.live-strip span:nth-child(2) {
  background: var(--fuchsia);
}

.live-strip span:nth-child(3) {
  background: var(--purple);
}

.live-strip span:last-child {
  border-right: 0;
}

.section {
  padding-block: 104px;
}

.section[id],
.experience-band[id] {
  scroll-margin-top: 24px;
}

.section-dark,
.section-black {
  color: var(--white);
  background: var(--black);
}

.section-electric {
  color: var(--white);
  background: var(--purple);
}

.section-white {
  background: var(--white);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.feature-copy h2,
.section-heading h2,
.bridge-layout h2,
.contact-layout h2,
.experience-copy h2 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 3.35rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.feature-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.feature-photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 4px;
  color: inherit;
  border-bottom: 2px solid var(--fuchsia);
  font-weight: 800;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 44px;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
  font-size: 1rem;
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.68);
}

.media-carousel {
  width: 100%;
  outline: none;
}

.media-carousel:focus-visible .carousel-viewport {
  outline: 3px solid var(--fuchsia);
  outline-offset: 5px;
}

.carousel-viewport {
  position: relative;
  display: grid;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(9, 8, 13, 0.28);
  isolation: isolate;
}

.photo-carousel .carousel-viewport {
  aspect-ratio: 16 / 10;
}

.video-carousel {
  width: min(100%, 660px);
  margin-inline: auto;
}

.video-carousel .carousel-viewport {
  aspect-ratio: 4 / 5;
}

.carousel-compact {
  width: min(100%, 900px);
}

#momentos .video-carousel {
  margin-bottom: 56px;
}

.carousel-track {
  position: absolute;
  inset: 0;
  display: grid;
  min-width: 0;
  min-height: 0;
}

.carousel-slide {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px) scale(0.99);
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
}

.carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.photo-slide {
  padding: 0;
  overflow: hidden;
  background: var(--black);
  border: 0;
  cursor: zoom-in;
}

.photo-slide img,
.video-slide video {
  width: 100%;
  height: 100%;
}

.photo-slide img {
  object-fit: contain;
}

.video-slide {
  background: #000000;
}

.video-slide video {
  object-fit: contain;
  background: #000000;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(9, 8, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--violet);
  border-color: var(--fuchsia);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  line-height: 0.75;
}

.carousel-prev {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-meta {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.carousel-dot.is-active {
  width: 34px;
  background: var(--fuchsia);
  border-radius: 8px;
}

.carousel-counter {
  min-width: 62px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.section-white .carousel-dot,
.section-adita-videos .carousel-dot,
.experience-pijamada .carousel-dot {
  background: rgba(76, 29, 149, 0.18);
  border-color: rgba(76, 29, 149, 0.45);
}

.section-white .carousel-dot.is-active,
.section-adita-videos .carousel-dot.is-active,
.experience-pijamada .carousel-dot.is-active {
  background: var(--violet);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.photo-tile {
  position: relative;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  background: var(--black);
  border: 0;
  border-radius: 6px;
  cursor: zoom-in;
}

.photo-tile.photo-wide {
  grid-column: span 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.photo-tile:hover img {
  transform: scale(1.025);
}

.photo-grid-artist .photo-tile:nth-child(2) img,
.photo-grid-artist .photo-tile:nth-child(4) img {
  object-position: center 28%;
}

.video-rail {
  display: grid;
  grid-auto-columns: minmax(260px, 330px);
  grid-auto-flow: column;
  gap: 18px;
  padding: 6px 4px 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.video-grid-landscape {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 54px;
}

.video-card {
  overflow: hidden;
  color: var(--white);
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  scroll-snap-align: start;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

.video-grid-landscape .video-card video {
  aspect-ratio: 4 / 5;
}

.video-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 1.02rem;
}

.video-card-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(18, 18, 18, 0.14);
}

.brand-bridge {
  padding-block: 88px;
}

.bridge-magia {
  color: var(--white);
  background: var(--black);
  border-top: 8px solid var(--fuchsia);
}

.bridge-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 72px;
}

.bridge-layout > img {
  width: min(100%, 500px);
  aspect-ratio: 1;
  object-fit: contain;
}

.bridge-layout p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.06rem;
}

.bridge-adita {
  color: var(--ink);
  background: var(--adita-mint);
  border-top: 8px solid var(--fuchsia);
}

.bridge-layout-photo {
  grid-template-columns: 1.1fr 0.9fr;
}

.bridge-layout-photo figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
}

.bridge-layout-photo figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-band {
  padding-block: 72px;
}

.contact-dark {
  color: var(--white);
  background: #202020;
}

.contact-magenta {
  color: var(--white);
  background: var(--fuchsia);
}

.contact-adita {
  color: var(--ink);
  background: var(--adita-yellow);
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-layout h2 {
  max-width: 760px;
  font-size: 2.8rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #e8e0f2;
  border-radius: 6px;
}

.service-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: none;
}

.service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--black);
}

.service-media img,
.service-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-video {
  aspect-ratio: 16 / 10;
}

.service-video video {
  object-fit: contain;
}

.service-copy {
  padding: 28px;
}

.service-copy h3 {
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  line-height: 1.1;
}

.service-copy p:not(.service-number) {
  color: #4f4f4f;
}

.service-number {
  margin: 0 0 12px;
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.photo-grid-magia .photo-tile {
  min-height: 420px;
}

.photo-grid-magia .photo-tile img {
  object-position: center;
}

.section-adita-intro {
  padding-block: 68px;
  background: var(--white);
}

.intro-centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.intro-centered img {
  width: min(100%, 620px);
  max-height: 280px;
  object-fit: contain;
}

.intro-centered p {
  max-width: 790px;
  margin: 20px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.experience-band {
  padding-block: 104px;
}

.experience-pijamada {
  color: var(--ink);
  background: var(--adita-mint);
}

.experience-spa {
  color: var(--white);
  background: var(--adita-violet);
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 64px;
}

.experience-layout-reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.experience-layout-reverse .experience-copy {
  order: 2;
}

.experience-copy p:not(.eyebrow) {
  max-width: 580px;
  font-size: 1.04rem;
}

.experience-spa .experience-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.experience-copy .button {
  margin-top: 16px;
}

.experience-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 190px 190px;
  gap: 12px;
}

.experience-gallery button {
  padding: 0;
  overflow: hidden;
  background: var(--black);
  border: 0;
  border-radius: 6px;
  cursor: zoom-in;
}

.experience-gallery .experience-main {
  grid-row: 1 / -1;
}

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

.section-adita-videos {
  color: var(--ink);
  background: #f5f3ff;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 54px 24px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--black);
  text-align: center;
}

.site-footer img {
  width: 210px;
  height: 96px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.82rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-adita {
  color: #404040;
  background: var(--white);
  border-top: 6px solid var(--adita-pink);
}

.footer-adita img {
  width: 300px;
  height: 120px;
  object-fit: contain;
}

.footer-adita a:hover {
  color: var(--adita-violet);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #07230f;
  background: #54df79;
  border: 2px solid var(--black);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.84rem;
  font-weight: 800;
}

.social-float {
  position: fixed;
  right: 20px;
  bottom: 78px;
  z-index: 90;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--white);
  background: var(--fuchsia);
  border: 2px solid var(--black);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.84rem;
  font-weight: 800;
}

.social-float:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-adita {
  border-color: var(--adita-violet);
}

.experience-carousel {
  width: 100%;
}

.experience-carousel .carousel-viewport {
  aspect-ratio: 4 / 3;
}

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

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
    padding-inline: 20px;
  }

  .brand-link img {
    width: 184px;
    height: 58px;
  }

  .brand-link-adita img {
    width: 208px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    justify-content: stretch;
    padding: 24px;
    color: var(--white);
    background: rgba(5, 5, 5, 0.98);
    font-size: 1.05rem;
  }

  .header-light .site-nav {
    color: var(--ink);
    color-scheme: only light;
    forced-color-adjust: none;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .header-light .site-nav a {
    border-bottom-color: rgba(18, 18, 18, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero h1 {
    font-size: 6rem;
  }

  .hero-magia h1,
  .hero-adita h1 {
    font-size: 4.9rem;
  }

  .split-feature,
  .bridge-layout,
  .bridge-layout-photo,
  .experience-layout,
  .experience-layout-reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .experience-layout-reverse .experience-copy {
    order: initial;
  }

  .feature-photo {
    max-height: 620px;
  }

  .service-card-wide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

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

  .contact-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .inner,
  .hero-content {
    width: min(calc(100% - 32px), var(--inner));
  }

  .hero {
    min-height: 620px;
    height: 84svh;
  }

  .hero-angelina {
    background-position: 36% center;
  }

  .hero-magia {
    background-position: 58% top;
    background-size: cover;
  }

  .hero-adita {
    background-position: 44% center;
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.52);
  }

  .hero-content,
  .hero-content-right {
    align-items: flex-start;
    padding-block: 130px 42px;
    text-align: left;
  }

  .hero h1,
  .hero-magia h1,
  .hero-adita h1 {
    max-width: 100%;
    font-size: 4rem;
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero-magia h1 {
    font-size: 3.2rem;
    overflow-wrap: normal;
  }

  .hero-lead {
    font-size: 1.45rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .live-strip {
    grid-template-columns: 1fr;
  }

  .live-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .live-strip span:last-child {
    border-bottom: 0;
  }

  .section,
  .experience-band {
    padding-block: 72px;
  }

  .feature-copy h2,
  .section-heading h2,
  .bridge-layout h2,
  .experience-copy h2 {
    font-size: 2.35rem;
  }

  .contact-layout h2 {
    font-size: 2.2rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .photo-carousel .carousel-viewport {
    aspect-ratio: 4 / 5;
  }

  .experience-carousel .carousel-viewport {
    aspect-ratio: 4 / 3;
  }

  .carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-meta {
    min-height: 44px;
    gap: 12px;
    padding-top: 12px;
  }

  .carousel-dots {
    gap: 6px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .carousel-dot.is-active {
    width: 26px;
  }

  .photo-grid,
  .photo-grid-magia,
  .service-grid,
  .video-grid,
  .video-grid-landscape {
    grid-template-columns: 1fr;
  }

  .photo-tile.photo-wide {
    grid-column: auto;
  }

  .photo-tile,
  .photo-grid-magia .photo-tile {
    min-height: 350px;
  }

  .photo-grid-artist .photo-tile:first-child {
    min-height: 250px;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .service-copy {
    padding: 22px;
  }

  .service-copy h3 {
    font-size: 1.5rem;
  }

  .bridge-layout {
    gap: 32px;
  }

  .bridge-layout > img {
    width: 100%;
    max-height: 340px;
    object-fit: contain;
  }

  .experience-gallery {
    grid-template-rows: 160px 160px;
  }

  .intro-centered p {
    font-size: 1.18rem;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    font-size: 0;
  }

  .social-float {
    right: 12px;
    bottom: 68px;
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    font-size: 0;
  }

  .whatsapp-float::after,
  .social-float::after {
    font-size: 0.72rem;
    line-height: 1;
  }

  .whatsapp-float::after {
    content: "WA";
  }

  .social-float::after {
    content: "IG";
  }
}

@media (max-width: 430px) {
  .hero h1,
  .hero-magia h1,
  .hero-adita h1 {
    font-size: 3.25rem;
  }

  .hero-magia h1 {
    font-size: 2.2rem;
    overflow-wrap: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .experience-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .experience-gallery .experience-main {
    grid-row: auto;
  }
}

@media (max-width: 360px) {
  .hero-magia h1 {
    font-size: 1.9rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
