@font-face {
  font-family: "Futura WK Medium";
  src:
    url("../resources/fonts/futura-medium.woff2?v=otf") format("woff2"),
    url("../resources/fonts/Futura%20Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura WK Medium";
  src:
    url("../resources/fonts/futura-medium.woff2?v=otf") format("woff2"),
    url("../resources/fonts/Futura%20Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura WK Medium Italic";
  src:
    url("../resources/fonts/futura-medium-italic.woff2") format("woff2"),
    url("../resources/fonts/FuturaMediumC%20Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Futura WK Medium Italic";
  src:
    url("../resources/fonts/futura-medium-italic.woff2") format("woff2"),
    url("../resources/fonts/FuturaMediumC%20Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Futura WK Bold";
  src:
    url("../resources/fonts/futura-bold.woff2") format("woff2"),
    url("../resources/fonts/Futura Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --wk-magenta: #cb177f;
  --wk-magenta-deep: #650e4f;
  --wk-scene: #d60d75;
  --wk-sky: #a1125e;
  --wk-white: #ffffff;
  --wk-ink: #606061;
  --wk-flag-green: #27baa7;
  --wk-flag-blue: #37a9ee;
  --wk-section-inset: 36px;
  --font-medium: "Futura WK Medium", sans-serif;
  --font-medium-italic: "Futura WK Medium Italic", sans-serif;
  --font-bold: "Futura WK Bold", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  background: var(--wk-white);
  color: var(--wk-white);
  font-family: var(--font-medium);
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--font-bold);
  font-weight: 700;
  font-style: normal;
}

p {
  font-family: var(--font-medium);
  font-weight: 400;
  font-style: normal;
}

main {
  display: flex;
  flex-direction: column;
  background: var(--wk-white);
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

main > * {
  min-width: 0;
}

main > :not(.hero) {
  margin: var(--wk-section-inset);
  min-height: calc(100svh - (var(--wk-section-inset) * 2));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: var(--wk-sky);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: hero-drift 22s ease-out forwards;
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media picture {
  display: block;
}

.hero__media img {
  object-fit: cover;
  object-position: center 42%;
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, transparent 35%, rgba(40, 4, 28, 0.28) 100%),
    linear-gradient(90deg, rgba(80, 8, 50, 0.18) 0%, transparent 22%, transparent 78%, rgba(80, 8, 50, 0.16) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero__stage {
  position: relative;
  z-index: 3;
  min-height: 100svh;
}

.hero__logo {
  position: absolute;
  left: 9%;
  top: 50%;
  width: min(21vw, 340px);
  height: auto;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  animation: hero-rise 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero__title {
  position: absolute;
  left: 63.8%;
  top: 50%;
  margin: 0;
  color: var(--wk-white);
  font-family: var(--font-bold);
  font-weight: 700;
  font-size: clamp(2.6rem, 9.5vh, 7.15rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(-50%);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  animation: hero-rise 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@keyframes hero-drift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1) translate3d(0, -1.2%, 0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(calc(-50% + 18px));
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%);
  }
}

@media (max-width: 900px) {
  .hero__logo {
    left: 7%;
    top: 11%;
    width: min(46vw, 220px);
    transform: none;
    animation-name: hero-rise-plain;
  }

  .hero__title {
    left: auto;
    right: 7%;
    top: auto;
    bottom: 9%;
    transform: none;
    font-size: clamp(2.4rem, 12vw, 4.4rem);
    animation-name: hero-rise-plain;
  }

  .hero__media img {
    object-position: 55% 38%;
  }
}

@keyframes hero-rise-plain {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.78fr) minmax(0, 1fr);
  background: var(--wk-white);
  color: var(--wk-ink);
  font-family: var(--font-medium);
  font-style: normal;
}

.intro__visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--wk-magenta);
}

.intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 45%;
  position: absolute;
  inset: 0;
}

.intro__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 6, 14, 0.42) 0%,
    rgba(18, 6, 14, 0.08) 38%,
    transparent 58%
  );
  pointer-events: none;
}

.intro__overlay {
  position: absolute;
  left: 4.4%;
  right: 8%;
  bottom: 7.5%;
  z-index: 1;
}

