/* ========== BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  --active-page-bg: #1A1124;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--color-primary);
}

body {
  font: var(--font-body-text);
  color: var(--color-primary);
  background: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@supports (padding: env(safe-area-inset-top)) {
  body {
    background-color: var(--color-primary);
  }

  body.is-scroll-locked {
    background-color: var(--color-primary);
  }
}

body.is-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

html:has(body.is-scroll-locked.is-mobile-landing-ready:not(.is-mobile-vertical)) {
  overflow: hidden;
  overscroll-behavior: none;
  height: 100%;
}

body.is-scroll-locked.is-mobile-landing-ready:not(.is-mobile-vertical) {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== STICKY HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  overflow: visible;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  background: rgba(26, 17, 36, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(26, 17, 36, 0.2);
}

body.is-about-immersive .site-header.is-visible {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.site-header__logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-top: -34px;
  margin-bottom: -20px;
}

.site-header__logo img {
  height: 112px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(26, 17, 36, 0.45));
}

.site-header__nav {
  display: flex;
  gap: 32px;
}

.site-header__nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-header__nav a:hover {
  color: var(--color-accent-light);
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== SECTIONS COMMON ========== */
.section {
  padding: var(--section-gap) 0;
}

.section--neutral {
  background: var(--color-neutral);
}

.section--warm {
  background: var(--color-warm);
}

.section--warm-alt {
  background: linear-gradient(135deg, var(--color-warm) 0%, #EDE6DF 100%);
}

.section--cool {
  background: var(--color-cool);
}

.section--cool-alt {
  background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 30%, var(--color-cool) 100%);
}

.section--dark {
  background: var(--color-primary);
  color: #fff;
}

.section--contacts {
  background: var(--color-primary);
  color: #fff;
  padding-bottom: 60px;
}

.section--contacts .section-eyebrow {
  margin-bottom: 14px;
}

.section--contacts .section-title {
  margin-bottom: 28px;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-eyebrow--light {
  color: var(--color-accent-light);
}

.section-title {
  font: var(--font-h2);
  color: var(--color-primary);
  margin-bottom: 20px;
}

.section-title--accent {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 42px;
}

.section-title--light {
  color: #fff;
}

.section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-secondary);
  max-width: 640px;
  margin-bottom: 48px;
}

.section-lead--narrow {
  margin-bottom: 40px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-button);
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 30, 115, 0.35);
}

.btn--light {
  background: #fff;
  color: var(--color-accent);
  box-shadow: var(--shadow-card);
}

.btn--light:hover {
  box-shadow: var(--shadow-modal);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn--outline-light:hover {
  border-color: #fff;
  box-shadow: none;
}

/* ========== ABOUT CARDS ========== */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-card {
  display: block;
  padding: 36px;
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
}

.about-card--warm {
  background: var(--gradient-card);
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.about-card--cool {
  background: linear-gradient(180deg, #fff 0%, var(--color-cool) 100%);
  border: 1px solid rgba(232, 30, 115, 0.12);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-modal);
}

.about-card__tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.about-card h3 {
  font: var(--font-h3);
  margin: 12px 0 8px;
}

.about-card p {
  color: var(--color-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
}

.about-card__link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
}

/* ========== TARIFF CARDS ========== */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tariff-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tariff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-modal);
}

.tariff-card--featured {
  border: 1px solid rgba(232, 30, 115, 0.2);
  background: var(--gradient-card);
}

.tariff-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient-cta);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-badge);
}

.tariff-card h3 {
  font: var(--font-h3);
  margin-bottom: 8px;
}

.tariff-card__desc {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.tariff-card__price {
  font-family: var(--font-accent);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 20px;
}

.tariff-card__price span:first-child {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-secondary);
  margin-right: 4px;
}

.tariff-card__price .currency {
  font-size: 28px;
}

.tariff-card__list {
  list-style: none;
  border-top: 1px solid rgba(26, 17, 36, 0.08);
  padding-top: 16px;
}

.tariff-card__list li {
  font-size: 14px;
  color: var(--color-secondary);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.tariff-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  transform: translateY(-50%);
}

/* ========== COFFEE MENU CAROUSEL ========== */
.section--menu {
  position: relative;
  padding-bottom: 48px;
}

.section--menu .menu-carousel__header {
  margin-bottom: 4px;
}

.menu-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}

.mobile-category-grid,
.mobile-category-pagination,
.mobile-category-sheet {
  display: none;
}

.menu-carousel__footer {
  position: relative;
  z-index: 1;
  margin-top: -36px;
  padding-top: 48px;
}

.menu-carousel__label {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
}

.menu-carousel__stage {
  position: relative;
  z-index: 2;
  height: clamp(480px, calc(100vh - 220px), 780px);
  perspective: 1600px;
  perspective-origin: 50% 42%;
  overflow: visible;
  clip-path: inset(-24px -8% -56px -8%);
  display: grid;
  grid-template-columns: minmax(32px, 1fr) minmax(0, 100%) minmax(32px, 1fr);
  align-items: stretch;
  touch-action: pan-y;
  padding-bottom: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

.menu-carousel__tap {
  position: relative;
  z-index: 6;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-carousel__tap--prev {
  grid-column: 1;
}

.menu-carousel__tap--next {
  grid-column: 3;
}

.menu-carousel__tap:disabled {
  cursor: default;
  pointer-events: none;
}

.menu-carousel__track {
  grid-column: 2;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.menu-carousel__stage.is-dragging .menu-carousel__track {
  cursor: grabbing;
}

.menu-carousel__stage.is-dragging .menu-carousel__card {
  transition: none;
}

.menu-carousel__card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(960px, 94vw);
  height: 100%;
  margin-left: calc(min(960px, 94vw) / -2);
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.8vw, 32px) clamp(20px, 3vw, 32px) clamp(18px, 2.5vw, 28px);
  border-radius: calc(var(--radius-card) + 6px);
  background: #fff;
  border: 1px solid rgba(26, 17, 36, 0.07);
  box-shadow: 0 24px 64px rgba(26, 17, 36, 0.14);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 0.55s cubic-bezier(0.22, 0.9, 0.28, 1),
    opacity 0.45s ease,
    box-shadow 0.45s ease;
  overflow: hidden;
}

.menu-carousel__card.is-active {
  box-shadow: var(--shadow-modal);
  z-index: 20;
}

.menu-carousel__card--signature {
  border-color: rgba(232, 30, 115, 0.22);
  background: var(--gradient-card);
}

.menu-carousel__card--tea {
  background: linear-gradient(180deg, #fff 0%, #f4fbf6 100%);
}

.menu-carousel__card--lemonade {
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
}

.menu-carousel__card--refreshers {
  background: linear-gradient(135deg, #f4fbf6 0%, #fff 42%, #fff8f0 100%);
}

.menu-carousel__badge {
  position: absolute;
  top: clamp(16px, 2.5vw, 24px);
  right: clamp(16px, 2.5vw, 24px);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient-cta);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-badge);
  z-index: 2;
}

.menu-carousel__head {
  flex-shrink: 0;
  margin-bottom: clamp(10px, 1.8vw, 16px);
  padding-right: 56px;
}

.menu-carousel__card--tea .menu-carousel__head,
.menu-carousel__card--lemonade .menu-carousel__head,
.menu-carousel__card--refreshers .menu-carousel__head,
.menu-carousel__card--classic .menu-carousel__head,
.menu-carousel__card--signature .menu-carousel__head {
  padding-right: 0;
}

.menu-carousel__category {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

.menu-carousel__subtype {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--color-accent);
}

.menu-carousel__body {
  flex: 1;
  min-height: 0;
  overflow: visible;
}

.menu-carousel__card--grid .menu-carousel__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  align-content: start;
}

.menu-carousel__card--grouped .menu-carousel__body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px 16px;
  align-content: start;
}

.menu-carousel__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.menu-carousel__group-title {
  margin: 0 0 2px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.menu-drink {
  padding: 0 2px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(26, 17, 36, 0.07);
}

.menu-carousel__card--grid .menu-drink {
  margin-bottom: 0;
  padding-bottom: 8px;
}

.menu-drink:last-child {
  margin-bottom: 0;
  padding-bottom: 2px;
  border-bottom: 0;
}

.menu-drink__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.menu-drink__name {
  margin: 0;
  padding-right: 4px;
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-primary);
  word-break: break-word;
}

.menu-drink__note {
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--color-secondary);
}

.menu-drink__kcal {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(26, 17, 36, 0.38);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-drink__desc {
  margin: 0 0 4px;
  font-size: clamp(11px, 1.35vw, 12px);
  line-height: 1.45;
  color: var(--color-secondary);
}

.menu-drink__compose {
  margin: 0;
  font-size: clamp(10px, 1.2vw, 11px);
  line-height: 1.4;
  color: rgba(26, 17, 36, 0.62);
}

.menu-drink__compose span {
  font-weight: 600;
  color: rgba(26, 17, 36, 0.78);
}

.menu-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 0 0;
}

.menu-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 17, 36, 0.16);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.menu-carousel__dot.is-active {
  width: 28px;
  background: var(--color-accent);
}

.menu-carousel__dot:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .menu-carousel__stage {
    height: clamp(380px, calc(100vh - 180px), 560px);
  }

  .menu-carousel__card {
    width: 92vw;
    margin-left: -46vw;
    padding: 16px 14px 14px;
  }

  .menu-carousel__card--grouped .menu-carousel__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-carousel__head {
    padding-right: 48px;
  }

  .menu-carousel__card--classic .menu-carousel__head,
  .menu-carousel__card--signature .menu-carousel__head,
  .menu-carousel__card--refreshers .menu-carousel__head {
    padding-right: 0;
  }
}

/* ========== STUDIO SERVICES MENU ========== */
.section--menu-studio {
  padding-bottom: 48px;
}

.menu-carousel__label--studio {
  color: var(--color-accent);
}

.menu-carousel--studio .menu-carousel__dot.is-active {
  background: var(--color-accent);
}

.menu-carousel__card--lashes {
  border-color: rgba(232, 30, 115, 0.18);
  background: linear-gradient(165deg, #fff 0%, #fdf8fb 100%);
}

.menu-carousel__card--manicure {
  border-color: rgba(232, 30, 115, 0.28);
  background: var(--gradient-card);
}

.menu-carousel__card--podology {
  border-color: rgba(26, 17, 36, 0.1);
  background: linear-gradient(165deg, #fff 0%, #f8f7fa 100%);
}

.menu-carousel__card--pedicure {
  border-color: rgba(139, 107, 158, 0.2);
  background: linear-gradient(165deg, #fff 0%, #faf8fc 100%);
}

.menu-carousel__card--brows {
  border-color: rgba(212, 165, 116, 0.28);
  background: linear-gradient(165deg, #fff 0%, #fdfaf6 100%);
}

.menu-carousel__card--permanent {
  border-color: rgba(92, 74, 102, 0.16);
  background: linear-gradient(165deg, #fff 0%, #f9f6fa 100%);
}

.menu-carousel__card--lashes .menu-carousel__category,
.menu-carousel__card--manicure .menu-carousel__category,
.menu-carousel__card--podology .menu-carousel__category,
.menu-carousel__card--pedicure .menu-carousel__category,
.menu-carousel__card--brows .menu-carousel__category,
.menu-carousel__card--permanent .menu-carousel__category {
  color: var(--color-primary);
}

.menu-carousel__card--scroll .menu-carousel__body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 10px 14px 6px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 30, 115, 0.28) transparent;
}

.menu-carousel__card--grouped.menu-carousel__card--scroll .menu-carousel__body {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 12px;
  align-content: start;
}

.menu-carousel__card--grid.menu-carousel__card--scroll .menu-carousel__body {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
}

.menu-carousel__card--scroll .menu-carousel__body::-webkit-scrollbar {
  width: 5px;
}

.menu-carousel__card--scroll .menu-carousel__body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(232, 30, 115, 0.28);
}

.menu-drink--service {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: calc(var(--radius-card) - 4px);
  padding: 10px 12px;
  margin: 0;
  box-sizing: border-box;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-drink--service:hover,
.menu-drink--service:focus-visible {
  background: rgba(232, 30, 115, 0.05);
  box-shadow: inset 0 0 0 1px rgba(232, 30, 115, 0.14);
}

.menu-drink--service:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.menu-drink__price {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: clamp(11px, 1.35vw, 13px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  white-space: nowrap;
}

.menu-drink__meta {
  margin: 0;
  font-size: clamp(10px, 1.2vw, 11px);
  line-height: 1.4;
  color: rgba(26, 17, 36, 0.62);
}

.menu-drink__meta span:first-child {
  font-weight: 600;
  color: rgba(26, 17, 36, 0.78);
}

.menu-drink__book {
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.menu-drink__book:hover,
.menu-drink__book:focus-visible {
  text-decoration: underline;
}

.section-cta--menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 24px;
}

@media (max-width: 600px) {
  .menu-carousel--studio .menu-carousel__stage {
    height: clamp(420px, calc(100vh - 160px), 620px);
  }
}

/* ========== STUDIO ABOUT (cinematic) ========== */
.section--about-studio {
  position: relative;
  padding: 0;
  min-height: var(--hero-vh, 100dvh);
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.about-studio__ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.about-studio__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
  opacity: 0.55;
  animation: aboutStudioOrb 16s ease-in-out infinite;
}

.about-studio__orb--pink {
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  top: 8%;
  left: -12%;
  background: rgba(232, 30, 115, 0.28);
}

.about-studio__orb--gold {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  right: -8%;
  bottom: 6%;
  background: rgba(212, 165, 116, 0.22);
  animation-delay: -6s;
}

@keyframes aboutStudioOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translate3d(18px, -24px, 0) scale(1.1);
    opacity: 0.78;
  }
}

.about-studio__stage {
  position: relative;
  z-index: 1;
  min-height: var(--hero-vh, 100dvh);
}

.about-studio__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-studio__video--ambient {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(22px) brightness(0.4) saturate(1.08);
  transform: scale(1.1);
}

.about-studio__backdrop-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 68% 50%, rgba(26, 17, 36, 0.15) 0%, rgba(26, 17, 36, 0.82) 72%),
    linear-gradient(90deg, rgba(26, 17, 36, 0.88) 0%, rgba(26, 17, 36, 0.45) 42%, rgba(26, 17, 36, 0.72) 100%),
    linear-gradient(180deg, rgba(26, 17, 36, 0.5) 0%, transparent 20%, transparent 80%, rgba(26, 17, 36, 0.55) 100%);
  pointer-events: none;
}

.about-studio__compose {
  position: relative;
  z-index: 2;
  min-height: var(--hero-vh, 100dvh);
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  align-items: stretch;
}

.about-studio__compose-film {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 30%;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(34px) saturate(1.06);
  -webkit-backdrop-filter: blur(34px) saturate(1.06);
  background:
    linear-gradient(
      90deg,
      rgba(26, 17, 36, 0) 0%,
      rgba(26, 17, 36, 0.18) 28%,
      rgba(26, 17, 36, 0.48) 52%,
      rgba(26, 17, 36, 0.62) 72%,
      rgba(26, 17, 36, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(26, 17, 36, 0.18) 0%,
      transparent 18%,
      transparent 82%,
      rgba(26, 17, 36, 0.2) 100%
    );
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.about-studio__hero {
  position: relative;
  grid-column: 1;
  min-height: var(--hero-vh, 100dvh);
  padding: 0;
  overflow: hidden;
}

.about-studio__video--hero {
  position: absolute;
  top: 0;
  right: 0;
  bottom: clamp(12px, 2vh, 24px);
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.07);
  transform-origin: left top;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 64%,
    rgba(0, 0, 0, 0.72) 78%,
    rgba(0, 0, 0, 0.28) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 64%,
    rgba(0, 0, 0, 0.72) 78%,
    rgba(0, 0, 0, 0.28) 92%,
    transparent 100%
  );
}

