:root {
  --yellow: #ffd400;
  --cream: #f5e6c8;
  --white: #ffffff;
  --line: rgba(255, 255, 255, .30);
  --soft-line: rgba(255, 255, 255, .38);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 230, 200, .42) rgba(16, 14, 12, .86);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(16, 14, 12, .96), rgba(42, 34, 28, .94));
}

::-webkit-scrollbar-thumb {
  border: 2px solid rgba(16, 14, 12, .94);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(245, 230, 200, .68), rgba(255, 212, 0, .46));
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(245, 230, 200, .86), rgba(255, 212, 0, .62));
}

body {
  font-family: var(--font);
  background: #15110e;
  color: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__picture,
.hero__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -3;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.hero__picture {
  display: block;
}

.hero__bg {
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: 49% 50%;
  transform: none;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .24) 25%, rgba(0, 0, 0, .17) 55%, rgba(0, 0, 0, .24) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .06) 42%, rgba(0, 0, 0, .42) 100%);
}

.hero__header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1300;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 18px;
  min-height: 86px;
  padding: 22px 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: opacity .28s ease, transform .32s cubic-bezier(.22,.61,.36,1), background .32s ease, border-color .32s ease, box-shadow .32s ease, backdrop-filter .32s ease;
  will-change: opacity, transform;
}

body.header-elevated .hero__header {
  border-bottom-color: rgba(245,230,200,.15);
  background:
    linear-gradient(180deg, rgba(16,14,12,.82), rgba(16,14,12,.58)),
    linear-gradient(90deg, rgba(245,230,200,.08), rgba(255,255,255,.025) 42%, rgba(245,230,200,.06)),
    rgba(18,15,13,.54);
  box-shadow: 0 18px 58px rgba(0,0,0,.28);
  backdrop-filter: blur(22px) saturate(1.16);
}

body.bio-page .hero__header {
  border-bottom-color: rgba(245,230,200,.15);
  background:
    linear-gradient(180deg, rgba(16,14,12,.86), rgba(16,14,12,.62)),
    linear-gradient(90deg, rgba(245,230,200,.08), rgba(255,255,255,.025) 42%, rgba(245,230,200,.06)),
    rgba(18,15,13,.60);
  box-shadow: 0 18px 58px rgba(0,0,0,.20);
  backdrop-filter: blur(22px) saturate(1.16);
}

body.faq-page .hero__header {
  border-bottom-color: rgba(245,230,200,.14);
  background:
    linear-gradient(180deg, rgba(16,14,12,.88), rgba(16,14,12,.64)),
    linear-gradient(90deg, rgba(245,230,200,.08), rgba(255,255,255,.025) 42%, rgba(245,230,200,.06)),
    rgba(18,15,13,.62);
  box-shadow: 0 18px 58px rgba(0,0,0,.22);
  backdrop-filter: blur(22px) saturate(1.16);
}

body.header-hidden .hero__header {
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
}

.logo {
  display: block;
  width: clamp(128px, 34vw, 170px);
  line-height: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hello {
  position: absolute;
  right: 62px;
  top: 25px;
  width: min(176px, calc(100vw - 144px));
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 17px;
  padding-right: 6px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  color: rgba(255, 255, 255, .94);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hello span {
  white-space: nowrap;
}

.hello b {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
}

.hello b::before,
.hello b::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 31px;
  height: 31px;
  border: 3px solid rgba(37, 211, 102, 1);
  border-radius: 999px;
  box-shadow:
    0 0 9px rgba(37, 211, 102, .70),
    0 0 19px rgba(37, 211, 102, .42);
  transform: translate(-50%, -50%) scale(.58);
  animation: whatsapp-ring 2.45s ease-out infinite;
}

.hello b::after {
  animation-delay: 1.18s;
}

.hello img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  animation: whatsapp-call 2.45s ease-in-out infinite;
  transform-origin: 50% 50%;
}

