:root {
  --bg: #070707;
  --bg-soft: #0d0d0c;
  --ink: #eee6d6;
  --muted: #a69d8f;
  --faint: rgba(238, 230, 214, 0.52);
  --line: rgba(238, 230, 214, 0.18);
  --line-strong: rgba(238, 230, 214, 0.36);
  --nav-h: 78px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Cormorant Garamond", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 26rem),
    linear-gradient(180deg, #090908 0%, #050505 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

.grain {
  display: none;
}

.app-shell {
  position: relative;
  width: min(100%, 520px);
  min-height: 100svh;
  margin: 0 auto;
  background: var(--bg);
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.46);
}

.view {
  display: none;
  min-height: 100svh;
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom));
}

.view-home {
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom));
}

.view-booking {
  min-height: 100svh;
  overflow: visible;
}

.view.is-active {
  display: block;
  animation: viewIn 420ms ease both;
}

@keyframes viewIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scene {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.scene-full {
  min-height: 100svh;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(0.78) contrast(1.08) brightness(0.8);
  transform: scale(1.01);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  to {
    transform: scale(1.065);
  }
}

.scene-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, transparent 34%, rgba(0, 0, 0, 0.68) 76%, #070707 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 42%, rgba(0, 0, 0, 0.22));
}

.hero__topline {
  position: absolute;
  top: max(22px, env(safe-area-inset-top));
  left: 22px;
  z-index: 1;
  color: var(--ink);
  font-size: 13px;
  font-weight: 520;
  text-transform: uppercase;
}

.hero__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: calc(var(--nav-h) + 40px + env(safe-area-inset-bottom));
  z-index: 1;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero {
  margin-bottom: 0;
}

.intro-statement {
  position: relative;
  padding: 24px 24px 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0, transparent 72px),
    var(--bg);
}

.intro-statement h2 {
  max-width: 15ch;
  font-family: var(--serif);
  font-size: clamp(28px, 8.4vw, 42px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.intro-statement > p:last-child {
  max-width: 18rem;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 17vw, 86px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero p {
  margin-top: 12px;
  color: rgba(238, 230, 214, 0.74);
  font-size: 14px;
}

.line-cta {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding: 0 2px;
  border: 0;
  border-top: 1px solid rgba(238, 230, 214, 0.24);
  border-bottom: 1px solid rgba(238, 230, 214, 0.12);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-cta svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.line-cta:is(:hover, :focus-visible) svg {
  transform: translateX(4px);
}

.line-cta:focus-visible {
  outline: 1px solid rgba(238, 230, 214, 0.34);
  outline-offset: 4px;
}


.eyeless,
.screen-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-block h2,
.booking-screen h2,
.profile-login h2 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 11vw, 56px);
  font-weight: 400;
  line-height: 0.96;
}


.featured-work {
  position: relative;
  height: 60svh;
  min-height: 400px;
  max-height: 600px;
  margin-bottom: 32px;
  overflow: hidden;
  background: #040404;
}


.featured-work img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03) brightness(0.78);
}

.featured-work::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
  pointer-events: none;
}

.work-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 32px;
  z-index: 1;
}

.work-caption--top {
  top: 28px;
  bottom: auto;
}

.work-caption h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 7vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}

.work-caption p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.booking-screen p,
.profile-login p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.studio-location {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 24px 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(238, 230, 214, 0.018);
}

.studio-map__copy h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 9vw, 46px);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.studio-map__copy > p:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.studio-location__actions {
  display: flex;
  flex-direction: column;
}

.studio-location__actions .line-cta {
  margin-top: 0;
}

.studio-location__actions .line-cta + .line-cta {
  border-top: none;
}

.route-modal[hidden] {
  display: none;
}

.route-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.route-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
}

.route-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: 100vh;
  margin: 0 auto;
  padding: 22px 20px 20px;
  overflow: auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: #080808;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  scrollbar-width: none;
}