.about-studio__hero-feather {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, transparent 55%, rgba(26, 17, 36, 0.12) 75%, rgba(26, 17, 36, 0.35) 100%),
    linear-gradient(180deg, rgba(26, 17, 36, 0.16) 0%, transparent 14%, transparent 86%, rgba(26, 17, 36, 0.18) 100%);
}

.about-studio__hero-seam {
  display: none;
}

#studio-about:not(.is-animated) .about-studio__backdrop,
#studio-about:not(.is-animated) .about-studio__hero,
#studio-about:not(.is-animated) .about-studio__badge,
#studio-about:not(.is-animated) .about-studio__panel > * {
  opacity: 0;
}

@keyframes aboutStudioBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes aboutStudioHero {
  from {
    opacity: 0;
    transform: translate3d(-56px, 32px, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes aboutStudioFromRight {
  from {
    opacity: 0;
    transform: translate3d(64px, 40px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes aboutStudioBadge {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

#studio-about.is-animated .about-studio__backdrop {
  animation: aboutStudioBackdrop 1.3s ease both;
}

#studio-about.is-animated .about-studio__hero {
  animation: aboutStudioHero 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

#studio-about.is-animated .about-studio__badge {
  animation: aboutStudioBadge 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
}

#studio-about.is-animated .about-studio__intro,
#studio-about.is-animated .about-studio__panel > [data-reveal="from-right"] {
  animation: aboutStudioFromRight 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#studio-about.is-animated .about-studio__intro {
  animation-delay: 0.38s;
}

#studio-about.is-animated .about-studio__panel > :nth-child(2) { animation-delay: 0.5s; }
#studio-about.is-animated .about-studio__panel > :nth-child(3) { animation-delay: 0.62s; }
#studio-about.is-animated .about-studio__panel > :nth-child(4) { animation-delay: 0.74s; }
#studio-about.is-animated .about-studio__panel > :nth-child(5) { animation-delay: 0.86s; }
#studio-about.is-animated .about-studio__panel > :nth-child(6) { animation-delay: 0.98s; }
#studio-about.is-animated .about-studio__panel > :nth-child(7) { animation-delay: 1.1s; }

.about-studio__video {
  display: block;
}

.about-studio__sound {
  position: absolute;
  left: 16px;
  top: clamp(20px, 4vh, 40px);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(26, 17, 36, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.about-studio__sound:hover,
.about-studio__sound:focus-visible {
  transform: scale(1.06);
  background: rgba(26, 17, 36, 0.62);
  border-color: rgba(255, 255, 255, 0.32);
}

.about-studio__sound:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.about-studio__sound-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
}

.about-studio__sound-icon--off {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about-studio__sound-icon--on {
  display: none;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about-studio__sound.is-sound-on .about-studio__sound-icon--off {
  display: none;
}

.about-studio__sound.is-sound-on .about-studio__sound-icon--on {
  display: block;
}

.about-studio__badge {
  position: absolute;
  left: 16px;
  bottom: clamp(24px, 5vh, 48px);
  z-index: 4;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.about-studio__panel {
  grid-column: 2;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 1.8vh, 18px);
  min-height: var(--hero-vh, 100dvh);
  margin-left: clamp(-96px, -11vw, -48px);
  padding:
    clamp(32px, 5vh, 56px)
    clamp(24px, 4vw, 52px)
    clamp(36px, 5vh, 64px)
    0;
}

.about-studio__panel::before {
  display: none;
}

.about-studio__eyebrow {
  color: var(--color-accent-light);
}

.section--about-studio .section-eyebrow {
  color: var(--color-accent-light);
  font-size: 12px;
}

.about-studio__title {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.about-studio__lead {
  margin: 16px 0 0;
  max-width: 46ch;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.about-studio__glass {
  padding: clamp(18px, 2.2vw, 26px) clamp(20px, 2.6vw, 28px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(26, 17, 36, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.about-studio__glass--accent {
  border-color: rgba(232, 30, 115, 0.35);
  background: linear-gradient(135deg, rgba(232, 30, 115, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.about-studio__glass-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

.about-studio__glass p {
  margin: 0;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.about-studio__note {
  margin-top: 10px !important;
  font-size: clamp(13px, 1.3vw, 15px) !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.about-studio__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.about-studio__closing-text {
  margin: 0 0 12px;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.72);
}

.about-studio__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-studio__chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.about-studio__chip:hover,
.about-studio__chip:focus-visible {
  transform: translateY(-2px);
  background: rgba(232, 30, 115, 0.18);
  border-color: rgba(232, 30, 115, 0.42);
}

.about-studio__manifest {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.48;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.about-studio__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 960px) {
  .about-studio__stage {
    min-height: auto;
    height: auto;
  }

  .about-studio__compose {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-studio__hero {
    min-height: clamp(280px, 48vh, 440px);
    max-height: 50vh;
    padding: 0;
  }

  .about-studio__video--hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: none;
    -webkit-mask-image: linear-gradient(180deg, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 68%, transparent 100%);
  }

  .about-studio__compose-film {
    display: none;
  }

  .about-studio__hero-feather {
    background:
      linear-gradient(0deg, rgba(26, 17, 36, 0.94) 0%, transparent 48%),
      linear-gradient(180deg, rgba(26, 17, 36, 0.35) 0%, transparent 30%);
  }

  .about-studio__video--ambient {
    filter: blur(16px) brightness(0.35);
  }

  .about-studio__badge {
    left: 16px;
    bottom: 16px;
  }

  .about-studio__sound {
    left: 16px;
    top: 16px;
  }

  .about-studio__panel {
    grid-column: 1;
    min-height: auto;
    margin-left: 0;
    padding: 32px 20px 48px;
  }

  .about-studio__lead {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-studio__orb {
    animation: none;
    opacity: 0.45;
  }

  #studio-about:not(.is-animated) .about-studio__backdrop,
  #studio-about:not(.is-animated) .about-studio__hero,
  #studio-about:not(.is-animated) .about-studio__badge,
  #studio-about:not(.is-animated) .about-studio__panel > * {
    opacity: 1;
  }

  #studio-about.is-animated .about-studio__backdrop,
  #studio-about.is-animated .about-studio__hero,
  #studio-about.is-animated .about-studio__badge,
  #studio-about.is-animated .about-studio__intro,
  #studio-about.is-animated .about-studio__panel > [data-reveal="from-right"] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Mobile hero → about: keep the video, frost it, then resolve to the next slide. */
@media (max-width: 992px) {
  body.is-mobile-vertical.is-hero-about-blending .hero-screen {
    overflow: visible;
  }

  body.is-mobile-vertical.is-hero-about-blending .hero-screen .ml-scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  body.is-mobile-vertical.is-hero-about-blending .hero-screen .hero-logo-layer {
    position: fixed;
    inset: 0;
    z-index: 1;
    scale: 1;
    opacity: max(0, calc(1 - var(--hero-about-progress, 0) * 1.08));
    filter: blur(calc(var(--hero-about-progress, 0) * 36px));
    pointer-events: none;
    will-change: filter, opacity;
  }

  body.is-mobile-vertical.is-hero-about-blending .hero-screen .ml-scene::before,
  body.is-mobile-vertical.is-hero-about-blending .hero-screen .ml-scene::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  body.is-mobile-vertical.is-hero-about-blending .hero-screen .ml-scene::before {
    z-index: 30;
    background: rgba(14, 8, 18, 0.38);
    opacity: var(--hero-about-progress, 0);
  }

  body.is-mobile-vertical.is-hero-about-blending .hero-screen .ml-scene::after {
    display: none;
  }

  body.is-mobile-vertical.is-hero-about-blending .hero-screen .panel-video,
  body.is-mobile-vertical.is-hero-about-blending .hero-screen .panel-bg {
    filter: blur(calc(var(--hero-about-progress, 0) * 28px)) saturate(0.88);
  }

  body.is-mobile-vertical.is-hero-about-blending #about {
    position: relative;
    z-index: 2;
    background: transparent;
  }

  body.is-mobile-vertical.is-hero-about-blending #about > .container {
    position: relative;
    z-index: 1;
    opacity: clamp(
      0,
      calc((var(--hero-about-progress, 0) - 0.1) * 1.35),
      1
    );
    translate: 0 calc((1 - var(--hero-about-progress, 0)) * 56px);
  }

  body.is-mobile-vertical.has-mobile-page-motion.is-hero-about-blending .hero-screen .hero-logo-layer {
    scale: 1;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-mobile-vertical.is-hero-about-blending .hero-screen .ml-scene::before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.is-mobile-vertical.is-hero-about-blending .hero-screen .hero-logo-layer {
    filter: none;
  }
}

/* ========== CLUB CARD ========== */
.club-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-modal);
  overflow: hidden;
  box-shadow: var(--shadow-modal);
}

.club-card--reverse {
  direction: rtl;
}

.club-card--reverse > * {
  direction: ltr;
}

.club-card__content {
  padding: 48px 40px;
  background: var(--gradient-cta);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.club-card__content--dark {
  background: var(--color-primary);
}

.club-card__text {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
  opacity: 0.92;
}

.club-card__perk-line {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
  padding-left: 18px;
  position: relative;
  opacity: 0.95;
}

.club-card__perk-line::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 10px;
  top: 4px;
}

.club-wallet__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 10px;
}

.club-wallet__hint {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.88;
  margin-bottom: 16px;
  max-width: 28ch;
}

.club-wallet__reset {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.club-wallet__reset:hover {
  color: #fff;
}

.club-promo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.club-stamps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 14px;
  width: min(100%, 320px);
  padding: 24px 20px;
}

.club-stamps__brand {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.club-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.club-stamp.is-next {
  cursor: pointer;
}

.club-stamp.is-next:hover .club-stamp__circle {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}

.club-stamp__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.club-stamp.is-locked .club-stamp__circle {
  opacity: 0.35;
}

.club-stamp.is-next .club-stamp__circle {
  border-style: solid;
  border-color: rgba(212, 165, 116, 0.85);
  animation: club-stamp-pulse 2.2s ease-in-out infinite;
}

.club-stamp.is-done .club-stamp__circle {
  border-style: solid;
  border-color: var(--color-gold);
  background: linear-gradient(145deg, rgba(212, 165, 116, 0.95) 0%, rgba(139, 105, 20, 0.88) 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.club-stamp__num {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.club-stamp__check {
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1124' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.club-stamp__reward {
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  max-width: 92px;
}

.club-stamp.is-done .club-stamp__reward {
  color: var(--color-gold);
  font-weight: 600;
}

@keyframes club-stamp-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========== CLUB MODAL ========== */
.club-modal {
  position: fixed;
  inset: 0;
  z-index: 310;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.club-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.club-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 11, 24, 0.72);
  backdrop-filter: blur(8px);
}

.club-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-modal);
  box-shadow: var(--shadow-modal);
  padding: 32px 28px 28px;
}

.club-modal__dialog--compact {
  width: min(380px, 100%);
  text-align: center;
}

.club-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 17, 36, 0.06);
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.club-modal__close:hover {
  background: rgba(232, 30, 115, 0.1);
}

.club-modal__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.club-modal__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.club-modal__lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-secondary);
  margin-bottom: 22px;
}

.club-confirm__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A574' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a4 4 0 0 1 4 4v1h1a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3v-8a3 3 0 0 1 3-3h1V6a4 4 0 0 1 4-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.club-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.club-form__field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.club-form__field input,
.club-form__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(26, 17, 36, 0.12);
  border-radius: var(--radius-button);
  font: 400 15px/1.4 var(--font-body);
  color: var(--color-primary);
  background: #fff;
}

.club-form__field input:focus,
.club-form__field select:focus {
  outline: 2px solid rgba(232, 30, 115, 0.25);
  border-color: var(--color-accent);
}

.club-form__field input.is-shake {
  animation: club-shake 0.45s ease;
  border-color: var(--color-error);
}

.club-form__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
}

.club-form__error {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--color-error);
}

.club-form__submit {
  width: 100%;
  margin-top: 4px;
}

.club-modal__dialog--compact .club-form__submit {
  background: var(--gradient-cta);
  color: #fff;
}

@keyframes club-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.club-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 320;
  max-width: min(90vw, 360px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(26, 17, 36, 0.92);
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 12px 32px rgba(26, 17, 36, 0.28);
  backdrop-filter: blur(8px);
}

.club-card__text--muted {
  color: rgba(255, 255, 255, 0.75);
}

.club-card__perks {
  list-style: none;
  margin-bottom: 32px;
}

.club-card__perks li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.club-card__perks li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 10px;
}

.club-card__perks--dark li::before {
  color: var(--color-accent-light);
}

.club-card__visual {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.club-card__visual--coffee {
  background:
    linear-gradient(135deg, rgba(26, 17, 36, 0.5) 0%, rgba(26, 17, 36, 0.2) 100%),
    radial-gradient(ellipse at 30% 70%, #8B6914 0%, #3D2B1F 50%, #1A1124 100%);
}

.club-card__visual--studio {
  background:
    linear-gradient(135deg, rgba(232, 30, 115, 0.3) 0%, rgba(26, 17, 36, 0.6) 100%),
    radial-gradient(ellipse at 70% 30%, #F06292 0%, #4A3142 50%, #1A1124 100%);
}

.club-card__chip {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 165, 116, 0.5);
  padding: 20px 32px;
  border-radius: var(--radius-card);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
}

/* ========== GALLERY ========== */
.works-gallery {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 1040px;
  margin: 0 auto;
}

.works-group__header {
  margin-bottom: 22px;
}

.works-group__palette {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.works-group__swatch {
  width: 36px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(26, 17, 36, 0.08);
}

.works-group__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.works-group__subtitle {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.5;
}

.works-group__grid {
  display: grid;
  gap: 22px;
}

.works-group__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.works-group__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 700px;
}

.works-group--red .works-group__grid--2 {
  margin-left: auto;
  margin-right: auto;
}

.works-group--red .gallery__visual {
  aspect-ratio: 4 / 5.2;
}

.works-group--lashes .works-group__title { color: #8b3f67; }
.works-group--manicure .works-group__title { color: var(--color-accent); }
.works-group--podology .works-group__title { color: #4a5568; }
.works-group--pedicure .works-group__title { color: #6b4f82; }
.works-group--brows .works-group__title { color: #9a6b3f; }
.works-group--permanent .works-group__title { color: #5c4a66; }

.gallery__item--placeholder {
  cursor: default;
  pointer-events: none;
}

.gallery__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(247, 244, 241, 0.95) 0%, rgba(252, 248, 251, 0.98) 48%, rgba(240, 232, 238, 0.92) 100%);
}

.gallery__placeholder-mark {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(232, 30, 115, 0.22);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, transparent 72%);
}

.gallery__placeholder-label {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26, 17, 36, 0.72);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.works-gallery.is-ready .gallery__item--placeholder {
  animation: works-placeholder-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--placeholder-delay, 0s);
}

@keyframes works-placeholder-in {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.gallery {
  display: contents;
}

.gallery__item {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.gallery__visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(26, 17, 36, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.gallery__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(26, 17, 36, 0.05) 0%, rgba(26, 17, 36, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery__view {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  background: rgba(26, 17, 36, 0.35);
}

.gallery__item:hover .gallery__visual,
.gallery__item:focus-visible .gallery__visual {
  transform: translateY(-4px);
  box-shadow: var(--shadow-modal);
}

.gallery__item:hover .gallery__visual img,
.gallery__item:focus-visible .gallery__visual img {
  transform: scale(1.04);
}

.gallery__item:hover .gallery__overlay,
.gallery__item:focus-visible .gallery__overlay {
  opacity: 1;
}

.gallery__meta {
  display: block;
  margin-top: 14px;
}

.gallery__tag {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.gallery__title {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ========== WORK MODAL ========== */
body.is-modal-open {
  overflow: hidden;
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.work-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.work-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 11, 24, 0.72);
  backdrop-filter: blur(8px);
}

.work-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--color-neutral);
  border-radius: var(--radius-modal);
  box-shadow: var(--shadow-modal);
  padding: 28px;
}

.work-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 17, 36, 0.06);
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.work-modal.is-open .work-modal__close {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top, 0px));
  right: calc(12px + env(safe-area-inset-right, 0px));
  z-index: 302;
  background: #fff;
  box-shadow: 0 4px 16px rgba(26, 17, 36, 0.18);
}

.work-modal__close:hover {
  background: rgba(232, 30, 115, 0.12);
  transform: scale(1.05);
}

.work-modal__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.work-modal__image-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-primary);
  cursor: crosshair;
}

.work-modal__image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.work-modal__zoom-hint {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-secondary);
  text-align: center;
}

.work-modal__tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.work-modal__title {
  font: var(--font-h2);
  color: var(--color-primary);
  margin-bottom: 14px;
}

.work-modal__description {
  color: var(--color-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.work-modal__details {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid rgba(26, 17, 36, 0.06);
}

.work-modal__details li {
  font-size: 12px;
  color: var(--color-secondary);
  position: relative;
  padding-left: 14px;
}

.work-modal__details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
}

.work-modal__master {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-card);
  background: #fff;
  border: 1px solid rgba(26, 17, 36, 0.06);
  box-shadow: var(--shadow-card);
}

.work-modal__master-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(232, 30, 115, 0.18);
  box-shadow: 0 4px 16px rgba(26, 17, 36, 0.1);
}

.work-modal__master-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.work-modal__master-role {
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.work-modal__master-comment {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-secondary);
  font-style: italic;
}

.work-modal__booking {
  font-size: 12px;
  padding: 12px 22px;
}

.work-modal__lens {
  position: fixed;
  z-index: 400;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(26, 17, 36, 0.28);
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  background-color: #fff;
  transition: opacity 0.18s ease;
}

.work-modal__lens img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 900px) {
  .work-modal__layout {
    grid-template-columns: 1fr;
  }

  .work-modal__zoom-hint {
    display: none;
  }
}

@media (max-width: 600px) {
  .work-modal {
    padding: 12px;
  }

  .work-modal__dialog {
    padding: 20px 18px;
  }

  .work-modal__details {
    grid-template-columns: 1fr;
  }

  .work-modal__master {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ========== ABOUT SPLIT ========== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-split__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.about-split__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__photo--studio {
  margin-top: 32px;
}

.about-split__photo--studio::after,
.about-split__photo--coffee::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(26, 17, 36, 0.04) 0%, rgba(26, 17, 36, 0.22) 100%);
}

.about-split__photo--studio::after {
  background: linear-gradient(180deg, rgba(232, 30, 115, 0.08) 0%, rgba(26, 17, 36, 0.2) 100%);
}

.about-split__photo--coffee::after {
  background: linear-gradient(180deg, rgba(212, 165, 116, 0.12) 0%, rgba(26, 17, 36, 0.18) 100%);
}

.about-split__text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 165, 116, 0.25);
}

.about-stat__num {
  display: block;
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
}

.about-stat__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  display: block;
  max-width: 100px;
  line-height: 1.4;
}

/* ========== CONTACTS ========== */
.contacts-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vh, 36px);
  width: 100%;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contacts-block {
  margin-bottom: 22px;
}

.contacts-block h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.contacts-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contacts-block a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contacts-block a:hover {
  color: var(--color-accent-light);
}

.contacts-social {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.social-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-light);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.social-link:hover {
  color: #fff;
}

.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.contacts-map {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border-radius: var(--radius-modal);
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.2);
  background: rgba(26, 17, 36, 0.45);
}