.menu {
  width: 44px;
  height: 44px;
  position: relative;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(245,230,200,.14);
  border-radius: 999px;
  background: rgba(12,10,9,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.menu span {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, .86);
  transition: width .22s ease, transform .22s ease, background .22s ease;
}

.menu:hover,
.menu.is-open {
  border-color: rgba(245,230,200,.34);
  background: rgba(245,230,200,.08);
  transform: translateY(-1px);
}

.menu:hover span:first-child,
.menu.is-open span:first-child {
  width: 25px;
}

.menu:hover span:last-child,
.menu.is-open span:last-child {
  width: 14px;
  transform: translateX(5px);
}

.menu::before,
.menu::after {
  content: none;
}

.mobile-menu {
  display: none;
}

body.header-hidden .logo,
body.header-hidden .hello,
body.header-hidden .menu,
body.header-hidden .mobile-menu,
body.header-hidden .language--header {
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
}

.logo,
.hello,
.menu,
.mobile-menu,
.language--header {
  transition: opacity .28s ease, transform .28s ease;
}

.language {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.language button:hover,
.language button.is-active {
  border-color: rgba(245,230,200,.82);
  background: rgba(245,230,200,.14);
  transform: translateY(-1px);
}

.language span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}

.language span img {
  width: 150%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.language em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.language--header {
  display: none;
}

.language--nav {
  justify-content: center;
  margin: 0 0 30px;
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 30px;
}

.nav-tools .language--nav {
  margin: 0;
}

.nav-share {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245,230,200,.86);
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.nav-share:hover,
.nav-share.is-copied {
  transform: translateY(-1px);
  color: #fff;
}

.nav-share span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(245,230,200,.22);
  background: rgba(245,230,200,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.nav-share span img {
  width: 19px;
  height: 19px;
  display: block;
  object-fit: contain;
  filter: invert(92%) sepia(17%) saturate(411%) hue-rotate(350deg) brightness(104%) contrast(93%);
}

.nav-share em {
  display: none;
}

.eyebrow {
  position: absolute;
  z-index: 3;
  left: 20px;
  top: 41svh;
  margin: 0;
  font-size: clamp(22px, 6.2vw, 31px);
  font-weight: 700;
  line-height: 1.24;
}

.eyebrow > span,
.eyebrow > em {
  display: block;
}

.eyebrow em {
  color: var(--cream);
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.year-cutout {
  display: inline-block;
  width: 3.25em;
  height: 1.28em;
  margin-left: .08em;
  vertical-align: -.34em;
}

.year-cutout svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.year-motif-a {
  animation: motif-a 6.5s ease-in-out infinite;
}

.year-motif-b {
  animation: motif-b 7.5s ease-in-out infinite;
}

@keyframes whatsapp-ring {
  0% {
    opacity: .96;
    transform: translate(-50%, -50%) scale(.58);
  }

  70% {
    opacity: .16;
    transform: translate(-50%, -50%) scale(2.25);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.45);
  }
}

@keyframes whatsapp-call {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }

  8% {
    transform: rotate(-14deg) scale(1.04);
  }

  16% {
    transform: rotate(12deg) scale(1.04);
  }

  24% {
    transform: rotate(-10deg) scale(1.03);
  }

  32% {
    transform: rotate(8deg) scale(1.03);
  }

  42% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes whatsapp-ring-mobile {
  0% {
    opacity: .96;
    transform: translate(-50%, -50%) scale(.66);
  }

  72% {
    opacity: .18;
    transform: translate(-50%, -50%) scale(1.62);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.78);
  }
}

.hero-title {
  position: absolute;
  z-index: 4;
  left: 20px;
  right: 16px;
  bottom: 14svh;
  margin: 0;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .86;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-line--one {
  font-size: clamp(66px, 21vw, 150px);
}

.title-line--two {
  margin-top: .26em;
  font-size: clamp(47px, 14.4vw, 108px);
}

.cutout-word {
  display: inline-block;
  width: 5.08em;
  height: 1.04em;
  margin-left: .08em;
  vertical-align: -.17em;
}

.cutout-word svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.motif-a {
  animation: motif-a 7s ease-in-out infinite;
}

.motif-b {
  animation: motif-b 9s ease-in-out infinite;
}

@keyframes motif-a {
  0%, 100% { transform: translateX(-8px); }
  50% { transform: translateX(12px) translateY(-2px); }
}

@keyframes motif-b {
  0%, 100% { transform: translateX(10px); }
  50% { transform: translateX(-10px) translateY(2px); }
}

.chat {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  min-width: 184px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 10px 0 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(16, 14, 12, .78);
  color: #fff;
  box-shadow: 0 20px 54px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.chat::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateY(-50%);
  z-index: 0;
}

.booking-launcher__text {
  position: relative;
  z-index: 1;
  max-width: 112px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.05;
  text-align: left;
}

.chat svg {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 1;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: #050505;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
}

.chat-panel {
  position: fixed;
  z-index: 3000;
  right: 14px;
  bottom: 92px;
  width: min(430px, calc(100vw - 28px));
  max-height: min(760px, calc(100svh - 118px));
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(245,230,200,.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 84% 12%, rgba(244,207,0,.16), transparent 30%),
    linear-gradient(145deg, rgba(48,40,34,.92), rgba(17,15,14,.96));
  color: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(24px) saturate(1.18);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  pointer-events: none;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(245,230,200,.42) rgba(255,255,255,.06);
  transition: opacity .28s ease, transform .28s ease;
}

.chat-panel::-webkit-scrollbar {
  width: 9px;
}

.chat-panel::-webkit-scrollbar-track {
  margin: 12px 0;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
}

.chat-panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(31,26,22,.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245,230,200,.62), rgba(244,207,0,.46));
}

.chat-panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(245,230,200,.82), rgba(244,207,0,.66));
}

.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.chat-panel__badge {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(245,230,200,.14);
  color: var(--cream);
}

.chat-panel svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-close {
  position: relative;
  flex: 0 0 32px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(245,230,200,.92);
  color: #050505;
  font-size: 0;
  line-height: 1;
}

.chat-close::before,
.chat-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.7px;
  border-radius: 999px;
  background: #050505;
}

.chat-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.chat-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-kicker {
  margin: 0 0 10px;
  color: rgba(244,207,0,.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.chat-panel__intro h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 25px;
  font-weight: 760;
  line-height: 1.05;
}

.chat-panel__intro p:not(.booking-kicker) {
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.48;
}

.booking-widget {
  display: grid;
  gap: 14px;
}

.booking-calendar {
  padding: 14px;
  border: 1px solid rgba(245,230,200,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.065);
}

.booking-calendar__head,
.booking-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.booking-calendar__head {
  margin-bottom: 12px;
}

.booking-calendar__head span,
.booking-selection span {
  color: rgba(245,230,200,.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.booking-calendar__head em {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-style: normal;
}

.booking-days {
  display: grid;
  gap: 10px;
}

.booking-empty {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(245,230,200,.14);
  border-radius: 10px;
  background: rgba(0,0,0,.16);
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.45;
}

.booking-day {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: start;
}

.booking-day__date {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(245,230,200,.12);
  color: #fff;
}

.booking-day__date strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.booking-day__date span {
  display: block;
  margin-top: 5px;
  color: rgba(245,230,200,.72);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-slot {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(245,230,200,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 760;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.booking-slot:hover {
  border-color: rgba(245,230,200,.66);
  background: rgba(245,230,200,.18);
  color: #fff;
  transform: translateY(-1px);
}

.booking-slot.is-selected {
  border-color: rgba(244,207,0,.92);
  background: var(--yellow);
  color: #050505;
  box-shadow: 0 0 0 3px rgba(244,207,0,.18);
  transform: translateY(0);
}

.booking-slot.is-selected:hover {
  background: #ffe15a;
  color: #050505;
}

.booking-selection {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(245,230,200,.10);
}

.booking-selection strong {
  color: #fff;
  font-size: 13px;
  text-align: right;
}

.booking-form {
  display: grid;
  gap: 10px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: rgba(245,230,200,.76);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(245,230,200,.16);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: #fff;
  background: rgba(0,0,0,.24);
  outline: none;
  resize: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(244,207,0,.72);
  box-shadow: 0 0 0 3px rgba(244,207,0,.13);
}

.address-search {
  position: relative;
  display: block;
}

.address-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 8;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(245,230,200,.20);
  border-radius: 12px;
  background:
    radial-gradient(circle at 82% 18%, rgba(244,207,0,.13), transparent 34%),
    rgba(21,18,16,.98);
  box-shadow: 0 18px 46px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}

.address-suggestions.is-open {
  display: grid;
}

.address-suggestion {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(245,230,200,.09);
  color: #fff;
  text-align: left;
}

.address-suggestion:last-child {
  border-bottom: 0;
}

.address-suggestion:hover {
  background: rgba(245,230,200,.10);
}

.address-suggestion strong {
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
}

.address-suggestion span {
  color: rgba(245,230,200,.70);
  font-size: 11px;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}

.booking-submit {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--yellow);
  color: #050505;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.booking-submit:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.booking-submit span {
  font-size: 22px;
  line-height: 0;
}

.booking-shortcuts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(245,230,200,.13);
  color: rgba(255,255,255,.56);
  font-size: 12px;
}

.booking-shortcuts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 780;
}

.booking-shortcuts img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.booking-confirm {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7,6,5,.58);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.booking-confirm.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-confirm__card {
  position: relative;
  width: min(430px, 100%);
  padding: 26px;
  border: 1px solid rgba(245,230,200,.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 14%, rgba(244,207,0,.16), transparent 31%),
    linear-gradient(150deg, rgba(55,45,38,.96), rgba(18,15,13,.98));
  color: #fff;
  box-shadow: 0 32px 90px rgba(0,0,0,.46);
}

.booking-confirm__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(245,230,200,.88);
  color: #050505;
  font-size: 0;
}

.booking-confirm__close::before,
.booking-confirm__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.7px;
  border-radius: 999px;
  background: #050505;
}