.route-modal__dialog::-webkit-scrollbar {
  display: none;
}

.route-modal__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  background: transparent;
}

.route-modal__header .eyebrow {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.route-modal__close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.route-modal__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.route-modal__grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.route-modal__grid figure {
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #050505;
}

.route-modal__grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.78) contrast(1.05) brightness(0.88);
}

.route-modal__grid figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.location-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-panel__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
}

.location-panel__header div,
.location-facts div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-panel__header span,
.location-facts span {
  color: rgba(238, 230, 214, 0.42);
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-panel__header strong,
.location-facts strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.35;
}

.location-copy {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.location-copy.is-copied {
  border-color: var(--line-strong);
  color: var(--ink);
}

.location-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-bottom: 22px;
}

.location-actions a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-facts {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.location-facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.studio-map__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #040404;
}

.studio-map__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.02), rgba(7, 7, 7, 0.08)),
    radial-gradient(circle at 50% 45%, transparent 50%, rgba(7, 7, 7, 0.18) 100%);
  box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.studio-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) hue-rotate(180deg) contrast(1.28) brightness(0.98);
}

.studio-map__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  min-width: 208px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(238, 230, 214, 0.72);
  background: rgba(7, 7, 7, 0.86);
  color: var(--ink);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.44);
}

.studio-map__marker-dot {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow:
    0 0 0 7px rgba(238, 230, 214, 0.16),
    0 0 22px rgba(238, 230, 214, 0.28);
}

.studio-map__marker strong,
.studio-map__marker small {
  display: block;
}

.studio-map__marker strong {
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.12em;
}

.studio-map__marker small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.app-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: auto;
  padding: 32px 24px 12px;
  border-top: 1px solid rgba(238, 230, 214, 0.08);
}