.contacts-map__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 280px;
  height: auto;
  background: #ddd6cf;
}

.contacts-map__static,
.contacts-map__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.contacts-map__frame {
  position: absolute;
  inset: 0;
}

.contacts-map__frame[hidden] {
  display: none;
}

.contacts-map__route {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c41862 100%);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contacts-map__route:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px rgba(232, 30, 115, 0.28);
}

.contacts-map__route:disabled {
  opacity: 0.72;
  cursor: wait;
}

.contacts-social-feed {
  text-align: left;
}

.contacts-social-feed__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.social-windows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.social-window {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.social-window__frame {
  position: relative;
  aspect-ratio: 9 / 14;
  max-height: min(400px, 36vh);
  border-radius: calc(var(--radius-card) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 30, 115, 0.22), transparent 46%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(26, 17, 36, 0.55));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.social-window__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0d0a12;
}

.social-window__iframe[hidden] {
  display: none;
}

.social-window__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.social-window__fallback[hidden] {
  display: none;
}

.social-window__fallback-text {
  margin: 0;
  max-width: 18ch;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.social-window__fallback-btn {
  padding: 12px 20px;
}

.social-window__caption {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  text-decoration: none;
  width: fit-content;
}

.social-window__caption:hover,
.social-window__caption:focus-visible {
  color: #fff;
  outline: none;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #110B18;
  padding: 32px 0;
  border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

.site-footer__logo img {
  height: 92px;
  width: auto;
  opacity: 0.95;
  display: block;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__nav {
  display: flex;
  gap: 24px;
}

.site-footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__nav a:hover {
  color: var(--color-accent-light);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .tariff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split,
  .contacts-grid,
  .club-card {
    grid-template-columns: 1fr;
  }

  .club-card--reverse {
    direction: ltr;
  }

  .club-card__visual {
    min-height: 200px;
  }

  .club-stamps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 10px;
    padding: 20px 16px;
  }

  .club-stamp__circle {
    width: 48px;
    height: 48px;
  }

  .club-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 93.75%;
  }

  .section {
    padding: 52px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-title--accent {
    font-size: 30px;
  }

  .menu-carousel__track {
    touch-action: pan-y;
  }

  .menu-carousel__stage {
    height: clamp(400px, calc(100vh - 190px), 620px);
  }

  .menu-carousel__card {
    width: 92vw;
    margin-left: -46vw;
    padding: 16px 14px 14px;
  }

  .menu-carousel__card--grouped .menu-carousel__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-carousel__group-title {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .menu-drink__name {
    font-size: 12px;
  }

  .menu-drink__kcal {
    font-size: 9px;
  }

  .menu-drink__desc {
    font-size: 10px;
    line-height: 1.35;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .menu-drink__compose {
    font-size: 9px;
    line-height: 1.35;
  }

  #coffee-club-card {
    display: flex;
    flex-direction: column;
  }

  #coffee-club-card .club-card__visual {
    order: -1;
    min-height: 180px;
    padding: 20px 16px;
  }

  #coffee-club-card .club-card__content {
    padding: 32px 24px;
  }

  #coffee-club-card .club-promo-visual {
    min-height: 140px;
  }

  #coffee-club-card .club-stamps {
    width: min(100%, 260px);
    margin: 0 auto;
    padding: 12px 8px;
    gap: 12px 10px;
  }

  #coffee-club-card .club-stamp__circle {
    width: 44px;
    height: 44px;
  }

  #coffee-club-card .club-stamp__reward {
    font-size: 9px;
  }

  #coffee-club-card .club-card__chip {
    font-size: 15px;
    padding: 16px 24px;
  }

  .about-split {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .about-split__text {
    order: 1;
  }

  .about-split__visual {
    order: 2;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .about-split__photo {
    aspect-ratio: 4 / 3;
  }

  .about-split__photo--studio {
    margin-top: 0;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-top: 24px;
    padding-top: 24px;
  }

  .about-stat:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .about-stat__num {
    font-size: 28px;
  }

  .about-stat__label {
    max-width: none;
    font-size: 11px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contacts-map {
    min-height: 0;
  }

  .contacts-map__viewport {
    min-height: clamp(220px, 42vw, 300px);
    height: clamp(220px, 42vw, 300px);
  }

  .social-windows {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-window {
    width: 100%;
    max-width: 320px;
  }

  .social-window__frame {
    max-height: min(460px, 58vh);
  }

  .about-cards,
  .tariff-grid,
  .works-group__grid--3,
  .works-group__grid--2 {
    grid-template-columns: 1fr;
  }

  .works-group__grid--2 {
    max-width: 420px;
  }

  .works-gallery {
    gap: 40px;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(26, 17, 36, 0.98);
    padding: 16px 32px 24px;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header__burger {
    display: flex;
  }

  .site-header__logo {
    margin-top: -22px;
    margin-bottom: -12px;
    /* Shift mark left so the cat nose sits more naturally in the header */
    margin-left: -10px;
    transform: translateX(-6px);
  }

  .site-header__logo img {
    height: 92px;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__brand {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .site-footer__logo img {
    height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========== MOBILE LANDING — vertical snap ========== */
@media (max-width: 992px) {
  html:has(body.is-mobile-vertical),
  html:has(body.is-mobile-vertical.is-page-paging),
  html:has(body.is-mobile-vertical.is-page-dragging) {
    scroll-behavior: auto;
  }

  body.is-mobile-vertical {
    --mobile-gutter: max(16px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
    overflow-x: hidden;
    overscroll-behavior-y: none;
    touch-action: pan-y;
    background: var(--color-primary);
  }

  body.is-mobile-vertical {
    --mobile-shell-bg:
      radial-gradient(circle at top, rgba(247, 200, 217, 0.14), transparent 24%),
      linear-gradient(180deg, #f8f3ef 0%, #f6efe9 24%, #f4eef4 58%, #f7f4f1 100%);
    background: var(--mobile-shell-bg);
  }

  html:has(body.is-mobile-vertical) {
    /* JS pager owns alignment — CSS snap fights upward focus */
    scroll-snap-type: none;
    overscroll-behavior-y: none;
    background: var(--mobile-shell-bg);
  }

  html:has(body.is-mobile-vertical.is-page-paging) {
    scroll-snap-type: none;
  }

  body.is-mobile-vertical .page-screen {
    min-height: auto;
    height: auto;
    max-height: none;
    box-sizing: border-box;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
  }

  body.is-mobile-vertical .page-screen > .container,
  body.is-mobile-vertical .page-screen > .page-screen__inner {
    transition:
      transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.34s ease;
  }

  body.is-mobile-vertical.is-page-paging .page-screen:not(.is-page-active) > .container,
  body.is-mobile-vertical.is-page-paging .page-screen:not(.is-page-active) > .page-screen__inner {
    transform: translate3d(0, 18px, 0);
    opacity: 0.72;
  }

  body.is-mobile-vertical.is-page-dragging .page-screen > .container,
  body.is-mobile-vertical.is-page-dragging .page-screen > .page-screen__inner {
    transition: none;
  }

  body.is-mobile-vertical .hero-screen.page-screen {
    display: block;
    justify-content: initial;
    position: relative;
    width: 100%;
    min-height: 100lvh;
    min-height: var(--app-height, 100lvh);
    height: 100lvh;
    height: var(--app-height, 100lvh);
    max-height: 100lvh;
    max-height: var(--app-height, 100lvh);
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--color-primary);
  }

  /* About: fixed viewport, sticky video, text scrolls over video */
  body.is-mobile-vertical #studio-about.page-screen {
    display: block;
    justify-content: initial;
    padding: 0;
    min-height: 100lvh;
    min-height: var(--app-height, 100lvh);
    height: 100lvh;
    height: var(--app-height, 100lvh);
    max-height: 100lvh;
    max-height: var(--app-height, 100lvh);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    background: #0a0610;
  }

  body.is-mobile-vertical #studio-about .about-studio__ambient,
  body.is-mobile-vertical #studio-about .about-studio__backdrop,
  body.is-mobile-vertical #studio-about .about-studio__compose-film {
    display: none;
  }

  body.is-mobile-vertical #studio-about .about-studio__stage,
  body.is-mobile-vertical #studio-about .about-studio__compose {
    position: relative;
    min-height: 100%;
    height: auto;
    display: block;
  }

  body.is-mobile-vertical #studio-about .about-studio__compose {
    grid-template-columns: 1fr;
  }

  body.is-mobile-vertical #studio-about .about-studio__hero {
    position: sticky;
    top: 0;
    z-index: 1;
    grid-column: 1;
    min-height: 100lvh;
    min-height: var(--app-height, 100lvh);
    height: 100lvh;
    height: var(--app-height, 100lvh);
    max-height: none;
    background: transparent;
    overflow: hidden;
  }

  body.is-mobile-vertical #studio-about .about-studio__video--hero {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: translate3d(0, 72%, 0) scale(0.94);
    transform-origin: center bottom;
    filter: none;
    transition:
      transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.55s ease,
      height 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.75s ease,
      border-radius 0.55s ease;
    -webkit-mask-image: none;
    mask-image: none;
  }

  body.is-mobile-vertical #studio-about.is-about-phase-hold .about-studio__video--hero {
    opacity: 0;
    transform: translate3d(0, 100%, 0) scale(0.92);
  }

  body.is-mobile-vertical #studio-about.is-about-phase-rise .about-studio__video--hero {
    opacity: 1;
    height: 58%;
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.28);
  }

  body.is-mobile-vertical #studio-about.is-about-phase-full .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-sound .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-copy .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-peek .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-blur .about-studio__video--hero {
    opacity: 1;
    height: 100%;
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 0;
    box-shadow: none;
  }

  body.is-mobile-vertical #studio-about.is-about-phase-blur .about-studio__video--hero {
    filter: blur(10px) brightness(0.72);
    transform: translate3d(0, 0, 0) scale(1.04);
  }

  body.is-mobile-vertical #studio-about .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-hold .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-rise .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-full .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-sound .about-studio__panel {
    position: relative;
    z-index: 3;
    grid-column: 1;
    min-height: 0;
    max-height: none;
    margin: -46svh 0 0;
    padding: 20px 18px calc(36px + env(safe-area-inset-bottom, 0px));
    gap: 12px;
    overflow: visible;
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.is-mobile-vertical #studio-about.is-about-phase-copy .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-peek .about-studio__panel {
    opacity: 1;
    transform: translateY(0);
  }

  body.is-mobile-vertical #studio-about .about-studio__panel > * {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px 14px;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.is-mobile-vertical #studio-about .about-studio__title {
    font-size: clamp(26px, 7vw, 34px);
    color: #fff;
  }

  body.is-mobile-vertical #studio-about .about-studio__lead {
    max-width: none;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
  }

  body.is-mobile-vertical #studio-about .about-studio__glass-title,
  body.is-mobile-vertical #studio-about .about-studio__glass p,
  body.is-mobile-vertical #studio-about .about-studio__note,
  body.is-mobile-vertical #studio-about .about-studio__list,
  body.is-mobile-vertical #studio-about .about-studio__closing-text,
  body.is-mobile-vertical #studio-about .about-studio__manifest {
    color: rgba(255, 255, 255, 0.94);
  }

  body.is-mobile-vertical #studio-about .about-studio__chip {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
  }

  body.is-mobile-vertical #studio-about .about-studio__sound {
    left: 16px;
    top: calc(16px + env(safe-area-inset-top, 0px));
    z-index: 5;
    opacity: 0;
    transform: translateY(-8px) scale(0.92);
    pointer-events: none;
    transition:
      opacity 0.45s ease,
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.is-mobile-vertical #studio-about.is-about-phase-sound .about-studio__sound,
  body.is-mobile-vertical #studio-about.is-about-phase-copy .about-studio__sound,
  body.is-mobile-vertical #studio-about.is-about-phase-peek .about-studio__sound,
  body.is-mobile-vertical #studio-about.is-about-phase-blur .about-studio__sound {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  body.is-mobile-vertical #studio-about .about-studio__badge {
    left: 16px;
    bottom: 16px;
    z-index: 5;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  body.is-mobile-vertical #studio-about.is-about-phase-copy .about-studio__badge,
  body.is-mobile-vertical #studio-about.is-about-phase-peek .about-studio__badge,
  body.is-mobile-vertical #studio-about.is-about-phase-blur .about-studio__badge {
    opacity: 0;
    transform: translateY(8px);
  }

  body.is-mobile-vertical #studio-about .about-studio__hero-feather,
  body.is-mobile-vertical #studio-about .about-studio__hero-seam {
    display: none;
  }

  body.is-mobile-vertical #studio-about.is-animated .about-studio__backdrop,
  body.is-mobile-vertical #studio-about.is-animated .about-studio__hero,
  body.is-mobile-vertical #studio-about.is-animated .about-studio__badge,
  body.is-mobile-vertical #studio-about.is-animated .about-studio__intro,
  body.is-mobile-vertical #studio-about.is-animated .about-studio__panel > [data-reveal="from-right"] {
    animation: none !important;
  }

  /* Kill desktop entrance opacity:0 while waiting for mobile phases */
  body.is-mobile-vertical #studio-about:not(.is-animated) .about-studio__hero,
  body.is-mobile-vertical #studio-about:not(.is-animated) .about-studio__badge,
  body.is-mobile-vertical #studio-about:not(.is-animated) .about-studio__panel > * {
    opacity: 1;
  }

  body.is-mobile-vertical #studio-about:not(.is-animated) .about-studio__panel {
    opacity: 0;
  }

  body.is-mobile-vertical .page-screen--contacts,
  body.is-mobile-vertical #contacts.page-screen {
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: visible;
    scroll-snap-align: none;
    justify-content: flex-start;
  }

  /* Fill / center screens are real full-viewport slides — without this they
     collapse to their content height and the next screen bleeds into view. */
  body.is-mobile-vertical .page-screen.page-screen--fill,
  body.is-mobile-vertical .page-screen.page-screen--center {
    min-height: 100lvh;
    min-height: var(--app-height, 100lvh);
    height: 100lvh;
    height: var(--app-height, 100lvh);
    max-height: 100lvh;
    max-height: var(--app-height, 100lvh);
    overflow: hidden;
  }

  body.is-mobile-vertical .page-screen--fill .page-screen__inner,
  body.is-mobile-vertical .page-screen--center .page-screen__inner,
  body.is-mobile-vertical .page-screen--fill > .container,
  body.is-mobile-vertical .page-screen--center > .container {
    height: auto;
    max-height: 100%;
    min-height: 0;
    width: 100%;
  }

  /* Center screens (Coffee Club card): vertically center within the screen */
  body.is-mobile-vertical .page-screen--center .page-screen__inner,
  body.is-mobile-vertical .page-screen--center > .container {
    margin-top: auto;
    margin-bottom: auto;
  }

  /* Fill screens (menus, works): stay top-anchored under the header, never centered */
  body.is-mobile-vertical .page-screen--fill .page-screen__inner,
  body.is-mobile-vertical .page-screen--fill > .container {
    margin-top: 0;
    margin-bottom: 0;
  }

  /* Continuum chrome unused in vertical mode */
  body.is-mobile-vertical .ml-overlay,
  body.is-mobile-vertical .ml-curtain,
  body.is-mobile-vertical .ml-layer--about,
  body.is-mobile-vertical .ml-swipe-surface,
  body.is-mobile-vertical .ml-pager,
  body.is-mobile-vertical .ml-atm,
  body.is-mobile-vertical .ml-restore-target {
    display: none !important;
  }

  body.is-mobile-vertical .hero-screen {
    touch-action: pan-y;
  }

  body.is-mobile-vertical .ml-scene,
  body.is-mobile-vertical .hero-mobile-track {
    touch-action: pan-y;
  }

  body.is-mobile-vertical .menu-carousel__stage,
  body.is-mobile-vertical .menu-carousel__track {
    touch-action: pan-x;
  }

  body.is-mobile-vertical .menu-carousel__card--scroll .menu-carousel__body {
    touch-action: pan-y;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Peek neighbors — Stories / App Store style */
  body.is-mobile-vertical .menu-carousel__stage {
    clip-path: inset(-12px -18% -24px -18%);
    overflow: visible;
  }

  body.is-mobile-vertical .menu-carousel__card {
    width: 84vw;
    margin-left: -42vw;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.36s ease;
  }

  body.is-mobile-vertical .menu-carousel__stage.is-dragging .menu-carousel__card {
    transition: none;
  }

  body.is-mobile-vertical .menu-carousel__dots {
    margin-top: 10px;
  }

  body.is-mobile-vertical #coffee-tariffs,
  body.is-mobile-vertical #studio-tariffs {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Clears the fixed mobile header (~98px) so the menu title isn't hidden behind it */
    padding-top: calc(104px + env(safe-area-inset-top, 0px));
    padding-bottom: 18px;
    padding-right: 0;
  }

  body.is-mobile-vertical #coffee-tariffs {
    padding-top: 0;
    padding-bottom: 0;
  }

  body.is-mobile-vertical #coffee-tariffs > .container,
  body.is-mobile-vertical #studio-tariffs > .container,
  body.is-mobile-vertical #coffee-tariffs .page-screen__inner,
  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0;
    max-height: none;
  }

  body.is-mobile-vertical #coffee-tariffs .menu-carousel,
  body.is-mobile-vertical #studio-tariffs .menu-carousel {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  body.is-mobile-vertical #coffee-tariffs .menu-carousel__stage,
  body.is-mobile-vertical #studio-tariffs .menu-carousel__stage {
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
  }

  body.is-mobile-vertical .site-header {
    top: calc(10px + env(safe-area-inset-top, 0px));
    left: 12px;
    right: 12px;
    padding: 12px 14px;
    border-radius: 22px;
    background: rgba(20, 11, 28, 0.56);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(15, 8, 20, 0.18);
    /* Keep the menu visible on the hero/video slide too, not just after scrolling past it */
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.is-mobile-vertical[data-active-page="hero"] .site-header,
  body.is-mobile-vertical[data-active-page="hero"] .site-header.is-visible {
    transform: translateY(calc(-100% - 24px));
    opacity: 0;
    pointer-events: none;
  }

  body.is-mobile-vertical .site-header.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    background: rgba(20, 11, 28, 0.8);
  }

  body.is-mobile-vertical .site-header__logo {
    margin: 0;
    transform: translateX(-8px);
  }

  body.is-mobile-vertical .site-header__logo img {
    height: 64px;
    filter: drop-shadow(0 6px 16px rgba(10, 5, 13, 0.32));
    transform: translateX(-3px) scale(1.45);
    transform-origin: left center;
  }

  body.is-mobile-vertical .site-header__burger {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
  }

  body.is-mobile-vertical .site-header__burger span {
    width: 20px;
  }

  body.is-mobile-vertical .site-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(17, 10, 24, 0.92);
    box-shadow: 0 20px 40px rgba(9, 5, 14, 0.28);
  }

  body.is-mobile-vertical .site-header__nav.is-open {
    display: flex;
  }

  body.is-mobile-vertical .site-header__nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
  }

  body.is-mobile-vertical .section {
    padding: 18px 0;
  }

  body.is-mobile-vertical .section .container,
  body.is-mobile-vertical .page-screen__inner {
    width: 100%;
    max-width: none;
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  body.is-mobile-vertical .section-eyebrow {
    margin-bottom: 10px;
  }

  body.is-mobile-vertical .section-title,
  body.is-mobile-vertical .about-studio__title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
    margin-bottom: 14px;
  }

  body.is-mobile-vertical .section-lead {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  body.is-mobile-vertical #about,
  body.is-mobile-vertical #coffee-club,
  body.is-mobile-vertical #studio-works,
  body.is-mobile-vertical #contacts {
    /* Clears the fixed mobile header (~98px) so titles never sit behind it */
    padding-top: calc(104px + env(safe-area-inset-top, 0px));
  }

  body.is-mobile-vertical #about .container,
  body.is-mobile-vertical #coffee-club .container,
  body.is-mobile-vertical #contacts .contacts-shell,
  body.is-mobile-vertical #studio-works .works-layout,
  body.is-mobile-vertical #coffee-tariffs .page-screen__inner,
  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(32, 19, 31, 0.08);
  }

  body.is-mobile-vertical #about .container,
  body.is-mobile-vertical #studio-works .works-layout {
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-top: 22px;
    padding-bottom: 22px;
  }

  body.is-mobile-vertical #coffee-club .container {
    background: linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(241, 233, 226, 0.88));
    padding-top: 20px;
    padding-bottom: 20px;
  }

  body.is-mobile-vertical #coffee-tariffs .page-screen__inner {
    background: linear-gradient(180deg, rgba(255, 247, 240, 0.98), rgba(246, 236, 224, 0.96));
    height: 100%;
    padding-top: calc(14px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    background: linear-gradient(180deg, rgba(255, 244, 247, 0.98), rgba(247, 230, 237, 0.96));
    padding-top: 20px;
    padding-bottom: 16px;
  }

  body.is-mobile-vertical .about-cards {
    gap: 14px;
  }

  body.is-mobile-vertical .about-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  body.is-mobile-vertical #about {
    min-height: var(--app-height, 100lvh);
    height: var(--app-height, 100lvh);
    max-height: var(--app-height, 100lvh);
    padding-top: calc(92px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
  }

  body.is-mobile-vertical #about .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  body.is-mobile-vertical #about .section-title {
    margin-bottom: 8px;
    font-size: clamp(25px, 7vw, 32px);
  }

  body.is-mobile-vertical #about .section-lead {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.42;
  }

  body.is-mobile-vertical #about .about-cards {
    gap: 8px;
  }

  body.is-mobile-vertical #about .about-card {
    padding: 13px 15px;
  }

  body.is-mobile-vertical #about .about-card p {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.38;
  }

  body.is-mobile-vertical .club-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  body.is-mobile-vertical .club-card__visual {
    min-height: 220px;
  }

  body.is-mobile-vertical .menu-carousel__header {
    margin-bottom: 12px;
  }

  body.is-mobile-vertical .menu-carousel__label {
    font-size: 12px;
  }

  body.is-mobile-vertical .menu-carousel__stage {
    clip-path: none;
    overflow: visible;
    padding: 6px 0 2px;
  }

  body.is-mobile-vertical .menu-carousel__card {
    width: calc(100vw - 54px);
    max-width: 420px;
    margin-left: calc((54px - 100vw) / 2);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(38, 23, 31, 0.12);
  }

  body.is-mobile-vertical .menu-carousel__body {
    max-height: min(54vh, 420px);
  }

  body.is-mobile-vertical .works-layout {
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  body.is-mobile-vertical .works-header {
    gap: 12px;
  }

  body.is-mobile-vertical .works-stage {
    min-height: 0;
    padding: 0 8px;
  }

  body.is-mobile-vertical .works-slide {
    border-radius: 24px;
    overflow: hidden;
  }

  body.is-mobile-vertical .works-nav {
    width: 42px;
    height: 42px;
  }

  body.is-mobile-vertical #contacts {
    background: linear-gradient(180deg, #150d1d 0%, #1a1124 100%);
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }

  body.is-mobile-vertical #contacts .contacts-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border-radius: 28px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  body.is-mobile-vertical .contacts-grid {
    gap: 18px;
  }

  body.is-mobile-vertical .contacts-block,
  body.is-mobile-vertical .contacts-map,
  body.is-mobile-vertical .social-window {
    border-radius: 20px;
    overflow: hidden;
  }

  body.is-mobile-vertical .contacts-actions {
    gap: 10px;
  }

  body.is-mobile-vertical .contacts-actions .btn {
    width: 100%;
    justify-content: center;
  }

  body.is-mobile-vertical #coffee-tariffs .menu-carousel__header,
  body.is-mobile-vertical #studio-tariffs .menu-carousel__header {
    margin-bottom: 6px;
  }

  body.is-mobile-vertical #coffee-tariffs .menu-carousel__footer,
  body.is-mobile-vertical #studio-tariffs .menu-carousel__footer {
    margin-top: 4px;
    padding-top: 8px;
  }

  body.is-mobile-vertical .hero-mobile-hint__side--coffee,
  body.is-mobile-vertical .hero-mobile-hint__side--studio {
    letter-spacing: 0.12em;
  }

  body.is-mobile-landing-ready:not(.is-mobile-vertical) #about,
  body.is-mobile-landing-ready:not(.is-mobile-vertical) .site-footer {
    display: none !important;
  }

  body.is-scroll-locked.is-mobile-landing {
    touch-action: none;
    overscroll-behavior: none;
  }

  body.is-scroll-locked.is-ml-pos-menu .menu-carousel__stage,
  body.is-scroll-locked.is-ml-pos-tariffs .menu-carousel__stage {
    touch-action: pan-x pan-y;
  }

  body.is-scroll-locked.is-ml-pos-menu .ml-overlay--menu,
  body.is-scroll-locked.is-ml-pos-tariffs .ml-overlay--tariffs {
    touch-action: pan-y;
  }

  .ml-layer--about #contacts .contacts-social-feed,
  .ml-layer--about #contacts .social-windows {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ml-layer--about #contacts .social-windows {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .ml-layer--about #contacts .social-window {
    width: 100%;
  }

  .ml-layer.is-ml-entering .ml-layer-section {
    animation: none;
  }

  /* Background slides in solid; chrome/content fades after snap */
  .ml-overlay .menu-carousel__header,
  .ml-overlay .menu-carousel,
  .ml-overlay .menu-carousel__footer,
  .ml-curtain .club-card,
  .ml-curtain .works-layout,
  .ml-curtain .works-stage,
  .ml-curtain .section-eyebrow,
  .ml-curtain .section-title,
  .ml-curtain .works-footer-cta {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  .ml-overlay.is-ml-entering .menu-carousel__header,
  .ml-overlay.is-ml-content-in .menu-carousel__header,
  .ml-overlay.is-ml-entering .menu-carousel,
  .ml-overlay.is-ml-content-in .menu-carousel,
  .ml-overlay.is-ml-entering .menu-carousel__footer,
  .ml-overlay.is-ml-content-in .menu-carousel__footer,
  .ml-curtain.is-ml-entering .club-card,
  .ml-curtain.is-ml-content-in .club-card,
  .ml-curtain.is-ml-entering .works-layout,
  .ml-curtain.is-ml-content-in .works-layout,
  .ml-curtain.is-ml-entering .works-stage,
  .ml-curtain.is-ml-content-in .works-stage,
  .ml-curtain.is-ml-entering .section-eyebrow,
  .ml-curtain.is-ml-content-in .section-eyebrow,
  .ml-curtain.is-ml-entering .section-title,
  .ml-curtain.is-ml-content-in .section-title,
  .ml-curtain.is-ml-entering .works-footer-cta,
  .ml-curtain.is-ml-content-in .works-footer-cta {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .ml-overlay.is-ml-entering .menu-carousel__header,
  .ml-curtain.is-ml-entering .section-eyebrow {
    transition:
      opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
  }

  .ml-overlay.is-ml-entering .menu-carousel,
  .ml-curtain.is-ml-entering .section-title,
  .ml-curtain.is-ml-entering .club-card,
  .ml-curtain.is-ml-entering .works-layout,
  .ml-curtain.is-ml-entering .works-stage {
    transition:
      opacity 0.66s cubic-bezier(0.16, 1, 0.3, 1) 0.14s,
      transform 0.66s cubic-bezier(0.16, 1, 0.3, 1) 0.14s;
  }

  .ml-overlay.is-ml-entering .menu-carousel__footer,
  .ml-curtain.is-ml-entering .works-footer-cta {
    transition:
      opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.28s,
      transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
  }

  .ml-overlay.is-ml-content-in .menu-carousel__header,
  .ml-overlay.is-ml-content-in .menu-carousel,
  .ml-overlay.is-ml-content-in .menu-carousel__footer,
  .ml-curtain.is-ml-content-in .club-card,
  .ml-curtain.is-ml-content-in .works-layout,
  .ml-curtain.is-ml-content-in .works-stage,
  .ml-curtain.is-ml-content-in .section-eyebrow,
  .ml-curtain.is-ml-content-in .section-title,
  .ml-curtain.is-ml-content-in .works-footer-cta {
    transition: none;
  }

  @keyframes ml-layer-rise {
    from {
      opacity: 0;
      transform: translate3d(0, 18px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  /* Fly-over: sections become glass UI over persistent video */
  .ml-overlay .ml-layer-section.section--warm,
  .ml-overlay .ml-layer-section.section--cool,
  .ml-curtain .ml-layer-section.section--warm-alt,
  .ml-curtain .ml-layer-section.section--neutral,
  .ml-layer--about .ml-layer-section.section--about-studio,
  .ml-layer--about #contacts.ml-layer-section {
    background: transparent !important;
  }

  .ml-overlay .menu-carousel__card,
  .ml-curtain .club-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px) saturate(1.05);
    -webkit-backdrop-filter: blur(10px) saturate(1.05);
    box-shadow:
      0 12px 40px rgba(26, 17, 36, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  /* Don't glass-wash the whole works stage — keeps photo slides rounded */
  .ml-curtain .works-stage {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .ml-curtain .works-slide {
    border-radius: 20px;
    overflow: hidden;
  }

  .ml-curtain .works-slide__visual,
  .ml-curtain .works-slide__visual img,
  .ml-curtain .works-slide__mosaic,
  .ml-curtain .works-slide__mosaic img {
    border-radius: inherit;
  }

  .ml-overlay .menu-carousel__card--lashes,
  .ml-overlay .menu-carousel__card--manicure,
  .ml-overlay .menu-carousel__card--podology,
  .ml-overlay .menu-carousel__card--pedicure,
  .ml-overlay .menu-carousel__card--brows,
  .ml-overlay .menu-carousel__card--permanent,
  .ml-overlay .menu-carousel__card--classic,
  .ml-overlay .menu-carousel__card--signature,
  .ml-overlay .menu-carousel__card--refreshers {
    background: rgba(255, 255, 255, 0.95);
  }

  .ml-curtain .club-card {
    background: linear-gradient(165deg, rgba(26, 17, 36, 0.88) 0%, rgba(74, 49, 66, 0.82) 100%);
    backdrop-filter: blur(12px) saturate(1.05);
    -webkit-backdrop-filter: blur(12px) saturate(1.05);
  }

  .ml-overlay .menu-carousel__header .section-title,
  .ml-overlay .menu-carousel__header .section-eyebrow,
  .ml-overlay .menu-carousel__label,
  .ml-curtain .works-header .section-title,
  .ml-curtain .works-header .section-eyebrow {
    text-shadow: none;
    color: var(--color-primary);
  }

  .ml-overlay .menu-carousel__header .section-eyebrow,
  .ml-curtain .works-header .section-eyebrow {
    color: var(--color-secondary);
  }

  .ml-overlay .menu-carousel__label {
    color: var(--color-accent);
  }

  /* Soft readable pill under titles — not a harsh glow */
  .ml-overlay .menu-carousel__header,
  .ml-curtain .works-header {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 16px 12px;
    margin-bottom: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 22px rgba(26, 17, 36, 0.08);
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__hero {
    background: transparent;
  }

  .ml-overlay--menu .ml-layer-section.section--menu,
  .ml-overlay--tariffs .ml-layer-section {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding-top: calc(36px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
    overflow: hidden;
  }

  .ml-overlay--menu,
  .ml-overlay--tariffs {
    overflow: hidden;
  }

  .ml-overlay--menu .page-screen__inner,
  .ml-overlay--tariffs .page-screen__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
  }

  .ml-overlay--menu .menu-carousel__header,
  .ml-overlay--tariffs .menu-carousel__header {
    padding-bottom: 4px;
  }

  .ml-overlay--menu .menu-carousel__header .section-title,
  .ml-overlay--tariffs .menu-carousel__header .section-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 2px;
  }

  .ml-overlay--menu .menu-carousel__label,
  .ml-overlay--tariffs .menu-carousel__label {
    margin-bottom: 0;
  }

  .ml-overlay--menu .menu-carousel__stage,
  .ml-overlay--tariffs .menu-carousel__stage {
    height: min(420px, calc(100svh - 188px));
    flex: 0 0 auto;
    touch-action: pan-x pan-y !important;
  }

  .ml-overlay--menu .menu-carousel__footer,
  .ml-overlay--tariffs .menu-carousel__footer {
    padding-top: 6px;
    padding-bottom: 0;
    position: relative;
  }

  .ml-overlay--menu .menu-carousel__footer::after,
  .ml-overlay--tariffs .menu-carousel__footer::after {
    content: 'Листайте категории · за край — дальше';
    display: block;
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-align: center;
    color: rgba(26, 17, 36, 0.45);
  }

  .ml-overlay--menu .menu-carousel__card--scroll .menu-carousel__body,
  .ml-overlay--tariffs .menu-carousel__card--scroll .menu-carousel__body {
    max-height: 100%;
    touch-action: pan-y;
  }

  body.is-scroll-locked.is-ml-pos-menu .menu-carousel__card--scroll .menu-carousel__body,
  body.is-scroll-locked.is-ml-pos-tariffs .menu-carousel__card--scroll .menu-carousel__body {
    touch-action: pan-y !important;
  }

  .ml-overlay--tariffs .section-cta--menu {
    display: none;
  }

  body.is-scroll-locked.is-ml-pos-menu .menu-carousel__stage,
  body.is-scroll-locked.is-ml-pos-tariffs .menu-carousel__stage,
  body.is-scroll-locked.is-ml-pos-menu .menu-carousel__track,
  body.is-scroll-locked.is-ml-pos-tariffs .menu-carousel__track {
    touch-action: pan-x pan-y !important;
  }

  body.is-scroll-locked.is-ml-beyond-backdrop,
  body.is-scroll-locked.is-ml-pos-menu,
  body.is-scroll-locked.is-ml-pos-tariffs,
  body.is-scroll-locked.is-ml-pos-about {
    touch-action: pan-y;
  }

  body.is-scroll-locked.is-ml-beyond-backdrop .hero-screen,
  body.is-scroll-locked.is-ml-pos-menu .hero-screen,
  body.is-scroll-locked.is-ml-pos-tariffs .hero-screen,
  body.is-scroll-locked.is-ml-pos-about .hero-screen,
  body.is-scroll-locked.is-ml-beyond-backdrop .ml-overlay,
  body.is-scroll-locked.is-ml-beyond-backdrop .ml-curtain,
  body.is-scroll-locked.is-ml-pos-about .ml-layer--about {
    touch-action: pan-y;
  }

  .ml-layer-section {
    min-height: 100%;
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .ml-layer-section.section--menu {
    padding-top: calc(64px + env(safe-area-inset-top, 0px));
  }

  .ml-curtain--club .ml-layer-section,
  .ml-curtain--works .ml-layer-section {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  /* About: substrate -> video rises -> fullscreen -> sound -> copy over video */
  .ml-layer--about #studio-about.ml-layer-section {
    min-height: auto;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__ambient {
    display: none;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__backdrop {
    display: none;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__stage,
  .ml-layer--about #studio-about.ml-layer-section .about-studio__compose {
    position: relative;
    min-height: 100svh;
    height: auto;
    display: block;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__compose {
    grid-template-columns: 1fr;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__compose-film {
    display: none;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__hero {
    position: sticky;
    top: 0;
    z-index: 1;
    grid-column: 1;
    min-height: 100svh;
    height: 100svh;
    max-height: none;
    background: transparent;
    overflow: hidden;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__video--hero {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: translate3d(0, 72%, 0) scale(0.94);
    transform-origin: center bottom;
    filter: none;
    transition:
      transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.55s ease,
      height 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.75s ease,
      border-radius 0.55s ease;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .ml-layer--about #studio-about.is-about-phase-hold .about-studio__video--hero {
    opacity: 0;
    transform: translate3d(0, 100%, 0) scale(0.92);
  }

  .ml-layer--about #studio-about.is-about-phase-rise .about-studio__video--hero {
    opacity: 1;
    height: 58%;
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.28);
  }

  .ml-layer--about #studio-about.is-about-phase-full .about-studio__video--hero,
  .ml-layer--about #studio-about.is-about-phase-sound .about-studio__video--hero,
  .ml-layer--about #studio-about.is-about-phase-copy .about-studio__video--hero,
  .ml-layer--about #studio-about.is-about-phase-peek .about-studio__video--hero,
  .ml-layer--about #studio-about.is-about-phase-blur .about-studio__video--hero {
    opacity: 1;
    height: 100%;
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 0;
    box-shadow: none;
  }

  .ml-layer--about #studio-about.is-about-phase-blur .about-studio__video--hero {
    filter: blur(10px) brightness(0.72);
    transform: translate3d(0, 0, 0) scale(1.04);
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__panel {
    position: relative;
    z-index: 3;
    grid-column: 1;
    min-height: 0;
    max-height: none;
    margin: -46svh 0 0;
    padding: 20px 18px 36px;
    gap: 12px;
    overflow: visible;
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ml-layer--about #studio-about.is-about-phase-copy .about-studio__panel,
  .ml-layer--about #studio-about.is-about-phase-peek .about-studio__panel,
  .ml-layer--about #studio-about.is-about-phase-done .about-studio__panel {
    opacity: 1;
    transform: translateY(0);
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__panel > * {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 12px 14px;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__title {
    font-size: clamp(26px, 7vw, 34px);
    color: #fff;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__lead {
    max-width: none;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__sound {
    left: 16px;
    top: calc(16px + env(safe-area-inset-top, 0px));
    z-index: 5;
    opacity: 0;
    transform: translateY(-8px) scale(0.92);
    pointer-events: none;
    transition:
      opacity 0.45s ease,
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ml-layer--about #studio-about.is-about-phase-sound .about-studio__sound,
  .ml-layer--about #studio-about.is-about-phase-copy .about-studio__sound,
  .ml-layer--about #studio-about.is-about-phase-peek .about-studio__sound,
  .ml-layer--about #studio-about.is-about-phase-blur .about-studio__sound {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .ml-layer--about #studio-about.ml-layer-section .about-studio__badge {
    left: 16px;
    bottom: 16px;
    z-index: 5;
  }

  .ml-layer--about #contacts.ml-layer-section {
    min-height: auto;
    height: auto;
    padding:
      28px 0
      calc(28px + env(safe-area-inset-bottom, 0px));
    background: transparent;
  }

  .ml-layer--about #contacts.ml-layer-section.page-screen--contacts {
    display: block;
    align-items: stretch;
    padding-right: 0;
  }

  .ml-layer--about #contacts .contacts-map__viewport {
    min-height: 220px;
    height: 240px;
  }

  .ml-layer--about #contacts .social-window__frame {
    max-height: min(380px, 52vh);
  }

  .ml-layer.is-ml-entering #studio-about .about-studio__hero,
  .ml-layer.is-ml-entering #studio-about .about-studio__panel > * {
    animation: none;
  }

  .ml-layer.is-ml-entering #studio-about .about-studio__hero {
    animation-delay: 0.05s;
  }

  .ml-layer.is-ml-entering #studio-about .about-studio__panel > *:nth-child(1) { animation-delay: 0.12s; }
  .ml-layer.is-ml-entering #studio-about .about-studio__panel > *:nth-child(2) { animation-delay: 0.18s; }
  .ml-layer.is-ml-entering #studio-about .about-studio__panel > *:nth-child(3) { animation-delay: 0.24s; }

  .works-footer-cta {
    display: flex;
    justify-content: center;
    padding: 8px 20px 12px;
  }

  .works-footer-cta .btn {
    width: min(100%, 280px);
    text-align: center;
  }

  .ml-goto-about {
    background: var(--color-primary);
    color: #fff;
  }

  /* Per-element rise disabled — caused flash then wipe; use is-ml-content-in instead */
  .ml-overlay.is-ml-entering .ml-layer-section .section-eyebrow,
  .ml-overlay.is-ml-entering .ml-layer-section .menu-carousel__header,
  .ml-curtain.is-ml-entering .ml-layer-section .section-eyebrow,
  .ml-layer.is-ml-entering .ml-layer-section .section-eyebrow,
  .ml-overlay.is-ml-entering .ml-layer-section .section-title,
  .ml-curtain.is-ml-entering .ml-layer-section .section-title,
  .ml-layer.is-ml-entering .ml-layer-section .section-title,
  .ml-overlay.is-ml-entering .ml-layer-section .section-lead,
  .ml-overlay.is-ml-entering .ml-layer-section .menu-carousel__label,
  .ml-curtain.is-ml-entering .ml-layer-section .section-lead,
  .ml-overlay.is-ml-entering .ml-layer-section .menu-carousel,
  .ml-overlay.is-ml-entering .ml-layer-section .tariff-grid,
  .ml-curtain.is-ml-entering .ml-layer-section .club-card,
  .ml-curtain.is-ml-entering .ml-layer-section .works-layout,
  .ml-overlay.is-ml-entering .ml-layer-section .menu-carousel__dots,
  .ml-overlay.is-ml-entering .ml-layer-section .section-cta,
  .ml-curtain.is-ml-entering .ml-layer-section .section-cta {
    animation: none;
  }

  @keyframes ml-layer-rise {
    from {
      opacity: 0;
      transform: translate3d(0, 28px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .ml-layer-section .section-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .btn--dikidi {
    background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 48%, #c77dff 100%);
    border: none;
    color: #fff;
    box-shadow: 0 10px 28px rgba(123, 44, 191, 0.35);
  }

  .btn--dikidi:hover,
  .btn--dikidi:focus-visible {
    filter: brightness(1.06);
  }

  .ml-goto-works {
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(26, 17, 36, 0.22);
    color: var(--color-primary);
  }
}

/* ========== PAGE SNAP (desktop full-screen pages) ========== */
.page-nav {
  --page-nav-pad: 12px;
  position: fixed;
  top: 50%;
  right: max(10px, env(safe-area-inset-right, 0px));
  z-index: 90;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 14px var(--page-nav-pad);
  border-radius: 999px;
  pointer-events: auto;
  isolation: isolate;
  overflow: hidden;
  background: rgba(118, 118, 128, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(26, 17, 36, 0.14);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  animation: pageNavGlassIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.08) 38%,
      rgba(255, 255, 255, 0) 58%
    );
  pointer-events: none;
  z-index: 0;
}

.page-nav::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -60%;
  width: 220%;
  height: 60%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  z-index: 0;
  animation: pageNavSheen 4.8s ease-in-out infinite;
}

@keyframes pageNavGlassIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
  }
}

@keyframes pageNavSheen {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.35;
  }
  50% {
    transform: translate3d(0, 18%, 0);
    opacity: 0.7;
  }
}

.page-nav[hidden] {
  display: none !important;
}

.page-nav__dot {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 17, 36, 0.34);
  cursor: pointer;
  transition:
    height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.page-nav__dot.is-active {
  height: 20px;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 30, 115, 0.18);
}

.page-nav__dot:hover,
.page-nav__dot:focus-visible {
  background: var(--color-accent-light);
  outline: none;
}

.page-screen--fill {
  display: flex;
  flex-direction: column;
}

.page-screen__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

@media (min-width: 993px) {
  html {
    scroll-snap-type: y proximity;
  }

  html.is-page-paging {
    scroll-snap-type: none;
  }

  .page-screen {
    --page-top: max(env(safe-area-inset-top, 0px), var(--hero-vtop, 0px));
    --page-bottom: env(safe-area-inset-bottom, 0px);
    --page-header-clear: clamp(96px, 11vh, 132px);
    --page-side-clear: max(24px, env(safe-area-inset-right, 0px) + 52px);
    min-height: var(--hero-vh, 100dvh);
    height: var(--hero-vh, 100dvh);
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    padding-top: var(--page-top);
    padding-bottom: var(--page-bottom);
  }

  .page-screen--contacts {
    height: auto;
    min-height: var(--hero-vh, 100dvh);
    overflow: visible;
    scroll-snap-stop: normal;
    display: flex;
    align-items: flex-start;
    padding-top: calc(var(--page-top) + clamp(88px, 10vh, 120px));
    padding-bottom: calc(var(--page-bottom) + clamp(32px, 4vh, 56px));
    padding-right: var(--page-side-clear);
  }

  .page-screen--contacts > .container {
    width: 100%;
  }

  .page-screen--center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--page-top) + clamp(72px, 8vh, 108px));
    padding-bottom: calc(var(--page-bottom) + clamp(32px, 4vh, 56px));
    padding-right: var(--page-side-clear);
  }

  .page-screen--center > .container {
    width: 100%;
  }

  .page-screen--fill {
    padding-top: calc(var(--page-top) + var(--page-header-clear));
    padding-bottom: calc(var(--page-bottom) + clamp(20px, 3vh, 36px));
    padding-right: var(--page-side-clear);
    overflow: visible;
  }

  #coffee-tariffs.page-screen--fill,
  #studio-tariffs.page-screen--fill {
    overflow: visible;
  }

  .hero-screen.page-screen {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .section--about-studio.page-screen {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  #studio-tariffs.page-screen--fill {
    padding-top: calc(var(--page-top) + clamp(108px, 13vh, 148px));
  }

  .page-screen--fill .section-title {
    margin-bottom: 10px;
  }

  .page-screen--fill .menu-carousel__header {
    flex: 0 0 auto;
    margin-bottom: 8px;
  }

  .page-screen--fill .menu-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .page-screen--fill .menu-carousel__stage {
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
    max-height: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .page-screen--fill .menu-carousel__footer {
    margin-top: -40px;
    padding-top: 52px;
  }

  .section--warm .menu-carousel__footer {
    background: linear-gradient(180deg, rgba(245, 240, 235, 0) 0%, var(--color-warm) 42%, var(--color-warm) 100%);
  }

  .section--cool .menu-carousel__footer {
    background: linear-gradient(180deg, rgba(252, 228, 236, 0) 0%, var(--color-cool) 42%, var(--color-cool) 100%);
  }

  .page-screen--fill .menu-carousel .menu-carousel__footer {
    flex: 0 0 auto;
    padding-right: calc(24px + var(--page-side-clear));
  }

  .page-screen--fill .section-cta--menu {
    margin-top: 12px;
    margin-bottom: 0;
  }

  #about.page-screen {
    display: flex;
    align-items: center;
    padding-top: calc(var(--page-top) + var(--page-header-clear));
    padding-bottom: calc(var(--page-bottom) + clamp(32px, 4vh, 56px));
    padding-right: var(--page-side-clear);
  }

  #about.page-screen > .container {
    width: 100%;
  }

  #studio-works.page-screen--fill {
    padding-top: calc(var(--page-top) + var(--page-header-clear));
  }

  .site-footer {
    scroll-snap-align: end;
  }
}