.booking-confirm__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.booking-confirm__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.booking-confirm__kicker {
  margin: 0 0 10px;
  color: rgba(244,207,0,.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.booking-confirm h2 {
  margin: 0 42px 10px 0;
  font-size: 25px;
  line-height: 1.05;
}

.booking-confirm__text,
.booking-confirm__note,
.booking-confirm__status {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.5;
}

.booking-confirm__status {
  min-height: 0;
  margin-top: 14px;
  color: rgba(244,207,0,.88);
  font-weight: 760;
}

.booking-confirm__summary {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px 14px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(245,230,200,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
}

.booking-confirm__summary span {
  color: rgba(245,230,200,.64);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-confirm__summary strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
}

.booking-confirm__actions {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10px;
  margin-top: 20px;
}

.booking-confirm__back,
.booking-confirm__submit {
  min-height: 42px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-confirm__back {
  border: 1px solid rgba(245,230,200,.22);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
}

.booking-confirm__submit {
  background: var(--yellow);
  color: #050505;
}

.booking-confirm__submit:disabled {
  cursor: wait;
  opacity: .58;
}

.booking-confirm.is-success .booking-confirm__back {
  display: none;
}

.booking-confirm.is-success .booking-confirm__actions {
  grid-template-columns: 1fr;
}

.decor {
  display: none;
}

.nav-menu {
  position: fixed;
  z-index: 2000;
  right: 0;
  top: 0;
  width: min(500px, 100vw);
  height: 100svh;
  padding: clamp(34px, 5vw, 58px) clamp(30px, 4.6vw, 58px) clamp(34px, 5vw, 56px);
  background:
    radial-gradient(circle at 82% 12%, rgba(245,230,200,.16), transparent 31%),
    radial-gradient(circle at 6% 82%, rgba(216,167,200,.10), transparent 30%),
    linear-gradient(152deg, rgba(28,24,21,.985), rgba(10,9,8,.975) 55%, rgba(39,32,27,.975)),
    rgba(16,13,11,.98);
  color: #fff;
  border-left: 1px solid rgba(245, 230, 200, .20);
  box-shadow: -52px 0 120px rgba(0,0,0,.54);
  backdrop-filter: blur(28px) saturate(1.16);
  transform: translateX(104%);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s ease, opacity .32s ease;
}

.nav-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-close {
  position: absolute;
  z-index: 1001;
  right: clamp(24px, 4vw, 42px);
  top: clamp(22px, 3.5vw, 34px);
  width: 42px;
  height: 42px;
  display: grid;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 1px solid rgba(245,230,200,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(245,230,200,.82);
  font-size: 0;
  line-height: 1;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.nav-close span {
  display: block;
  font-size: 21px;
  line-height: 1;
  transform: translateY(-1px);
}

.nav-close:hover {
  transform: rotate(90deg);
  background: rgba(245,230,200,.10);
  color: #fff;
}

.nav-kicker {
  max-width: 360px;
  margin: 38px 76px clamp(38px, 7svh, 62px) 0;
  color: rgba(245, 230, 200, .84);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 420;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.nav-menu nav {
  margin-top: 0;
  padding-top: clamp(16px, 3svh, 26px);
  border-top: 1px solid rgba(245, 230, 200, .18);
  counter-reset: navitem;
}

.nav-menu a {
  counter-increment: navitem;
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: clamp(12px, 2.25svh, 18px) 0;
  border-bottom: 1px solid rgba(245, 230, 200, .12);
  color: rgba(255,255,255,.90);
  font-size: clamp(18px, 2.05vw, 28px);
  font-weight: 430;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  transition: color .24s ease, transform .24s ease, border-color .24s ease;
}

.nav-menu a::before {
  content: "0" counter(navitem);
  color: rgba(245,230,200,.54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 44px;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,230,200,.74), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.nav-menu a:hover {
  color: var(--cream);
  transform: translateX(5px);
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.faq-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 14% 11%, rgba(245,230,200,.13), transparent 34%),
    radial-gradient(circle at 90% 30%, rgba(128,86,61,.18), transparent 34%),
    linear-gradient(145deg, #17120f 0%, #0d0b0a 48%, #211913 100%);
}

.faq-page__main {
  position: relative;
  overflow: hidden;
  padding: clamp(122px, 17svh, 178px) clamp(18px, 5vw, 76px) clamp(72px, 9vw, 126px);
}

.faq-page__main::before {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 76px);
  right: clamp(20px, 5vw, 76px);
  top: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,230,200,.48), rgba(245,230,200,.06), transparent);
  pointer-events: none;
}

.faq-hero {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto clamp(38px, 6vw, 78px);
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: rgba(245,230,200,.76);
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 800;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.faq-kicker::before {
  content: "";
  width: clamp(30px, 5vw, 52px);
  height: 1px;
  background: rgba(216,167,200,.72);
}

.faq-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 8.4vw, 118px);
  font-weight: 760;
  line-height: .92;
  letter-spacing: 0;
}

.faq-hero > p:not(.faq-kicker) {
  max-width: 690px;
  margin: clamp(20px, 3vw, 30px) 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 420;
  line-height: 1.65;
}

.faq-hero__cta {
  width: fit-content;
  min-width: 210px;
  height: 50px;
  margin-top: clamp(28px, 4vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 7px 5px 22px;
  border: 1px solid rgba(245,230,200,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.faq-hero__cta b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #080705;
  font-size: 24px;
  line-height: 1;
  padding-bottom: 3px;
}

.faq-hero__cta:hover {
  transform: translateY(-2px);
  border-color: rgba(245,230,200,.48);
  background: rgba(255,255,255,.07);
}

.faq-list {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(245,230,200,.15);
}

.faq-item {
  position: relative;
  border-bottom: 1px solid rgba(245,230,200,.13);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 10px -10px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 8%, rgba(245,230,200,.12), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(216,167,200,.09), transparent 35%),
    rgba(255,255,255,.03);
  opacity: 0;
  transform: scale(.985);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}

.faq-item.is-open::before {
  opacity: 1;
  transform: scale(1);
}

.faq-item__question {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(78px, 9vw, 104px);
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: clamp(12px, 2.6vw, 28px);
  padding: clamp(18px, 3.2vw, 28px) clamp(0px, 1vw, 14px);
  text-align: left;
}

.faq-item__question span {
  color: rgba(245,230,200,.50);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
}

.faq-item__question strong {
  color: rgba(255,255,255,.92);
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 470;
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-item__question i {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245,230,200,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}

.faq-item__question i::before,
.faq-item__question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(245,230,200,.86);
  transform: translate(-50%, -50%);
  transition: transform .24s ease, opacity .24s ease;
}

.faq-item__question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__question i {
  background: var(--yellow);
  border-color: var(--yellow);
}

.faq-item.is-open .faq-item__question i::before,
.faq-item.is-open .faq-item__question i::after {
  background: #090705;
}

.faq-item.is-open .faq-item__question i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .34s ease, opacity .24s ease, transform .24s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item__answer p {
  max-width: 760px;
  margin: 0 42px clamp(28px, 3.8vw, 42px) clamp(54px, 6.5vw, 70px);
  color: rgba(255,255,255,.68);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 380;
  line-height: 1.72;
}

.marquee-belt {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(58px, 7svh, 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f2dfbb;
  color: #0b0907;
  border-top: 1px solid rgba(255,255,255,.32);
  border-bottom: 1px solid rgba(15,10,5,.10);
}

.marquee-belt::before,
.marquee-belt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 8vw, 130px);
  pointer-events: none;
}

.marquee-belt::before {
  left: 0;
  background: linear-gradient(90deg, #f2dfbb, rgba(242,223,187,0));
}

.marquee-belt::after {
  right: 0;
  background: linear-gradient(270deg, #f2dfbb, rgba(242,223,187,0));
}

.marquee-belt__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-belt 26s linear infinite;
}

.marquee-belt__group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
  gap: clamp(28px, 4.6vw, 74px);
  padding: 0 clamp(20px, 3vw, 54px);
}

.marquee-belt span {
  display: inline-block;
  font-size: clamp(17px, 1.45vw, 27px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.025em;
}

.marquee-belt b {
  color: rgba(255,255,255,.92);
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 500;
  line-height: 1;
}

@keyframes marquee-belt {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.3333%);
  }
}

.studio-teaser {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(216,167,200,.20), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(241,210,154,.18), transparent 30%),
    linear-gradient(135deg, #11100e 0%, #30201f 38%, #6f2a57 66%, #151210 100%);
  color: #fff;
}

.studio-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 45%, rgba(255,255,255,.08) 45.2% 46%, transparent 46.2%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 96px);
  opacity: .48;
  pointer-events: none;
}

.studio-teaser__inner {
  position: relative;
  width: min(100%, 1560px);
  min-height: clamp(520px, 86svh, 760px);
  display: grid;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  padding: clamp(34px, 8vw, 88px) 20px;
}

.studio-teaser__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 696;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(0,0,0,.24);
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  transform: none;
  transform-origin: 50% 50%;
}