.intro__headline {
  margin: 0;
  color: var(--wk-magenta);
  font-family: var(--font-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.intro__tradition {
  margin: 0.85rem 0 0;
  color: var(--wk-white);
  font-family: var(--font-medium-italic);
  font-size: clamp(1.05rem, 2.05vw, 1.55rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.intro__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vh, 3rem);
  padding: clamp(2.4rem, 8.5vh, 5.5rem) 0 clamp(1.8rem, 6.5vh, 3.8rem)
    clamp(1.4rem, 3.4vw, 2.8rem);
  background: var(--wk-white);
}

.intro__logo {
  width: min(46%, 230px);
  height: auto;
  align-self: center;
}

.intro__body {
  max-width: 36rem;
}

.intro__body p,
.intro__event {
  margin: 0 0 1.15rem;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.4;
}

.intro__body p {
  font-family: var(--font-medium);
  font-weight: 400;
  font-style: normal;
}

.intro__body .intro__eyebrow {
  margin-bottom: 0.85rem;
  color: var(--wk-magenta);
  font-family: var(--font-medium);
}

.intro__event,
.intro__body .intro__date {
  font-family: var(--font-bold);
  color: var(--wk-ink);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.intro__body .intro__date {
  margin: 1rem 0 1.35rem;
}

.intro__body .intro__tagline {
  margin: 1.35rem 0 0;
  color: var(--wk-magenta);
  font-family: var(--font-bold);
  font-weight: 700;
}

.intro.js-reveal .intro__overlay,
.intro.js-reveal .intro__panel {
  opacity: 0;
}

.intro.is-in .intro__overlay,
.intro.is-in .intro__panel {
  animation: intro-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.intro.is-in .intro__panel {
  animation-delay: 0.12s;
}

@keyframes intro-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
  }

  .intro__visual {
    min-height: 72svh;
  }

  .intro__overlay {
    left: 6%;
    right: 6%;
    bottom: 8%;
  }

  .intro__headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .intro__tradition {
    font-size: clamp(0.95rem, 3.6vw, 1.2rem);
  }

  .intro__panel {
    min-height: auto;
    padding: 2.4rem 0 3rem 1.4rem;
  }

  .intro__logo {
    width: min(52%, 200px);
    align-self: flex-start;
  }
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
  background: var(--wk-white);
  font-family: var(--font-medium);
  font-style: normal;
}

.experience__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 8vh, 5rem) clamp(1.4rem, 3vw, 2.5rem) clamp(1.8rem, 5.5vh, 3.2rem) 0;
  color: var(--wk-ink);
}

.experience__title {
  margin: 0 0 1.05rem;
  color: var(--wk-magenta);
  font-family: var(--font-bold);
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.experience__copy p {
  margin: 0 0 1.15rem;
  max-width: 34rem;
  font-family: var(--font-medium);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
}

.experience__copy p:last-child {
  margin-bottom: 0;
}

.experience__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  background: var(--wk-scene);
}

.experience__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.experience.js-reveal .experience__copy,
.experience.js-reveal .experience__visual img {
  opacity: 0;
}

.experience.is-in .experience__copy,
.experience.is-in .experience__visual img {
  animation: intro-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.experience.is-in .experience__visual img {
  animation-delay: 0.12s;
}

@media (max-width: 900px) {
  .experience {
    grid-template-columns: 1fr;
  }

  .experience__copy {
    justify-content: flex-start;
    padding: 2.4rem 1.4rem 1.6rem 0;
    order: 1;
  }

  .experience__visual {
    min-height: 62svh;
    order: 2;
  }

  .experience__title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }
}

.schedule {
  background: var(--wk-white);
  color: var(--wk-ink);
  padding: 0 0 1.5rem;
}

.schedule__days {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
}

.schedule__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  min-height: 5.6rem;
  padding: 0.55rem 1.1rem 0.45rem 1.15rem;
  background: var(--wk-magenta);
  color: var(--wk-white);
}

