@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url("assets/fonts/cormorant-garamond-600.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("assets/fonts/cormorant-garamond-700.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-400.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-500.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-600.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-700.woff2") format("woff2");
}

:root,
:root[data-theme="dark"],
html.dark-theme,
body.dark-theme {
  color-scheme: dark;
  --bg: #08070a;
  --bg-deep: #050406;
  --bg-raised: #100d12;
  --text: #f5f2f4;
  --muted: #aaa2a8;
  --muted-strong: #c7c0c4;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --accent: #9e526d;
  --accent-deep: #713449;
  --accent-bright: #c08399;
  --focus: rgba(192, 131, 153, 0.16);
  --placeholder: #777077;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --glass-x: 50%;
  --glass-y: 0%;
  --radius-card: 14px;
  --radius-control: 12px;
  --radius-button: 999px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg-deep);
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.premium-site {
  min-height: 100dvh;
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(112, 52, 73, 0.2), transparent 30%),
    radial-gradient(circle at 8% 54%, rgba(70, 58, 73, 0.16), transparent 34%),
    linear-gradient(180deg, #08070a 0%, #0c090e 48%, #060507 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
  transition: none;
}

body.premium-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 18%, rgba(158, 82, 109, 0.08), transparent 25%),
    radial-gradient(circle at 72% 74%, rgba(94, 84, 105, 0.08), transparent 28%);
}

.premium-site *,
.premium-site *::before,
.premium-site *::after {
  animation: none !important;
}

.premium-site a,
.premium-site button,
.premium-site summary {
  -webkit-tap-highlight-color: transparent;
}

.premium-site a:focus-visible,
.premium-site button:focus-visible,
.premium-site summary:focus-visible,
.premium-site input:focus-visible,
.premium-site select:focus-visible {
  outline: 2px solid rgba(215, 164, 183, 0.78);
  outline-offset: 3px;
}

.premium-site h1,
.premium-site h2,
.premium-site h3,
.premium-site p {
  margin-top: 0;
}

.premium-site h1,
.premium-site h2,
.premium-site h3 {
  color: var(--text);
  letter-spacing: 0;
}

.premium-site .skip-link {
  position: fixed;
  top: 10px;
  left: 14px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.liquid-glass {
  --glass-x: 50%;
  --glass-y: 0%;
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.105);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.025) 48%, rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(24px) saturate(142%) brightness(1.03);
  -webkit-backdrop-filter: blur(24px) saturate(142%) brightness(1.03);
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(320px circle at var(--glass-x) var(--glass-y), rgba(255, 255, 255, 0.14), transparent 52%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent 34% 70%, rgba(158, 82, 109, 0.08));
  opacity: 0.82;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .liquid-glass {
    background: #171319;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .liquid-glass {
    background: #171319;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Shared navigation */

.site-header,
.booking-topbar {
  position: fixed;
  z-index: 40;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  width: min(calc(100% - 32px), 1180px);
  min-height: 64px;
  padding: 8px 10px 8px 20px;
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  transform: translateX(-50%);
}

.site-brand {
  width: max-content;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.booking-home-link {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease-out;
}

.site-nav a:hover,
.booking-home-link:hover {
  color: var(--text);
}

.header-booking {
  justify-self: end;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-button);
  background: linear-gradient(135deg, #8b405b, #6c3047);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-booking svg {
  width: 18px;
  height: 18px;
}

/* Homepage */

.premium-hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  background: var(--bg-deep);
}

.premium-hero-video,
.premium-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.premium-hero-video {
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.86) contrast(1.04) brightness(0.84);
  clip-path: inset(0 0 7% 0);
  opacity: 0.88;
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.premium-hero-video.is-ready {
  opacity: 1;
}

.premium-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 4, 6, 0.94) 0%, rgba(7, 6, 8, 0.8) 42%, rgba(7, 6, 8, 0.24) 72%, rgba(7, 6, 8, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 4, 6, 0.38) 0%, rgba(5, 4, 6, 0.08) 45%, rgba(5, 4, 6, 0.82) 100%);
}

.premium-hero-copy {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100% - 1180px) / 2));
  bottom: 132px;
  width: min(760px, calc(100% - 48px));
}

.premium-hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -100px -80px -80px -120px;
  pointer-events: none;
  background: radial-gradient(circle at 36% 48%, rgba(113, 52, 73, 0.38), transparent 58%);
  filter: blur(22px);
}

.hero-context {
  margin-bottom: 20px;
  color: #d8d1d5;
  font-size: 16px;
  font-weight: 600;
}

.premium-hero h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(66px, 7.6vw, 112px);
  font-weight: 600;
  line-height: 0.86;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.45);
}

.premium-hero h1 em {
  display: block;
  color: #beb7bc;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.02;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #d0c9cd;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.62;
  text-wrap: pretty;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.premium-button {
  min-height: 56px;
  padding: 0 22px;
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms var(--ease-premium), filter 180ms ease-out, border-color 180ms ease-out;
}

.premium-button svg {
  width: 19px;
  height: 19px;
}

.premium-button-primary {
  border: 0;
  background: linear-gradient(135deg, #98506a 0%, #77384f 58%, #612b40 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.premium-button-glass {
  color: #f5f2f4;
}

.premium-button:hover,
.header-booking:hover {
  filter: brightness(1.08);
}

.premium-button:active,
.header-booking:active,
.mobile-booking-bar:active {
  transform: scale(0.98);
}

.hero-assurance {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  width: min(calc(100% - 48px), 1180px);
  min-height: 72px;
  padding: 0 24px;
  border-radius: var(--radius-card);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.hero-assurance span {
  min-height: 28px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd7da;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.hero-assurance span:last-child {
  border-right: 0;
}

.premium-section {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
  padding: 120px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-section h2 {
  font-family: var(--font-display);
  font-size: clamp(50px, 5.4vw, 78px);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 0 42px rgba(158, 82, 109, 0.14);
}

.premium-intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: clamp(42px, 9vw, 128px);
  align-items: start;
}

.intro-mark {
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: clamp(96px, 12vw, 170px);
  font-weight: 700;
  line-height: 0.7;
}

.intro-copy h2 {
  max-width: 900px;
  margin-bottom: 34px;
}

.intro-copy p {
  max-width: 760px;
  margin: 0 0 0 auto;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.72;
}

.premium-section-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 64px;
  align-items: end;
}

.premium-section-head h2 {
  margin-bottom: 0;
}

.premium-section-head p {
  max-width: 460px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.66;
}

.service-ledger {
  display: grid;
  gap: 10px;
}

.service-line {
  min-height: 112px;
  padding: 22px 26px;
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 32px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 180ms ease-out, background-color 180ms ease-out, transform 160ms var(--ease-premium);
}

.service-line:hover {
  border-color: rgba(192, 131, 153, 0.34);
  background-color: rgba(255, 255, 255, 0.055);
  transform: translateY(-2px);
}

.service-line-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.service-line-description {
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.55;
}

.service-line-action {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  color: #e5e0e3;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.premium-method {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.76fr);
  gap: 24px;
  align-items: stretch;
}

.method-visual {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #0b090c;
}

.method-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.04) brightness(0.86);
}

.method-copy {
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.method-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(46px, 5vw, 68px);
}

.method-copy > p {
  margin-bottom: 26px;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.68;
}

.method-copy ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.method-copy li {
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d8d2d6;
  font-size: 15px;
}

.method-copy li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-bright);
}

.premium-text-link {
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(192, 131, 153, 0.5);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.process-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.process-flow li {
  min-height: 290px;
  padding: 28px 28px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
}

.process-flow li + li {
  padding-left: 28px;
}

.process-flow li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-flow > li > span {
  color: var(--accent-bright);
  font-size: 15px;
  font-weight: 700;
}

.process-flow h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.04;
}

.process-flow p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.premium-faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 128px);
  align-items: start;
}