.studio-teaser__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.18));
  pointer-events: none;
}

.studio-teaser__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.studio-teaser__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.studio-teaser__kicker {
  margin: 0 0 12px;
  color: rgba(245,230,200,.82);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.studio-teaser h2 {
  margin: 0;
  max-width: 9.4em;
  color: #fff;
  font-size: clamp(42px, 13.2vw, 78px);
  font-weight: 750;
  line-height: .88;
  letter-spacing: -.055em;
}

.studio-teaser__content > p:not(.studio-teaser__kicker) {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 4.1vw, 18px);
  font-weight: 400;
  line-height: 1.52;
}

.studio-teaser__button {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 0 8px 0 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.studio-teaser__button b {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #080807;
  font-size: 0;
  line-height: 0;
  padding: 0;
}

.studio-teaser__button b::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}

.studio-teaser__button:hover {
  border-color: rgba(245,230,200,.62);
  background: rgba(255,255,255,.13);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: clamp(54px, 9vw, 94px) 20px 24px;
  background:
    radial-gradient(circle at 12% 8%, rgba(245,230,200,.12), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(216,167,200,.10), transparent 30%),
    linear-gradient(145deg, #100d0b 0%, #201915 52%, #0d0b09 100%);
  color: #fff;
  border-top: 1px solid rgba(245,230,200,.15);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.68), transparent 78%);
  pointer-events: none;
}

.site-footer__inner,
.site-footer__bottom {
  position: relative;
  width: min(100%, 1460px);
  margin: 0 auto;
}