.schedule__day-name {
  margin: 0;
  color: var(--wk-white);
  font-family: var(--font-bold);
  font-size: clamp(1.45rem, 6.2vw, 2.85rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.schedule__day-tag {
  margin: 0.15rem 0 0;
  color: var(--wk-white);
  font-family: var(--font-bold);
  font-size: clamp(0.85rem, 1.15vw, 1.05rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.schedule__cal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.45rem, 0.9vw, 0.6rem);
  width: max-content;
  margin: 0;
  color: var(--wk-white);
  font-family: var(--font-bold);
  font-size: clamp(1.55rem, 2.65vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.schedule__month {
  font-size: 0.571em;
  line-height: 1;
  letter-spacing: 0;
}

.schedule__date {
  font-size: 1em;
  line-height: 0.82;
}

.schedule__cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem 1.6rem;
  padding: 1.35rem 0.15rem 1.6rem;
}

.sked {
  margin: 0 0 1.15rem;
  padding-left: 0.85rem;
}

.sked:last-child {
  margin-bottom: 0;
}

.sked__head {
  position: relative;
}

.sked__head::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 0.12em;
  bottom: 0.08em;
  width: 6px;
  background: var(--wk-magenta);
}

.sked__time,
.sked__title,
.sked__line,
.sked__note {
  margin: 0;
}

.sked__time {
  color: var(--wk-magenta);
  font-family: var(--font-bold);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  font-weight: 700;
  line-height: 1.05;
}

.sked__title {
  margin-top: 0.02rem;
  color: var(--wk-magenta);
  font-family: var(--font-medium);
  font-size: clamp(0.7rem, 0.82vw, 0.8rem);
  font-weight: 700;
  font-synthesis: weight;
  line-height: 1.1;
}

.sked__line,
.sked__note {
  margin-top: 0.12rem;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  line-height: 1.3;
}

.sked__line {
  color: #000000;
  font-family: var(--font-medium);
  font-weight: 400;
}

.sked__note {
  color: var(--wk-ink);
  font-family: var(--font-medium-italic);
  font-weight: 500;
  font-style: italic;
}

.schedule__flags {
  padding: 0.35rem 0.15rem 0.4rem;
}

.schedule__flags-title {
  margin: 0;
  color: #000000;
  font-family: var(--font-bold);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
}

.schedule__flags-note {
  margin: 0.2rem 0 1rem;
  color: var(--wk-ink);
  font-family: var(--font-medium-italic);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 500;
  font-style: italic;
}

.schedule__flag-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem 1.5rem;
}

.flag {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.flag__mark {
  flex: 0 0 3.9rem;
  width: 3.9rem;
  height: auto;
  margin-top: 0.15rem;
}

.flag__name {
  margin: 0;
  color: #000000;
  font-family: var(--font-bold);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 700;
}

.flag__mode {
  margin: 0.12rem 0 0;
  color: var(--wk-ink);
  font-family: var(--font-medium-italic);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
}

.schedule.js-reveal .schedule__day,
.schedule.js-reveal .schedule__flags {
  opacity: 0;
}

.schedule.is-in .schedule__day,
.schedule.is-in .schedule__flags {
  animation: intro-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.schedule.is-in .schedule__day:nth-child(2) {
  animation-delay: 0.1s;
}

.schedule.is-in .schedule__flags {
  animation-delay: 0.18s;
}

.offer {
  background: var(--wk-white);
  color: var(--wk-ink);
  padding: 0 0 2rem;
}

.offer__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  margin: 0;
  color: var(--wk-white);
  font-family: var(--font-bold);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 700;
  line-height: 0.85;
  text-transform: uppercase;
}

.offer__price span {
  font-size: 0.38em;
  letter-spacing: 0.06em;
  line-height: 1;
}

.offer__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  margin: 0;
  color: var(--wk-white);
  font-family: var(--font-bold);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 0.95;
  text-align: right;
  text-transform: uppercase;
}

.offer__aside span {
  font-size: 0.55em;
  letter-spacing: 0.06em;
  line-height: 1;
}

.offer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  padding: 1.6rem 0.15rem 0.4rem;
}

.offer__heading {
  margin: 0 0 0.85rem;
  color: var(--wk-magenta);
  font-family: var(--font-bold);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  font-weight: 700;
  text-transform: uppercase;
}

.offer__heading--spaced {
  margin-top: 1.8rem;
}

.offer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer__list li {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 0.85rem;
  color: #000000;
  font-family: var(--font-medium);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 400;
  line-height: 1.35;
}

.offer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 5px;
  height: 0.85em;
  background: var(--wk-magenta);
}

.offer__contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  margin: 1.6rem 0.15rem 0;
}