@media (min-width: 993px) {
  body.is-page-nav-light .page-nav,
  body.is-about-immersive .page-nav {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      0 10px 28px rgba(0, 0, 0, 0.22);
  }

  body.is-page-nav-light .page-nav__dot,
  body.is-about-immersive .page-nav__dot {
    background: rgba(255, 255, 255, 0.42);
  }

  body.is-page-nav-light .page-nav__dot.is-active,
  body.is-about-immersive .page-nav__dot.is-active {
    background: var(--color-accent-light);
    box-shadow: 0 0 0 3px rgba(240, 98, 146, 0.25);
  }
}

/* ========== WORKS VIEWER ========== */
.section--works {
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(232, 30, 115, 0.08), transparent 60%),
    linear-gradient(180deg, #faf7f8 0%, #fff 48%, #f7f2f5 100%);
}

.works-layout {
  gap: clamp(12px, 2vh, 20px);
}

.works-header {
  flex: 0 0 auto;
  text-align: left;
}

.works-header .section-title {
  margin-bottom: 16px;
}

.works-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}

.works-tabs__btn {
  appearance: none;
  border: 1px solid rgba(26, 17, 36, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.works-tabs__btn:hover,
.works-tabs__btn:focus-visible {
  border-color: rgba(232, 30, 115, 0.35);
  color: var(--color-accent);
  outline: none;
}

.works-tabs__btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.works-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: clamp(8px, 1.5vw, 18px);
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  outline: none;
  touch-action: pan-y;
}

.works-slide {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  height: 100%;
  border-radius: calc(var(--radius-card) + 8px);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 17, 36, 0.06);
  box-shadow: 0 28px 70px rgba(26, 17, 36, 0.12);
}