.site-footer__inner {
  display: grid;
  gap: clamp(38px, 7vw, 92px);
}

.site-footer__brand {
  max-width: 560px;
}

.site-footer__logo {
  display: block;
  width: clamp(190px, 48vw, 360px);
  margin-bottom: 22px;
  line-height: 0;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer__brand p,
.site-footer__grid p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
}

.site-footer__cta {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 0 8px 0 20px;
  border: 1px solid rgba(245,230,200,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.site-footer__cta b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #090807;
}

.site-footer__cta b::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}

.site-footer__cta:hover {
  border-color: rgba(245,230,200,.52);
  background: rgba(255,255,255,.10);
  transform: translateY(-2px);
}

.site-footer__grid {
  display: grid;
  gap: 30px;
}

.site-footer__grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,230,200,.13);
}

.site-footer h2 {
  margin: 0 0 8px;
  color: rgba(245,230,200,.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .20em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__grid a {
  width: fit-content;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2.1vw, 29px);
  font-weight: 360;
  line-height: 1.12;
  transition: color .2s ease, transform .2s ease;
}

.site-footer__grid a:hover {
  color: var(--cream);
  transform: translateX(5px);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: clamp(44px, 7vw, 76px);
  padding-top: 20px;
  border-top: 1px solid rgba(245,230,200,.13);
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.site-footer__bottom a {
  color: rgba(255,255,255,.62);
}

.site-footer__bottom a:hover {
  color: var(--cream);
}

body.bio-page .site-footer {
  margin: 58px -20px -20px;
}

body.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 8%, rgba(245,230,200,.12), transparent 30%),
    linear-gradient(145deg, #100d0b, #201915 52%, #0d0b09);
  color: #fff;
}

body.legal-page .hero__header {
  border-bottom-color: rgba(245,230,200,.15);
  background:
    linear-gradient(180deg, rgba(16,14,12,.86), rgba(16,14,12,.62)),
    rgba(18,15,13,.60);
  box-shadow: 0 18px 58px rgba(0,0,0,.20);
  backdrop-filter: blur(22px) saturate(1.16);
}

.legal-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(128px, 17svh, 178px) 20px clamp(58px, 9vw, 96px);
}

.legal-kicker {
  margin: 0 0 16px;
  color: rgba(244,207,0,.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .26em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-shell h1 {
  margin: 0 0 clamp(30px, 5vw, 54px);
  color: #fff;
  font-size: clamp(46px, 9vw, 86px);
  font-weight: 390;
  line-height: .94;
  letter-spacing: -.03em;
}

.legal-card {
  margin-top: 16px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(245,230,200,.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 12%, rgba(245,230,200,.08), transparent 30%),
    rgba(255,255,255,.055);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

.legal-card h2 {
  margin: 0 0 14px;
  color: rgba(245,230,200,.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.64;
}

.legal-card p + p {
  margin-top: 8px;
}

.legal-todo {
  color: rgba(255,255,255,.78) !important;
  font-weight: 400;
}

.legal-note {
  color: rgba(245,230,200,.78);
  font-size: 14px;
}

.cookie-consent {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3200;
  display: grid;
  place-items: end center;
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__glass {
  width: min(520px, 100%);
  padding: 20px;
  border: 1px solid rgba(245,230,200,.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244,207,0,.17), transparent 30%),
    linear-gradient(145deg, rgba(36,30,26,.94), rgba(12,10,9,.97));
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(24px) saturate(1.14);
  pointer-events: auto;
}

.cookie-consent__kicker {
  margin: 0 0 9px;
  color: rgba(244,207,0,.92);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(22px, 5.4vw, 28px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: -.02em;
}

.cookie-consent p:not(.cookie-consent__kicker) {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.48;
}

.cookie-consent__options {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.cookie-consent__options label {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(245,230,200,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 720;
}

.cookie-consent input {
  accent-color: var(--yellow);
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 16px;
}

.cookie-consent__actions button {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(245,230,200,.18);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-consent__actions button:last-child {
  border-color: transparent;
  background: var(--yellow);
  color: #070706;
}

.services {
  --service-accent: #d8a7c8;
  --service-progress: 0;
  --service-line-progress: 0;
  --service-card-shift: 0;
  position: relative;
  z-index: 2;
  height: 600svh;
  background: #11100e;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.services__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.services__media,
.service-slide,
.services__shade,
.services__mist {
  position: absolute;
  inset: 0;
}

.services__media {
  z-index: 0;
  background: #15110e;
}

.service-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.075);
  transition: opacity .9s ease, transform 1.25s ease;
}

.service-slide.is-active {
  opacity: 1;
  transform: scale(1.015);
}

.services__shade {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 40%, rgba(245,230,200,.20), rgba(245,230,200,0) 27%),
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.20) 42%, rgba(0,0,0,.42)),
    linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.04) 34%, rgba(0,0,0,.53));
}

.services__mist {
  z-index: 2;
  opacity: .72;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,9,9,.24) 0%, rgba(18,16,16,.12) 18%, rgba(218,219,209,.16) 43%, rgba(218,219,209,.12) 66%, rgba(16,14,14,.08) 100%),
    radial-gradient(ellipse at 55% 43%, rgba(230,230,220,.20), rgba(230,230,220,.08) 34%, rgba(230,230,220,0) 65%);
}

.services__topline {
  position: absolute;
  left: clamp(20px, 4vw, 72px);
  right: clamp(20px, 4vw, 72px);
  top: clamp(86px, 8svh, 104px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255,255,255,.86);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: clamp(10px, 1.35vw, 13px);
  font-weight: 700;
  line-height: 1;
}

.services__topline p {
  margin: 0;
}

.services__topline p:first-child {
  display: flex;
  align-items: center;
  gap: 16px;
}

.services__topline span {
  width: clamp(34px, 4vw, 58px);
  height: 1px;
  display: inline-block;
  background: var(--service-accent);
}

.services__copy {
  position: absolute;
  left: clamp(20px, 5.2vw, 86px);
  right: clamp(92px, 38vw, 680px);
  bottom: clamp(70px, 13svh, 138px);
  z-index: 3;
  max-width: 620px;
  color: #fff;
  transform: translateY(calc(var(--service-card-shift) * -30px));
  transition: transform .12s linear;
}