.premium-faq h2 {
  position: sticky;
  top: 110px;
}

.premium-faq-list {
  display: grid;
  gap: 10px;
}

.premium-faq details {
  border-radius: var(--radius-card);
}

.premium-faq summary {
  min-height: 84px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

.premium-faq summary::-webkit-details-marker {
  display: none;
}

.premium-faq summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform 180ms var(--ease-premium);
}

.premium-faq details[open] summary svg {
  transform: rotate(180deg);
}

.premium-faq details p {
  max-width: 650px;
  margin: -4px 52px 24px 24px;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.68;
}

.premium-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 0.6fr);
  gap: clamp(56px, 10vw, 148px);
  align-items: start;
  border-bottom: 0;
}

.contact-lead h2 {
  margin-bottom: 28px;
}

.contact-lead > p {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.68;
}

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

.contact-line {
  min-height: 128px;
  padding: 20px;
  border-radius: var(--radius-card);
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.contact-line svg {
  width: 22px;
  height: 22px;
  color: var(--accent-bright);
}

.contact-line span {
  display: grid;
  gap: 5px;
}

.contact-line strong {
  font-size: 16px;
  font-weight: 700;
}

.contact-line small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-address {
  grid-column: 1 / -1;
  min-height: 110px;
}

.premium-footer {
  width: min(calc(100% - 48px), 1180px);
  min-height: 130px;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.premium-footer span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.premium-footer a {
  color: var(--muted-strong);
  font-size: 15px;
  text-decoration: none;
}

.mobile-booking-bar {
  display: none;
}

/* Booking page */

.booking-topbar {
  grid-template-columns: 1fr auto;
}

.booking-home-link {
  justify-self: end;
}

.booking-main {
  width: min(calc(100% - 48px), 1180px);
  min-height: 100dvh;
  margin-inline: auto;
  padding: 150px 0 96px;
}

.booking-intro {
  max-width: 920px;
  margin-bottom: 48px;
}

.booking-intro > p {
  margin-bottom: 16px;
  color: var(--muted-strong);
  font-size: 17px;
  font-weight: 600;
}

.booking-intro h1 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(66px, 7.6vw, 104px);
  font-weight: 600;
  line-height: 0.9;
  text-shadow: 0 0 48px rgba(158, 82, 109, 0.18);
}

.booking-intro > span {
  color: var(--muted);
  font-size: 18px;
}

.premium-booking-page .tabs {
  position: sticky;
  z-index: 25;
  top: max(88px, calc(env(safe-area-inset-top) + 76px));
  width: min(100%, 540px);
  min-height: 64px;
  margin: 0 0 42px;
  padding: 6px;
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  overflow: hidden;
}

.premium-booking-page .tabs::before,
.premium-booking-page .tab-indicator {
  display: none;
}

.premium-booking-page .tab,
.premium-booking-page .tab.active {
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  transform: none;
}

.premium-booking-page .tab.active {
  background: rgba(255, 255, 255, 0.105);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.premium-booking-page .tab svg {
  width: 19px;
  height: 19px;
}

.premium-booking-page .panel {
  width: 100%;
  margin: 0;
  display: none;
  transform: none;
}

.premium-booking-page .panel.active {
  display: block;
  opacity: 1;
  visibility: visible;
  animation: none;
}

.premium-site .skip-link:not(:focus) {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.booking-workspace {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
}

.service-step {
  position: sticky;
  top: 176px;
}

.premium-booking-page .section-head {
  margin: 0 0 22px;
}

.premium-booking-page .section-head h2,
.form-heading h2 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.3vw, 58px);
  font-weight: 600;
  line-height: 0.98;
}

.premium-booking-page .section-head p,
.form-heading p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.premium-booking-page .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  min-height: 609px;
}

.premium-booking-page .service-card,
.premium-booking-page .service-card.active {
  position: relative;
  min-height: 94px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-control);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  color: var(--text);
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  text-align: left;
  transform: none;
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition: border-color 160ms ease-out, background-color 160ms ease-out, transform 140ms var(--ease-premium);
}

.premium-booking-page .service-card::before {
  display: none;
}

.premium-booking-page .service-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
}