.works-stage.is-swap .works-slide {
  opacity: 0.35;
  transform: scale(0.985);
}

.works-stage.is-settle .works-slide {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.38s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-slide__visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(247, 244, 241, 0.96) 0%, rgba(252, 248, 251, 0.98) 50%, rgba(240, 232, 238, 0.92) 100%);
}

.works-slide__visual::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 25%, rgba(232, 30, 115, 0.16), transparent 42%),
    radial-gradient(circle at 78% 70%, rgba(212, 165, 116, 0.18), transparent 46%);
  animation: worksAura 12s ease-in-out infinite;
}

.works-slide__visual--pedicure::before {
  background:
    radial-gradient(circle at 28% 30%, rgba(107, 79, 130, 0.18), transparent 44%),
    radial-gradient(circle at 75% 68%, rgba(232, 30, 115, 0.1), transparent 48%);
}

.works-slide__visual--lashes::before {
  background:
    radial-gradient(circle at 34% 28%, rgba(139, 63, 103, 0.2), transparent 42%),
    radial-gradient(circle at 72% 72%, rgba(232, 30, 115, 0.12), transparent 48%);
}

.works-slide__visual--podology::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(74, 85, 104, 0.16), transparent 44%),
    radial-gradient(circle at 70% 70%, rgba(212, 165, 116, 0.14), transparent 48%);
}