.offer__contact a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4em;
  max-width: 100%;
  color: #000000;
  font-family: var(--font-bold);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.offer__contact a span {
  min-width: 0;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.offer__contact a.offer__book {
  flex-wrap: nowrap;
  padding: 0.85rem 1.4rem;
  border: 2px solid var(--wk-magenta);
  border-radius: 999px;
  background: var(--wk-white);
  color: var(--wk-magenta);
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer__contact a.offer__book:hover,
.offer__contact a.offer__book:focus-visible {
  background: var(--wk-magenta);
  color: var(--wk-white);
}

.offer__whatsapp-icon {
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  fill: currentColor;
}

.offer__contact a:hover span,
.offer__contact a:focus-visible span {
  text-decoration-thickness: 2px;
}

.offer.js-reveal .schedule__banner,
.offer.js-reveal .offer__grid {
  opacity: 0;
}

.offer.is-in .schedule__banner,
.offer.is-in .offer__grid {
  animation: intro-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.offer.is-in .offer__grid {
  animation-delay: 0.12s;
}

.moments {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vh, 1.4rem);
  background: var(--wk-magenta);
  color: var(--wk-white);
  padding: clamp(3rem, 8vh, 5rem) clamp(0.6rem, 3vw, 1.5rem);
  overflow: hidden;
  container-type: inline-size;
}

.moments__lockup {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  align-items: center;
  column-gap: 1.2cqi;
  width: 90%;
  max-width: 90%;
  line-height: 1;
}

.moments__logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  justify-self: end;
}

.moments__word {
  margin: 0;
  color: var(--wk-white);
  font-family: var(--font-bold);
  font-size: calc((90cqi - 1.2cqi) * 0.6 / 5.553);
  font-weight: 700;
  line-height: 0.754;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-self: start;
}

.moments__contact {
  margin: 0;
  width: 60%;
  max-width: 60%;
  color: var(--wk-white);
  font-family: var(--font-bold);
  font-size: calc(60cqi / 23.068);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .moments__contact {
    width: 75%;
    max-width: 75%;
    font-size: calc(75cqi / 23.068);
  }
}

.moments__contact a {
  color: inherit;
  text-decoration: none;
}

.moments__contact a:hover,
.moments__contact a:focus-visible {
  text-decoration: underline;
}

.moments.js-reveal .moments__lockup,
.moments.js-reveal .moments__contact {
  opacity: 0;
}

.moments.is-in .moments__lockup,
.moments.is-in .moments__contact {
  animation: intro-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.moments.is-in .moments__contact {
  animation-delay: 0.15s;
}

@media (max-width: 1100px) {
  .schedule__days,
  .offer__grid,
  .offer__contact {
    grid-template-columns: 1fr;
  }

  .offer__contact-item:has(.offer__book) {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .schedule__cols,
  .schedule__flag-list {
    grid-template-columns: 1fr;
  }

  .schedule__day-rest {
    display: block;
  }

  .schedule__day-name:has(.schedule__day-rest) {
    line-height: 0.95;
  }

  .offer__contact a.offer__book {
    padding: 0.75rem 0.9rem;
    font-size: clamp(0.72rem, 4.1vw, 1.2rem);
    letter-spacing: 0.02em;
  }
}

@media (max-width: 700px) {
  .schedule__banner {
    padding: 0.7rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media,
  .hero__logo,
  .hero__title {
    animation: none;
    filter: none;
    transform: none;
  }

  .hero__logo {
    transform: translateY(-50%);
  }

  .hero__title {
    transform: translateY(-50%);
  }

  @media (max-width: 900px) {
    .hero__logo,
    .hero__title {
      transform: none;
    }
  }

  .intro.is-in .intro__overlay,
  .intro.is-in .intro__panel {
    animation: none;
  }

  .intro.js-reveal .intro__overlay,
  .intro.js-reveal .intro__panel,
  .experience.js-reveal .experience__copy,
  .experience.js-reveal .experience__visual img,
  .schedule.js-reveal .schedule__day,
  .schedule.js-reveal .schedule__flags,
  .offer.js-reveal .schedule__banner,
  .offer.js-reveal .offer__grid,
  .moments.js-reveal .moments__lockup,
  .moments.js-reveal .moments__contact {
    opacity: 1;
  }

  .experience.is-in .experience__copy,
  .experience.is-in .experience__visual img,
  .schedule.is-in .schedule__day,
  .schedule.is-in .schedule__flags,
  .offer.is-in .schedule__banner,
  .offer.is-in .offer__grid,
  .moments.is-in .moments__lockup,
  .moments.is-in .moments__contact {
    animation: none;
  }
}