.premium-booking-page .service-card.active {
  border-color: rgba(192, 131, 153, 0.58);
  background:
    radial-gradient(circle at 100% 0%, rgba(158, 82, 109, 0.2), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.premium-booking-page .service-card.active::after {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
  box-shadow: 0 0 0 4px rgba(158, 82, 109, 0.16);
}

.premium-booking-page .service-card:active {
  transform: scale(0.985);
}

.premium-booking-page .service-card strong {
  max-width: calc(100% - 32px);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  font-synthesis: none;
}

.premium-booking-page .service-card span {
  max-width: calc(100% - 32px);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.premium-form,
.premium-booking-page .booking-lookup {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-card);
}

.form-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
}

.form-heading h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.form-contact-link {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(225, 206, 213, 0.15);
  border-radius: var(--radius-button);
  background: rgba(75, 38, 53, 0.12);
  color: var(--muted-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease-out, border-color 180ms ease-out, background-color 180ms ease-out;
}

.form-contact-link:hover {
  border-color: rgba(212, 153, 174, 0.32);
  background: rgba(113, 52, 73, 0.17);
  color: var(--text);
}

.form-contact-link svg {
  width: 17px;
  height: 17px;
  color: var(--accent-bright);
}

.premium-booking-page .booking-form,
.premium-booking-page .booking-lookup {
  display: grid;
  gap: 22px;
}

.premium-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.premium-booking-page .form-field,
.premium-booking-page .booking-form > label {
  display: grid;
  gap: 9px;
}

.premium-booking-page .form-field > label,
.premium-booking-page .booking-form > label > span {
  color: #d7d1d5;
  font-size: 15px;
  font-weight: 600;
}

.premium-booking-page input,
.premium-booking-page select,
.premium-booking-page .date-shell,
.premium-booking-page .select-shell,
.premium-booking-page .phone-shell,
.premium-booking-page .contact-input-shell,
.premium-booking-page .inline-edit-shell {
  color: var(--text);
  font-family: var(--font-body);
}

.premium-booking-page input,
.premium-booking-page select,
.premium-booking-page .date-shell,
.premium-booking-page .select-shell,
.premium-booking-page .phone-shell,
.premium-booking-page .contact-input-shell {
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: var(--radius-control);
  background: rgba(5, 4, 6, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  font-size: 16px;
}

.premium-booking-page input::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.premium-booking-page input:focus,
.premium-booking-page select:focus,
.premium-booking-page .date-shell:focus-within,
.premium-booking-page .select-shell:focus-within,
.premium-booking-page .phone-shell:focus-within,
.premium-booking-page .contact-input-shell:focus-within {
  border-color: rgba(192, 131, 153, 0.52);
  background: rgba(18, 13, 18, 0.66);
  box-shadow: 0 0 0 3px rgba(158, 82, 109, 0.1);
  outline: none;
}

.premium-booking-page .booking-form > label > input,
.premium-booking-page .form-field > input {
  width: 100%;
  padding: 0 18px;
}

.premium-booking-page .date-shell,
.premium-booking-page .select-shell {
  position: relative;
  overflow: hidden;
}

.premium-booking-page .date-shell input,
.premium-booking-page .select-shell select {
  width: 100%;
  height: 60px;
  min-height: 60px;
  padding: 0 46px 0 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.premium-booking-page .date-shell svg,
.premium-booking-page .select-shell svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 17px;
  width: 19px;
  height: 19px;
  color: var(--muted);
  pointer-events: none;
  transform: translateY(-50%);
}

.premium-booking-page .date-placeholder {
  left: 18px;
  color: var(--placeholder);
  font-size: 16px;
}

.premium-booking-page .phone-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
}

.premium-booking-page .phone-shell > span {
  height: 100%;
  padding: 0 14px 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  color: #d8d2d6;
  font-size: 16px;
  font-weight: 600;
}

.premium-booking-page .phone-shell input {
  width: 100%;
  min-height: 60px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.premium-booking-page .contact-input-shell {
  --contact-method-width: clamp(160px, 38%, 196px);
  min-height: 62px;
  display: grid;
  grid-template-columns: var(--contact-method-width) minmax(0, 1fr);
  overflow: hidden;
}

.premium-booking-page .contact-input-shell select,
.premium-booking-page .contact-input-shell input {
  min-height: 60px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  font-size: 16px;
}

.premium-booking-page .contact-input-shell select {
  padding: 0 42px 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  text-align: left;
  text-align-last: left;
}

.premium-booking-page .contact-input-shell > svg {
  left: calc(var(--contact-method-width) - 32px);
  top: 50%;
  width: 18px;
  height: 18px;
  color: var(--muted);
  transform: translateY(-50%);
}

.premium-booking-page .primary-action {
  width: 100%;
  min-height: 60px;
  margin: 4px 0 0;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-button);
  background: linear-gradient(135deg, #98506a 0%, #77384f 58%, #612b40 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.premium-booking-page .primary-action:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.premium-booking-page .primary-action svg {
  width: 19px;
  height: 19px;
}

.form-footnote {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.bookings-layout {
  width: min(100%, 820px);
}

.bookings-title {
  margin-bottom: 28px !important;
}

.premium-booking-page .booking-lookup {
  margin-bottom: 18px;
}

.premium-booking-page .saved-profile-block,
.premium-booking-page .saved-phone-block {
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-control);
  background: rgba(5, 4, 6, 0.26);
}

.premium-booking-page .saved-profile-block > span,
.premium-booking-page .saved-phone-block > span {
  color: var(--muted);
  font-size: 14px;
}

.premium-booking-page .saved-profile-block strong,
.premium-booking-page .saved-phone-block strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.premium-booking-page .inline-edit-shell {
  gap: 8px;
}

.premium-booking-page .inline-edit-shell > input {
  min-width: 0;
  padding: 0 18px;
}

.premium-booking-page .icon-action {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.premium-booking-page .icon-action svg {
  width: 18px;
  height: 18px;
}

.premium-booking-page .booking-results {
  display: grid;
  gap: 10px;
}

.premium-booking-page .booking-result {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 100% 0%, rgba(158, 82, 109, 0.12), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.premium-booking-page .booking-result::before {
  display: none;
}

.premium-booking-page .booking-result-main {
  display: grid;
  gap: 7px;
}

.premium-booking-page .booking-result-main > strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.premium-booking-page .booking-result-main > small {
  color: var(--muted);
  font-size: 14px;
}

.premium-booking-page .booking-status {
  width: max-content;
  padding: 5px 10px;
  border-radius: var(--radius-button);
  background: rgba(158, 82, 109, 0.16);
  color: #d9bac5 !important;
  font-size: 13px !important;
  font-weight: 600;
}

.premium-booking-page .booking-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium-booking-page .empty-state {
  min-height: 82px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-size: 15px;
  display: flex;
  align-items: center;
}

.premium-booking-page .notice-banner {
  margin: 18px 0 0;
  padding: 20px 22px;
  border-radius: var(--radius-control);
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.6;
}

.premium-booking-page .success-dialog {
  border: 0;
  background: transparent;
}

.premium-booking-page .success-dialog::backdrop {
  background: rgba(3, 2, 4, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.premium-booking-page .success-dialog > div {
  width: min(100%, 480px);
  padding: 34px;
  border-radius: var(--radius-card);
  color: var(--text);
}

.premium-booking-page .success-dialog > div::before {
  display: none;
}

.premium-booking-page .success-dialog h2 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
}

.premium-booking-page .success-dialog p {
  color: var(--muted-strong);
  font-size: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .premium-booking-page .service-card:hover {
    border-color: rgba(192, 131, 153, 0.3);
    transform: translateY(-1px);
  }

  .premium-booking-page .icon-action:hover,
  .contact-line:hover {
    border-color: rgba(192, 131, 153, 0.32);
    background-color: rgba(255, 255, 255, 0.075);
  }
}

@media (max-width: 980px) {
  .premium-section-head,
  .premium-contact,
  .premium-faq,
  .premium-method,
  .booking-workspace {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .intro-mark {
    display: none;
  }

  .premium-intro {
    grid-template-columns: 1fr;
  }

  .intro-copy p {
    margin-left: 0;
  }

  .premium-method {
    gap: 12px;
  }

  .method-visual {
    min-height: 460px;
  }

  .premium-faq h2,
  .service-step {
    position: static;
  }

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

  .process-flow li:nth-child(2) {
    border-right: 0;
  }

  .process-flow li:nth-child(3),
  .process-flow li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .process-flow li:nth-child(3) {
    padding-left: 0;
  }

  .booking-workspace {
    gap: 42px;
  }

  .premium-booking-page .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  body.premium-site {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  .site-header,
  .booking-topbar {
    top: max(9px, env(safe-area-inset-top));
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 7px 8px 7px 16px;
  }

  .site-brand {
    font-size: 20px;
  }

  .header-booking {
    min-height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }

  .premium-hero {
    min-height: max(720px, 100svh);
  }

  .premium-hero-video {
    top: calc(env(safe-area-inset-top) + 84px);
    right: 0;
    bottom: auto;
    width: 100%;
    height: clamp(315px, 39svh, 350px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 100% center;
    background: #030305;
    clip-path: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.28) 4%, rgba(0, 0, 0, 0.74) 9%, #000 15%, #000 56%, rgba(0, 0, 0, 0.7) 68%, rgba(0, 0, 0, 0.18) 86%, transparent 94%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.28) 4%, rgba(0, 0, 0, 0.74) 9%, #000 15%, #000 56%, rgba(0, 0, 0, 0.7) 68%, rgba(0, 0, 0, 0.18) 86%, transparent 94%);
  }

  .premium-hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 4, 6, 0.58) 0%, rgba(5, 4, 6, 0.28) 28%, rgba(5, 4, 6, 0.86) 68%, rgba(5, 4, 6, 0.98) 100%),
      linear-gradient(90deg, rgba(5, 4, 6, 0.72), rgba(5, 4, 6, 0.2));
  }

  .premium-hero-copy {
    left: 18px;
    bottom: 142px;
    width: calc(100% - 36px);
  }

  .premium-hero-copy::before {
    inset: -60px -20px -50px -50px;
  }

  .hero-context {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .premium-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(50px, 15.2vw, 68px);
    line-height: 0.88;
  }

  .hero-lead {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

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

  .premium-button {
    min-width: 0;
    min-height: 52px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-assurance {
    bottom: 12px;
    width: calc(100% - 24px);
    min-height: 104px;
    padding: 12px 16px;
    grid-template-columns: 1fr;
  }

  .hero-assurance span {
    min-height: 27px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: flex-start;
    font-size: 13px;
    text-align: left;
  }

  .hero-assurance span:last-child {
    border-bottom: 0;
  }

  .premium-section,
  .premium-footer {
    width: calc(100% - 36px);
  }

  .premium-section {
    padding: 82px 0;
  }

  .premium-section h2 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .intro-copy h2 {
    margin-bottom: 24px;
  }

  .intro-copy p,
  .contact-lead > p {
    font-size: 16px;
  }

  .premium-section-head {
    margin-bottom: 32px;
    gap: 22px;
  }

  .premium-section-head p {
    font-size: 16px;
  }

  .service-line {
    min-height: 0;
    padding: 20px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 18px;
  }

  .service-line-title {
    font-size: 30px;
  }

  .service-line-description {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 15px;
  }

  .service-line-action {
    grid-column: 2;
    grid-row: 1;
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .method-visual {
    min-height: 360px;
  }

  .method-copy {
    padding: 26px 22px;
  }

  .method-copy h2 {
    font-size: 46px;
  }

  .method-copy > p {
    font-size: 16px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow li,
  .process-flow li + li,
  .process-flow li:nth-child(3) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    flex-direction: row;
    justify-content: flex-start;
    gap: 22px;
  }

  .process-flow li:first-child {
    border-top: 0;
  }

  .process-flow h3 {
    font-size: 28px;
  }

  .premium-faq {
    gap: 30px;
  }

  .premium-faq summary {
    min-height: 74px;
    padding: 18px;
    font-size: 16px;
  }

  .premium-faq details p {
    margin: -2px 42px 20px 18px;
    font-size: 15px;
  }

  .premium-contact {
    gap: 44px;
  }

  .contact-grid {
    gap: 8px;
  }

  .contact-line {
    min-height: 118px;
    padding: 18px;
  }

  .contact-line small {
    font-size: 13px;
  }

  .premium-footer {
    min-height: 110px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 50;
    left: 10px;
    right: 10px;
    bottom: max(9px, env(safe-area-inset-bottom));
    min-height: 56px;
    padding: 0 18px;
    border-radius: var(--radius-card);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-booking-bar svg {
    width: 19px;
    height: 19px;
    color: var(--accent-bright);
  }

  .booking-home-link {
    font-size: 13px;
  }

  .booking-main {
    width: calc(100% - 36px);
    padding: 112px 0 72px;
  }

  .booking-intro {
    margin-bottom: 32px;
  }

  .booking-intro > p {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .booking-intro h1 {
    margin-bottom: 16px;
    font-size: clamp(50px, 14.5vw, 66px);
  }

  .booking-intro > span {
    font-size: 16px;
  }

  .premium-booking-page .tabs {
    top: max(78px, calc(env(safe-area-inset-top) + 68px));
    min-height: 58px;
    margin-bottom: 34px;
    padding: 5px;
  }

  .premium-booking-page .tab,
  .premium-booking-page .tab.active {
    min-height: 46px;
    padding: 0 10px;
    font-size: 14px;
  }

  .booking-workspace {
    gap: 38px;
  }

  .premium-booking-page .section-head h2,
  .form-heading h2 {
    font-size: 42px;
  }

  .premium-booking-page .section-head p,
  .form-heading p {
    font-size: 15px;
  }

  .premium-booking-page .service-grid {
    grid-template-columns: 1fr;
    min-height: 573px;
  }

  .premium-booking-page .service-card,
  .premium-booking-page .service-card.active {
    min-height: 88px;
  }

  .premium-booking-page .service-card strong {
    font-size: 24px;
  }

  .premium-form,
  .premium-booking-page .booking-lookup {
    padding: 22px 18px;
  }

  .premium-field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .premium-booking-page .contact-input-shell {
    --contact-method-width: 160px;
  }

  .premium-booking-page .booking-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .premium-booking-page .booking-card-actions {
    align-self: flex-end;
  }
}

@media (max-width: 420px) {
  .header-booking span {
    display: none;
  }

  .header-booking {
    width: 42px;
    padding: 0;
  }

  .premium-hero h1 {
    font-size: clamp(46px, 14.6vw, 61px);
  }

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

  .premium-button {
    width: 100%;
  }

  .premium-hero-copy {
    bottom: 168px;
  }

  .hero-assurance {
    min-height: 122px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-address {
    grid-column: auto;
  }

  .booking-home-link {
    max-width: 150px;
    line-height: 1.2;
    text-align: right;
  }

  .premium-booking-page .contact-input-shell {
    --contact-method-width: 160px;
  }
}

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

  .premium-site *,
  .premium-site *::before,
  .premium-site *::after {
    transition-duration: 1ms !important;
  }

  .premium-hero-video {
    opacity: 1;
  }
}

/* LaBeauty noir atelier: depth, responsive light and clear copy */

:root,
:root[data-theme="dark"],
html.dark-theme,
body.dark-theme {
  --bg: #070609;
  --bg-deep: #030305;
  --bg-raised: #100b11;
  --text: #f3efec;
  --muted: #a99fa5;
  --muted-strong: #cec5c9;
  --line: rgba(238, 222, 228, 0.13);
  --line-strong: rgba(238, 222, 228, 0.23);
  --surface: rgba(61, 35, 48, 0.12);
  --surface-strong: rgba(77, 43, 57, 0.2);
  --accent: #9c4962;
  --accent-deep: #512437;
  --accent-bright: #c27b90;
  --accent-violet: #625171;
  --accent-warm: #a97b68;
  --placeholder: #91868d;
  --radius-card: 16px;
  --radius-control: 16px;
  --scene-x: 52%;
  --scene-y: 24%;
}

html {
  background: #030305;
}

html.dark-theme body.premium-site,
body.premium-site.dark-theme {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% -12%, rgba(71, 37, 54, 0.34), transparent 37%),
    linear-gradient(180deg, rgba(7, 6, 9, 0.97), rgba(5, 4, 7, 0.99));
}

body.premium-site::before {
  inset: -24vmax;
  z-index: -2;
  background:
    radial-gradient(ellipse 42% 34% at var(--scene-x) var(--scene-y), rgba(142, 55, 86, 0.3), transparent 68%),
    radial-gradient(ellipse 38% 42% at 18% 64%, rgba(65, 51, 91, 0.26), transparent 72%),
    radial-gradient(ellipse 34% 32% at 84% 76%, rgba(132, 76, 61, 0.2), transparent 70%),
    radial-gradient(ellipse 28% 30% at 74% 16%, rgba(93, 39, 66, 0.24), transparent 72%);
  filter: blur(46px) saturate(116%);
  transform: translate3d(-1.5%, -1%, 0) scale(1.02);
  transform-origin: center;
  animation: labeauty-ambient 20s ease-in-out infinite alternate !important;
  will-change: transform;
}

body.premium-site::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 28%, transparent 0 26%, rgba(2, 2, 4, 0.16) 68%, rgba(2, 2, 4, 0.48) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 18% 82%, rgba(0, 0, 0, 0.18));
}

@keyframes labeauty-ambient {
  0% { transform: translate3d(-2.5%, -1.5%, 0) scale(1.01) rotate(-1deg); }
  50% { transform: translate3d(2%, 1%, 0) scale(1.05) rotate(0.5deg); }
  100% { transform: translate3d(-0.5%, 2.5%, 0) scale(1.03) rotate(1deg); }
}

.liquid-glass {
  --glass-x: 50%;
  --glass-y: 14%;
  overflow: hidden;
  border: 1px solid rgba(240, 224, 231, 0.14);
  background:
    radial-gradient(150% 170% at var(--glass-x) var(--glass-y), rgba(255, 247, 241, 0.1), transparent 30%),
    linear-gradient(132deg, rgba(110, 57, 76, 0.16), rgba(19, 12, 19, 0.08) 36%, rgba(70, 57, 91, 0.13) 74%, rgba(132, 78, 61, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(75, 34, 51, 0.2),
    0 7px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(28px) saturate(175%) contrast(1.06);
  -webkit-backdrop-filter: blur(28px) saturate(175%) contrast(1.06);
}

.liquid-glass::before {
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(260px circle at var(--glass-x) var(--glass-y), rgba(255, 247, 240, 0.24), rgba(194, 123, 144, 0.08) 24%, transparent 56%),
    linear-gradient(112deg, transparent 12%, rgba(255, 255, 255, 0.09) 28%, transparent 43%, rgba(103, 78, 132, 0.08) 67%, transparent 82%);
  background-size: 100% 100%, 180% 100%;
  background-position: center, calc(var(--glass-x) * 0.45) center;
  mix-blend-mode: screen;
  opacity: 0.72;
  transition: opacity 220ms ease-out, background-position 260ms var(--ease-premium);
}

.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 250, 246, 0.52), rgba(194, 123, 144, 0.12) 28%, transparent 46%, rgba(111, 91, 142, 0.23) 72%, rgba(255, 239, 228, 0.32));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.58;
}

.liquid-glass.glass-active::before,
.liquid-glass:hover::before {
  opacity: 1;
}

.site-header,
.booking-topbar {
  min-height: 68px;
  padding: 9px 11px 9px 22px;
  border-radius: 20px;
}

.site-brand {
  color: #eadfda;
  font-size: 24px;
  text-shadow: 0 0 24px rgba(156, 73, 98, 0.3);
}

.header-booking,
.premium-button-primary,
.premium-booking-page .primary-action,
html.dark-theme body.premium-booking-page .primary-action {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(231, 193, 205, 0.22);
  border-radius: var(--radius-button);
  background:
    radial-gradient(circle at 82% 18%, rgba(205, 133, 153, 0.42), transparent 34%),
    linear-gradient(118deg, #4e2235 0%, #8c405a 46%, #653449 72%, #433044 100%);
  background-size: 150% 150%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(32, 9, 19, 0.42),
    0 6px 8px rgba(20, 6, 13, 0.28);
  transition: transform 180ms var(--ease-premium), background-position 420ms var(--ease-premium), filter 180ms ease-out;
}

.header-booking:hover,
.premium-button-primary:hover,
.premium-booking-page .primary-action:hover,
html.dark-theme body.premium-booking-page .primary-action:hover {
  background-position: 74% 42%;
  filter: brightness(1.08) saturate(1.08);
}

.premium-button {
  min-height: 58px;
  padding-inline: 25px;
  border-radius: var(--radius-button);
  font-size: 15px;
}

.premium-button-glass {
  border-radius: var(--radius-button);
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y), rgba(255, 246, 240, 0.11), transparent 38%),
    linear-gradient(125deg, rgba(77, 38, 54, 0.18), rgba(44, 35, 58, 0.14));
}

.premium-hero-shade {
  background:
    radial-gradient(circle at 72% 30%, rgba(118, 53, 76, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(3, 3, 5, 0.96) 0%, rgba(7, 5, 8, 0.82) 43%, rgba(18, 10, 16, 0.25) 72%, rgba(5, 4, 7, 0.54) 100%),
    linear-gradient(180deg, rgba(4, 3, 5, 0.3) 0%, rgba(4, 3, 5, 0.06) 42%, rgba(4, 3, 5, 0.9) 100%);
}

.premium-hero-copy::before {
  background:
    radial-gradient(circle at 34% 48%, rgba(123, 45, 74, 0.36), transparent 55%),
    radial-gradient(circle at 62% 64%, rgba(75, 58, 99, 0.18), transparent 48%);
  filter: blur(30px);
}

.hero-context {
  color: #d9ced1;
  font-size: 16px;
}

.premium-hero h1 {
  max-width: 900px;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.92;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.46), 0 0 46px rgba(133, 62, 87, 0.16);
}

.premium-hero h1 em {
  color: #d6c7c2;
  font-style: normal;
  line-height: 0.96;
}

.hero-lead {
  max-width: 660px;
  color: #d5cdd0;
  font-size: clamp(17px, 1.4vw, 19px);
}

.hero-assurance {
  border-radius: 20px;
}

.premium-section {
  border-bottom-color: rgba(224, 207, 214, 0.09);
}

.premium-section h2 {
  max-width: 960px;
  color: #f0ebe8;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 0.98;
  text-shadow: 0 0 38px rgba(131, 54, 81, 0.17);
}

.intro-mark {
  color: rgba(183, 115, 140, 0.12);
  text-shadow: 0 0 46px rgba(94, 46, 72, 0.25);
}

.service-ledger {
  gap: 12px;
}

.service-line {
  min-height: 116px;
  border-radius: 18px;
  transition: transform 220ms var(--ease-premium), border-color 220ms ease-out, filter 220ms ease-out;
}

.service-line:hover {
  border-color: rgba(212, 153, 174, 0.34);
  background-color: transparent;
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.003);
}

.service-line-title {
  color: #f0e9e6;
  font-size: 36px;
}

.service-line-action {
  min-height: 44px;
  padding-inline: 18px;
  border-color: rgba(225, 206, 213, 0.18);
  border-radius: var(--radius-button);
  background: rgba(75, 38, 53, 0.18);
}

.method-visual,
.method-copy,
.premium-faq details,
.contact-line {
  border-radius: 18px;
}

.method-copy {
  background:
    radial-gradient(circle at var(--glass-x) var(--glass-y), rgba(246, 225, 231, 0.11), transparent 34%),
    linear-gradient(138deg, rgba(91, 42, 61, 0.16), rgba(40, 31, 54, 0.12));
}

.process-flow {
  position: relative;
  padding: 10px;
  border-top: 1px solid rgba(240, 224, 231, 0.14);
  border-radius: 18px;
  gap: 0;
}

.process-flow li,
.process-flow li + li {
  min-height: 264px;
  padding: 28px;
  border: 0;
  border-left: 1px solid rgba(231, 212, 219, 0.1);
  justify-content: flex-start;
  gap: 42px;
}

.process-flow li:first-child {
  border-left: 0;
}

.process-number {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(215, 156, 176, 0.3);
  border-radius: 50%;
  background: rgba(112, 48, 71, 0.2);
  color: #e1c7cf !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px !important;
}

.process-flow h3 {
  min-height: 66px;
  color: #eee7e4;
  font-size: 31px;
}

.process-flow p {
  color: var(--muted-strong);
}

.premium-faq summary {
  min-height: 86px;
}

.contact-line {
  min-height: 132px;
}

.mobile-booking-bar {
  border-radius: var(--radius-button);
}

.booking-intro h1 {
  max-width: 980px;
  font-size: clamp(62px, 7vw, 90px);
  line-height: 0.94;
  text-shadow: 0 0 44px rgba(124, 48, 76, 0.19);
}

.premium-booking-page .tabs {
  border-radius: 22px;
}

.premium-booking-page .tab,
.premium-booking-page .tab.active {
  border-radius: 17px;
  font-size: 15px;
}

.premium-booking-page .tab.active {
  border: 1px solid rgba(229, 206, 215, 0.14);
  background:
    radial-gradient(circle at 28% 0%, rgba(207, 149, 169, 0.13), transparent 44%),
    rgba(88, 46, 62, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.premium-booking-page .service-card,
.premium-booking-page .service-card.active {
  border-radius: 17px;
  background:
    radial-gradient(circle at var(--scene-x) var(--scene-y), rgba(238, 214, 222, 0.07), transparent 38%),
    linear-gradient(135deg, rgba(88, 43, 61, 0.12), rgba(45, 35, 58, 0.09));
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.premium-booking-page .service-card.active {
  border-color: rgba(214, 145, 169, 0.62);
  background:
    radial-gradient(circle at 92% 6%, rgba(184, 101, 129, 0.2), transparent 46%),
    linear-gradient(135deg, rgba(100, 43, 66, 0.18), rgba(54, 39, 69, 0.11));
}

.premium-form,
.premium-booking-page .booking-lookup,
.premium-booking-page .success-dialog > div {
  border-radius: 20px;
}

.premium-booking-page input,
.premium-booking-page select,
.premium-booking-page .date-shell,
.premium-booking-page .select-shell,
.premium-booking-page .phone-shell,
.premium-booking-page .contact-input-shell {
  border-radius: 17px;
  background:
    radial-gradient(circle at var(--scene-x) var(--scene-y), rgba(232, 209, 218, 0.045), transparent 42%),
    rgba(23, 12, 20, 0.26);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.premium-booking-page input:focus,
.premium-booking-page select:focus,
.premium-booking-page .date-shell:focus-within,
.premium-booking-page .select-shell:focus-within,
.premium-booking-page .phone-shell:focus-within,
.premium-booking-page .contact-input-shell:focus-within {
  border-color: rgba(208, 132, 158, 0.56);
  background: rgba(38, 18, 29, 0.42);
  box-shadow: 0 0 0 3px rgba(142, 64, 91, 0.12);
}

.premium-booking-page .booking-result,
.premium-booking-page .saved-profile-block,
.premium-booking-page .saved-phone-block,
.premium-booking-page .empty-state {
  border-radius: 17px;
  background:
    radial-gradient(circle at 92% 4%, rgba(154, 75, 103, 0.13), transparent 46%),
    linear-gradient(135deg, rgba(72, 36, 51, 0.14), rgba(42, 32, 54, 0.09));
}

@media (max-width: 980px) {
  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow li,
  .process-flow li + li,
  .process-flow li:nth-child(3),
  .process-flow li:nth-child(4) {
    border: 0;
    border-left: 1px solid rgba(231, 212, 219, 0.1);
    border-top: 1px solid rgba(231, 212, 219, 0.1);
  }

  .process-flow li:nth-child(odd) {
    border-left: 0;
  }

  .process-flow li:nth-child(-n + 2) {
    border-top: 0;
  }
}

@media (max-width: 700px) {
  body.premium-site::before {
    inset: -42vmax;
    background:
      radial-gradient(ellipse 48% 38% at 62% 16%, rgba(145, 53, 86, 0.34), transparent 70%),
      radial-gradient(ellipse 44% 46% at 14% 58%, rgba(68, 52, 96, 0.3), transparent 72%),
      radial-gradient(ellipse 38% 34% at 86% 82%, rgba(139, 78, 61, 0.24), transparent 72%);
    filter: blur(34px) saturate(118%);
  }

  .site-header,
  .booking-topbar {
    border-radius: 19px;
  }

  .premium-hero-copy {
    bottom: 152px;
  }

  .premium-hero h1 {
    width: min(64vw, 250px);
    font-size: clamp(40px, 10.8vw, 46px);
    line-height: 0.94;
  }

  .premium-hero h1 em {
    font-size: 0.88em;
  }

  .premium-actions {
    gap: 10px;
  }

  .premium-button {
    min-height: 54px;
    border-radius: var(--radius-button);
  }

  .hero-assurance {
    border-radius: 18px;
  }

  .premium-section h2 {
    font-size: clamp(42px, 11.5vw, 56px);
    line-height: 1;
  }

  .service-line {
    border-radius: 17px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    padding: 8px 18px;
  }

  .process-flow li,
  .process-flow li + li,
  .process-flow li:nth-child(3),
  .process-flow li:nth-child(4),
  .process-flow li:nth-child(odd),
  .process-flow li:nth-child(-n + 2) {
    min-height: 0;
    padding: 24px 0;
    border: 0;
    border-top: 1px solid rgba(231, 212, 219, 0.1);
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .process-flow li:first-child {
    border-top: 0;
  }

  .process-flow h3 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 29px;
  }

  .process-number {
    width: 36px;
    height: 36px;
  }

  .booking-intro h1 {
    font-size: clamp(48px, 13.4vw, 60px);
  }

  .premium-booking-page .tabs {
    border-radius: 20px;
  }

  .premium-booking-page .tab,
  .premium-booking-page .tab.active,
  .premium-form,
  .premium-booking-page .booking-lookup {
    border-radius: 17px;
  }
}

@media (max-width: 420px) {
  .premium-hero-copy {
    bottom: 172px;
  }

  .premium-hero h1 {
    width: min(64vw, 250px);
    font-size: clamp(40px, 10.8vw, 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.premium-site::before {
    animation: none !important;
    transform: none;
  }
}

/* Unified ambient scene: no cursor spots, no isolated gray highlights */

@property --ambient-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 34%;
}

@property --ambient-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 22%;
}

@property --title-tone {
  syntax: "<color>";
  inherits: true;
  initial-value: #f3e7ed;
}

@property --title-accent {
  syntax: "<color>";
  inherits: true;
  initial-value: #dfb4c5;
}

html.dark-theme body.premium-site,
body.premium-site.dark-theme {
  --ambient-x: 34%;
  --ambient-y: 22%;
  --title-tone: #f3e7ed;
  --title-accent: #dfb4c5;
  animation: labeauty-scene 18s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate !important;
}

@keyframes labeauty-scene {
  0% {
    --ambient-x: 28%;
    --ambient-y: 18%;
    --title-tone: #f3e7ed;
    --title-accent: #dfb4c5;
  }
  48% {
    --ambient-x: 66%;
    --ambient-y: 38%;
    --title-tone: #ddd4eb;
    --title-accent: #bba9d8;
  }
  100% {
    --ambient-x: 76%;
    --ambient-y: 72%;
    --title-tone: #f1dfd4;
    --title-accent: #dfa98f;
  }
}

body.premium-site::before {
  background:
    radial-gradient(ellipse 48% 38% at var(--ambient-x) var(--ambient-y), rgba(132, 43, 78, 0.34), transparent 70%),
    radial-gradient(ellipse 42% 48% at calc(100% - var(--ambient-x)) 66%, rgba(67, 48, 98, 0.3), transparent 72%),
    radial-gradient(ellipse 36% 34% at 82% calc(100% - var(--ambient-y)), rgba(137, 72, 56, 0.22), transparent 72%);
  animation: none !important;
  transform: scale(1.04);
}

.premium-site h1,
.premium-site h2,
.site-brand,
.premium-footer > span {
  color: var(--title-tone);
  transition: color 900ms cubic-bezier(0.16, 1, 0.3, 1), text-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-hero h1 em {
  color: var(--title-accent);
  text-shadow: 0 0 34px color-mix(in srgb, var(--title-accent) 18%, transparent);
}

.premium-section h2,
.booking-intro h1,
.premium-booking-page .section-head h2,
.form-heading h2 {
  text-shadow:
    0 0 36px color-mix(in srgb, var(--title-accent) 15%, transparent),
    0 9px 28px rgba(0, 0, 0, 0.2);
}

.liquid-glass {
  background:
    linear-gradient(128deg, rgba(99, 43, 64, 0.16), rgba(20, 12, 19, 0.075) 34%, rgba(57, 43, 78, 0.13) 68%, rgba(113, 63, 50, 0.1));
}

.liquid-glass::before {
  inset: -1px;
  z-index: 0;
  background:
    linear-gradient(112deg, transparent 8%, rgba(174, 80, 112, 0.11) 26%, transparent 43%, rgba(105, 84, 143, 0.12) 64%, transparent 82%),
    linear-gradient(128deg, rgba(255, 228, 236, 0.035), transparent 34%, rgba(226, 199, 236, 0.045) 70%, transparent);
  background-size: 220% 100%, 100% 100%;
  background-position: var(--ambient-x) center, center;
  mix-blend-mode: screen;
  opacity: 0.78;
  transition: none;
}

.liquid-glass::after {
  background: linear-gradient(125deg, rgba(238, 205, 216, 0.3), rgba(179, 91, 120, 0.08) 28%, transparent 47%, rgba(105, 84, 143, 0.18) 72%, rgba(216, 177, 160, 0.2));
  opacity: 0.54;
}

.liquid-glass.glass-active::before,
.liquid-glass:hover::before {
  opacity: 0.78;
}

.header-booking,
.premium-button-primary,
.premium-booking-page .primary-action {
  background:
    linear-gradient(118deg, #422031 0%, #74334b 38%, #59304a 68%, #3d2d40 100%);
  background-size: 180% 100%;
  background-position: var(--ambient-x) center;
}

.header-booking:hover,
.premium-button-primary:hover,
.premium-booking-page .primary-action:hover {
  background-position: var(--ambient-x) center;
  filter: brightness(1.08) saturate(1.05);
}

.premium-button-glass,
.method-copy,
.premium-booking-page .service-card,
.premium-booking-page .service-card.active,
.premium-booking-page input,
.premium-booking-page select,
.premium-booking-page .date-shell,
.premium-booking-page .select-shell,
.premium-booking-page .phone-shell,
.premium-booking-page .contact-input-shell,
.premium-booking-page .booking-result,
.premium-booking-page .saved-profile-block,
.premium-booking-page .saved-phone-block,
.premium-booking-page .empty-state {
  background:
    linear-gradient(132deg, rgba(88, 36, 57, 0.14), rgba(17, 10, 16, 0.1) 42%, rgba(52, 39, 71, 0.11) 74%, rgba(89, 48, 40, 0.08));
}

.premium-booking-page .service-card.active {
  border-color: rgba(205, 128, 154, 0.55);
}

.premium-booking-page .service-card::after,
.premium-booking-page .service-card.active::after {
  display: none;
}

.premium-booking-page .service-card::before,
.premium-booking-page .service-card.active::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: auto;
  bottom: 0;
  width: auto;
  height: 2px;
  border-radius: 2px;
  display: block;
  background: linear-gradient(90deg, rgba(188, 91, 125, 0.95), rgba(142, 105, 170, 0.82), rgba(188, 116, 91, 0.74));
  box-shadow: 0 0 8px rgba(179, 83, 117, 0.34);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1), transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-booking-page .service-card.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.premium-method {
  display: block;
}

.method-copy {
  width: min(100%, 860px);
  min-height: 500px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .method-copy {
    width: 100%;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.dark-theme body.premium-site,
  body.premium-site.dark-theme {
    animation: none !important;
  }
}

@keyframes headline-tone-flow {
  0%, 100% {
    opacity: 0.08;
  }
  44% {
    opacity: 0.96;
  }
  72% {
    opacity: 0.36;
  }
}

.tone-word {
  position: relative;
  display: inline-block;
  color: #f6d9e5;
  animation: none !important;
}

.tone-word::after {
  content: attr(data-tone-text);
  position: absolute;
  inset: 0;
  color: #efb7ce;
  opacity: 0.08;
  pointer-events: none;
}

.tone-running .tone-word::after {
  animation: headline-tone-flow 8.5s cubic-bezier(0.45, 0, 0.55, 1) infinite !important;
  animation-delay: calc(var(--tone-index, 0) * -0.56s) !important;
}

.premium-hero h1 .tone-word,
.premium-section h2 .tone-word,
.booking-intro h1 .tone-word {
  text-shadow: 0 0 34px rgba(166, 75, 142, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .tone-word {
    color: #efc6d7;
    animation: none !important;
  }

  .tone-word::after {
    display: none;
  }
}

/* July 2026 motion and booking refinements */

@keyframes labeauty-scene {
  0% {
    --ambient-x: 24%;
    --ambient-y: 16%;
    --title-tone: #f0d7e5;
    --title-accent: #dc8fb4;
  }
  48% {
    --ambient-x: 68%;
    --ambient-y: 42%;
    --title-tone: #ded4f2;
    --title-accent: #b9a0e1;
  }
  100% {
    --ambient-x: 78%;
    --ambient-y: 76%;
    --title-tone: #ecd1e8;
    --title-accent: #ca8fce;
  }
}

html.dark-theme body.premium-site,
body.premium-site.dark-theme {
  animation: none !important;
}

body.premium-site::before {
  background:
    radial-gradient(ellipse 52% 42% at 28% 18%, rgba(119, 41, 72, 0.29), transparent 70%),
    radial-gradient(ellipse 46% 50% at 72% 64%, rgba(78, 46, 82, 0.21), transparent 72%),
    radial-gradient(ellipse 40% 38% at 84% 78%, rgba(101, 48, 76, 0.17), transparent 72%);
  transform: translate3d(-1.5%, -1%, 0) scale(1.06);
  transform-origin: center;
  animation: ambient-layer-drift 18s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate !important;
  will-change: transform, opacity;
}

@keyframes ambient-layer-drift {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1.06);
    opacity: 0.88;
  }
  52% {
    transform: translate3d(1.4%, 0.8%, 0) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate3d(-0.4%, 1.5%, 0) scale(1.065);
    opacity: 0.92;
  }
}

.premium-site h1,
.premium-site h2,
.premium-site h3,
.site-brand,
.service-line-title,
.contact-line strong,
.premium-footer > span,
.premium-booking-page .service-card strong,
.premium-booking-page .booking-result-main > strong {
  color: var(--title-tone);
  transition: color 900ms cubic-bezier(0.16, 1, 0.3, 1), text-shadow 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-context,
.service-line-action,
.process-number,
.premium-text-link,
.booking-intro > p {
  color: var(--title-accent) !important;
  transition: color 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-booking,
.premium-button-primary,
.premium-booking-page .primary-action {
  border: 1px solid rgba(241, 190, 211, 0.2);
  background:
    linear-gradient(118deg, rgba(255, 224, 237, 0.1) 0%, rgba(82, 46, 66, 0.16) 46%, rgba(236, 188, 210, 0.075) 100%);
  background-size: 190% 100%;
  background-position: 42% center;
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 239, 246, 0.14),
    inset 0 -1px 0 rgba(116, 61, 84, 0.08),
    0 12px 34px rgba(20, 8, 18, 0.16);
  color: #f7eaf0;
}

.liquid-glass {
  background:
    linear-gradient(128deg, rgba(91, 42, 61, 0.12), rgba(18, 12, 17, 0.07) 38%, rgba(58, 40, 57, 0.09) 72%, rgba(82, 46, 53, 0.075));
}

.liquid-glass::before {
  background:
    linear-gradient(112deg, transparent 9%, rgba(170, 87, 116, 0.075) 28%, transparent 46%, rgba(126, 88, 124, 0.07) 68%, transparent 84%),
    linear-gradient(128deg, rgba(255, 228, 238, 0.026), transparent 36%, rgba(232, 205, 221, 0.03) 72%, transparent);
  opacity: 0.58;
  background-position: 36% center, center;
}

.liquid-glass::after {
  background: linear-gradient(125deg, rgba(235, 199, 213, 0.22), rgba(171, 91, 117, 0.055) 30%, transparent 49%, rgba(112, 82, 117, 0.1) 74%, rgba(205, 165, 160, 0.12));
  opacity: 0.4;
}

.header-booking:hover,
.premium-button-primary:hover,
.premium-booking-page .primary-action:hover {
  border-color: rgba(246, 199, 218, 0.3);
  background-position: 68% center;
  filter: brightness(1.08) saturate(1.02);
}

.premium-booking-page .primary-action:disabled,
html.dark-theme body.premium-booking-page .primary-action:disabled {
  border-color: rgba(191, 158, 181, 0.1);
  background: rgba(37, 26, 39, 0.72);
  color: #817680;
  box-shadow: none;
  opacity: 1;
}

.premium-faq details {
  overflow: clip;
}

.premium-faq details p {
  transform-origin: top;
}

.premium-booking-page .tabs,
.premium-booking-page.telegram-mini-app .tabs {
  position: static;
  top: auto;
}

.premium-booking-page.telegram-mini-app .booking-topbar,
.premium-booking-page.telegram-mini-app .booking-intro {
  display: none;
}

.premium-booking-page.telegram-mini-app .booking-main {
  padding-top: max(22px, env(safe-area-inset-top));
}

.premium-reviews {
  overflow: hidden;
}

.reviews-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  width: max-content;
  display: flex;
  gap: 14px;
}

.review-card {
  width: clamp(290px, 42vw, 520px);
  min-height: 250px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: var(--radius-card);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.review-card blockquote {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  text-wrap: pretty;
}

.review-rating {
  margin-bottom: 22px;
  color: var(--title-accent);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 3px;
}

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.review-card footer span:last-child {
  max-width: 48%;
  text-align: right;
}

.reviews-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.reviews-controls {
  display: flex;
  gap: 8px;
}

.review-arrow {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(241, 190, 211, 0.3);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 228, 239, 0.1), rgba(59, 35, 51, 0.22));
  color: #f4d6e3;
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 247, 0.13),
    0 8px 24px rgba(17, 6, 14, 0.2);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 220ms var(--ease-premium), background-color 220ms var(--ease-premium), transform 220ms var(--ease-premium);
}

.review-arrow span {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.review-arrow:hover {
  border-color: rgba(247, 208, 224, 0.48);
  background: linear-gradient(135deg, rgba(255, 231, 241, 0.15), rgba(76, 42, 61, 0.26));
}

.review-arrow:active {
  transform: scale(0.96);
}

.reviews-source {
  color: var(--muted-strong);
  text-decoration: none;
}

@media (max-width: 700px) {
  .service-line-title {
    font-size: 31px;
    line-height: 1.02;
  }

  .service-line-description {
    font-size: 15.5px;
    line-height: 1.5;
  }

  .premium-booking-page .service-card strong {
    font-size: 22px;
    line-height: 1.08;
  }

  .premium-booking-page .service-card span {
    font-size: 15px;
    line-height: 1.5;
  }

  .review-card {
    width: min(84vw, 360px);
    min-height: 230px;
  }

  .review-card footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .review-card footer span:last-child {
    max-width: none;
    text-align: left;
  }

  .reviews-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-site h1,
  .premium-site h2,
  .premium-site h3,
  .site-brand,
  .service-line-title,
  .contact-line strong,
  .premium-footer > span,
  .premium-booking-page .service-card strong,
  .premium-booking-page .booking-result-main > strong {
    transition: none;
  }
}

html.dark-theme body.premium-site.premium-booking-page .primary-action {
  border: 1px solid rgba(241, 190, 211, 0.2);
  background:
    linear-gradient(118deg, rgba(255, 224, 237, 0.1) 0%, rgba(82, 46, 66, 0.16) 46%, rgba(236, 188, 210, 0.075) 100%);
  background-size: 190% 100%;
  background-position: 42% center;
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 239, 246, 0.14),
    inset 0 -1px 0 rgba(116, 61, 84, 0.08),
    0 12px 34px rgba(20, 8, 18, 0.16);
  color: #f7eaf0;
}

html.dark-theme body.premium-site.premium-booking-page .primary-action:hover {
  border-color: rgba(246, 199, 218, 0.3);
  background-position: 68% center;
  filter: brightness(1.08) saturate(1.02);
}

html.dark-theme body.premium-site.premium-booking-page .primary-action:disabled {
  border-color: rgba(191, 158, 181, 0.1);
  background: rgba(37, 26, 39, 0.72);
  color: #817680;
  box-shadow: none;
  opacity: 1;
}

.brand-home .premium-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.brand-home .premium-services {
  contain-intrinsic-size: auto 980px;
}

.brand-home .premium-process {
  contain-intrinsic-size: auto 720px;
}

.brand-home .premium-reviews {
  contain-intrinsic-size: auto 620px;
}

/* Local service pages */

.service-line-title,
.service-line-description {
  text-decoration: none;
}

.service-line-title:focus-visible,
.service-line-description:focus-visible {
  border-radius: 6px;
}

body.seo-service-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(126, 55, 80, 0.24), transparent 31%),
    radial-gradient(circle at 12% 66%, rgba(73, 55, 78, 0.14), transparent 32%),
    linear-gradient(180deg, #070609 0%, #0d090e 52%, #050406 100%);
}

.seo-service-page .site-nav a[href="../#services"] {
  color: var(--text);
}

.service-detail-hero {
  position: relative;
  min-height: min(780px, 92svh);
  padding: 150px max(24px, calc((100% - 1180px) / 2)) 90px;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.service-detail-media,
.service-detail-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-detail-media {
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.78) contrast(1.05) brightness(0.72);
}

.service-detail-shade {
  background:
    linear-gradient(90deg, rgba(5, 4, 6, 0.96) 0%, rgba(7, 5, 8, 0.82) 43%, rgba(7, 5, 8, 0.28) 76%, rgba(5, 4, 6, 0.54) 100%),
    linear-gradient(180deg, rgba(5, 4, 6, 0.22), rgba(5, 4, 6, 0.3) 55%, #070609 100%);
}

.service-detail-shade::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(7, 6, 9, 0.82) 58%, #070609 90%);
}

.service-detail-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.service-breadcrumbs {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.service-breadcrumbs a {
  color: var(--muted-strong);
  text-decoration: none;
}

.service-breadcrumbs span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.28);
}

.service-detail-kicker {
  margin-bottom: 18px;
  color: #d9a6b8;
  font-size: 14px;
  font-weight: 600;
}

.service-detail-copy h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 600;
  line-height: 0.9;
}

.service-detail-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.58;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-detail-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
  border-bottom: 1px solid rgba(224, 207, 214, 0.09);
}

.service-detail-section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.service-detail-section h2 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
}

.service-detail-section-head p,
.service-detail-copy-block p {
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.72;
}

.service-detail-points,
.service-detail-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid rgba(224, 207, 214, 0.1);
}

.service-detail-points li,
.service-detail-steps li {
  min-height: 180px;
  padding: 30px;
}

.service-detail-points li + li,
.service-detail-steps li + li {
  border-left: 1px solid rgba(224, 207, 214, 0.1);
}

.service-detail-points strong,
.service-detail-steps strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.service-detail-points span,
.service-detail-steps span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.service-detail-note {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.service-detail-copy-block h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.service-detail-note .liquid-glass {
  padding: 30px;
  border-radius: 18px;
}

.service-detail-note .liquid-glass strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.service-detail-note .liquid-glass p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.65;
}

.service-detail-faq .premium-faq-list {
  margin-top: 0;
}

.service-detail-final {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.service-detail-final h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
}

.seo-service-page .premium-footer > a:first-child {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .service-detail-hero {
    min-height: 760px;
    padding: 122px 20px 66px;
  }

  .premium-booking-page .form-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium-booking-page .form-contact-link {
    width: max-content;
    min-height: 40px;
  }

  .service-detail-media {
    object-position: 76% center;
  }

  .service-detail-shade {
    background:
      linear-gradient(180deg, rgba(5, 4, 6, 0.52) 0%, rgba(5, 4, 6, 0.24) 27%, rgba(5, 4, 6, 0.82) 58%, #070609 100%),
      linear-gradient(90deg, rgba(5, 4, 6, 0.82), rgba(5, 4, 6, 0.2));
  }

  .service-breadcrumbs {
    margin-bottom: 22px;
  }

  .service-detail-copy h1 {
    font-size: clamp(42px, 13.2vw, 58px);
    line-height: 0.92;
    overflow-wrap: break-word;
  }

  .service-detail-lead {
    font-size: 17px;
  }

  .service-detail-actions,
  .service-detail-actions .premium-button {
    width: 100%;
  }

  .service-detail-section {
    width: calc(100% - 36px);
    padding: 64px 0;
  }

  .service-detail-section-head {
    margin-bottom: 32px;
  }

  .service-detail-section h2,
  .service-detail-copy-block h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .service-detail-points,
  .service-detail-steps {
    grid-template-columns: 1fr;
  }

  .service-detail-points li,
  .service-detail-steps li {
    min-height: 0;
    padding: 24px 0;
  }

  .service-detail-points li + li,
  .service-detail-steps li + li {
    border-left: 0;
    border-top: 1px solid rgba(224, 207, 214, 0.1);
  }

  .service-detail-note,
  .service-detail-final {
    grid-template-columns: 1fr;
  }

  .service-detail-note {
    gap: 28px;
  }

  .service-detail-final {
    width: calc(100% - 36px);
    padding: 64px 0 86px;
    gap: 28px;
  }

  .service-detail-final .premium-button {
    width: 100%;
  }
}