.works-slide__visual--brows::before {
  background:
    radial-gradient(circle at 32% 26%, rgba(154, 107, 63, 0.18), transparent 44%),
    radial-gradient(circle at 74% 70%, rgba(232, 30, 115, 0.1), transparent 48%);
}

.works-slide__visual--permanent::before {
  background:
    radial-gradient(circle at 30% 28%, rgba(92, 74, 102, 0.18), transparent 44%),
    radial-gradient(circle at 72% 72%, rgba(232, 30, 115, 0.12), transparent 48%);
}

@keyframes worksAura {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2%, -2%, 0) scale(1.04); }
}

.works-slide__mark {
  position: absolute;
  width: min(42%, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(26, 17, 36, 0.08);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.works-slide__soon {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 17, 36, 0.45);
}

.works-slide__meta {
  padding: clamp(16px, 2.2vh, 24px) clamp(18px, 2.5vw, 28px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
  border-top: 1px solid rgba(26, 17, 36, 0.05);
}

.works-slide__category {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.works-slide__title {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
}

.works-slide__note {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-secondary);
}

.works-nav {
  align-self: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(26, 17, 36, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.works-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.works-nav--prev::before {
  transform: translate(-35%, -50%) rotate(135deg);
}

.works-nav--next::before {
  transform: translate(-65%, -50%) rotate(-45deg);
}

.works-nav:hover,
.works-nav:focus-visible {
  background: #fff;
  border-color: rgba(232, 30, 115, 0.4);
  outline: none;
}

.works-nav:disabled {
  opacity: 0.28;
  cursor: default;
}

.works-footer-cta {
  display: flex;
  justify-content: center;
  padding: 4px 24px 8px;
}

.works-footer-cta .btn {
  min-width: 200px;
  text-align: center;
}

.ml-goto-about {
  background: var(--color-primary);
  color: #fff;
  border: 0;
}

.ml-goto-about:hover,
.ml-goto-about:focus-visible {
  filter: brightness(1.06);
  outline: none;
}

.works-pips {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  flex: 0 0 auto;
  padding-bottom: 4px;
  padding-left: 24px;
}

.works-pips__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 17, 36, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.works-pips__dot.is-active {
  width: 22px;
  background: var(--color-accent);
}

@media (max-width: 992px) {
  html.is-mobile-category-open,
  body.is-mobile-category-open {
    overflow: hidden !important;
    touch-action: none;
  }

  body.is-mobile-vertical #coffee-tariffs,
  body.is-mobile-vertical #studio-tariffs {
    padding: calc(112px + env(safe-area-inset-top, 0px)) 18px calc(32px + env(safe-area-inset-bottom, 0px));
  }

  body.is-mobile-vertical #coffee-tariffs .page-screen__inner,
  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    justify-content: center;
  }

  body.is-mobile-vertical .section--menu .menu-carousel__header {
    width: 100%;
    padding: 0;
    margin-bottom: clamp(24px, 5vh, 44px);
  }

  body.is-mobile-vertical .section--menu .section-eyebrow {
    margin-bottom: 10px;
  }

  body.is-mobile-vertical .section--menu .section-title {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.98;
  }

  body.is-mobile-vertical .section--menu .menu-carousel__label,
  body.is-mobile-vertical .section--menu .menu-carousel__stage,
  body.is-mobile-vertical .section--menu .menu-carousel__footer {
    display: none;
  }

  body.is-mobile-vertical .section--menu .menu-carousel {
    flex: 0 0 auto;
    width: 100%;
    margin-left: 0;
  }

  body.is-mobile-vertical .mobile-category-grid {
    --category-drag-x: 0px;
    position: relative;
    display: block;
    width: min(100%, 420px);
    height: min(46vh, 370px);
    min-height: 330px;
    margin: 0 auto;
    overflow: visible;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
  }

  body.is-mobile-vertical .mobile-category-tile {
    display: flex;
    position: absolute;
    inset: 8px 34px 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-width: 0;
    padding: 20px;
    overflow: visible;
    border: 0;
    outline: 0;
    border-radius: 26px;
    color: var(--color-primary);
    text-align: left;
    background:
      radial-gradient(circle at 82% 12%, rgba(232, 30, 115, 0.14), transparent 34%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(253, 245, 247, 0.94));
    box-shadow: 0 24px 58px rgba(26, 17, 36, 0.12);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, opacity;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(calc(96% + var(--category-drag-x)), 0, 0) scale(0.88);
    transition:
      opacity 0.48s ease,
      visibility 0.48s,
      transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.is-mobile-vertical .mobile-category-tile.has-category-icon {
    align-items: flex-end;
    justify-content: flex-start;
  }

  body.is-mobile-vertical .mobile-category-tile.has-category-icon::after {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: -30px;
    left: -42px;
    width: clamp(210px, 66vw, 278px);
    height: 72px;
    border-radius: 50%;
    background:
      radial-gradient(
        ellipse at center,
        rgba(232, 30, 115, 0.42) 0%,
        rgba(232, 30, 115, 0.2) 40%,
        transparent 72%
      ),
      radial-gradient(
        ellipse at center,
        rgba(26, 17, 36, 0.24) 0%,
        transparent 68%
      );
    pointer-events: none;
    opacity: 0;
    transform: scale(0.72);
    transform-origin: center;
    transition:
      opacity 0.42s ease,
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.is-mobile-vertical .mobile-category-tile.has-category-icon.is-active::after {
    opacity: 1;
    transform: scale(1);
  }

  body.is-mobile-vertical .mobile-category-tile.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(var(--category-drag-x), 0, 0) scale(1);
  }

  body.is-mobile-vertical .mobile-category-tile.is-before {
    transform: translate3d(calc(-88% + var(--category-drag-x)), 0, 0) scale(0.88);
  }

  body.is-mobile-vertical .mobile-category-tile.is-after {
    transform: translate3d(calc(88% + var(--category-drag-x)), 0, 0) scale(0.88);
  }

  body.is-mobile-vertical .mobile-category-tile.is-near {
    visibility: visible;
    opacity: 0.4;
  }

  body.is-mobile-vertical .mobile-category-grid.is-dragging .mobile-category-tile {
    transition: none;
  }

  body.is-mobile-vertical .mobile-category-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    background:
      linear-gradient(180deg, transparent 52%, rgba(26, 17, 36, 0.05)),
      linear-gradient(145deg, rgba(232, 30, 115, 0.08), transparent 55%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.is-mobile-vertical .mobile-category-tile:active::before {
    transform: scale(1.12);
  }

  body.is-mobile-vertical .mobile-category-tile__icon {
    position: absolute;
    z-index: 3;
    top: auto;
    bottom: -34px;
    left: -38px;
    display: flex;
    width: clamp(205px, 66vw, 270px);
    height: clamp(220px, 36vh, 296px);
    align-items: flex-end;
    justify-content: flex-start;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(54%, -52%, 0) scale(0.28) rotate(-5deg);
    transform-origin: left bottom;
    will-change: transform, opacity;
    transition:
      opacity 0.52s ease,
      transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.is-mobile-vertical
    .mobile-category-tile--signature
    .mobile-category-tile__icon {
    left: -48px;
  }

  body.is-mobile-vertical
    #studio-tariffs
    .mobile-category-tile--manicure
    .mobile-category-tile__icon {
    bottom: -38px;
    left: -52px;
    width: clamp(220px, 72vw, 292px);
    height: clamp(235px, 39vh, 315px);
  }

  body.is-mobile-vertical
    #studio-tariffs
    .mobile-category-tile--pedicure
    .mobile-category-tile__icon {
    bottom: -50px;
    left: -52px;
  }

  body.is-mobile-vertical
    #studio-tariffs
    .mobile-category-tile--lashes
    .mobile-category-tile__icon {
    bottom: -50px;
    width: clamp(225px, 72vw, 292px);
    height: clamp(240px, 40vh, 320px);
  }

  body.is-mobile-vertical
    #studio-tariffs
    .mobile-category-tile--podology
    .mobile-category-tile__icon {
    bottom: -50px;
  }

  body.is-mobile-vertical .mobile-category-tile__icon::before {
    display: none;
  }

  body.is-mobile-vertical .mobile-category-tile__icon::after {
    content: '✦';
    position: absolute;
    z-index: 2;
    top: 24%;
    right: 8%;
    color: rgba(232, 30, 115, 0.82);
    font-size: 13px;
    line-height: 1;
    text-shadow:
      -112px 42px 0 rgba(212, 165, 116, 0.74),
      -38px -28px 0 rgba(232, 30, 115, 0.5),
      18px 62px 0 rgba(212, 165, 116, 0.56);
    opacity: 0;
    transform: scale(0.45) rotate(-24deg);
    transition:
      opacity 0.38s ease 0.12s,
      transform 0.58s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  }

  body.is-mobile-vertical .mobile-category-tile__icon img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left bottom;
    filter: none;
    -webkit-filter: none;
  }

  body.is-mobile-vertical
    #studio-tariffs
    .mobile-category-tile__icon
    .mobile-category-tile__art {
    z-index: 2;
  }

  body.is-mobile-vertical
    #studio-tariffs
    .mobile-category-tile__icon
    .mobile-category-tile__splash {
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: 0;
    transform: scale(0.16) rotate(-4deg);
    transform-origin: 50% 54%;
    filter: blur(10px) saturate(1.12);
    pointer-events: none;
    will-change: transform, opacity, filter;
  }

  body.is-mobile-vertical[data-active-page="studio-tariffs"]
    #studio-tariffs
    .mobile-category-tile.is-active
    .mobile-category-tile__splash {
    animation: salonPaintSplash 1.28s cubic-bezier(0.16, 0.82, 0.2, 1) 0.18s both;
  }

  body.is-mobile-vertical
    #studio-tariffs
    .mobile-category-tile__icon
    .mobile-category-tile__drip {
    position: absolute;
    z-index: 3;
    inset: 0;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    will-change: clip-path, opacity, filter;
  }

  body.is-mobile-vertical[data-active-page="studio-tariffs"]
    #studio-tariffs
    .mobile-category-tile.is-active
    .mobile-category-tile__drip {
    animation: salonPaintDrip 1.18s cubic-bezier(0.18, 0.72, 0.18, 1) 0.82s both;
  }

  body.is-mobile-vertical .mobile-category-tile.is-active .mobile-category-tile__icon {
    opacity: 1;
    transform:
      translate3d(0, 0, 0)
      scale(calc(1.08 + var(--category-icon-drag, 0) * 0.2))
      rotate(0deg);
  }

  body.is-mobile-vertical .mobile-category-tile.is-active .mobile-category-tile__icon::before {
    transform: scale(calc(1 + var(--category-icon-drag, 0) * 0.18));
  }

  body.is-mobile-vertical .mobile-category-tile.is-active .mobile-category-tile__icon::after {
    opacity: 0.82;
    transform: scale(1) rotate(8deg);
  }

  body.is-mobile-vertical .mobile-category-tile.is-before .mobile-category-tile__icon {
    transform: translate3d(54%, -52%, 0) scale(0.3) rotate(-4deg);
  }

  body.is-mobile-vertical .mobile-category-tile.is-after .mobile-category-tile__icon {
    transform: translate3d(54%, -52%, 0) scale(0.3) rotate(4deg);
  }

  body.is-mobile-vertical
    .mobile-category-tile.is-near
    .mobile-category-tile__icon {
    opacity: 0.75;
  }

  body.is-mobile-vertical .mobile-category-grid.is-dragging .mobile-category-tile__icon,
  body.is-mobile-vertical .mobile-category-grid.is-dragging .mobile-category-tile__icon::before {
    transition: none;
  }

  @keyframes salonPaintDrip {
    0% {
      opacity: 0;
      clip-path: inset(0 0 100% 0);
      filter: saturate(1.12) drop-shadow(0 0 0 rgba(232, 30, 115, 0));
    }
    18% {
      opacity: 1;
    }
    68% {
      clip-path: inset(0 0 18% 0);
      filter: saturate(1.08) drop-shadow(0 9px 12px rgba(232, 30, 115, 0.18));
    }
    84% {
      clip-path: inset(0 0 0 0);
      filter: saturate(1.04) drop-shadow(0 13px 15px rgba(232, 30, 115, 0.12));
    }
    100% {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      filter: none;
    }
  }

  @keyframes salonPaintSplash {
    0% {
      opacity: 0;
      transform: scale(0.16) rotate(-4deg);
      filter: blur(10px) saturate(1.12);
    }
    42% {
      opacity: 0.92;
      transform: scale(0.78) rotate(1.2deg);
      filter: blur(3px) saturate(1.08);
    }
    72% {
      opacity: 1;
      transform: scale(1.035) rotate(-0.4deg);
      filter: blur(0.5px) saturate(1.04);
    }
    88% {
      transform: scale(0.992) rotate(0.15deg);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0);
      filter: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    body.is-mobile-vertical
      #studio-tariffs
      .mobile-category-tile__icon
      .mobile-category-tile__splash,
    body.is-mobile-vertical
      #studio-tariffs
      .mobile-category-tile__icon
      .mobile-category-tile__drip {
      opacity: 1;
      clip-path: none;
      transform: none;
      filter: none;
      animation: none;
    }
  }

  .mobile-category-tile__index {
    position: absolute;
    top: 14px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    color: var(--color-accent);
  }

  body.is-mobile-vertical .mobile-category-tile.has-category-icon .mobile-category-tile__index {
    right: 18px;
    left: auto;
  }

  .mobile-category-tile__name,
  .mobile-category-tile__subtype {
    position: relative;
    z-index: 2;
  }

  body.is-mobile-vertical .mobile-category-tile__copy {
    display: contents;
  }

  body.is-mobile-vertical .mobile-category-tile.has-category-icon .mobile-category-tile__copy {
    position: absolute;
    z-index: 4;
    top: 24px;
    right: 22px;
    display: flex;
    max-width: 54%;
    flex-direction: column;
    align-items: flex-end;
    color: var(--color-primary);
    text-align: right;
  }

  .mobile-category-tile__name {
    max-width: 100%;
    font-family: var(--font-heading);
    font-size: clamp(35px, 10vw, 46px);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .mobile-category-tile__subtype {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: var(--color-secondary);
  }

  body.is-mobile-vertical
    .mobile-category-tile--refreshers.has-category-icon
    .mobile-category-tile__copy {
    max-width: 60%;
  }

  .mobile-category-tile__arrow {
    position: absolute;
    right: 16px;
    bottom: 22px;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transform: rotate(45deg);
  }

  .mobile-category-pagination {
    position: absolute;
    z-index: 4;
    top: auto;
    bottom: -32px;
    left: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow:
      0 10px 28px rgba(26, 17, 36, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    transform: translateX(-50%);
  }

  .mobile-category-pagination__dot {
    display: block;
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(26, 17, 36, 0.24);
    transition: background 0.2s ease;
  }

  .mobile-category-pagination__dot.is-active {
    width: 30px;
    height: 6px;
    background: var(--color-accent);
  }

  .mobile-category-sheet {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-end;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.62s;
  }

  .mobile-category-sheet.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .mobile-category-sheet.is-closing {
    visibility: visible;
    pointer-events: none;
    transition-delay: 0s;
  }

  .mobile-category-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 11, 28, 0.52);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.46s ease;
  }

  .mobile-category-sheet.is-open .mobile-category-sheet__backdrop { opacity: 1; }

  .mobile-category-sheet__panel {
    position: relative;
    width: 100%;
    height: auto;
    max-height: min(94dvh, var(--app-height, 94dvh));
    padding: 22px 18px calc(28px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: none;
    border: 1px solid rgba(26, 17, 36, 0.12);
    border-bottom: 0;
    border-radius: 30px 30px 0 0;
    background:
      radial-gradient(circle at 90% 0%, rgba(232, 30, 115, 0.1), transparent 28%),
      #fff;
    box-shadow: 0 -24px 70px rgba(26, 17, 36, 0.18);
    transform: translateY(104%);
    will-change: transform;
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-category-sheet.is-open .mobile-category-sheet__panel {
    transform: translateY(var(--sheet-drag-y, 0px));
  }

  .mobile-category-sheet__panel.is-dragging {
    transition: none;
  }

  .mobile-category-sheet__header {
    position: sticky;
    top: -22px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: -22px -18px 18px;
    padding: 22px 18px 16px;
    border-bottom: 1px solid rgba(26, 17, 36, 0.1);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
  }

  .mobile-category-sheet__eyebrow {
    margin: 0 0 6px;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
  }

  .mobile-category-sheet__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(24px, 7.5vw, 34px);
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
  }

  .mobile-category-sheet__close {
    position: relative;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(26, 17, 36, 0.16);
    border-radius: 50%;
    background: transparent;
  }

  .mobile-category-sheet__close::before,
  .mobile-category-sheet__close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: var(--color-primary);
  }

  .mobile-category-sheet__close::before { transform: translate(-50%, -50%) rotate(45deg); }
  .mobile-category-sheet__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

  .mobile-category-sheet__header > *,
  .mobile-category-sheet__content {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.32s ease,
      transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-category-sheet.is-open .mobile-category-sheet__header > * {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
  }

  .mobile-category-sheet.is-open .mobile-category-sheet__content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.14s;
  }

  .mobile-category-sheet.is-closing .mobile-category-sheet__header > *,
  .mobile-category-sheet.is-closing .mobile-category-sheet__content {
    transition-delay: 0s;
  }

  .mobile-category-sheet__content .menu-drink {
    opacity: 0;
    transform: translateY(12px);
    animation: mobileSheetItemIn 0.45s ease forwards;
  }

  .mobile-category-sheet__content .menu-drink:nth-child(2) { animation-delay: 50ms; }
  .mobile-category-sheet__content .menu-drink:nth-child(3) { animation-delay: 100ms; }
  .mobile-category-sheet__content .menu-drink:nth-child(4) { animation-delay: 150ms; }

  .mobile-category-sheet__content .menu-carousel__group + .menu-carousel__group {
    margin-top: 28px;
  }

  /* Mobile B visual system: full-screen editorial slides in OH palette */
  body.is-mobile-vertical #about,
  body.is-mobile-vertical #coffee-tariffs,
  body.is-mobile-vertical #coffee-club,
  body.is-mobile-vertical #studio-tariffs,
  body.is-mobile-vertical #studio-works {
    isolation: isolate;
  }

  body.is-mobile-vertical #about {
    padding: 0;
    background: transparent;
  }

  body.is-mobile-vertical #about .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: calc(102px + env(safe-area-inset-top, 0px)) 20px
      calc(28px + env(safe-area-inset-bottom, 0px));
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.is-mobile-vertical #about .section-eyebrow {
    color: var(--color-gold, #d4a574);
  }

  body.is-mobile-vertical #about .section-title {
    max-width: 10ch;
    font-size: clamp(38px, 11vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #fff;
  }

  body.is-mobile-vertical #about .section-lead {
    max-width: 34rem;
    margin-bottom: clamp(18px, 4vh, 34px);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
  }

  body.is-mobile-vertical #about .about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  body.is-mobile-vertical #about .about-card {
    min-height: 190px;
    padding: 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(8, 4, 12, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  body.is-mobile-vertical #about .about-card h3,
  body.is-mobile-vertical #about .about-card__link {
    color: #fff;
  }

  body.is-mobile-vertical #about .about-card p {
    color: rgba(255, 255, 255, 0.72);
  }

  body.is-mobile-vertical #about .about-card__tag {
    color: var(--color-gold, #d4a574);
  }

  body.is-mobile-vertical #about .about-card h3 {
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.05;
  }

  body.is-mobile-vertical #coffee-tariffs {
    position: relative;
    background:
      radial-gradient(110% 76% at 8% 106%, rgba(112, 176, 153, 0.2), transparent 56%),
      radial-gradient(80% 54% at 100% 0%, rgba(89, 151, 129, 0.16), transparent 60%),
      linear-gradient(155deg, #173f35 0%, #13382f 100%);
  }

  body.is-mobile-vertical #coffee-tariffs::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 44%;
    left: -18%;
    width: 136%;
    height: 44%;
    border-top: 1px solid rgba(151, 204, 184, 0.2);
    border-radius: 50%;
    box-shadow:
      0 -24px 70px rgba(108, 174, 150, 0.1),
      inset 0 20px 64px rgba(112, 176, 153, 0.05);
    transform: rotate(-7deg);
    pointer-events: none;
  }

  body.is-mobile-vertical #studio-tariffs {
    position: relative;
    background:
      radial-gradient(96% 68% at 92% 106%, rgba(23, 63, 53, 0.11), transparent 58%),
      radial-gradient(72% 50% at 0% 0%, rgba(232, 30, 115, 0.08), transparent 62%),
      linear-gradient(155deg, #fffdfb 0%, #eee9e3 100%);
  }

  body.is-mobile-vertical #studio-tariffs::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 43%;
    left: -16%;
    width: 132%;
    height: 44%;
    border-top: 1px solid rgba(23, 63, 53, 0.14);
    border-radius: 50%;
    box-shadow:
      0 -24px 70px rgba(23, 63, 53, 0.06),
      inset 0 20px 64px rgba(23, 63, 53, 0.035);
    transform: rotate(7deg);
    pointer-events: none;
  }

  body.is-mobile-vertical #coffee-tariffs .page-screen__inner,
  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.is-mobile-vertical #coffee-tariffs .page-screen__inner {
    z-index: 1;
    justify-content: flex-start;
  }

  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    z-index: 1;
    justify-content: flex-start;
  }

  body.is-mobile-vertical .section--menu .menu-carousel__header {
    margin-bottom: clamp(18px, 3vh, 28px);
  }

  body.is-mobile-vertical .section--menu .section-title {
    max-width: 9ch;
    font-size: clamp(42px, 13vw, 60px);
    letter-spacing: -0.055em;
  }

  body.is-mobile-vertical #coffee-tariffs .menu-carousel__header {
    position: relative;
    min-height: 92px;
    margin-bottom: clamp(52px, 7vh, 70px);
  }

  body.is-mobile-vertical #coffee-tariffs .section-eyebrow {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 66px;
    width: 116px;
    margin: 0;
    color: rgba(210, 237, 227, 0.9);
    font-size: 10px;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
    text-align: center;
  }

  body.is-mobile-vertical #coffee-tariffs .section-title {
    margin: 16px 0 0;
    color: #fff;
    font-size: clamp(52px, 15vw, 66px);
    line-height: 0.94;
    text-shadow: 0 12px 30px rgba(7, 28, 23, 0.2);
  }

  body.is-mobile-vertical #coffee-tariffs .mobile-category-grid {
    margin-right: auto;
    margin-left: auto;
  }

  body.is-mobile-vertical #studio-tariffs .menu-carousel__header {
    position: relative;
    min-height: 92px;
    margin-bottom: clamp(52px, 7vh, 70px);
  }

  body.is-mobile-vertical #studio-tariffs .section-eyebrow {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 50px;
    width: 132px;
    margin: 0;
    color: rgba(23, 63, 53, 0.7);
    font-size: 10px;
    letter-spacing: 0.72em;
    text-align: center;
    text-indent: 0.72em;
  }

  body.is-mobile-vertical #studio-tariffs .section-title {
    margin: 16px 0 0;
    color: #173f35;
    font-size: clamp(52px, 15vw, 66px);
    line-height: 0.94;
    text-shadow: 0 12px 30px rgba(23, 63, 53, 0.1);
  }

  body.is-mobile-vertical #studio-tariffs .mobile-category-grid {
    margin-right: auto;
    margin-left: auto;
  }

  body.is-mobile-vertical #studio-tariffs .mobile-category-tile {
    color: #fff;
    background:
      radial-gradient(circle at 18% 82%, rgba(232, 30, 115, 0.16), transparent 34%),
      linear-gradient(145deg, #1f302d 0%, #102b25 100%);
  }

  body.is-mobile-vertical #studio-tariffs .mobile-category-tile::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -72px;
    left: -52px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(215, 238, 229, 0.12);
    border-radius: 50%;
    box-shadow:
      inset 0 0 54px rgba(215, 238, 229, 0.035),
      0 0 70px rgba(232, 30, 115, 0.06);
    pointer-events: none;
  }

  body.is-mobile-vertical #studio-tariffs .mobile-category-tile__copy {
    position: absolute;
    z-index: 4;
    top: 24px;
    right: 22px;
    display: flex;
    max-width: calc(100% - 44px);
    flex-direction: column;
    align-items: flex-end;
    color: #fff;
    text-align: right;
  }

  body.is-mobile-vertical #studio-tariffs .mobile-category-tile__name {
    color: #fff;
    font-size: clamp(30px, 9.6vw, 42px);
  }

  body.is-mobile-vertical #studio-tariffs .mobile-category-tile__subtype {
    max-width: 18ch;
    color: rgba(225, 242, 236, 0.7);
  }

  body.is-mobile-vertical #studio-tariffs .mobile-category-tile.is-active {
    box-shadow:
      0 30px 64px rgba(23, 63, 53, 0.22),
      0 8px 22px rgba(26, 17, 36, 0.12);
  }

  body.is-mobile-vertical[data-active-page="studio-tariffs"]:not(.is-mobile-category-open)
    #studio-tariffs .mobile-category-pagination {
    position: fixed;
    z-index: 30;
    right: auto;
    bottom: max(calc(8px + env(safe-area-inset-bottom, 0px)), 44px);
    left: 50%;
    border-color: rgba(23, 63, 53, 0.16);
    background: rgba(255, 255, 255, 0.52);
    box-shadow:
      0 12px 34px rgba(23, 63, 53, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    transform: translateX(-50%);
  }

  body.is-mobile-vertical[data-active-page="studio-tariffs"]
    #studio-tariffs .mobile-category-pagination__dot {
    background: rgba(23, 63, 53, 0.32);
  }

  body.is-mobile-vertical[data-active-page="studio-tariffs"]
    #studio-tariffs .mobile-category-pagination__dot.is-active {
    background: var(--color-accent);
  }

  body.is-mobile-vertical #coffee-tariffs .mobile-category-tile {
    background:
      radial-gradient(circle at 82% 12%, #f9dfe9 0%, transparent 36%),
      linear-gradient(145deg, #fffafd 0%, #f8edf2 100%);
  }

  body.is-mobile-vertical #coffee-tariffs .mobile-category-tile.is-active {
    box-shadow:
      0 30px 64px rgba(4, 24, 18, 0.34),
      0 8px 22px rgba(4, 24, 18, 0.2);
  }

  body.is-mobile-vertical[data-active-page="coffee-tariffs"]:not(.is-mobile-category-open)
    #coffee-tariffs .mobile-category-pagination {
    position: fixed;
    z-index: 30;
    right: auto;
    bottom: max(calc(8px + env(safe-area-inset-bottom, 0px)), 44px);
    left: 50%;
    border-color: rgba(225, 247, 239, 0.34);
    background: rgba(222, 245, 236, 0.16);
    box-shadow:
      0 12px 34px rgba(4, 24, 18, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    transform: translateX(-50%);
  }

  body.is-mobile-vertical[data-active-page="coffee-tariffs"]
    #coffee-tariffs .mobile-category-pagination__dot {
    background: rgba(225, 247, 239, 0.48);
  }

  body.is-mobile-vertical[data-active-page="coffee-tariffs"]
    #coffee-tariffs .mobile-category-pagination__dot.is-active {
    background: var(--color-accent);
  }

  body.is-mobile-vertical #coffee-club {
    padding: 0;
    background:
      radial-gradient(circle at 85% 8%, rgba(212, 165, 116, 0.22), transparent 32%),
      linear-gradient(180deg, #f8f1ea 0%, #ede3da 100%);
  }

  body.is-mobile-vertical #coffee-club > .container {
    padding: calc(98px + env(safe-area-inset-top, 0px)) 18px
      calc(24px + env(safe-area-inset-bottom, 0px));
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.is-mobile-vertical #coffee-club .club-card {
    min-height: min(70vh, 620px);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(60, 39, 24, 0.17);
  }

  body.is-mobile-vertical #studio-works {
    padding: 0;
    background:
      radial-gradient(circle at 10% 0%, rgba(232, 30, 115, 0.13), transparent 30%),
      linear-gradient(180deg, #fff 0%, #fcebf1 100%);
  }

  body.is-mobile-vertical #studio-works .works-layout {
    padding: calc(102px + env(safe-area-inset-top, 0px)) 16px
      calc(20px + env(safe-area-inset-bottom, 0px));
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.is-mobile-vertical #studio-works .works-slide {
    border-radius: 28px;
    box-shadow: 0 24px 58px rgba(26, 17, 36, 0.13);
  }

  body.is-mobile-vertical .mobile-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.65s ease var(--mobile-reveal-delay, 0ms),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--mobile-reveal-delay, 0ms);
  }

  body.is-mobile-vertical .mobile-reveal.is-mobile-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  body.is-mobile-vertical #contacts .contacts-shell {
    padding: 30px 20px 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  body.is-mobile-vertical #contacts .contacts-info {
    gap: 0;
  }

  body.is-mobile-vertical #contacts .contacts-block {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 0;
  }

  body.is-mobile-vertical #contacts .contacts-block:first-of-type {
    padding-top: 26px;
  }

  body.is-mobile-vertical #contacts .contacts-actions {
    margin-top: 28px;
  }

  body.is-mobile-vertical #contacts .contacts-map,
  body.is-mobile-vertical #contacts .social-window {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  @keyframes mobileCategoryIn {
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes mobileSheetItemIn {
    to { opacity: 1; transform: translateY(0); }
  }

  .page-nav,
  body.is-mobile-vertical .page-nav {
    display: none !important;
  }

  .section--works.ml-layer-section,
  body.is-mobile-landing-ready:not(.is-mobile-vertical) #studio-works {
    min-height: 100%;
    height: 100%;
    padding-top: calc(64px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  body.is-mobile-vertical #studio-works.page-screen {
    display: flex;
    flex-direction: column;
    /* Clears the fixed mobile header (~98px) so the eyebrow/title aren't hidden behind it */
    padding-top: calc(104px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px));
  }

  body.is-mobile-vertical #studio-works .works-layout {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
  }

  .section--works .page-screen__inner {
    height: 100%;
  }

  .works-stage {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    min-height: 0;
    flex: 1;
  }

  .works-nav {
    display: none;
  }

  .works-slide {
    min-height: 0;
    height: 100%;
  }

  .works-slide__visual {
    min-height: 220px;
  }

  .works-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .works-tabs__btn {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 11px;
  }

  .page-screen--fill .menu-carousel__stage {
    height: clamp(420px, calc(100vh - 180px), 640px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-category-tile,
  .mobile-category-sheet__panel,
  .mobile-category-sheet__backdrop,
  .mobile-category-sheet__content .menu-drink,
  body.is-mobile-vertical .mobile-reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .works-slide__visual::before,
  .works-stage.is-settle .works-slide {
    animation: none;
    transition: none;
  }
}

@media (max-width: 992px) {
  body.is-mobile-vertical[data-active-page="studio-about"] .site-header,
  body.is-mobile-vertical[data-active-page="studio-about"] .site-header.is-visible,
  body.is-mobile-vertical[data-active-page="studio-tariffs"] .site-header,
  body.is-mobile-vertical[data-active-page="studio-tariffs"] .site-header.is-visible {
    transform: translateY(calc(-100% - 24px));
    opacity: 0;
    pointer-events: none;
  }

  body.is-mobile-vertical #coffee-club-card .club-card__content,
  body.is-mobile-vertical #coffee-club-card .club-promo,
  body.is-mobile-vertical #coffee-club-card .club-wallet {
    align-items: center;
    text-align: center;
  }

  body.is-mobile-vertical #coffee-club-card .club-card__content .btn {
    align-self: center;
  }

  body.is-mobile-vertical #coffee-club-card .club-card__visual {
    justify-content: center;
  }

  body.is-mobile-vertical #coffee-club-card .club-promo-visual[hidden],
  body.is-mobile-vertical #coffee-club-card .club-stamps[hidden] {
    display: none !important;
  }

  body.is-mobile-vertical #coffee-club-card .club-stamps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 280px);
    margin: 0 auto;
    gap: 12px 10px;
    padding: 12px 8px;
  }

  body.is-mobile-vertical #coffee-club-card .club-stamps__brand {
    grid-column: 1 / -1;
    margin: 0 0 6px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
  }

  body.is-mobile-vertical #studio-about.page-screen {
    min-height: var(--app-height, 100lvh);
    height: var(--app-height, 100lvh);
    max-height: var(--app-height, 100lvh);
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #08060a;
  }

  body.is-mobile-vertical #studio-about .about-studio__stage,
  body.is-mobile-vertical #studio-about .about-studio__compose {
    position: relative;
    display: block;
    min-height: 100%;
    height: auto;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  body.is-mobile-vertical #studio-about .about-studio__hero {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: var(--app-height, 100lvh);
    height: var(--app-height, 100lvh);
    max-height: var(--app-height, 100lvh);
    overflow: hidden;
    background: #08060a;
  }

  body.is-mobile-vertical #studio-about .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-hold .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-rise .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-full .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-sound .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-copy .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-peek .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-blur .about-studio__video--hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    transform: none;
    filter: brightness(0.68);
    border-radius: 0;
    box-shadow: none;
  }

  body.is-mobile-vertical #studio-about .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-copy .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-peek .about-studio__panel {
    position: relative;
    z-index: 3;
    min-height: var(--app-height, 100lvh);
    margin: calc(-1 * var(--app-height, 100lvh)) 0 0;
    padding: calc(94px + env(safe-area-inset-top, 0px)) 16px calc(32px + env(safe-area-inset-bottom, 0px));
    gap: 12px;
    overflow: visible;
    opacity: 1;
    transform: none;
  }

  body.is-mobile-vertical #studio-tariffs {
    padding-top: 0;
    padding-bottom: 0;
  }

  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    height: 100%;
    padding-top: calc(14px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  /* Final mobile composition: browser-safe backgrounds, roomier split cards,
     full menu canvases, and a restrained video bottom sheet. */
  html:has(body.is-mobile-vertical),
  body.is-mobile-vertical {
    background: var(--active-page-bg, #1A1124);
    background-color: var(--active-page-bg, #1A1124);
  }

  body.is-mobile-vertical::before {
    content: '';
    position: fixed;
    z-index: -1;
    inset: -120px 0;
    background: var(--active-page-bg, #1A1124);
    pointer-events: none;
  }

  body.is-mobile-vertical #about {
    padding-top: calc(108px + env(safe-area-inset-top, 0px));
  }

  body.is-mobile-vertical #about .about-cards {
    gap: 16px;
  }

  body.is-mobile-vertical #coffee-tariffs .page-screen__inner,
  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    border-radius: 0;
    box-shadow: none;
  }

  body.is-mobile-vertical #coffee-tariffs .menu-carousel__stage,
  body.is-mobile-vertical #studio-tariffs .menu-carousel__stage {
    padding-left: 0;
    padding-right: 0;
  }

  body.is-mobile-vertical #coffee-tariffs .menu-carousel__card,
  body.is-mobile-vertical #studio-tariffs .menu-carousel__card {
    width: calc(100vw - 32px);
    max-width: none;
    margin-left: calc((32px - 100vw) / 2);
    border-radius: 20px;
  }

  body.is-mobile-vertical #studio-about.page-screen {
    overflow-y: hidden;
  }

  body.is-mobile-vertical #studio-about.is-about-phase-copy,
  body.is-mobile-vertical #studio-about.is-about-phase-peek {
    overflow-y: auto;
  }

  body.is-mobile-vertical #studio-about .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-hold .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-rise .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-full .about-studio__video--hero,
  body.is-mobile-vertical #studio-about.is-about-phase-sound .about-studio__video--hero {
    filter: none;
  }

  body.is-mobile-vertical #studio-about .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-hold .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-rise .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-full .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-sound .about-studio__panel {
    min-height: var(--app-height, 100lvh);
    max-height: none;
    margin: calc(-1 * var(--app-height, 100lvh)) 0 0;
    padding: 0 16px calc(42px + env(safe-area-inset-bottom, 0px));
    overflow: visible;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate3d(0, 100%, 0) !important;
    pointer-events: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none !important;
    transition:
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.68s ease;
  }

  body.is-mobile-vertical #studio-about.is-about-phase-copy .about-studio__panel,
  body.is-mobile-vertical #studio-about.is-about-phase-peek .about-studio__panel {
    min-height: var(--app-height, 100lvh);
    max-height: none;
    margin: calc(-0.5 * var(--app-height, 100lvh)) 0 0;
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(0, 0, 0) !important;
    pointer-events: auto;
  }

  body.is-mobile-vertical #studio-about .about-studio__panel > * {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  }

  /* Accessible hit areas: controls stay visually compact but receive a
     minimum 44px touch target on mobile. */
  body.is-mobile-vertical .menu-drink__book,
  body.is-mobile-vertical .about-studio__chip,
  body.is-mobile-vertical .club-wallet__reset,
  body.is-mobile-vertical .works-tabs__btn,
  body.is-mobile-vertical .social-window__caption,
  body.is-mobile-vertical .contacts-block a,
  body.is-mobile-vertical .site-footer__nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  body.is-mobile-vertical .menu-drink__book {
    min-height: 49px;
    padding-block: 4px;
  }

  body.is-mobile-vertical .menu-carousel__tap {
    min-width: 44px;
    min-height: 44px;
  }

  body.is-mobile-vertical .menu-carousel__dot,
  body.is-mobile-vertical .works-pips__dot {
    position: relative;
    width: 44px;
    height: 44px;
    background: transparent;
  }

  body.is-mobile-vertical .menu-carousel__dot::before,
  body.is-mobile-vertical .works-pips__dot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(26, 17, 36, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, background 0.25s ease;
  }

  body.is-mobile-vertical .menu-carousel__dot.is-active::before {
    width: 28px;
    background: var(--color-accent);
  }

  body.is-mobile-vertical .works-pips__dot.is-active::before {
    width: 22px;
    background: var(--color-accent);
  }

  body.is-mobile-vertical #contacts,
  body.is-mobile-vertical .site-footer {
    touch-action: pan-y;
    overscroll-behavior-y: auto;
  }
}