.services__statement {
  margin: 0 0 clamp(26px, 4.4svh, 42px);
  color: rgba(255,255,255,.94);
  font-size: clamp(25px, 2.35vw, 32px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-shadow: 0 5px 20px rgba(0,0,0,.44);
}

.services__card {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(25px, 2.6vw, 31px) clamp(30px, 3vw, 38px) clamp(27px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 8px;
  background: rgba(30,29,32,.13);
  box-shadow:
    0 20px 64px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(58px) saturate(2.16) contrast(1.13) brightness(1.06);
  -webkit-backdrop-filter: blur(58px) saturate(2.16) contrast(1.13) brightness(1.06);
}

.services__card::before,
.services__card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services__card::before {
  z-index: -2;
  background:
    linear-gradient(104deg, rgba(12,11,14,.34), rgba(49,48,54,.08) 48%, rgba(13,12,14,.22)),
    rgba(20,18,20,.04);
}

.services__card::after {
  z-index: -1;
  opacity: .39;
  background:
    radial-gradient(circle at 18% 84%, rgba(96,138,180,.24), rgba(96,138,180,0) 32%),
    radial-gradient(circle at 62% 20%, rgba(230,190,110,.20), rgba(230,190,110,0) 27%),
    radial-gradient(circle at 74% 70%, rgba(190,122,96,.16), rgba(190,122,96,0) 34%),
    linear-gradient(90deg, rgba(255,255,255,.09), rgba(255,255,255,0) 36%, rgba(255,255,255,.06));
  mix-blend-mode: soft-light;
}

.services__card > * {
  position: relative;
  z-index: 1;
}

.services__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.94);
  text-transform: uppercase;
  letter-spacing: .46em;
  font-size: clamp(9px, .72vw, 10px);
  font-weight: 600;
  line-height: 1;
}

.services__meta p,
.services__number {
  margin: 0;
}

.services__roman {
  color: var(--service-accent);
}

.services__label {
  white-space: nowrap;
}

.services__number {
  letter-spacing: .36em;
  white-space: nowrap;
}

.services__rule {
  width: 100%;
  height: 1px;
  margin: clamp(18px, 2svh, 21px) 0 clamp(17px, 2.2svh, 23px);
  background: rgba(255,255,255,.70);
}

.services__copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-shadow: 0 5px 18px rgba(0,0,0,.24);
}

.services__text {
  max-width: 560px;
  margin: clamp(14px, 1.8svh, 18px) 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: -.01em;
}

.services-nav {
  position: absolute;
  right: clamp(14px, 3.4vw, 66px);
  top: 50%;
  z-index: 4;
  display: grid;
  gap: clamp(18px, 4svh, 38px);
  transform: translateY(-50%);
}

.services-nav::before {
  content: none;
}

.services-nav::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 10px;
  z-index: 0;
  width: 1px;
  height: calc((100% - 20px) * var(--service-line-progress));
  background: var(--service-accent);
  box-shadow: 0 0 12px rgba(216,167,200,.52);
  transition: height .32s ease;
}

.services-nav button {
  position: relative;
  min-height: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255,255,255,.72);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: clamp(8px, .82vw, 10px);
  font-weight: 800;
  line-height: 1;
  transition: color .25s ease;
}

.services-nav button span {
  max-width: 170px;
  white-space: nowrap;
}

.services-nav button i {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  display: block;
  border: 1px solid rgba(216,167,200,.50);
  border-radius: 999px;
  background: #090807;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.services-nav button.is-active {
  color: rgba(255,255,255,.96);
}

.services-nav button.is-past i {
  border-color: var(--service-accent);
  background: var(--service-accent);
}

.services-nav button.is-active i {
  border-color: var(--service-accent);
  background: var(--service-accent);
  box-shadow:
    0 0 0 7px rgba(216,167,200,.18),
    0 0 18px rgba(216,167,200,.42);
  transform: scale(1);
}