.footer-socials {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.footer-socials a {
  color: var(--muted);
  transition: color 200ms ease, transform 200ms ease;
}

.footer-socials a:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a[aria-label="VK"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-copy {
  color: rgba(238, 230, 214, 0.28);
  font-size: 11px;
  font-weight: 520;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.works-feed {
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.works-feed::-webkit-scrollbar {
  display: none;
}

.works-top-button {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: calc(var(--nav-h) + 16px + env(safe-area-inset-bottom));
  z-index: 6;
  border: 1px solid rgba(238, 230, 214, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(7, 7, 7, 0.58);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.works-top-button:active {
  transform: translateY(1px);
}

.work-slide {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  overflow: hidden;
  background: #050505;
}

.work-gallery {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.work-gallery__track {
  width: 100%;
  height: 100svh;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.work-gallery__track::-webkit-scrollbar {
  display: none;
}

.work-frame {
  flex: 0 0 100%;
  width: 100%;
  height: 100svh;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.work-frame button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.work-frame img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.78);
}

.work-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 42%, rgba(0, 0, 0, 0.76)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 48%);
  pointer-events: none;
}

.slide-index {
  position: absolute;
  top: max(22px, env(safe-area-inset-top));
  left: 22px;
  z-index: 1;
  color: var(--faint);
  font-size: 12px;
}

.slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: calc(var(--nav-h) + 36px + env(safe-area-inset-bottom));
  z-index: 1;
}

.slide-caption h2 {
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 400;
  line-height: 0.96;
}

.slide-caption p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.work-gallery__controls {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: 40px auto 40px;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(238, 230, 214, 0.18);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.54);
  backdrop-filter: blur(12px);
}

.work-gallery__controls button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 25px;
}

.work-gallery__controls span {
  min-width: 42px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.works-state {
  min-height: 100svh;
  padding: 24px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  background: #070707;
  color: var(--muted);
  text-align: center;
}

.works-state h2 {
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 400;
  line-height: .95;
}

.works-state p { margin: 0; }
.works-state button { min-height: 46px; padding: 0 22px; border: 1px solid rgba(238,230,214,.22); border-radius: 999px; background: transparent; color: var(--ink); }
.works-loader { width: 30px; height: 30px; border: 2px solid rgba(238,230,214,.16); border-top-color: var(--ink); border-radius: 50%; animation: works-spin .8s linear infinite; }
@keyframes works-spin { to { transform: rotate(360deg); } }

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
}

.portfolio-lightbox__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.portfolio-lightbox__dialog { position: relative; width: 100%; height: 100%; background: #050505; color: var(--ink); }
.portfolio-lightbox__header { position: absolute; z-index: 4; top: 0; left: 0; right: 0; min-height: 74px; padding: max(16px,env(safe-area-inset-top)) 18px 10px; display: flex; align-items: flex-start; justify-content: space-between; background: linear-gradient(180deg,rgba(0,0,0,.72),transparent); }
.portfolio-lightbox__header p,.portfolio-lightbox__header span { display: block; margin: 0; }
.portfolio-lightbox__header p { font-family: var(--serif); font-size: 22px; }
.portfolio-lightbox__header span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.portfolio-lightbox__header button { width: 44px; height: 44px; border: 1px solid rgba(238,230,214,.2); border-radius: 50%; background: rgba(0,0,0,.34); color: var(--ink); font-size: 28px; }
.portfolio-lightbox__stage,.portfolio-lightbox__track { width: 100%; height: 100%; }
.portfolio-lightbox__track { display: flex; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; }
.portfolio-lightbox__track::-webkit-scrollbar { display: none; }
.portfolio-lightbox__track figure { flex: 0 0 100%; width: 100%; height: 100%; margin: 0; display: grid; place-items: center; scroll-snap-align: start; scroll-snap-stop: always; }
.portfolio-lightbox__track img { max-width: 100%; max-height: 100%; object-fit: contain; }
.portfolio-lightbox__arrow { position: absolute; z-index: 4; top: 50%; width: 48px; height: 60px; border: 0; background: rgba(0,0,0,.4); color: var(--ink); font-size: 38px; transform: translateY(-50%); }
.portfolio-lightbox__arrow--prev { left: 12px; }
.portfolio-lightbox__arrow--next { right: 12px; }
.portfolio-lightbox__arrow:disabled { opacity: .2; }
.portfolio-lightbox-open { overflow: hidden; }

@media (max-width: 680px) {
  .slide-index { top: max(26px, env(safe-area-inset-top)); }
  .work-gallery__controls { top: auto; bottom: calc(var(--nav-h) + 22px + env(safe-area-inset-bottom)); right: auto; left: 18px; }
  .slide-caption { bottom: calc(var(--nav-h) + 94px + env(safe-area-inset-bottom)); }
  .portfolio-lightbox__arrow { top: auto; bottom: calc(18px + env(safe-area-inset-bottom)); transform: none; border-radius: 50%; }
}

.booking-screen,
.profile-screen {
  min-height: 100svh;
  padding: max(28px, env(safe-area-inset-top)) 24px calc(var(--nav-h) + 30px);
  background:
    radial-gradient(circle at 50% 45%, rgba(238, 230, 214, 0.06), transparent 11rem),
    var(--bg);
}

.booking-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.telegram-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 0 auto 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.telegram-mark svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.booking-screen .screen-label,
.booking-screen h2,
.booking-screen p {
  text-align: center;
}

.line-cta--center {
  max-width: 340px;
  margin-right: auto;
  margin-left: auto;
}

.profile-screen img {
  width: 100%;
  height: 44svh;
  margin-top: 28px;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.82);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.profile-login {
  padding: 44px 0 30px;
  text-align: center;
}

.profile-login h2 {
  font-size: 36px;
}

.status-list {
  margin: 0;
  padding: 8px 0 0;
}

.status-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.status-list dt,
.status-list dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.status-list dt {
  color: var(--faint);
}

.status-list dd {
  color: rgba(238, 230, 214, 0.82);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 40;
  display: grid;
  width: min(100%, 520px);
  min-height: calc(72px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(238, 230, 214, 0.08);
  background: rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.bottom-nav button {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 54px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: rgba(238, 230, 214, 0.52);
  cursor: pointer;
  font-size: 9.5px;
  font-weight: 520;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-transform: uppercase;
}

.bottom-nav button:focus-visible {
  border-radius: 8px;
  outline: 1px solid rgba(238, 230, 214, 0.22);
  outline-offset: -2px;
}

.bottom-nav svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.bottom-nav button.is-active {
  color: var(--ink);
}

.bottom-nav button.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

/* Booking Wizard Styles */
.booking-wizard {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: max(18px, env(safe-area-inset-top)) 20px calc(var(--nav-h) + env(safe-area-inset-bottom) + 32px);
  background: var(--bg);
  position: relative;
  overflow: visible;
}

.wizard-header {
  margin-bottom: clamp(22px, 5svh, 36px);
}

.wizard-progress {
  height: 1px;
  background: rgba(238, 230, 214, 0.1);
  width: 100%;
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 12px;
}

.wizard-progress-bar {
  height: 100%;
  background: var(--ink);
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.wizard-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.wizard-nav-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.wizard-step-indicator {
  color: var(--faint);
  display: block;
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-slides {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wizard-slide {
  display: none;
  flex: 1;
  flex-direction: column;
}

.wizard-slide.is-active {
  display: flex;
  animation: slideIn 400ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-slide-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  padding-top: clamp(10px, 3svh, 26px);
}

.wizard-question-title {
  font-family: var(--serif);
  font-size: clamp(24px, 6.1vw, 32px);
  font-weight: 400;
  line-height: 1.12;
  max-width: 100%;
  margin: 0 0 clamp(22px, 5svh, 34px);
}

.wizard-question-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.wizard-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.option-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  min-height: 92px;
  justify-content: center;
  padding: 20px 34px 20px 0;
  border: 0;
  border-top: 1px solid rgba(238, 230, 214, 0.14);
  border-bottom: 1px solid rgba(238, 230, 214, 0.07);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s, opacity 0.22s, transform 0.22s;
}

.option-card:hover {
  border-top-color: rgba(238, 230, 214, 0.34);
  transform: translateX(3px);
}

.option-card::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(238, 230, 214, 0.55);
  border-right: 1px solid rgba(238, 230, 214, 0.55);
  opacity: 0.42;
  transform: translateY(-50%) rotate(45deg);
  transition: opacity 0.22s, transform 0.22s;
}

.option-card:hover::after,
.option-card.selected::after {
  opacity: 0.74;
  transform: translate(3px, -50%) rotate(45deg);
}

.option-card.selected {
  border-top-color: var(--ink);
  color: var(--ink);
}

.option-title {
  font-size: 16px;
  font-weight: 560;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.option-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

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

/* File Upload Styles */
.file-uploader {
  margin-bottom: 22px;
}

.uploader-zone {
  width: 100%;
  min-height: 132px;
  border: 1px dashed rgba(238, 230, 214, 0.18);
  border-radius: 8px;
  padding: 28px 18px;
  text-align: center;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font: inherit;
}

.booking-contact input[aria-invalid="true"] {
  border-color: #e97961;
  outline: 1px solid #e97961;
}

.booking-success {
  padding: 12vh 0 20px;
}

.booking-success h3 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(44px, 12vw, 68px);
  font-weight: 400;
  line-height: .92;
}

.booking-success > p:not(.screen-label) {
  max-width: 30rem;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.uploader-zone:hover,
.file-uploader.drag-over .uploader-zone {
  border-color: var(--line-strong);
  background: rgba(238, 230, 214, 0.025);
}

.uploader-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uploader-zone span {
  font-size: 13px;
  font-weight: 520;
}

.file-limits {
  font-size: 11px;
  color: var(--faint);
}

.uploader-preview {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  height: 160px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploader-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.btn-remove-file {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-remove-file:hover {
  background: var(--bg);
}

.btn-remove-file svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.field-group label {
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.field-group textarea {
  width: 100%;
  min-height: 124px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
}

.field-group textarea:focus {
  border-color: var(--line-strong);
}

/* Body Map Styles */
.body-map-step {
  justify-content: flex-start;
}

/* Luxury Body Menu (Plan B) */
.body-view-fieldset {
  min-width: 0;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.body-view-fieldset legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.body-view-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.body-view-option {
  min-height: 44px;
  border: 1px solid rgba(238, 230, 214, 0.14);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.body-view-option[aria-pressed="true"] {
  border-color: var(--ink);
  background: rgba(238, 230, 214, 0.06);
  color: var(--ink);
}

.luxury-body-menu {
  display: grid;
  gap: 10px;
  width: 100%;
  border-top: 0;
}

.luxury-zone-group {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid rgba(238, 230, 214, 0.13);
  border-radius: 8px;
  overflow: visible;
  transition: border-color 0.2s;
}

.luxury-zone-group:hover {
  border-color: rgba(238, 230, 214, 0.28);
}

.luxury-zone-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 560;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.luxury-zone-btn svg.chevron {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.5;
}

.luxury-zone-btn.active svg.chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.luxury-zone-btn.active {
  background: rgba(238, 230, 214, 0.035);
}

.luxury-subzones-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 12px 12px;
  background: transparent;
  animation: slideDown 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.luxury-subzone-btn {
  width: 100%;
  min-height: 44px;
  padding: 9px 10px;
  background: transparent;
  border: 1px solid rgba(238, 230, 214, 0.12);
  border-radius: 6px;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: all 0.2s;
}

.luxury-subzone-btn:hover {
  color: var(--ink);
  border-color: rgba(238, 230, 214, 0.3);
  background: rgba(238, 230, 214, 0.025);
}

.luxury-subzone-btn.selected {
  color: var(--ink);
  background: rgba(238, 230, 214, 0.055);
  border-color: var(--line);
  font-weight: 520;
}

.luxury-subzone-custom {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
}

.luxury-subzone-custom.visible {
  display: grid;
}

.luxury-subzone-custom-label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.luxury-subzone-custom-input {
  width: min(100%, 520px);
  min-height: 44px;
  padding: 10px 12px;
  background: rgba(238, 230, 214, 0.02);
  border: 1px solid rgba(238, 230, 214, 0.12);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.luxury-subzone-custom-input::placeholder {
  color: rgba(238, 230, 214, 0.34);
}

.luxury-subzone-custom-input:focus {
  outline: none;
  border-color: rgba(238, 230, 214, 0.28);
  background: rgba(238, 230, 214, 0.035);
}

.luxury-subzone-custom-submit {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 230, 214, 0.06);
  border: 1px solid rgba(238, 230, 214, 0.14);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.luxury-subzone-custom-submit:hover {
  background: rgba(238, 230, 214, 0.1);
  border-color: rgba(238, 230, 214, 0.24);
}

.luxury-subzone-custom-submit:focus-visible {
  outline: none;
  border-color: rgba(238, 230, 214, 0.32);
  background: rgba(238, 230, 214, 0.12);
}

.luxury-subzone-custom-submit:active {
  transform: translateX(1px);
}

.luxury-subzone-custom-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Size Step Styles */
.size-presets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.size-preset-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 58px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid rgba(238, 230, 214, 0.12);
  border-radius: 8px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s;
}

.size-preset-card:hover {
  border-color: rgba(238, 230, 214, 0.3);
}

.size-preset-card.selected {
  border-color: var(--ink);
  background: rgba(238, 230, 214, 0.045);
}

.preset-badge {
  position: absolute;
  left: 8px;
  top: 46%;
  min-width: 112px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 102px;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(238, 230, 214, 0.2);
  pointer-events: none;
  transform: translateY(-50%);
}

.size-preset-card.selected .preset-badge {
  color: rgba(238, 230, 214, 0.28);
}

.preset-size {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
  padding-right: 2px;
}

.size-comparison {
  padding-top: 8px;
  margin-bottom: 8px;
}

/* Size Visualizer */
.size-visualizer {
  min-height: 150px;
  padding: 10px;
  border: 1px solid rgba(238, 230, 214, 0.1);
  border-radius: 8px;
  background: rgba(238, 230, 214, 0.018);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visualizer-container {
  display: flex;
  width: 100%;
  max-width: 260px;
  min-height: 136px;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}

.visualizer-reference {
  flex: 0 0 auto;
  width: 38px;
  height: 66px;
  border: 1px solid rgba(238, 230, 214, 0.42);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--faint);
  text-align: center;
  background: rgba(238, 230, 214, 0.01);
  overflow: hidden;
  will-change: width, height;
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1), height 0.42s cubic-bezier(0.22, 1, 0.36, 1), font-size 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.visualizer-tattoo-box {
  width: 64px;
  height: 64px;
  max-width: 132px;
  max-height: 132px;
  border: 1px solid rgba(238, 230, 214, 0.7);
  border-radius: 2px;
  background: rgba(238, 230, 214, 0.045);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  will-change: width, height;
  transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1), height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.visualizer-reference span,
.visualizer-tattoo-box span {
  transition: opacity 0.22s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.visualizer-reference span {
  white-space: nowrap;
}

.wizard-slide[data-step="6"] .wizard-question-title {
  margin-bottom: 18px;
}

.wizard-slide[data-step="6"] .line-cta {
  min-height: 50px;
  margin-top: 10px;
}

@media (max-height: 760px) {
  .wizard-header {
    margin-bottom: 18px;
  }

  .wizard-slide-content {
    padding-top: 8px;
  }

  .wizard-slide[data-step="6"] .wizard-question-title {
    margin-bottom: 12px;
  }

  .size-presets {
    gap: 5px;
    margin-bottom: 8px;
  }

  .size-preset-card {
    min-height: 48px;
  }

  .preset-badge {
    font-size: 82px;
  }

  .preset-size {
    font-size: 20px;
  }

  .size-comparison {
    padding-top: 4px;
    margin-bottom: 6px;
  }

  .size-visualizer {
    min-height: 116px;
    padding: 8px;
  }

  .visualizer-container {
    min-height: 100px;
  }

  .wizard-slide[data-step="6"] .line-cta {
    margin-top: 6px;
  }
}

/* Step 7 Previews */
.uploader-previews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.upload-restore-notice {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 2px solid var(--ink);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.upload-restore-notice[hidden] {
  display: none;
}

.uploader-preview-item {
  position: relative;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-soft);
}

.uploader-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uploader-preview-item .btn-remove-item {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.8);
  border: 0;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.uploader-preview-item .btn-remove-item svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.sub-title {
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  margin-top: 12px;
}

/* Step 8 Confirmation & Summary */
.confirmation-slide {
  justify-content: flex-start;
}

.summary-card {
  background: transparent;
  border-top: 1px solid rgba(238, 230, 214, 0.16);
  border-bottom: 1px solid rgba(238, 230, 214, 0.16);
  border-radius: 0;
  padding: 6px 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.summary-row {
  display: grid;
  grid-template-columns: minmax(92px, 34%) 1fr;
  gap: 12px;
  font-size: 13px;
  line-height: 1.4;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(238, 230, 214, 0.08);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-label {
  color: var(--faint);
}

.summary-value {
  color: var(--ink);
  font-weight: 520;
}

.price-estimate-box {
  border: 1px solid rgba(238, 230, 214, 0.18);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  margin-bottom: 16px;
  background: rgba(238, 230, 214, 0.025);
}

.estimate-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.estimate-value {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  display: block;
  font-weight: 400;
  margin-bottom: 6px;
}

.estimate-note {
  font-size: 11px;
  color: var(--faint);
  line-height: 1.4;
}

.booking-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.booking-contact {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.booking-contact label {
  display: grid;
  gap: 7px;
  color: var(--text-secondary, #777);
  font-size: 12px;
  letter-spacing: .04em;
}

.booking-contact input,
.booking-contact select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 10px 12px;
}

.booking-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-restart {
  background: transparent;
  border: 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px;
  transition: color 0.2s;
}

.btn-restart:hover {
  color: var(--ink);
}

/* Wizard Footer Navigation */
.wizard-btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  padding: 2px;
  min-width: 28px;
  min-height: 28px;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}

.wizard-btn-back.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.wizard-btn-back:hover {
  color: var(--ink);
}

.wizard-btn-back svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
}

.wizard-step-dots {
  display: none;
  gap: 6px;
  min-height: 14px;
}

.wizard-dot {
  width: 16px;
  height: 2px;
  border-radius: 0;
  background: rgba(238, 230, 214, 0.14);
  transition: background-color 0.25s, transform 0.25s;
}

.wizard-dot.active {
  background: var(--ink);
  transform: none;
}

/* Custom Toast Notification */
.wizard-toast {
  position: fixed;
  bottom: calc(var(--nav-h) + 24px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #0d0d0c;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  animation: toastIn 350ms cubic-bezier(0.25, 1, 0.5, 1) both;
}

.wizard-slides.is-transitioning {
  pointer-events: none;
}

.option-card:focus-visible,
.uploader-zone:focus-visible,
.btn-remove-file:focus-visible,
.btn-remove-item:focus-visible,
.luxury-zone-btn:focus-visible,
.luxury-subzone-btn:focus-visible,
.body-view-option:focus-visible,
.size-preset-card:focus-visible,
.wizard-btn-back:focus-visible,
.btn-restart:focus-visible,
.route-modal__close:focus-visible,
.booking-contact input:focus-visible,
.booking-contact select:focus-visible,
.booking-consent input:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.toast-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
}

.toast-message {
  font-size: 12px;
  font-weight: 520;
}

.line-cta:disabled,
.line-cta[disabled] {
  color: var(--faint);
  cursor: not-allowed;
  opacity: 0.46;
}

.line-cta:disabled svg,
.line-cta[disabled] svg {
  transform: none;
}

@media (min-width: 760px) {
  body {
    min-height: 100svh;
    padding: 0;
  }

  .app-shell {
    width: 100%;
    overflow: hidden;
    border: 0;
    border-radius: 0;
  }

  .hero__topline {
    top: 36px;
    left: 6vw;
  }

  .hero__content {
    right: auto;
    bottom: 8vw;
    left: 6vw;
    width: min(620px, 54vw);
  }

  .hero h1 {
    font-size: clamp(86px, 10vw, 148px);
  }

  .intro-statement {
    padding: 90px 6vw 110px;
  }

  .intro-statement h2 {
    font-size: clamp(48px, 6vw, 88px);
  }

  .featured-work {
    height: 76svh;
    max-height: 820px;
  }

  .work-caption,
  .work-caption--top {
    right: 6vw;
    left: 6vw;
  }

  .studio-location {
    display: grid;
    grid-template-columns: minmax(260px,.7fr) minmax(420px,1.3fr);
    padding: 72px 6vw 100px;
  }

  .studio-location__actions {
    grid-column: 1;
  }

  .studio-map__frame {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .booking-wizard,
  .profile-screen {
    width: min(100%, 760px);
    margin: 0 auto;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .bottom-nav {
    bottom: 24px;
    overflow: hidden;
    border-right: 1px solid rgba(238, 230, 214, 0.14);
    border-bottom: 1px solid rgba(238, 230, 214, 0.14);
    border-left: 1px solid rgba(238, 230, 214, 0.14);
    border-top: 1px solid rgba(238, 230, 214, 0.14);
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