@media (max-width: 992px) {
  body.is-mobile-vertical[data-active-page="studio-tariffs"] .site-header,
  body.is-mobile-vertical[data-active-page="studio-tariffs"] .site-header.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.is-mobile-vertical #studio-tariffs {
    padding: calc(112px + env(safe-area-inset-top, 0px)) 18px
      calc(32px + env(safe-area-inset-bottom, 0px));
  }

  body.is-mobile-vertical #studio-tariffs .page-screen__inner {
    height: 100%;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 16px
      calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

/* Mobile swipe depth: animate UI only, never large background layers. */
@media (max-width: 992px) {
  body.is-mobile-vertical.has-mobile-page-motion .page-screen > .container,
  body.is-mobile-vertical.has-mobile-page-motion .page-screen > .page-screen__inner,
  body.is-mobile-vertical.has-mobile-page-motion .hero-screen .hero-logo-layer {
    scale: var(--mobile-ui-scale, 1);
    opacity: var(--mobile-ui-opacity, 1);
    transform-origin: center center;
    transition:
      scale 0.62s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.42s ease;
    will-change: scale, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  body.is-mobile-vertical.has-mobile-page-motion.is-page-dragging .page-screen > .container,
  body.is-mobile-vertical.has-mobile-page-motion.is-page-dragging .page-screen > .page-screen__inner,
  body.is-mobile-vertical.has-mobile-page-motion.is-page-dragging .hero-screen .hero-logo-layer {
    transition: none;
  }

  body.is-mobile-vertical.has-mobile-page-motion.is-page-paging .page-screen > .container,
  body.is-mobile-vertical.has-mobile-page-motion.is-page-paging .page-screen > .page-screen__inner,
  body.is-mobile-vertical.has-mobile-page-motion.is-page-paging .hero-screen .hero-logo-layer {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-mobile-vertical.has-mobile-page-motion .page-screen > .container,
  body.is-mobile-vertical.has-mobile-page-motion .page-screen > .page-screen__inner,
  body.is-mobile-vertical.has-mobile-page-motion .hero-screen .hero-logo-layer {
    scale: 1;
    opacity: 1;
    transition: none;
  }
}