@media (min-width: 720px) {
  .hero__header {
    display: block;
    height: 92px;
    padding: 0;
  }

  .logo,
  .contact,
  .hello,
  .language--header,
  .menu {
    position: absolute;
  }

  .logo {
    left: 38px;
    top: 26px;
    width: clamp(168px, 13vw, 230px);
  }

  .hello {
    left: auto;
    right: 94px;
    top: 31px;
    width: clamp(182px, 17.58vw, 224px);
  }

  .menu {
    right: 38px;
    top: 32px;
  }

  .language--header {
    display: none;
  }

  /*
  .hero__header {
    grid-template-columns: 160px minmax(190px, 1fr) minmax(190px, 1fr) minmax(260px, 334px) 44px;
    padding: 32px 38px 0;
    column-gap: clamp(34px, 5.9vw, 116px);
  }
  */

  .logo {
    width: clamp(168px, 13vw, 230px);
  }

  .hello {
    position: absolute;
    height: 46px;
    margin-top: 0;
    padding-left: 22px;
    padding-right: 8px;
    font-size: 16px;
  }

  .hello b {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }

  .hello b::before,
  .hello b::after {
    width: 38px;
    height: 38px;
    border: 4px solid rgba(37, 211, 102, 1);
    box-shadow:
      0 0 10px rgba(37, 211, 102, .70),
      0 0 24px rgba(37, 211, 102, .45);
  }

  .hello img {
    width: 31px;
    height: 31px;
  }

  .menu {
    width: 44px;
    height: 46px;
  }

  .menu span {
    width: 29px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(320px, .86fr) minmax(420px, 1.14fr);
    align-items: start;
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3.2vw, 54px);
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-consent {
    left: auto;
    right: 22px;
    bottom: 22px;
    place-items: end;
  }

  .cookie-consent__actions {
    grid-template-columns: .95fr 1fr 1fr;
  }

  .eyebrow {
    left: clamp(260px, 24.7vw, 470px);
    top: clamp(92px, calc(100svh - 560px), 370px);
    font-size: clamp(20px, min(1.55vw, 4.6svh), 28px);
    line-height: 1.30;
  }

  .hero-title {
    left: clamp(28px, 3vw, 58px);
    right: clamp(28px, 3vw, 58px);
    bottom: clamp(58px, 15.5svh, 178px);
  }

  .title-line--one {
    font-size: clamp(86px, min(9.2vw, 18.5svh), 176px);
    line-height: .86;
  }

  .title-line--two {
    margin-left: clamp(190px, 23.5vw, 340px);
    margin-top: clamp(18px, 5.1svh, 64px);
    font-size: clamp(56px, min(5.55vw, 13svh), 104px);
    line-height: .86;
  }

  .chat {
    right: 22px;
    bottom: 27px;
    min-width: 188px;
    height: 58px;
  }

  .decor {
    position: absolute;
    z-index: 2;
    display: block;
    pointer-events: none;
  }

  .decor--cross {
    left: 24.6vw;
    top: 25.0vh;
    width: 58px;
    height: 98px;
  }

  .decor--cross::before,
  .decor--cross::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, .42);
  }

  .decor--cross::before {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
  }

  .decor--cross::after {
    left: 0;
    top: 50%;
    width: 58px;
    height: 1px;
  }

  .decor--arrow {
    right: 23.3vw;
    top: 0;
    width: 112px;
    height: 40.5vh;
    border-left: 1px solid rgba(255, 255, 255, .24);
  }

  .decor--arrow::before {
    content: "";
    position: absolute;
    left: -104px;
    bottom: 0;
    width: 105px;
    height: 1px;
    background: rgba(255, 255, 255, .32);
  }

  .decor--arrow::after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: 0;
    width: 7px;
    height: 7px;
    border-right: 1px solid rgba(255, 255, 255, .34);
    border-bottom: 1px solid rgba(255, 255, 255, .34);
    transform: rotate(45deg);
  }

  .decor--bottom {
    left: 26.45vw;
    bottom: 0;
    width: 1px;
    height: 57px;
    background: rgba(255, 255, 255, .34);
  }

  .studio-teaser__inner {
    min-height: clamp(500px, 64svh, 690px);
    grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
    gap: clamp(28px, 4vw, 72px);
    padding: clamp(58px, 7vw, 98px) clamp(38px, 5vw, 76px);
  }

  .studio-teaser__media {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    transform: none;
  }

  .studio-teaser__content {
    grid-column: 1;
    grid-row: 1;
  }

  .studio-teaser h2 {
    font-size: clamp(62px, 6vw, 98px);
  }

  .studio-teaser__content > p:not(.studio-teaser__kicker) {
    font-size: clamp(16px, 1.25vw, 19px);
  }
}

@media (min-width: 720px) and (max-width: 1079px) {
  .hello {
    right: 88px;
    width: clamp(174px, 24vw, 198px);
  }

  .nav-menu {
    left: 0;
    right: 0;
    width: auto;
    padding: 34px 34px 42px;
  }

  .nav-menu a {
    font-size: clamp(20px, 3.8vw, 30px);
  }

  .services__topline {
    top: 110px;
    letter-spacing: .32em;
  }

  .services__copy {
    right: 132px;
    bottom: clamp(76px, 12svh, 118px);
  }

  .services__copy h2 {
    font-size: clamp(24px, 3.1vw, 30px);
  }
}

@media (min-width: 1080px) {
  .language--header {
    right: clamp(302px, 25vw, 344px);
    top: 33px;
    display: flex;
  }

  .language--nav {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hero__bg {
    object-position: 50% 50%;
  }
}

@media (min-width: 1600px) {
  .hero-title {
    bottom: clamp(60px, 15.5svh, 178px);
  }

  .title-line--one {
    font-size: clamp(102px, min(9.2vw, 18.5svh), 176px);
  }

  .title-line--two {
    margin-left: clamp(330px, 24.2vw, 460px);
    font-size: clamp(72px, min(6.55vw, 13svh), 126px);
  }
}

@media (max-width: 600px) {
  .faq-page__main {
    padding: 116px 18px 72px;
  }

  .faq-page__main::before {
    left: 18px;
    right: 18px;
    top: 84px;
  }

  .faq-hero {
    margin-bottom: 34px;
  }

  .faq-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: .94;
  }

  .faq-hero > p:not(.faq-kicker) {
    font-size: 15px;
    line-height: 1.62;
  }

  .faq-hero__cta {
    width: 100%;
  }

  .faq-item__question {
    min-height: 74px;
    grid-template-columns: 30px 1fr 36px;
    gap: 10px;
    padding: 18px 0;
  }

  .faq-item__question strong {
    font-size: clamp(20px, 6.2vw, 27px);
    line-height: 1.12;
  }

  .faq-item__question i {
    width: 36px;
    height: 36px;
  }

  .faq-item__answer p {
    margin: 0 4px 28px 40px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__header {
    padding: 30px 20px 0;
  }

  .logo {
    position: fixed;
    left: 20px;
    top: 21px;
    z-index: 1300;
    width: clamp(118px, 34vw, 136px);
  }

  .hello {
    position: fixed;
    left: auto;
    right: 74px;
    top: 25px;
    width: clamp(132px, 36vw, 154px);
    height: 36px;
    padding-left: 11px;
    padding-right: 4px;
    font-size: 12px;
    z-index: 1300;
  }

  .hello b {
    width: 25px;
    height: 25px;
  }

  .hello b::before,
  .hello b::after {
    width: 25px;
    height: 25px;
    border-width: 2px;
    box-shadow:
      0 0 7px rgba(37, 211, 102, .74),
      0 0 14px rgba(37, 211, 102, .46);
    animation-name: whatsapp-ring-mobile;
  }

  .hello img {
    width: 22px;
    height: 22px;
  }

  .hero__header .menu {
    display: none;
  }

  .chat {
    right: 14px;
    bottom: 14px;
    min-width: 162px;
    height: 54px;
    padding-left: 16px;
    padding-right: 9px;
  }

  .chat::after {
    right: 8px;
    width: 38px;
    height: 38px;
  }

  .chat svg {
    right: 16px;
    width: 22px;
    height: 22px;
  }

  .booking-launcher__text {
    max-width: 96px;
    font-size: 12px;
  }

  .chat-panel {
    left: 10px;
    right: 10px;
    bottom: 78px;
    width: auto;
    max-height: calc(100svh - 104px);
    padding: 18px;
  }

  .booking-day {
    grid-template-columns: 52px 1fr;
  }

  .booking-day__date {
    min-height: 52px;
  }

  .mobile-menu {
    position: fixed;
    right: 18px;
    top: 22px;
    z-index: 1310;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(245,230,200,.16);
    border-radius: 999px;
    background: rgba(12,10,9,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }

  .mobile-menu span {
    display: none;
  }

  .mobile-menu::before,
  .mobile-menu::after {
    content: "";
    position: absolute;
    left: 10px;
    width: 21px;
    height: 1px;
    background: rgba(255,255,255,.92);
    border-radius: 999px;
  }

  .mobile-menu::before {
    top: 15px;
  }

  .mobile-menu::after {
    top: 25px;
  }

  .hero__bg {
    width: 100%;
    height: 100%;
    transform: none;
    object-position: center center;
    filter: saturate(1.03) contrast(1.02);
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .30), rgba(0, 0, 0, .12)),
      linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .03) 45%, rgba(0, 0, 0, .34));
  }

  .eyebrow {
    left: 20px;
    right: 18px;
    top: clamp(176px, 37svh, 302px);
    font-size: clamp(16px, min(5vw, 4.4svh), 21px);
    line-height: 1.20;
  }

  .eyebrow em {
    margin-left: clamp(154px, 45vw, 220px);
  }

  .hero-title {
    left: 20px;
    right: 14px;
    bottom: clamp(160px, 22svh, 236px);
    letter-spacing: -.052em;
  }

  .title-line {
    white-space: nowrap;
  }

  .title-line--one {
    font-size: clamp(45px, min(15vw, 11.5svh), 66px);
    line-height: .9;
  }

  .title-line--two {
    max-width: none;
    margin-top: clamp(10px, 2.2svh, 22px);
    margin-left: clamp(58px, 17vw, 90px);
    font-size: clamp(34px, min(11.4vw, 8.8svh), 50px);
    line-height: .92;
  }

  .title-line--two em {
    display: block;
  }

  .cutout-word {
    display: block;
    width: min(72vw, 5.05em);
    margin-top: clamp(3px, .8svh, 8px);
    margin-left: clamp(86px, 25vw, 132px);
  }

  .chat {
    min-width: 162px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }

  .chat-panel {
    left: 14px;
    right: auto;
    top: 18px;
    bottom: auto;
    width: min(362px, calc(100vw - 28px));
    max-width: none;
    min-height: 575px;
  }

  .chat-close {
    position: relative;
  }

  .nav-menu {
    left: 0;
    right: auto;
    width: 100vw;
    padding: 28px 24px 36px;
  }

  .nav-kicker {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .nav-menu nav {
    padding-top: 16px;
  }

  .nav-menu a {
    grid-template-columns: 28px 1fr;
    gap: 11px;
    padding: 13px 0;
    font-size: clamp(20px, 6.9vw, 29px);
  }

  .nav-menu a::after {
    left: 39px;
  }

  .marquee-belt {
    height: 58px;
  }

  .marquee-belt__track {
    animation-duration: 22s;
  }

  .marquee-belt__group {
    gap: 24px;
    padding: 0 20px;
  }

  .studio-teaser__inner {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .studio-teaser__media {
    aspect-ratio: 1200 / 696;
    transform: none;
  }

  .studio-teaser__button {
    min-height: 44px;
    font-size: 13px;
  }

  .services {
    height: 500svh;
  }

  .services__topline {
    left: 20px;
    right: 20px;
    top: 92px;
    display: block;
    font-size: 10px;
    letter-spacing: .30em;
  }

  .services__topline p:last-child {
    display: none;
  }

  .services__topline p:first-child {
    gap: 12px;
  }

  .services__topline span {
    width: 34px;
  }

  .services__copy {
    left: 20px;
    right: 62px;
    bottom: clamp(86px, 13svh, 116px);
    max-width: none;
    transform: translateY(calc(var(--service-card-shift) * -18px));
  }

  .services__statement {
    margin-bottom: 20px;
    font-size: clamp(22px, 7vw, 29px);
  }

  .services__card {
    padding: 21px 18px 23px;
    border-radius: 8px;
    background: rgba(30,29,32,.14);
    backdrop-filter: blur(48px) saturate(2.0) contrast(1.11) brightness(1.05);
    -webkit-backdrop-filter: blur(48px) saturate(2.0) contrast(1.11) brightness(1.05);
  }

  .services__meta {
    gap: 12px;
    letter-spacing: .28em;
    font-size: 9px;
    font-weight: 600;
  }

  .services__number {
    letter-spacing: .22em;
  }

  .services__rule {
    margin: 15px 0 16px;
  }

  .services__copy h2 {
    max-width: 100%;
    font-size: clamp(21px, 5.8vw, 25px);
    line-height: 1.12;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
    font-weight: 650;
  }

  .services__text {
    max-width: 100%;
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.52;
    font-weight: 300;
  }

  .services-nav {
    right: 17px;
    gap: 23px;
  }

  .services-nav::before {
    right: 13px;
  }

  .services-nav::after {
    right: 13px;
  }

  .services-nav button {
    width: 26px;
    justify-content: center;
    gap: 0;
  }

  .services-nav button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .services-nav button.is-active {
    transform: none;
  }
}

@media (max-width: 399px) {
  .hello {
    right: 64px;
    width: 138px;
  }

  .mobile-menu {
    right: 14px;
  }
}

@media (max-width: 374px) {
  .logo {
    top: 25px;
    width: 108px;
  }

  .hello {
    right: 60px;
    width: 120px;
    font-size: 11px;
  }

  .mobile-menu {
    right: 12px;
  }
}

@media (min-width: 400px) and (max-width: 600px) {
  .hello {
    right: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hello b::before,
  .hello b::after,
  .hello img,
  .motif-a,
  .motif-b,
  .year-motif-a,
  .year-motif-b,
  .marquee-belt__track {
    animation: none;
  }
}
