:root {
  --ink: #17151a;
  --ink-soft: #343038;
  --wine: #435b91;
  --wine-dark: #293c6d;
  --gold: #8d9fc5;
  --gold-light: #dce4f4;
  --ivory: #f3f5f9;
  --paper: #fcfdff;
  --sage: #7a866f;
  --blue: #354d83;
  --muted: #6f7480;
  --line: rgba(23, 21, 26, 0.14);
  --white: #fff;
  --shadow: 0 30px 90px rgba(37, 53, 91, 0.14);
  --site-stable-vh: 1svh;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

main,
.site-header,
.hero,
.running-line,
.services-section,
.experience-section,
.team-section,
.site-footer {
  min-width: 0;
  max-width: 100%;
}

main,
.site-header {
  width: 100%;
}

.magic-loading-overlay {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  background: transparent;
  transition: opacity 180ms ease;
}

.is-global-loading .magic-loading-overlay {
  opacity: 1;
  pointer-events: auto;
}

.magic-loading-orb {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(67, 91, 145, 0.16);
  border-top-color: #3f79d9;
  border-right-color: #5ed3ff;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(94, 211, 255, 0.34);
  animation: magic-loading-spin 820ms linear infinite;
}

@keyframes magic-loading-spin {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .magic-loading-orb {
    animation: none;
  }
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 82px;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 12px clamp(22px, 4vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(248, 245, 239, 0.88);
  backdrop-filter: blur(18px);
}

.brand img,
.mobile-menu img,
footer img {
  width: 132px;
  height: auto;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 58px);
}

.desktop-nav a,
.cabinet-link,
.contact-nav-link {
  position: relative;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav a::after,
.contact-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover::after,
.contact-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.action-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.action-book {
  border-color: rgba(67, 91, 145, 0.28);
  border-radius: 999px;
  color: var(--wine-dark);
  background: var(--white);
  box-shadow:
    0 10px 26px rgba(37, 53, 91, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.site-header .action-book,
.mobile-menu .action-book {
  border-color: rgba(67, 91, 145, 0.18);
  color: #263d75;
  background: #eaf0fa;
  box-shadow: none;
}

.action-map {
  color: var(--white);
  background: var(--blue);
}

.action-instagram {
  color: var(--white);
  background: linear-gradient(120deg, #6c3a7f, #a23e66 58%, #c9874f);
}

.action-instagram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.action-confirm {
  color: var(--white);
  background: var(--sage);
  box-shadow: 0 12px 32px rgba(93, 111, 81, 0.2);
}

.action-button.large {
  min-height: 58px;
  padding: 17px 28px;
}

.action-button.compact {
  min-height: 44px;
  padding: 12px 18px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  padding: 22px;
  flex-direction: column;
  background: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-head button,
.round-close {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  margin: auto 0;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: clamp(34px, 11vw, 62px);
}

.hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 0.88fr 1.12fr;
  padding-top: 82px;
  background: var(--paper);
}

.hero-copy {
  display: flex;
  min-height: 780px;
  padding: clamp(70px, 10vw, 145px) clamp(28px, 6vw, 95px) 55px;
  flex-direction: column;
  justify-content: center;
}

.kicker {
  margin-bottom: 22px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 32px;
  font-size: clamp(68px, 7.7vw, 126px);
  letter-spacing: 0;
  line-height: 0.84;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 38px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.hero-signature {
  display: flex;
  margin-top: auto;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 70px;
}

.hero-signature > span {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 45px;
  font-style: italic;
}

.hero-signature p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 780px;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(22, 14, 19, 0.42));
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.hero-card {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  padding: 22px 25px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(25, 18, 23, 0.42);
  backdrop-filter: blur(12px);
}

.hero-card span {
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
}

.running-line {
  overflow: hidden;
  padding: 16px 0;
  color: var(--white);
  background: var(--wine);
  white-space: nowrap;
}

.running-line-track {
  display: flex;
  width: max-content;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.running-line-track span {
  flex: 0 0 auto;
  padding-right: 4.5em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.services-section,
.team-section {
  padding: clamp(95px, 11vw, 165px) clamp(22px, 5vw, 78px);
}

.section-heading {
  display: grid;
  max-width: 1450px;
  margin: 0 auto clamp(60px, 8vw, 110px);
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 60px;
  align-items: end;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(60px, 7.5vw, 116px);
  letter-spacing: 0;
  line-height: 0.88;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.services-catalog {
  max-width: 1450px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

.service-category {
  border-bottom: 1px solid var(--ink);
}

.service-category-trigger {
  display: grid;
  width: 100%;
  min-height: 126px;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  list-style: none;
  cursor: pointer;
}

.category-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--wine);
}

.category-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-icon.small {
  width: 34px;
  height: 34px;
}

.category-icon.small svg {
  width: 27px;
  height: 27px;
}

.category-title h3 {
  margin: 0 0 6px;
  font-size: clamp(38px, 4.5vw, 68px);
  letter-spacing: 0;
}

.category-title small {
  color: var(--muted);
  font-size: 12px;
}

.category-arrow {
  font-size: 30px;
  transition: transform 230ms ease;
}

.service-category.is-open .category-arrow {
  transform: rotate(45deg);
}

.service-list-wrap,
.selector-services {
  height: 0;
  overflow: hidden;
  overflow-anchor: none;
  transition: height 340ms cubic-bezier(.22,.8,.2,1);
  will-change: height;
}

.services-catalog,
.services-mobile-accordion,
.selector-content,
.selector-category {
  overflow-anchor: none;
}

.service-list-inner,
.selector-services > div {
  min-height: 0;
}

.public-service {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 105px 130px auto;
  gap: 24px;
  align-items: center;
  padding: 23px 0 23px 70px;
  border-top: 1px solid var(--line);
}

.service-name strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.service-name:has(img) {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 14px;
}

.service-name img {
  width: 58px;
  height: 58px;
  grid-row: 1 / 3;
  object-fit: cover;
}

.service-name p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.public-service > span {
  color: var(--muted);
  font-size: 12px;
}

.public-service button {
  min-height: 40px;
  padding: 10px 15px;
  border: 1px solid var(--wine);
  border-radius: 3px;
  color: var(--wine);
  background: transparent;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.experience-section {
  padding: clamp(100px, 13vw, 190px) clamp(22px, 8vw, 130px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(189, 139, 77, 0.25), transparent 33%),
    var(--wine-dark);
  text-align: center;
}

.experience-section .kicker {
  color: var(--gold-light);
}

.experience-section blockquote {
  max-width: 1150px;
  margin: 0 auto;
  font-size: clamp(44px, 6.5vw, 98px);
  letter-spacing: 0;
  line-height: 1;
}

.experience-points {
  display: flex;
  max-width: 900px;
  margin: 75px auto 0;
  justify-content: space-between;
  gap: 30px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.team-section {
  background: var(--paper);
}

.team-track {
  display: grid;
  max-width: 1450px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 14px;
}

.team-card {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.team-photo {
  position: relative;
  display: block;
  aspect-ratio: 0.74;
  overflow: hidden;
  background: #e9ded8;
}

.team-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  content: "";
  pointer-events: none;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.team-card:hover .team-photo img {
  filter: saturate(1);
  transform: scale(1.035);
}

.team-initial {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--wine);
  font-family: var(--font-sans);
  font-size: 86px;
}

.team-number {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(25, 18, 23, 0.5);
  font-size: 9px;
}

.team-meta {
  display: flex;
  padding: 18px 0 0;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
}

.team-meta h3 {
  margin: 0 0 5px;
  font-size: 28px;
}

.team-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.team-meta b {
  color: var(--wine);
  font-size: 8px;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
}

.contacts-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #e8e0d7;
}

.contact-content {
  padding: clamp(75px, 9vw, 140px) clamp(25px, 6vw, 95px);
}

.contact-content h2 {
  max-width: 720px;
  margin-bottom: 60px;
  font-size: clamp(56px, 7vw, 105px);
  letter-spacing: 0;
  line-height: 0.92;
}

.contact-list {
  display: grid;
  max-width: 650px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.contact-list > div {
  padding: 22px 20px 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-list p,
.contact-list a {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 10px;
}

.map-frame {
  min-height: 690px;
  padding: 24px;
  background: var(--wine-dark);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
  filter: grayscale(0.82) sepia(0.08) contrast(0.95);
}

footer {
  display: grid;
  min-height: 125px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 25px clamp(22px, 5vw, 78px);
  color: var(--white);
  background: var(--ink);
}

footer img {
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

footer nav {
  display: flex;
  gap: 28px;
}

footer a,
footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0;
  text-transform: uppercase;
}

footer p {
  justify-self: end;
}

.booking-shell {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
}

.booking-shell.is-open {
  pointer-events: auto;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 14, 18, 0.68);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 300ms ease;
}

.booking-shell.is-open .booking-backdrop {
  opacity: 1;
}

.booking-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(720px, 100%);
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 450ms cubic-bezier(.22,.78,.2,1);
}

.booking-shell.is-open .booking-drawer {
  transform: translateX(0);
}

.booking-head,
.booking-selector > header {
  display: flex;
  padding: 18px 25px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.booking-head span,
.booking-selector header > div > span,
.portfolio-dialog header span {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-head h2,
.booking-selector h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: 0;
}

.booking-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 25px 38px;
}

.booking-hint,
.selector-note {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.booking-fields {
  border-top: 1px solid var(--ink);
}

.booking-field {
  display: grid;
  width: 100%;
  min-height: 94px;
  grid-template-columns: 1fr auto;
  gap: 9px 20px;
  padding: 17px 2px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 180ms ease, background 180ms ease;
}

.booking-field > span {
  grid-column: 1;
  color: var(--wine);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-field strong {
  overflow: hidden;
  grid-column: 1;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-field b {
  display: grid;
  width: 34px;
  height: 34px;
  grid-row: 1 / 3;
  grid-column: 2;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--wine);
  font-size: 11px;
}

.visit-summary {
  display: flex;
  margin: 24px 0;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--wine-dark);
}

.visit-summary[hidden] {
  display: none;
}

.visit-summary strong {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
}

.visit-summary span {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
  text-align: right;
}

.booking-contact {
  margin-top: 38px;
}

.booking-contact h3,
.otp-view h3 {
  margin-bottom: 14px;
  font-size: 29px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-contact > label,
.form-row label {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-contact input,
.booking-contact textarea,
.otp-view input {
  width: 100%;
  margin-top: 7px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
}

.booking-contact textarea {
  resize: vertical;
}

.booking-contact .consent {
  display: flex;
  margin: 12px 0;
  align-items: start;
  gap: 9px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.consent input {
  width: auto;
  margin: 2px 0 0;
}

.consent a {
  color: var(--wine);
  text-decoration: underline;
}

.submit-booking {
  width: 100%;
  margin-top: 20px;
}

.form-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: #a13939;
  font-size: 12px;
}

.form-message.is-success {
  color: #47724b;
}

.otp-view {
  padding: 30px 25px 38px;
}

.otp-index {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 70px;
}

.otp-view input {
  margin-bottom: 20px;
  font-size: 30px;
  letter-spacing: 0;
  text-align: center;
}

.booking-selector {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transform: translateX(102%);
  transition: transform 380ms cubic-bezier(.22,.78,.2,1);
}

.booking-selector.is-open {
  transform: translateX(0);
}

.booking-selector > header {
  align-items: flex-start;
}

.booking-selector > header > div {
  min-width: 0;
}

.selector-selection {
  display: flex;
  max-width: 510px;
  margin-top: 13px;
  flex-wrap: wrap;
  gap: 5px;
}

.selector-selection span {
  overflow: hidden;
  max-width: 180px;
  padding: 5px 8px;
  border: 1px solid rgba(113, 53, 78, 0.3);
  border-radius: 20px;
  color: var(--wine);
  background: #f4e8eb;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selector-selection small {
  color: var(--muted);
  font-size: 10px;
}

.selector-done {
  min-height: 40px;
  padding: 10px 16px;
  border: 0;
  border-radius: 3px;
  color: var(--white);
  background: var(--sage);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.selector-content {
  flex: 1;
  overflow-y: auto;
  overflow-anchor: none;
  padding: 24px 32px 55px;
}

.selector-note {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: #f3ece3;
}

.selector-category {
  border-bottom: 1px solid var(--ink);
  transition: opacity 180ms ease, background 180ms ease;
}

.selector-category:first-of-type {
  border-top: 1px solid var(--ink);
}

.selector-category.is-selected {
  margin: 0 -12px;
  padding: 0 12px;
  background: #f5e9ec;
}

.selector-category.is-blocked {
  margin: 0 -12px;
  padding: 0 12px;
  color: #9a9399;
  background: #ebe8e4;
  opacity: 0.72;
}

.selector-category-trigger {
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  list-style: none;
  cursor: pointer;
}

.selector-category.is-blocked .selector-category-trigger {
  cursor: not-allowed;
}

.selector-category-name {
  display: flex;
  align-items: center;
  gap: 13px;
}

.selector-category-name strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
}

.selector-category-name small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.selector-category.is-selected .selector-category-name small {
  color: var(--wine);
  font-weight: 750;
}

.selector-category-toggle {
  font-size: 21px;
  transition: transform 200ms ease;
}

.selector-category.is-open .selector-category-toggle {
  transform: rotate(45deg);
}

.selector-service {
  display: grid;
  width: 100%;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 9px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.selector-service.is-selected {
  color: var(--white);
  background: var(--wine);
}

.selector-service.is-disabled {
  color: #9e979c;
  cursor: not-allowed;
  opacity: 0.58;
}

.selector-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
}

.selector-service strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.selector-service em {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.selector-service.is-selected em {
  color: rgba(255, 255, 255, 0.7);
}

.selector-service small {
  color: #3f4757;
  font-size: 10px;
  font-weight: 600;
}

.selector-service.is-selected small {
  color: rgba(255, 255, 255, 0.72);
}

.preferred-staff-grid,
.staff-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.staff-service-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
}

.staff-service-card h4 {
  margin: 0 0 5px;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
}

.staff-service-card > div > p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 11px;
}

.staff-option {
  display: grid;
  min-height: 68px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.staff-avatar {
  display: block;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(72, 91, 142, 0.18);
  border-radius: 50%;
  background: #eef3fb;
  color: var(--wine);
  flex: 0 0 38px;
}

.staff-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-avatar span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 13px;
  font-weight: 850;
}

.staff-avatar-any {
  background: #f4f7fc;
}

.staff-option-text {
  min-width: 0;
}

.staff-option.is-selected {
  border-color: var(--wine);
  color: var(--white);
  background: var(--wine);
}

.staff-option strong,
.staff-option small {
  display: block;
}

.staff-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.staff-option.is-selected small {
  color: rgba(255, 255, 255, 0.72);
}

.date-strip {
  display: grid;
  grid-auto-columns: 72px;
  grid-auto-flow: column;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.date-option {
  display: grid;
  min-height: 88px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.date-option strong {
  font-family: var(--font-sans);
  font-size: 24px;
}

.date-option span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}

.date-option.is-selected {
  color: var(--white);
  background: var(--wine);
}

.date-option.is-selected span {
  color: rgba(255, 255, 255, 0.72);
}

.time-title {
  margin: 28px 0 14px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.time-option {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.time-option.is-selected {
  border-color: var(--sage);
  color: var(--white);
  background: var(--sage);
}

.portfolio-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.portfolio-dialog::backdrop {
  background: rgba(20, 14, 18, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.portfolio-dialog > section {
  position: absolute;
  top: 0;
  right: 0;
  width: min(850px, 100%);
  height: 100%;
  padding: 35px;
  overflow-y: auto;
  background: var(--paper);
  animation: slide-in 380ms cubic-bezier(.22,.78,.2,1);
}

@keyframes slide-in {
  from { transform: translateX(100%); }
}

.portfolio-dialog header {
  display: flex;
  margin-bottom: 38px;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.portfolio-dialog h2 {
  margin-bottom: 9px;
  font-size: 58px;
  letter-spacing: 0;
}

.portfolio-dialog header p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.portfolio-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.portfolio-image {
  display: grid;
  aspect-ratio: 0.82;
  place-items: center;
  overflow: hidden;
  color: var(--gold);
  background: #ece1d9;
  font-family: var(--font-sans);
  font-size: 70px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item p {
  margin: 9px 0 0;
  font-size: 12px;
}

.empty-portfolio {
  color: var(--muted);
}

@media (max-width: 1100px) {
  .desktop-nav,
  .cabinet-link {
    display: none;
  }

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

  .menu-button {
    display: block;
  }

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

  .hero-copy {
    min-height: 720px;
  }

  .hero-visual {
    min-height: 80vh;
  }

  .team-track {
    grid-template-columns: repeat(5, minmax(250px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .team-card {
    scroll-snap-align: start;
  }

  .contacts-section {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 560px;
  }

  .map-frame iframe {
    min-height: 510px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand img {
    width: 110px;
  }

  .action-button.compact {
    display: none;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-copy {
    min-height: 650px;
    padding: 75px 20px 36px;
  }

  .hero h1 {
    font-size: clamp(59px, 18vw, 88px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-signature {
    padding-top: 45px;
  }

  .hero-visual {
    min-height: 70vh;
  }

  .hero-card {
    right: 15px;
    bottom: 15px;
    left: 15px;
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .services-section,
  .team-section {
    padding: 85px 20px;
  }

  .section-heading {
    margin-bottom: 55px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading h2 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .service-category-trigger {
    min-height: 100px;
    grid-template-columns: 45px 1fr auto;
    gap: 10px;
  }

  .category-title h3 {
    font-size: 34px;
  }

  .public-service {
    grid-template-columns: 1fr auto;
    gap: 8px 15px;
    padding: 18px 0;
  }

  .public-service > span {
    grid-column: 1;
  }

  .public-service button {
    grid-row: 1 / 4;
    grid-column: 2;
  }

  .experience-section {
    padding: 100px 20px;
  }

  .experience-section blockquote {
    font-size: 48px;
  }

  .experience-points {
    margin-top: 55px;
    align-items: center;
    flex-direction: column;
  }

  .team-section {
    padding-right: 0;
  }

  .team-section .section-heading {
    padding-right: 20px;
  }

  .team-track {
    grid-template-columns: none;
    grid-auto-columns: 80vw;
    grid-auto-flow: column;
    padding-right: 20px;
  }

  .contact-content {
    padding: 85px 20px;
  }

  .contact-content h2 {
    margin-bottom: 45px;
    font-size: 60px;
  }

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

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .map-frame {
    min-height: 440px;
    padding: 12px;
  }

  .map-frame iframe {
    min-height: 416px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer nav {
    flex-direction: column;
    gap: 10px;
  }

  footer p {
    justify-self: start;
  }

  .booking-head,
  .booking-selector > header {
    padding: 15px 18px;
  }

  .booking-head h2,
  .booking-selector h3 {
    font-size: 25px;
  }

  .booking-body,
  .selector-content,
  .otp-view {
    padding-right: 18px;
    padding-left: 18px;
  }

  .booking-selector > header {
    flex-direction: column;
  }

  .selector-done {
    position: absolute;
    top: 15px;
    right: 18px;
  }

  .selector-selection {
    padding-right: 0;
  }

  .form-row,
  .preferred-staff-grid,
  .staff-options {
    grid-template-columns: 1fr;
  }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .visit-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .visit-summary span {
    text-align: left;
  }

  .portfolio-dialog > section {
    padding: 25px 20px;
  }

  .portfolio-dialog h2 {
    font-size: 46px;
  }

  .portfolio-track {
    grid-template-columns: 1fr;
  }
}

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

  .service-list-wrap,
  .selector-services {
    transition: none !important;
  }
}

/* Structural redesign v5 */
.site-header {
  grid-template-columns: 1fr auto 1fr;
  min-height: 90px;
  padding: 12px clamp(24px, 4vw, 70px);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: rgba(247, 243, 237, 0.9);
}

.brand {
  justify-self: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.desktop-nav {
  justify-content: flex-start;
}

.header-actions {
  justify-content: flex-end;
}

.contact-nav-link {
  padding: 12px 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: block;
  min-height: 100svh;
  padding-top: 90px;
  overflow: hidden;
  color: var(--white);
  background: #171217;
}

.hero-visual {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.hero-visual::after {
  display: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  filter: saturate(0.78) contrast(1.02);
  object-fit: cover;
  transform: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 10, 13, 0.82) 0%, rgba(14, 10, 13, 0.42) 46%, rgba(14, 10, 13, 0.08) 78%),
    linear-gradient(0deg, rgba(14, 10, 13, 0.76) 0%, transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1420px, calc(100% - 150px));
  min-height: calc(100svh - 90px);
  margin: 0 auto;
  padding: clamp(100px, 13vh, 160px) 0 155px;
  justify-content: flex-end;
}

.hero .kicker {
  color: var(--gold-light);
}

.hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(78px, 10.8vw, 172px);
  letter-spacing: 0;
  line-height: 0.77;
  text-shadow: 0 8px 45px rgba(0, 0, 0, 0.2);
}

.hero-bottom {
  display: grid;
  width: min(880px, 76%);
  margin-top: 46px;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.hero-lead {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  align-items: flex-end;
  flex-direction: column;
}

.hero .text-link {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-side-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.hero-side-note i {
  width: 70px;
  height: 1px;
  background: currentColor;
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 5vw, 76px);
  bottom: 28px;
  left: clamp(75px, 8vw, 130px);
  display: grid;
  grid-template-columns: 240px 290px 1fr;
  gap: 40px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-facts div:not(.hero-monogram) span,
.hero-facts div:not(.hero-monogram) strong {
  display: block;
}

.hero-facts span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-facts strong {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
}

.hero-monogram {
  justify-self: end;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-sans);
  font-size: 58px;
  font-style: italic;
}

.running-line {
  padding: 13px 0;
  background: var(--wine-dark);
}

.services-section {
  display: grid;
  padding: 0;
  grid-template-columns: minmax(190px, 0.24fr) 1fr;
  background: var(--paper);
}

.section-orbit {
  display: flex;
  min-height: 100%;
  padding: 110px 35px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  color: var(--wine);
}

.section-orbit > span {
  font-family: var(--font-sans);
  font-size: 82px;
}

.section-orbit p {
  margin: 0;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.services-main {
  min-width: 0;
  padding: clamp(100px, 11vw, 175px) clamp(24px, 6vw, 96px);
}

.services-main .section-heading {
  margin-right: 0;
  margin-left: 0;
}

.services-main .section-heading h2 {
  font-size: clamp(68px, 8vw, 128px);
}

.services-catalog {
  max-width: none;
}

.service-category-trigger {
  min-height: 150px;
  grid-template-columns: 55px minmax(260px, 1fr) 72px 35px;
  gap: 26px;
}

.category-sequence {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 20px;
}

.category-title h3 {
  font-size: clamp(47px, 5.2vw, 82px);
}

.category-icon {
  color: var(--wine);
}

.public-service {
  grid-template-columns: minmax(280px, 1fr) 115px 135px 130px;
  padding-left: 80px;
}

.experience-section {
  display: grid;
  min-height: 760px;
  padding: clamp(90px, 10vw, 150px) clamp(30px, 6vw, 100px);
  grid-template-columns: 130px 1fr minmax(260px, 0.42fr);
  gap: clamp(35px, 6vw, 105px);
  align-items: center;
  text-align: left;
}

.experience-index {
  align-self: start;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-sans);
  font-size: 92px;
}

.experience-copy blockquote {
  margin: 0;
  font-size: clamp(65px, 8vw, 130px);
  letter-spacing: 0;
  line-height: 0.83;
}

.experience-copy blockquote em {
  color: var(--gold-light);
  font-weight: 400;
}

.experience-aside {
  align-self: end;
}

.experience-aside > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.experience-points {
  margin: 45px 0 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.experience-points span {
  width: 100%;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.team-section {
  display: grid;
  padding: clamp(95px, 10vw, 150px) 0 clamp(95px, 10vw, 150px) clamp(25px, 6vw, 95px);
  grid-template-columns: minmax(330px, 0.42fr) 1fr;
  gap: clamp(50px, 8vw, 120px);
  overflow: hidden;
}

.team-intro {
  display: flex;
  min-height: 620px;
  padding-right: 25px;
  flex-direction: column;
}

.team-intro > span {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 70px;
}

.team-intro h2 {
  margin-bottom: 36px;
  font-size: clamp(64px, 7vw, 108px);
  letter-spacing: 0;
  line-height: 0.86;
}

.team-intro > p:last-child {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.team-track {
  display: grid;
  max-width: none;
  margin: 0;
  grid-template-columns: none;
  grid-auto-columns: minmax(300px, 31vw);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-right: 60px;
  scroll-snap-type: x mandatory;
}

.team-card {
  scroll-snap-align: start;
}

.team-photo {
  aspect-ratio: 0.76;
}

.team-meta {
  border-top: 1px solid var(--ink);
}

.team-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.team-title i {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 16px;
  font-style: normal;
}

.contacts-section {
  position: relative;
  display: block;
  min-height: 820px;
  padding: 38px;
  background: var(--wine-dark);
}

.map-frame {
  position: absolute;
  inset: 38px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.map-frame iframe {
  min-height: 100%;
  filter: grayscale(0.9) sepia(0.08) contrast(0.9);
}

.contact-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 80px));
  min-height: 620px;
  margin: 62px 0 62px 62px;
  padding: clamp(45px, 6vw, 85px);
  color: var(--white);
  background: rgba(38, 25, 33, 0.92);
  box-shadow: 0 30px 100px rgba(20, 10, 15, 0.28);
  backdrop-filter: blur(16px);
}

.contact-index {
  position: absolute;
  top: 30px;
  right: 35px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-sans);
  font-size: 70px;
}

.contact-content .kicker {
  color: var(--gold-light);
}

.contact-content h2 {
  max-width: 480px;
  margin-bottom: 70px;
  font-size: clamp(58px, 6vw, 96px);
}

.contact-list {
  border-color: rgba(255, 255, 255, 0.34);
}

.contact-list > div {
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-list span {
  color: var(--gold-light);
}

.contact-list p,
.contact-list a {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    justify-self: start;
  }

  .hero-copy {
    width: calc(100% - 100px);
  }

  .services-section {
    grid-template-columns: 130px 1fr;
  }

  .team-section {
    grid-template-columns: minmax(360px, 0.46fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 58px);
  }

  .contact-nav-link {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 70px;
  }

  .hero-copy {
    width: auto;
    min-height: calc(100svh - 70px);
    padding: 110px 20px 160px;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(67px, 20vw, 94px);
    line-height: 0.8;
  }

  .hero-bottom {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-side-note {
    display: none;
  }

  .hero-facts {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .hero-facts > div:nth-child(2),
  .hero-monogram {
    display: none;
  }

  .services-section {
    display: block;
  }

  .section-orbit {
    min-height: 0;
    padding: 50px 20px 0;
    border-right: 0;
    flex-direction: row;
    align-items: center;
  }

  .section-orbit > span {
    font-size: 48px;
  }

  .section-orbit p {
    transform: none;
  }

  .services-main {
    padding: 50px 20px 90px;
  }

  .service-category-trigger {
    min-height: 112px;
    grid-template-columns: 30px 1fr 32px;
    gap: 10px;
  }

  .service-category .category-icon {
    display: none;
  }

  .category-sequence {
    font-size: 15px;
  }

  .category-title h3 {
    font-size: 36px;
  }

  .experience-section {
    display: block;
    min-height: 0;
    padding: 100px 20px;
  }

  .experience-index {
    margin-bottom: 70px;
    font-size: 60px;
  }

  .experience-copy blockquote {
    margin-bottom: 65px;
    font-size: 61px;
  }

  .team-section {
    display: block;
    padding: 90px 0 90px 20px;
  }

  .team-intro {
    min-height: 0;
    padding: 0 20px 60px 0;
  }

  .team-intro h2 {
    font-size: 69px;
  }

  .team-intro > p:last-child {
    margin-top: 35px;
  }

  .team-track {
    grid-auto-columns: 82vw;
    padding-right: 20px;
  }

  .contacts-section {
    min-height: 900px;
    padding: 14px;
  }

  .map-frame {
    inset: 14px;
  }

  .contact-content {
    width: auto;
    min-height: 0;
    margin: 360px 14px 14px;
    padding: 55px 22px 30px;
  }

  .contact-index {
    top: 18px;
    right: 20px;
    font-size: 47px;
  }

  .contact-content h2 {
    margin-bottom: 45px;
    font-size: 57px;
  }
}

/* Premium blue system v6 */
body {
  background: #eef1f6;
  font-family: var(--font-sans);
}

h1,
h2,
h3,
h4,
blockquote,
.hero-facts strong,
.team-initial,
.booking-field strong,
.visit-summary strong,
.selector-category-name strong,
.staff-service-card h4,
.date-option strong,
.portfolio-image {
  font-family: var(--font-sans);
}

.category-sequence,
.team-number,
.experience-index,
.contact-index,
.otp-index,
.team-title i {
  display: none;
}

.mobile-menu nav a {
  font-family: var(--font-sans);
  font-weight: 580;
}

.site-header {
  top: 14px;
  right: 18px;
  left: 18px;
  min-height: 76px;
  border: 1px solid rgba(50, 69, 112, 0.13);
  border-radius: 16px;
  background: rgba(252, 253, 255, 0.9);
  box-shadow: 0 14px 45px rgba(37, 52, 88, 0.08);
}

.desktop-nav a::after,
.contact-nav-link::after {
  height: 2px;
  background: var(--wine);
}

.action-button:not(.action-book) {
  border-radius: 10px;
}

.action-map {
  color: var(--wine-dark);
  border-color: rgba(67, 91, 145, 0.22);
  background: #e7ecf6;
}

.action-instagram {
  background: linear-gradient(135deg, #687bab, #465d91);
}

.hero {
  min-height: calc(100svh - 28px);
  margin: 14px;
  padding-top: 76px;
  border-radius: 20px;
  background: #24345e;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(25, 37, 70, 0.84) 0%, rgba(29, 42, 77, 0.42) 49%, rgba(20, 31, 60, 0.08) 78%),
    linear-gradient(0deg, rgba(22, 34, 65, 0.72) 0%, transparent 42%);
}

.hero-copy {
  min-height: calc(100svh - 104px);
}

.hero h1 {
  max-width: 1080px;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-monogram {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300;
}

.running-line {
  margin: 0 14px;
  border-radius: 12px;
  background: #344a7d;
}

.services-section {
  display: block;
  margin: 18px 14px;
  padding: clamp(80px, 9vw, 138px) clamp(22px, 6vw, 96px);
  border: 1px solid rgba(52, 73, 124, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(113, 137, 188, 0.12), transparent 28%),
    var(--paper);
  box-shadow: 0 25px 80px rgba(40, 55, 91, 0.06);
}

.section-orbit {
  min-height: 0;
  margin-bottom: 42px;
  padding: 0;
  border: 0;
  color: var(--wine);
}

.section-orbit p {
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  transform: none;
}

.services-main {
  padding: 0;
}

.services-main .section-heading h2 {
  font-size: clamp(46px, 5.4vw, 72px);
  font-weight: 520;
  line-height: 1.02;
  text-wrap: balance;
}

.services-catalog {
  display: grid;
  gap: 12px;
  border: 0;
}

.service-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 20px;
}

.service-category {
  overflow: hidden;
  border: 1px solid rgba(49, 70, 117, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(41, 56, 91, 0.045);
}

.service-category-trigger {
  min-height: 128px;
  grid-template-columns: minmax(220px, 1fr) 62px 38px;
  gap: 22px;
  padding: 20px 28px;
}

.service-category.is-open .service-category-trigger {
  background: #f1f4fa;
}

.category-title h3 {
  font-size: clamp(38px, 4.4vw, 65px);
  font-weight: 560;
  letter-spacing: 0;
}

.category-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
}

.public-service {
  margin: 0 20px;
  grid-template-columns: minmax(280px, 1fr) 105px 130px 125px;
  padding: 22px 8px;
}

.public-service:last-child {
  margin-bottom: 16px;
}

.public-service button {
  border-radius: 9px;
  color: #fff;
  background: var(--wine);
}

.experience-section {
  min-height: 650px;
  margin: 18px 14px;
  padding: clamp(80px, 9vw, 135px) clamp(30px, 7vw, 110px);
  grid-template-columns: minmax(420px, 1.25fr) minmax(280px, 0.5fr);
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 8%, rgba(184, 199, 230, 0.24), transparent 30%),
    linear-gradient(135deg, #273963, #3f5689);
}

.experience-copy blockquote {
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 520;
}

.experience-copy blockquote em {
  color: #dfe7f6;
  font-style: normal;
  font-weight: 300;
}

.team-section {
  margin: 18px 14px;
  padding: clamp(80px, 9vw, 135px) 0 clamp(80px, 9vw, 135px) clamp(25px, 6vw, 92px);
  border: 1px solid rgba(52, 73, 124, 0.1);
  border-radius: 20px;
  background: #f9fbff;
}

.team-intro h2 {
  max-width: 560px;
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 520;
  line-height: 1.02;
  text-wrap: balance;
}

.team-track {
  gap: 16px;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(51, 72, 119, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(38, 54, 91, 0.07);
}

.team-photo {
  border-radius: 13px 13px 0 0;
}

.team-meta {
  min-height: 98px;
  padding: 20px;
  border: 0;
}

.team-meta h3 {
  font-size: 25px;
  font-weight: 600;
}

.team-meta b {
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--wine);
  white-space: nowrap;
}

.site-footer {
  display: block;
  margin: 18px 14px 14px;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0, rgba(143, 164, 209, 0.22), transparent 30%),
    #202f57;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(30px, 5vw, 80px);
}

.footer-contact {
  padding: clamp(12px, 3vw, 38px) 0;
}

.footer-contact > img {
  width: 150px;
  margin-bottom: clamp(60px, 9vw, 120px);
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.footer-contact .kicker {
  color: #cdd9f1;
}

.footer-contact h2 {
  max-width: 620px;
  margin-bottom: 48px;
  font-size: clamp(52px, 6.2vw, 92px);
  font-weight: 550;
  letter-spacing: 0;
  line-height: 0.92;
}

.footer-details {
  display: grid;
  max-width: 620px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-details > div {
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-details span {
  display: block;
  margin-bottom: 9px;
  color: #bdcbe8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-details p,
.footer-details a {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.65;
}

.footer-map {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: #e8edf7;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(0.72) saturate(0.72) contrast(0.95);
}

.footer-bottom {
  display: grid;
  margin-top: 42px;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.6fr) minmax(180px, 0.7fr);
  align-items: flex-start;
  gap: 24px 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-bottom a,
.footer-bottom p,
.footer-service-links strong {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
}

.footer-service-links strong {
  grid-column: 1 / -1;
  color: #fff;
}

.footer-legal-links {
  justify-content: flex-end;
}

.booking-drawer,
.booking-selector {
  background: #f8faff;
}

.booking-head,
.booking-selector > header {
  border-bottom-color: rgba(55, 75, 121, 0.13);
  background: rgba(255, 255, 255, 0.92);
}

.booking-field {
  margin-bottom: 8px;
  padding: 18px;
  border: 1px solid rgba(51, 72, 119, 0.12);
  border-radius: 12px;
  background: #fff;
}

.booking-fields {
  border: 0;
}

.booking-field strong {
  font-size: 20px;
  font-weight: 580;
}

.visit-summary {
  border-radius: 12px;
  background: var(--wine-dark);
}

.selector-actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.selector-clear,
.selector-done {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.selector-clear {
  border: 1px solid rgba(67, 91, 145, 0.24);
  color: var(--wine);
  background: #eef2fa;
}

.selector-clear:disabled {
  cursor: default;
  opacity: 0.42;
}

.selector-clear[hidden] {
  display: none;
}

.selector-done {
  border: 0;
  color: #fff;
  background: var(--wine);
}

.booking-selector h3 {
  font-size: 31px;
  font-weight: 650;
  letter-spacing: 0;
}

.selector-selection {
  min-height: 50px;
  max-width: 100%;
  margin-top: 13px;
  padding: 10px;
  border: 1px solid rgba(67, 91, 145, 0.3);
  border-left: 4px solid #435b91;
  border-radius: 12px;
  background: linear-gradient(135deg, #e5ecf8, #f7f9fd);
  box-shadow: none;
}

.selector-selection span {
  max-width: 230px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: #fff;
  background: var(--wine);
  box-shadow: none;
}

.selector-selection.is-empty {
  align-items: center;
}

.selector-note {
  border: 0;
  border-radius: 12px;
  background: #e9eef8;
}

.selector-category {
  margin-bottom: 9px;
  overflow: hidden;
  border: 1px solid rgba(53, 74, 122, 0.13);
  border-radius: 12px;
  background: #fff;
}

.selector-category:first-of-type {
  border-top: 1px solid rgba(53, 74, 122, 0.13);
}

.selector-category.is-selected,
.selector-category.is-blocked {
  margin: 0 0 9px;
  padding: 0;
}

.selector-category.is-selected {
  border-color: rgba(67, 91, 145, 0.36);
  background: #f0f4fb;
}

.selector-category.is-blocked {
  background: #eceff4;
}

.selector-category-trigger {
  min-height: 82px;
  padding: 12px 16px;
}

.selector-category-name strong {
  font-size: 21px;
  font-weight: 600;
}

.selector-category-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
}

.selector-parallel-hint {
  display: inline-flex !important;
  width: fit-content;
  margin: 0 !important;
  padding: 4px 8px;
  border: 1px solid rgba(63, 125, 122, 0.22);
  border-radius: 999px;
  color: #356d69 !important;
  background: #eaf5f3;
  font-size: 9px !important;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.35;
}

.selector-service.is-selected .selector-parallel-hint {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
}

.selector-service-meta {
  display: flex;
  margin-top: 6px;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 9px;
}

.selector-service-meta > small {
  flex: 0 0 auto;
}

.selector-service-meta .selector-parallel-hint {
  flex: 0 1 auto;
}

.selector-service {
  padding: 15px 17px;
}

.selector-service.is-selected {
  background: var(--wine);
}

.staff-option,
.date-option,
.time-option {
  border-radius: 9px;
}

.staff-option.is-selected,
.date-option.is-selected {
  background: var(--wine);
}

.portfolio-dialog > section {
  background: #f8faff;
}

@media (max-width: 1100px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact > img {
    margin-bottom: 60px;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 8px;
    right: 9px;
    left: 9px;
    min-height: 62px;
    padding: 8px 13px;
    border-radius: 13px;
  }

  .hero {
    min-height: calc(100svh - 16px);
    margin: 8px;
    padding-top: 62px;
    border-radius: 16px;
  }

  .hero-copy {
    min-height: calc(100svh - 78px);
    padding: 92px 18px 142px;
  }

  .hero h1 {
    font-size: clamp(54px, 16.5vw, 78px);
    line-height: 0.86;
  }

  .hero-bottom {
    gap: 22px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-facts {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .running-line,
  .services-section,
  .experience-section,
  .team-section,
  .site-footer {
    margin-right: 8px;
    margin-left: 8px;
    border-radius: 16px;
  }

  .services-section {
    padding: 75px 14px;
  }

  .section-orbit {
    padding: 0 6px;
  }

  .services-main {
    padding: 0;
  }

  .services-main .section-heading {
    padding: 0 6px;
  }

  .services-main .section-heading h2 {
    font-size: 52px;
  }

  .service-category-trigger {
    min-height: 96px;
    grid-template-columns: 1fr 34px;
    gap: 10px;
    padding: 16px;
  }

  .service-category .category-icon {
    display: none;
  }

  .category-title h3 {
    font-size: 29px;
  }

  .category-title small {
    display: block;
    padding-right: 4px;
    line-height: 1.4;
  }

  .public-service {
    margin: 0 12px;
    grid-template-columns: 1fr auto;
    gap: 9px 12px;
    padding: 18px 4px;
  }

  .public-service .service-name {
    grid-column: 1 / -1;
  }

  .public-service > span {
    grid-column: auto;
  }

  .public-service button {
    width: 100%;
    min-height: 44px;
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .experience-section {
    padding: 80px 20px;
  }

  .experience-copy blockquote {
    font-size: 48px;
  }

  .team-section {
    padding: 80px 0 80px 18px;
  }

  .team-intro h2 {
    font-size: 57px;
  }

  .team-track {
    grid-auto-columns: 84vw;
  }

  .team-meta {
    min-height: 112px;
    align-items: flex-start;
    flex-direction: column;
  }

  .team-meta b {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    padding: 26px 18px;
  }

  .footer-contact-grid {
    display: flex;
    flex-direction: column;
  }

  .footer-contact > img {
    width: 125px;
    margin-bottom: 55px;
  }

  .footer-contact h2 {
    font-size: 49px;
  }

  .footer-details {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    row-gap: 14px;
  }

  .footer-details > div {
    padding: 0 0 14px;
  }

  .footer-contact .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 360px;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding-bottom: max(88px, calc(72px + env(safe-area-inset-bottom)));
  }

  .footer-bottom nav {
    display: grid;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-service-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-service-links strong {
    grid-column: auto;
  }

  .footer-legal-links {
    justify-content: start;
  }

  .booking-head,
  .booking-selector > header {
    padding: 18px;
  }

  .booking-selector > header {
    position: relative;
    display: block;
  }

  .booking-selector h3 {
    padding-right: 0;
    font-size: 27px;
  }

  .selector-actions {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .selector-clear,
  .selector-done {
    position: static;
    min-height: 44px;
    flex: 1;
  }

  .selector-selection {
    max-height: 132px;
    overflow-y: auto;
  }

  .selector-selection span {
    max-width: 100%;
  }

  .selector-content {
    padding: 18px 14px 45px;
  }

  .selector-category-trigger {
    gap: 10px;
    padding: 12px;
  }

  .selector-category-name {
    min-width: 0;
  }

  .selector-category-name > span:last-child {
    min-width: 0;
  }

  .selector-category-name strong,
  .selector-category-name small {
    overflow-wrap: anywhere;
  }

  .selector-service {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 12px;
  }

  .selector-service strong,
  .selector-service em,
  .selector-service small {
    overflow-wrap: anywhere;
  }

  .preferred-staff-grid,
  .staff-options {
    grid-template-columns: 1fr;
  }

  .staff-option {
    min-height: 62px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .staff-avatar {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .date-strip {
    grid-auto-columns: 68px;
  }

  .time-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Precision layout and booking logic v7 */
:root {
  --muted: #555d6b;
}

main {
  padding-top: 82px;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  top: 0;
  right: 0;
  left: 0;
  min-height: 82px;
  border-width: 0 0 1px;
  border-radius: 0;
  background: rgba(252, 253, 255, 0.97);
  box-shadow: 0 8px 28px rgba(37, 52, 88, 0.07);
}

.hero {
  min-height: calc(100svh - 82px);
  margin: 0;
  padding-top: 0;
  border-radius: 0;
}

.hero-copy {
  min-height: calc(100svh - 82px);
}

.running-line {
  margin: 0;
  border-radius: 0;
}

.services-section,
.experience-section,
.team-section {
  border-radius: 7px;
}

.service-category,
.team-card,
.booking-field,
.visit-summary,
.selector-selection,
.selector-note,
.selector-category {
  border-radius: 6px;
}

.team-photo {
  border-radius: 5px 5px 0 0;
}

.action-button:not(.action-book),
.team-meta b,
.public-service button,
.selector-clear,
.selector-done,
.staff-option,
.date-option,
.time-option {
  border-radius: 5px;
}

.category-title small,
.public-service > span,
.service-name p,
.team-meta p,
.team-intro > p:last-child,
.section-heading > p,
.booking-hint,
.selector-note,
.selector-category-name small,
.selector-service em,
.staff-option small,
.staff-service-card > div > p {
  color: #505967;
}

.public-service > span {
  font-weight: 600;
}

.category-icon {
  display: none !important;
}

.service-category-trigger {
  grid-template-columns: minmax(220px, 1fr) 48px;
}

.category-arrow,
.selector-category-toggle {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(67, 91, 145, 0.25);
  border-radius: 50%;
  color: var(--wine);
  background: transparent;
  transform: none;
  transition: color 240ms ease, background 240ms ease, transform 340ms cubic-bezier(.2,.8,.2,1);
}

.category-arrow i,
.selector-category-toggle i {
  position: absolute;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 340ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease;
}

.category-arrow i:last-child,
.selector-category-toggle i:last-child {
  transform: rotate(90deg);
}

.service-category-trigger:hover .category-arrow,
.selector-category-trigger:hover .selector-category-toggle {
  color: #fff;
  background: var(--wine);
  transform: rotate(90deg);
}

.service-category.is-open .category-arrow,
.selector-category.is-open .selector-category-toggle {
  color: #fff;
  background: var(--wine);
  transform: rotate(180deg);
}

.service-category.is-open .category-arrow i:first-child,
.selector-category.is-open .selector-category-toggle i:first-child {
  transform: rotate(45deg);
}

.service-category.is-open .category-arrow i:last-child,
.selector-category.is-open .selector-category-toggle i:last-child {
  transform: rotate(-45deg);
}

.selector-category.is-blocked .selector-category-toggle {
  color: #8b929e;
  border-color: #b9bec7;
  background: transparent;
}

.site-footer {
  margin: 18px 0 0;
  border-radius: 0;
}

.footer-map {
  border-radius: 7px;
}

.selector-selection .selection-staff {
  color: var(--wine-dark);
  background: #d9e2f3;
}

.selector-selection .selection-time {
  color: #fff;
  background: #596879;
}

.time-empty {
  grid-column: 1 / -1;
  color: #555d6b;
  font-size: 12px;
  line-height: 1.6;
}

.portfolio-dialog > section {
  width: min(1050px, 100%);
}

.portfolio-carousel {
  position: relative;
}

.portfolio-controls {
  display: flex;
  margin-bottom: 16px;
  justify-content: flex-end;
  gap: 8px;
}

.portfolio-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(67, 91, 145, 0.24);
  border-radius: 50%;
  color: var(--wine);
  background: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.portfolio-track {
  display: grid;
  grid-template-columns: none;
  grid-auto-columns: minmax(280px, 42%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.portfolio-item {
  scroll-snap-align: start;
}

.portfolio-image {
  border-radius: 5px;
}

@media (max-width: 720px) {
  main {
    padding-top: 68px;
  }

  .site-header {
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 68px;
    gap: 12px;
    padding: 9px 14px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 0;
  }

  .site-header .desktop-nav,
  .site-header .contact-nav-link,
  .site-header .action-book.compact {
    display: none;
  }

  .brand {
    min-width: 0;
    justify-self: start;
  }

  .brand img {
    width: 112px;
    height: auto;
  }

  .header-actions {
    display: flex;
    min-width: 0;
    margin-left: auto;
    justify-self: end;
    gap: 10px;
  }

  .site-header .header-account-icon {
    display: grid;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .hero {
    min-height: calc(100svh - 68px);
    margin: 0;
    padding-top: 0;
    border-radius: 0;
  }

  .hero-copy {
    min-height: calc(100svh - 68px);
  }

  .running-line {
    margin: 0;
    border-radius: 0;
  }

  .services-section,
  .experience-section,
  .team-section {
    border-radius: 5px;
  }

  .site-footer {
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
  }

  .portfolio-track {
    grid-auto-columns: 84vw;
  }
}

/* Compact interaction system v8 */
.action-instagram {
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 22%, #fa7e1e 36%, transparent 52%),
    linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045);
  box-shadow: 0 12px 28px rgba(193, 53, 132, 0.24);
}

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

.booking-feedback-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid rgba(67, 91, 145, 0.22);
  border-radius: 7px;
  color: #263d75;
  background: #edf2fb;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.booking-account {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(67, 91, 145, 0.25);
  border-radius: 50%;
  color: var(--wine);
  background: #edf2fb;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.booking-account svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.booking-field {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 72px;
  margin-bottom: 8px;
  padding: 0;
  align-items: stretch;
  border: 1px solid rgba(51, 72, 119, 0.12);
  overflow: hidden;
  background: #fff;
}

.booking-field-main {
  display: grid;
  min-width: 0;
  flex: 1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 14px;
  align-items: center;
  padding: 12px 15px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.booking-field-main > span {
  grid-column: 1;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-field-main strong {
  overflow: hidden;
  grid-column: 1;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-field-main b {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  grid-row: 1 / 3;
  grid-column: 2;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
}

.booking-field-main b i {
  position: absolute;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
}

.booking-field-main b i:last-child {
  transform: rotate(90deg);
}

.field-services {
  border-left: 3px solid #405d9d;
}

.field-services .booking-field-main > span {
  color: #405d9d;
}

.field-services .booking-field-main b {
  background: #405d9d;
}

.field-staff {
  border-left: 3px solid #7863a6;
}

.field-staff .booking-field-main > span {
  color: #7863a6;
}

.field-staff .booking-field-main b {
  background: #7863a6;
}

.field-time {
  border-left: 3px solid #3f7d7a;
}

.field-time .booking-field-main > span {
  color: #3f7d7a;
}

.field-time .booking-field-main b {
  background: #3f7d7a;
}

.booking-field-clear {
  width: 48px;
  flex: 0 0 48px;
  border: 0;
  border-left: 1px solid rgba(164, 62, 67, 0.16);
  color: #a03e43;
  background: #fbefef;
  font-size: 22px;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.booking-field-clear[hidden] {
  display: none;
}

.selector-clear {
  color: #9a353d;
  border-color: rgba(160, 62, 67, 0.23);
  background: #fbefef;
}

.selector-done {
  color: #41694c;
  border: 1px solid rgba(79, 118, 90, 0.25);
  background: #edf6ef;
}

.selector-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(127, 49, 56, 0.24);
  border-radius: 50%;
  color: #7f3138;
  background: #fff5f5;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.action-tour {
  color: #263c70;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(12, 22, 48, 0.2);
  backdrop-filter: blur(12px);
}

.tour-badge {
  display: grid;
  min-width: 38px;
  height: 28px;
  place-items: center;
  padding: 0 7px;
  border-radius: 999px;
  color: #fff;
  background: #435b91;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  transition: color 180ms ease, background 180ms ease;
}

@media (max-width: 1100px) {
  .service-category.is-open {
    border-color: rgba(67, 91, 145, 0.28);
    background: #edf2fb;
  }

  .service-category.is-open .service-category-trigger,
  .service-category.is-open .service-list-wrap,
  .service-category.is-open .service-list-inner {
    background: #edf2fb;
  }

  .selector-category.is-open:not(.is-blocked) {
    border-color: rgba(67, 91, 145, 0.34);
    background: #eaf0fa;
  }

  .selector-category.is-open:not(.is-blocked) .selector-category-trigger,
  .selector-category.is-open:not(.is-blocked) .selector-services,
  .selector-category.is-open:not(.is-blocked) .selector-services > div {
    background: #eaf0fa;
  }
}

@media (max-width: 720px) {
  .selector-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr) 44px;
    align-items: center;
    gap: 7px;
  }

  .selector-clear,
  .selector-done {
    width: 100%;
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 8px;
  }

  .selector-close {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .hero {
    width: 100%;
    height: auto;
    min-height: calc(100svh - 68px);
    overflow: hidden;
  }

  .hero-visual img {
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 29, 54, 0.05) 22%, rgba(20, 29, 54, 0.3) 57%, rgba(17, 26, 50, 0.88) 100%);
  }

  .hero-copy {
    width: 100%;
    height: auto;
    min-height: calc(100svh - 68px);
    padding: clamp(220px, 48svh, 360px) 18px 24px;
    justify-content: flex-end;
  }

  .hero .kicker {
    margin-bottom: 10px;
    font-size: 8px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 0;
    font-size: clamp(34px, 10.4vw, 46px);
    font-weight: 430;
    line-height: 1.04;
  }

  .hero-bottom {
    width: 100%;
    margin-top: 15px;
    gap: 13px;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero .text-link,
  .hero-facts {
    display: none;
  }

  .action-tour {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px 10px 10px;
  }

  .tour-badge {
    min-width: 36px;
    height: 27px;
  }
}

.round-close {
  color: #7f3138;
  border-color: rgba(127, 49, 56, 0.3);
  background: #fff5f5;
}

.submit-booking,
.action-confirm {
  background: #4f765a;
}

@media (min-width: 1101px) {
  .hero-copy {
    width: min(1260px, calc(100% - 120px));
    padding-top: 75px;
    padding-bottom: 118px;
  }

  .hero h1 {
    max-width: 980px;
    font-size: clamp(56px, 6.1vw, 90px);
    font-weight: 520;
    line-height: 0.94;
  }

  .hero-bottom {
    width: min(760px, 70%);
    margin-top: 32px;
  }

  .services-section {
    padding: 82px clamp(40px, 5vw, 78px);
  }

  .section-orbit {
    margin-bottom: 28px;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .services-main .section-heading h2 {
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 520;
    line-height: 1.02;
  }

  .service-category-trigger {
    min-height: 90px;
    padding: 15px 22px;
  }

  .category-title h3 {
    margin-bottom: 3px;
    font-size: clamp(31px, 3.2vw, 47px);
  }

  .public-service {
    margin: 0 16px;
    grid-template-columns: minmax(260px, 1fr) 90px 115px 112px;
    padding: 15px 6px;
  }

  .experience-section {
    min-height: 510px;
    padding: 80px clamp(50px, 6vw, 90px);
  }

  .experience-copy blockquote {
    font-size: clamp(50px, 6vw, 88px);
  }

  .team-section {
    padding-top: 82px;
    padding-bottom: 82px;
    grid-template-columns: minmax(390px, 0.42fr) 1fr;
    gap: clamp(36px, 5vw, 72px);
  }

  .team-intro {
    min-height: 490px;
  }

  .team-intro h2 {
    max-width: 540px;
    font-size: clamp(46px, 4.8vw, 68px);
    font-weight: 520;
    line-height: 1.03;
  }

  .team-track {
    grid-auto-columns: minmax(255px, 25vw);
  }

  .team-meta {
    min-height: 84px;
    padding: 15px;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 500px;
  }

  .footer-contact > img {
    margin-bottom: 68px;
  }

  .footer-contact h2 {
    max-width: 720px;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 520;
    line-height: 1.05;
  }

  .booking-drawer {
    width: min(620px, 100%);
  }

  .booking-head,
  .booking-selector > header {
    padding: 16px 22px;
  }

  .booking-head h2 {
    font-size: 30px;
  }

  .booking-body {
    padding: 18px 22px 36px;
  }

  .selector-content {
    padding: 16px 22px 36px;
  }
}

@media (max-width: 720px) {
  .booking-head-actions {
    gap: 6px;
  }

  .booking-feedback-button {
    max-width: 112px;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 8px;
    white-space: normal;
  }

  .booking-account,
  .round-close {
    width: 42px;
    height: 42px;
  }

  .booking-field {
    min-height: 70px;
  }

  .booking-field-clear {
    width: 45px;
    flex-basis: 45px;
  }
}

/* Booking and account flow v9 */
.cabinet-link,
.mobile-account-link {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.mobile-menu nav .mobile-account-link {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(34px, 11vw, 62px);
  font-weight: 580;
  text-align: left;
}

.action-instagram {
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.instagram-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 22%, #fa7e1e 36%, transparent 52%),
    linear-gradient(135deg, #833ab4, #fd1d1d 58%, #fcb045);
  box-shadow: 0 7px 18px rgba(193, 53, 132, 0.24);
}

.action-instagram .instagram-icon svg {
  width: 17px;
  height: 17px;
  color: #fff;
}

.experience-section {
  min-height: 0;
  margin: 0;
  padding: 58px clamp(42px, 6vw, 92px);
  grid-template-columns: minmax(360px, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 7vw, 110px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.experience-copy blockquote {
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: 0.9;
}

.experience-aside {
  align-self: center;
}

.experience-aside > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.experience-points {
  margin-top: 24px;
  gap: 4px;
}

.experience-points span {
  padding: 9px 0;
}

.site-footer {
  min-height: 0;
  padding: 32px clamp(32px, 4vw, 64px) 22px;
}

.footer-contact-grid {
  grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

.footer-contact {
  padding: 4px 0;
}

.footer-contact > img {
  width: 126px;
  margin-bottom: 28px;
}

.footer-contact h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 430;
  line-height: 1.12;
  text-wrap: normal;
}

.footer-details > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: start;
  gap: 6px;
  padding: 15px 14px 15px 0;
  text-align: left;
}

.footer-details {
  max-width: 720px;
  width: fit-content;
  grid-template-columns: max-content max-content;
  column-gap: clamp(44px, 5vw, 78px);
  align-items: start;
}

.footer-details span {
  margin-bottom: 0;
  padding-top: 0.34em;
}

.footer-details p,
.footer-details a {
  line-height: 1.45;
}

.contact-actions {
  margin-top: 24px;
}

.footer-map,
.footer-map iframe {
  height: 360px;
  min-height: 360px;
}

.footer-map iframe {
  filter: none;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
}

.staff-service-card {
  padding: 19px 0;
}

.staff-category-label {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.staff-service-card h4 {
  max-width: 760px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.booking-checkout {
  display: grid;
  margin-top: 14px;
  gap: 8px;
}

.booking-checkout-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
}

.booking-checkout .action-button {
  width: 100%;
  min-height: 52px;
}

.booking-checkout-row .booking-feedback-button {
  max-width: none;
  min-height: 52px;
  padding: 10px 15px;
  border-color: rgba(38, 61, 117, 0.18);
  border-radius: 8px;
  color: #31465f;
  background: #f4f8fb;
  box-shadow: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}

.booking-checkout p {
  margin: 0;
  color: #596372;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.booking-checkout-hint {
  color: #a13939;
  font-size: 12px;
  font-weight: 500;
}

.booking-checkout .booking-help-copy {
  color: #1f2430;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.booking-help-copy span {
  display: block;
}

@media (max-width: 520px) {
  .booking-checkout-row {
    grid-template-columns: 1fr;
  }

  .booking-checkout-row .booking-feedback-button {
    width: 100%;
  }
}

.action-button:disabled {
  cursor: default;
  opacity: 0.42;
  filter: saturate(0.55);
  transform: none;
}

.booking-stage {
  flex: 1;
  overflow-y: auto;
  padding: 16px 25px 28px;
}

.booking-contact {
  margin-top: 0;
}

.booking-contact[hidden],
.otp-view[hidden] {
  display: none;
}

.stage-back {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid rgba(67, 91, 145, 0.22);
  border-radius: 7px;
  color: var(--wine-dark);
  background: #edf2fb;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.confirmation-summary {
  display: grid;
  margin-bottom: 10px;
  padding: 11px 14px;
  gap: 6px;
  border-left: 3px solid var(--wine);
  border-radius: 5px;
  background: #edf2fb;
}

.confirmation-summary-services {
  display: grid;
  gap: 5px;
}

.confirmation-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
}

.confirmation-summary-meta {
  grid-template-columns: minmax(0, 1fr);
}

.confirmation-summary-text,
.confirmation-summary-price {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.45vw, 17px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}

.confirmation-summary-price {
  white-space: nowrap;
  text-align: right;
}

.confirmation-summary-total {
  margin-top: 1px;
  padding-top: 6px;
  border-top: 1px solid rgba(67, 91, 145, 0.18);
}

.account-shell {
  position: fixed;
  z-index: 105;
  inset: 0;
  pointer-events: none;
}

.account-shell.is-open {
  pointer-events: auto;
}

.account-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 27, 43, 0.62);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 300ms ease;
}

.account-shell.is-open .account-backdrop {
  opacity: 1;
}

.account-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(560px, 100%);
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: #f8faff;
  box-shadow: -26px 0 70px rgba(25, 38, 69, 0.2);
  transform: translateX(102%);
  transition: transform 450ms cubic-bezier(.22,.78,.2,1);
}

.account-shell.is-open .account-drawer {
  transform: translateX(0);
}

.account-drawer-head {
  display: flex;
  padding: 16px 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(55, 75, 121, 0.13);
  background: rgba(255, 255, 255, 0.94);
}

.account-drawer-head span {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 22px 36px;
}

.account-loading,
.account-empty,
.account-copy {
  color: #596372;
  font-size: 13px;
  line-height: 1.65;
}

.account-panel-form {
  display: grid;
  gap: 16px;
}

.account-panel-form h3,
.account-profile h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: 0;
  line-height: 1;
}

.account-panel-form label {
  display: grid;
  gap: 7px;
  color: #596372;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-panel-form input {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.phone-prefix-input {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--ink);
}

.phone-prefix-input > b {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.phone-prefix-input > input {
  min-width: 0;
  margin: 0;
  border-bottom: 0;
}

.booking-contact .phone-prefix-input {
  margin-top: 7px;
  border: 1px solid rgba(49, 67, 107, 0.2);
  border-radius: 5px;
  padding-left: 13px;
  background: #fff;
}

.booking-contact .phone-prefix-input > input {
  margin: 0;
  padding: 13px 0;
  border: 0;
}

.account-back-button {
  min-height: 46px;
  border: 1px solid rgba(67, 91, 145, 0.24);
  border-radius: 5px;
  color: var(--wine);
  background: #edf2fb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.account-panel-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.account-panel-form .consent input {
  width: auto;
  margin-top: 2px;
}

.account-panel-form .consent a {
  color: var(--wine);
  text-decoration: underline;
}

.account-profile {
  display: flex;
  margin-bottom: 18px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.account-profile p {
  margin: 8px 0 0;
  color: #596372;
  font-size: 12px;
}

.account-profile .kicker {
  margin: 0 0 10px;
  color: var(--wine);
}

.account-logout {
  padding: 9px 12px;
  border: 1px solid rgba(160, 62, 67, 0.22);
  border-radius: 5px;
  color: #9a353d;
  background: #fbefef;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.account-new-booking {
  width: 100%;
  margin-bottom: 26px;
}

.account-visits h4 {
  margin: 0 0 12px;
  color: #596372;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-visit {
  margin-bottom: 10px;
  padding: 16px;
  border: 1px solid rgba(51, 72, 119, 0.13);
  border-radius: 6px;
  background: #fff;
}

.account-visit-head,
.account-visit > div:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-visit time {
  color: var(--wine);
  font-size: 12px;
  font-weight: 750;
}

.account-status {
  padding: 5px 8px;
  border-radius: 4px;
  color: #334877;
  background: #e9effa;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-status.status-completed {
  color: #31563b;
  background: #e4f1e7;
}

.account-status.status-cancelled,
.account-status.status-no_show {
  color: #873a40;
  background: #f7e6e7;
}

.account-cancel-visit {
  width: 100%;
  min-height: 40px;
  margin-top: 13px;
  border: 1px solid rgba(161, 72, 80, 0.22);
  border-radius: 5px;
  color: #873a40;
  background: #fff8f8;
  font: inherit;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.account-cancel-visit:disabled {
  opacity: 0.58;
  cursor: wait;
}

.account-visit h5 {
  margin: 15px 0 5px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.account-visit p {
  margin: 0 0 15px;
  color: #596372;
  font-size: 11px;
}

.account-visit > div:last-child {
  padding-top: 12px;
  border-top: 1px solid rgba(51, 72, 119, 0.1);
  color: #596372;
  font-size: 10px;
}

.account-visit > div:last-child strong {
  color: var(--ink);
  font-size: 13px;
}

@media (min-width: 1101px) {
  .experience-section {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-map,
  .footer-map iframe {
    height: 360px;
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .experience-section {
    padding: 62px 20px;
  }

  .footer-contact > img {
    margin-bottom: 30px;
  }

  .footer-contact h2 {
    margin-bottom: 24px;
    font-size: 43px;
  }

  .footer-map,
  .footer-map iframe {
    height: 300px;
    min-height: 300px;
  }

  .account-drawer-head,
  .account-drawer-body,
  .booking-stage {
    padding-right: 18px;
    padding-left: 18px;
  }

  .account-profile {
    flex-direction: column;
  }
}

/* Navigation and service tabs v10 */
body {
  overflow-x: hidden;
}

.booking-drawer,
.account-drawer {
  box-shadow: none;
}

.header-account-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(67, 91, 145, 0.22);
  border-radius: 50%;
  color: var(--wine);
  background: #edf2fb;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.header-account-icon::after {
  display: none;
}

.header-account-icon svg,
.mobile-account-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.mobile-account-link {
  display: flex;
  align-items: center;
  gap: 11px;
}

.services-desktop-tabs {
  display: none;
}

.services-mobile-accordion {
  display: block;
}

.menu-button span {
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (min-width: 1101px) {
  .services-section {
    width: min(1180px, calc(100% - 64px));
    margin: 30px auto;
    padding: 52px clamp(34px, 4vw, 58px) 58px;
    border: 1px solid rgba(52, 73, 124, 0.1);
    border-radius: 7px;
    background: #fcfdff;
    box-shadow: none;
  }

  .section-orbit {
    margin-bottom: 18px;
  }

  .services-main .section-heading {
    margin-bottom: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: 42px;
  }

  .services-main .section-heading h2 {
    font-size: clamp(44px, 4.5vw, 64px);
    font-weight: 520;
    line-height: 1.03;
  }

  .services-main .section-heading > p {
    max-width: 420px;
    font-size: 13px;
  }

  .service-page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: -8px 0 24px;
  }

  .services-desktop-tabs {
    display: grid;
    position: relative;
    gap: 18px;
  }

  .services-mobile-accordion {
    display: none;
  }

  .service-tabs {
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
    gap: 8px 24px;
    padding: 5px 0 8px;
  }

  .service-tab {
    appearance: none;
    position: relative;
    display: flex;
    min-height: 46px;
    flex: 0 0 auto;
    align-items: center;
    padding: 8px 0 9px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    filter: none;
    isolation: isolate;
    transition: border-color 160ms ease, color 160ms ease;
  }

  .service-tab strong {
    font-size: clamp(18px, 1.35vw, 22px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.05;
  }

  .service-tab.is-active {
    color: var(--ink);
    background: transparent;
    border-bottom-color: #435b91;
    box-shadow: none;
    transform: none;
  }

  .service-tab:hover,
  .service-tab:focus-visible,
  .service-tab:active {
    color: var(--ink);
    background: transparent;
    border-bottom-color: #435b91;
    box-shadow: none;
    filter: none;
    outline: 0;
    transform: none;
  }

  .service-tab-panel {
    overflow: hidden;
    border: 1px solid rgba(51, 72, 119, 0.13);
    border-radius: 6px;
    background: #fff;
    transform-origin: top;
    animation: serviceDesktopPanelDrop 280ms cubic-bezier(.22,.8,.2,1) both;
  }

  .service-tab-list {
    padding: 8px 20px 6px;
  }

  .service-page-catalog .service-tab-panel {
    animation: none;
  }

  .service-tab-list .public-service {
    margin: 0;
    grid-template-columns: minmax(230px, 1fr) 82px 105px 106px;
    padding: 13px 4px;
    animation: serviceDesktopRowDrop 260ms cubic-bezier(.22,.8,.2,1) both;
    animation-delay: calc(var(--service-order, 0) * 24ms);
  }

  .service-tab-list .public-service:last-child {
    border-bottom: 0;
  }

  .service-tab-list .public-service:first-child {
    border-top: 0;
  }

  @keyframes serviceDesktopPanelDrop {
    0% {
      opacity: 0;
      transform: translateY(-10px) scaleY(0.985);
      clip-path: inset(0 0 100% 0 round 6px);
    }

    100% {
      opacity: 1;
      transform: translateY(0) scaleY(1);
      clip-path: inset(0 0 0 0 round 6px);
    }
  }

  @keyframes serviceDesktopRowDrop {
    0% {
      opacity: 0;
      transform: translateY(-8px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

}

@media (max-width: 1100px) {
  .header-account-icon {
    display: grid;
  }

  .header-actions {
    gap: 10px;
  }

  .mobile-menu {
    top: 76px;
    right: 0;
    bottom: auto;
    left: auto;
    width: min(50vw, 320px);
    min-width: 210px;
    min-height: 0;
    max-height: calc(100svh - 76px);
    padding: 10px 12px 12px;
    overflow-y: auto;
    border: 1px solid rgba(51, 72, 119, 0.14);
    border-right: 0;
    border-radius: 0 0 0 10px;
    background: rgba(252, 253, 255, 0.98);
    box-shadow: none;
    transform: translateX(100%);
    transform-origin: top right;
    transition: opacity 200ms ease, transform 260ms cubic-bezier(.2,.8,.2,1);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu-head img {
    display: none;
  }

  .mobile-menu-head {
    justify-content: flex-end;
  }

  .mobile-menu-head button {
    width: 32px;
    height: 32px;
    border-color: rgba(51, 72, 119, 0.2);
    color: var(--wine);
    font-size: 18px;
  }

  .mobile-menu nav {
    margin: 8px 0;
  }

  .mobile-menu nav a,
  .mobile-menu nav .mobile-account-link {
    min-height: 38px;
    padding: 8px 2px;
    align-items: center;
    border-bottom: 1px solid rgba(51, 72, 119, 0.1);
    font-size: 16px;
    font-weight: 430;
  }

  .mobile-menu .action-button {
    width: 100%;
    min-height: 40px;
    box-shadow: none;
    font-size: 15px;
    font-weight: 520;
  }
}

@media (max-width: 720px) {
  .header-account-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

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

  .mobile-menu {
    top: 72px;
    right: 0;
    width: min(50vw, 320px);
    min-width: 210px;
    max-height: calc(100svh - 72px);
  }

  .team-track {
    grid-auto-columns: min(76vw, 300px);
  }

  .portfolio-track {
    grid-auto-columns: min(76vw, 300px);
  }
}

/* Balanced section typography v20 */
.services-main .section-heading h2,
.experience-copy blockquote,
.team-intro h2 {
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.services-main .section-heading h2 {
  font-weight: 520;
  line-height: 1.02;
}

.experience-copy blockquote {
  line-height: 1.02;
}

.experience-copy blockquote em {
  display: inline-block;
}

.team-intro h2 {
  font-weight: 520;
  line-height: 1.03;
}

.team-intro {
  min-height: 0;
}

@media (max-width: 1100px) {
  .services-section {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .section-orbit {
    margin-bottom: 34px;
  }

  .services-main .section-heading {
    margin-bottom: 40px;
  }

  .services-main .section-heading h2 {
    max-width: 100%;
    font-size: clamp(42px, 6.6vw, 64px);
    font-weight: 520;
    line-height: 1.04;
  }

  .experience-copy blockquote {
    max-width: 820px;
    font-size: clamp(52px, 9vw, 78px);
  }

  .team-intro h2 {
    max-width: 460px;
    font-size: clamp(42px, 5.8vw, 58px);
    font-weight: 520;
    line-height: 1.05;
  }
}

@media (max-width: 720px) {
  .services-section {
    padding: 48px 16px 60px;
  }

  .section-orbit {
    margin: 0 0 30px;
    padding: 0 2px;
  }

  .section-orbit p {
    font-size: 12px;
    line-height: 1.4;
  }

  .services-main .section-heading {
    display: block;
    margin: 0 0 34px;
    padding: 0 2px;
  }

  .services-main .section-heading .kicker {
    margin-bottom: 15px;
  }

  .services-main .section-heading h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(42px, 12.8vw, 56px);
    letter-spacing: 0;
    line-height: 1;
  }

  .services-main .section-heading > p {
    max-width: 34rem;
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .experience-section {
    padding: 62px 18px;
  }

  .experience-copy .kicker {
    margin-bottom: 18px;
  }

  .experience-copy blockquote {
    max-width: 100%;
    margin: 0 0 36px;
    font-size: clamp(39px, 11.5vw, 51px);
    letter-spacing: 0;
    line-height: 1.08;
  }

  .experience-copy blockquote em {
    margin-top: 3px;
  }

  .experience-aside > p {
    font-size: 13px;
    line-height: 1.65;
  }

  .team-section {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .team-intro {
    min-height: 0;
    padding: 0 18px 42px 0;
  }

  .team-intro .kicker {
    margin-bottom: 17px;
  }

  .team-intro h2 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(42px, 12.2vw, 54px);
    letter-spacing: 0;
    line-height: 1.06;
  }

  .team-intro > p:last-child {
    max-width: 32rem;
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.65;
  }
}

/* Unified booking and account forms v24 */
.booking-contact,
.account-panel-form,
.otp-view {
  font-family: var(--font-sans);
}

.booking-contact h3,
.account-panel-form h3,
.otp-view h3 {
  max-width: 100%;
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.booking-contact .kicker,
.account-panel-form .kicker,
.otp-view .kicker {
  margin-bottom: 8px;
}

.booking-contact .confirmation-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.account-copy {
  max-width: 46rem;
  margin: 0 0 8px;
  color: #5c6575;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.65;
}

.form-row {
  gap: 12px;
}

.booking-contact > label:not(.consent),
.booking-password > label,
.form-row label,
.account-panel-form > label:not(.consent) {
  display: grid;
  margin: 0;
  gap: 8px;
  color: #515b6c;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.booking-contact input:not([type="checkbox"]),
.booking-contact textarea,
.booking-password input,
.account-panel-form input:not([type="checkbox"]),
.otp-view input {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(52, 72, 116, 0.2);
  border-radius: 7px;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 22px rgba(38, 55, 94, 0.035);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-contact input:not([type="checkbox"]):focus,
.booking-contact textarea:focus,
.booking-password input:focus,
.account-panel-form input:not([type="checkbox"]):focus,
.otp-view input:focus,
.phone-prefix-input:focus-within {
  border-color: rgba(67, 91, 145, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(67, 91, 145, 0.09);
}

.booking-contact input::placeholder,
.booking-contact textarea::placeholder,
.booking-password input::placeholder,
.account-panel-form input::placeholder,
.otp-view input::placeholder {
  color: #9298a3;
  font-weight: 450;
  opacity: 1;
}

.booking-contact textarea {
  min-height: 78px;
  resize: vertical;
}

.phone-prefix-input,
.booking-contact .phone-prefix-input {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 16px;
  border: 1px solid rgba(52, 72, 116, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 22px rgba(38, 55, 94, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.phone-prefix-input > b {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}

.phone-prefix-input > input,
.booking-contact .phone-prefix-input > input,
.account-panel-form .phone-prefix-input > input {
  min-width: 0;
  min-height: 52px;
  margin: 0;
  padding: 14px 16px 14px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}

.month-picker {
  display: flex;
  margin: 0 0 14px;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
}

.month-picker,
.date-strip,
.time-grid {
  overflow-anchor: none;
}

.month-option {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(67, 91, 145, 0.16);
  border-radius: 5px;
  color: #586171;
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: capitalize;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.month-option.is-selected {
  border-color: var(--wine);
  color: #fff;
  background: var(--wine);
}

.phone-prefix-input > input:focus {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-contact .phone-prefix-input > input:focus,
.account-panel-form .phone-prefix-input > input:focus {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.booking-contact .consent,
.account-panel-form .consent {
  display: flex;
  margin: 0;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(67, 91, 145, 0.16);
  border-radius: 7px;
  color: #5d6675;
  background: rgba(255, 255, 255, 0.64);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.booking-contact .consent input,
.account-panel-form .consent input {
  width: 24px;
  height: 24px;
  min-height: 24px;
  flex: 0 0 24px;
  margin: 0;
  padding: 0;
  border-radius: 7px;
  accent-color: var(--wine);
  box-shadow: none;
}

.booking-contact,
.account-panel-form {
  display: grid;
  gap: 14px;
}

.booking-contact .action-confirm,
.account-panel-form .action-confirm,
.otp-view .action-confirm,
.account-back-button {
  width: 100%;
  min-height: 52px;
  border-radius: 7px;
  font-family: var(--font-sans);
}

.account-back-button {
  border-color: rgba(67, 91, 145, 0.2);
  color: var(--wine-dark);
  background: #edf2fb;
}

.otp-view input {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 720px) {
  .booking-stage,
  .account-drawer-body,
  .otp-view {
    padding-right: 18px;
    padding-left: 18px;
  }

  .booking-contact h3,
  .account-panel-form h3,
  .otp-view h3 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.06;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-contact input:not([type="checkbox"]),
  .booking-contact textarea,
  .account-panel-form input:not([type="checkbox"]),
  .otp-view input,
  .phone-prefix-input,
  .booking-contact .phone-prefix-input {
    min-height: 52px;
  }
}

/* Focused hero composition */
.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 29, 58, 0.76) 0%, rgba(22, 34, 65, 0.32) 35%, rgba(20, 31, 60, 0.02) 65%),
    linear-gradient(0deg, rgba(16, 25, 49, 0.64) 0%, rgba(16, 25, 49, 0.08) 48%, transparent 70%);
}

.hero-copy {
  width: min(1360px, calc(100% - 96px));
  padding: clamp(58px, 8vh, 100px) 0 clamp(48px, 7vh, 82px);
  justify-content: flex-end;
  align-items: flex-start;
}

.hero .kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: var(--page-h1-size, clamp(54px, 5.8vw, 88px));
  font-weight: var(--page-h1-weight, 520);
  line-height: 0.95;
  text-wrap: balance;
}

.hero-lead {
  font-size: var(--page-lead-size, 16px);
  font-weight: var(--page-lead-weight, 400);
}

.hero-bottom {
  display: block;
  width: auto;
  margin-top: 26px;
}

.hero-actions {
  align-items: flex-start;
}

.action-tour.large {
  min-height: 58px;
  padding: 12px 22px 12px 12px;
}

@media (max-width: 1100px) {
  .hero-copy {
    width: calc(100% - 56px);
  }

  .hero h1 {
    max-width: min(880px, 100%);
    font-size: var(--page-h1-size, clamp(48px, 7vw, 72px));
    font-weight: var(--page-h1-weight, 520);
    line-height: 0.98;
  }
}

@media (max-width: 720px) {
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 29, 54, 0.02) 24%, rgba(20, 29, 54, 0.22) 56%, rgba(17, 26, 50, 0.9) 100%);
  }

  .hero {
    width: 100%;
    min-height: calc(var(--site-stable-vh) * 100 - 68px);
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    min-height: calc(var(--site-stable-vh) * 100 - 68px);
    padding: clamp(220px, calc(var(--site-stable-vh) * 48), 360px) 18px 24px;
    justify-content: flex-end;
  }

  .hero h1 {
    max-width: 100%;
    font-size: var(--page-h1-size, clamp(34px, 10.4vw, 46px));
    font-weight: var(--page-h1-weight, 430);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: var(--page-lead-size, 12px);
    font-weight: var(--page-lead-weight, 400);
  }

  .hero-bottom {
    margin-top: 16px;
  }
}

/* Readability and mobile booking access */
.booking-head > div:first-child {
  min-width: 0;
}

.booking-head h2 {
  color: #303744;
  font-size: 32px;
  font-weight: 560;
  letter-spacing: 0;
}

.booking-order-note {
  display: grid;
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 0 13px;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  border-top: 1px solid rgba(67, 91, 145, 0.28);
  border-bottom: 1px solid rgba(67, 91, 145, 0.28);
  color: #25375f;
}

.booking-order-note strong,
.booking-order-note ol {
  display: block;
  margin: 0;
}

.booking-order-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-family: var(--font-sans);
  font-size: 15px;
  font-style: italic;
}

.booking-order-note strong {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.booking-order-note ol {
  margin-top: 6px;
  padding-left: 22px;
  color: #48536a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-actions {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-instagram {
  min-height: 58px;
  padding: 12px 20px 12px 12px;
}

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

.category-title small,
.service-name p,
.team-meta p,
.team-intro > p:last-child,
.section-heading > p,
.booking-hint,
[data-checkout-hint],
.selector-note,
.selector-category-name small,
.selector-service em,
.staff-option small,
.staff-service-card > div > p,
.time-empty {
  font-size: 12px;
  line-height: 1.55;
}

.public-service > span,
.selector-service-meta > small {
  color: #424b5a;
  font-size: 12px;
  font-weight: 600;
}

.selector-selection small {
  font-size: 11px;
}

.selector-parallel-hint {
  padding: 4px 9px;
  font-size: 11px !important;
  font-weight: 500;
  line-height: 1.4;
}

.date-option span,
.month-option,
.time-option {
  font-size: 11px;
}

@media (max-width: 720px) {
  .booking-head {
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 12px;
  }

  .booking-head h2 {
    font-size: 24px;
  }

  .booking-order-note {
    margin-bottom: 14px;
    padding: 11px 0 12px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .booking-order-note strong {
    font-size: 14px;
  }

  .booking-order-note ol {
    padding-left: 20px;
    font-size: 12px;
  }

  .booking-order-mark {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }

  body.is-locked .mobile-sticky-booking {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }

  .mobile-menu.is-open + .mobile-sticky-booking {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }

  .hero-actions {
    gap: 8px;
  }

  .action-tour.large,
  .hero-instagram {
    min-height: 46px;
    padding: 9px 13px 9px 9px;
    font-size: 8px;
  }

  .hero-instagram .instagram-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .category-title small,
  .service-name p,
  .booking-hint,
  [data-checkout-hint],
  .selector-note,
  .selector-category-name small,
  .selector-service em,
  .staff-option small,
  .staff-service-card > div > p,
  .time-empty {
    font-size: 12px;
  }

  .public-service > span,
  .selector-service-meta > small {
    font-size: 12px;
  }
}

/* Keep only the services dropdown motion; remove click glint on category controls. */
.service-category-trigger,
.category-arrow,
.category-arrow i,
.selector-category-trigger,
.selector-category-toggle,
.selector-category-toggle i,
.selector-service {
  -webkit-tap-highlight-color: transparent;
}

.category-arrow,
.category-arrow i,
.selector-category-toggle,
.selector-category-toggle i {
  transition: none !important;
}

.service-category-trigger:active {
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

/* Booking auth flow: phone lookup, password prompt, mobile tap comfort. */
.phone-status {
  display: block;
  min-height: 20px;
  margin-top: 8px;
  color: #647083;
  font-size: 13px;
  line-height: 1.45;
}

.phone-status.is-known {
  color: #435b91;
}

.phone-status.is-new {
  color: #51785b;
}

.phone-sms-button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 13px 18px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #51785b;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.phone-sms-button[hidden],
.booking-password[hidden] {
  display: none !important;
}

.booking-contact .consent.is-hidden,
.account-panel-form .consent.is-hidden,
.account-panel-form .account-consent.is-hidden {
  display: none !important;
}

.booking-created-card {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
  padding: 13px 15px;
  border: 1px solid rgba(67, 91, 145, 0.16);
  border-left: 4px solid #445f9d;
  border-radius: 8px;
  background: #edf3ff;
}

.booking-created-card:empty {
  display: none;
}

.booking-created-card strong {
  color: #172033;
  font-size: 16px;
  font-weight: 680;
}

.booking-created-card span,
.booking-created-card small {
  color: #4f5e74;
  font-size: 13px;
  line-height: 1.45;
}

.booking-password .account-copy {
  margin: 0 0 12px;
  color: #5f6878;
  font-size: 14px;
  line-height: 1.5;
}

.booking-contact input:not([type="checkbox"]),
.booking-contact textarea,
.booking-password input,
.account-panel-form input:not([type="checkbox"]),
.account-panel-form textarea,
.otp-view input {
  font-size: 16px;
}

.consent {
  min-height: 56px;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.consent input {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.service-list-wrap {
  overflow: hidden;
  will-change: height;
  contain: layout;
}

@media (max-width: 720px) {
  .booking-stage {
    padding: 14px 18px 24px;
  }

  .booking-contact .confirmation-title {
    margin-bottom: 8px;
    font-size: clamp(30px, 9vw, 38px);
  }

  .confirmation-summary {
    margin-bottom: 8px;
    padding: 10px 12px;
    gap: 5px;
  }

  .confirmation-summary-text,
  .confirmation-summary-price {
    font-size: 14px;
    line-height: 1.28;
  }

  .confirmation-summary-row {
    gap: 10px;
  }

  .services-mobile-accordion {
    display: grid;
    gap: 10px;
  }

  .services-mobile-accordion .service-category {
    overflow: hidden;
    border: 1px solid rgba(67, 91, 145, 0.16);
    border-radius: 7px;
    background: #fff;
  }

  .services-mobile-accordion .service-category + .service-category {
    margin-top: 0;
  }

  .services-mobile-accordion .service-category-trigger {
    min-height: 78px;
    padding: 14px 16px;
  }

  .services-mobile-accordion .service-category.is-open {
    background: #edf2fb;
  }

  .services-mobile-accordion .service-list-inner {
    padding: 0 12px 12px;
  }

  .stage-back {
    margin-top: 6px;
  }
}

/* Booking/auth form polish v42 */
.booking-contact .form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.booking-contact,
.booking-password,
.otp-view,
.account-panel-form {
  gap: 10px;
}

.booking-contact h3,
.booking-password h3,
.otp-view h3,
.account-panel-form h3 {
  font-weight: 560;
  letter-spacing: 0;
}

.booking-contact > label:not(.consent),
.booking-contact .form-row label,
.booking-password > label,
.account-panel-form > label:not(.consent) {
  gap: 6px;
  color: #4e5f83;
  font-weight: 700;
  letter-spacing: 0;
}

.booking-contact input:not([type="checkbox"]),
.booking-contact textarea,
.booking-contact .phone-prefix-input,
.booking-password input,
.account-panel-form input:not([type="checkbox"]),
.account-panel-form .phone-prefix-input,
.otp-view input {
  min-height: 48px;
  padding-top: 11px;
  padding-bottom: 11px;
  border-color: rgba(67, 91, 145, 0.18);
  box-shadow: none;
}

.booking-contact textarea {
  min-height: 68px;
}

.booking-contact .phone-prefix-input {
  padding-top: 0;
  padding-bottom: 0;
}

.booking-contact .phone-prefix-input > input {
  min-height: 46px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.phone-status {
  min-height: 0;
  margin: 2px 0 0;
  color: #657080;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.phone-status.is-known,
.phone-status.is-new {
  color: #51785b;
}

.phone-sms-button {
  margin-top: 4px;
  font-weight: 750;
}

@media (min-width: 721px) {
  .booking-contact h3,
  .booking-password h3,
  .otp-view h3,
  .account-panel-form h3 {
    font-size: clamp(28px, 3vw, 38px);
  }
}

@media (max-width: 720px) {
  .booking-contact h3,
  .booking-password h3,
  .otp-view h3,
  .account-panel-form h3 {
    font-size: clamp(26px, 7vw, 34px);
  }
}

/* Final account and button polish: keep the premium shape consistent. */
.action-button.action-confirm,
.booking-contact .action-confirm,
.booking-password .action-confirm,
.account-panel-form .action-confirm,
.otp-view .action-confirm,
.phone-sms-button {
  min-height: 58px;
  border-radius: 7px;
  border-color: #557b5f;
  background: #557b5f;
  color: #fff;
  box-shadow: none;
}

.account-panel-form[data-account-password-set] {
  display: grid;
  gap: 12px;
  align-items: stretch;
}

.account-panel-form[data-account-password-set] .account-copy {
  max-width: 820px;
  margin: 0;
  color: #5f6878;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 430;
  line-height: 1.55;
}

.account-panel-form[data-account-password-set] label {
  display: grid;
  gap: 8px;
  color: #4e5f83;
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-panel-form[data-account-password-set] input {
  width: 100%;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(67, 91, 145, 0.2);
  border-radius: 7px;
  background: #fff;
  color: #171821;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.account-panel-form[data-account-password-set] .action-confirm,
.account-panel-form[data-account-password-set] .account-back-button {
  width: 100%;
  min-height: 48px;
  border-radius: 7px;
}

.account-panel-form[data-account-password-set] .account-back-button {
  border: 1px solid #c8d3e8;
  background: #eaf0fa;
  color: #263d75;
  box-shadow: none;
}

.account-visits {
  max-height: min(620px, 62svh);
  overflow-y: auto;
  padding-right: 4px;
  color: #171821;
  overscroll-behavior: contain;
}

.account-visit {
  border-color: rgba(67, 91, 145, 0.18);
  background: #fff;
  color: #171821;
}

.account-visit p,
.account-visit small,
.account-empty {
  color: #566174;
}

@media (min-width: 721px) {
  .account-panel-form[data-account-password-set] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-panel-form[data-account-password-set] .kicker,
  .account-panel-form[data-account-password-set] h3,
  .account-panel-form[data-account-password-set] .booking-created-card,
  .account-panel-form[data-account-password-set] .account-copy,
  .account-panel-form[data-account-password-set] .form-message,
  .account-panel-form[data-account-password-set] .account-back-button {
    grid-column: 1 / -1;
  }

  .account-panel-form[data-account-password-set] .action-confirm {
    grid-column: 1 / 2;
  }
}

@media (max-width: 720px) {
  .account-panel-form[data-account-password-set] {
    gap: 12px;
  }

  .account-panel-form[data-account-password-set] h3 {
    font-size: clamp(26px, 7vw, 34px);
  }
}

/* Compact customer account cards + lazy visit loading */
.account-drawer {
  height: 100svh;
  max-height: 100svh;
}

.account-drawer-head {
  flex: 0 0 auto;
  min-height: 64px;
  padding: 10px 20px;
}

.account-drawer-head span {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.1;
}

.account-drawer-body {
  padding: 14px 20px 24px;
}

.account-drawer-body.is-account-authenticated {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.account-profile.account-profile-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  flex: 0 0 auto;
  gap: 10px 12px;
  margin-bottom: 12px;
}

.account-profile-client {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.account-avatar {
  --account-avatar-size: 62px;
  position: relative;
  display: grid;
  width: var(--account-avatar-size);
  height: var(--account-avatar-size);
  flex: 0 0 var(--account-avatar-size);
  place-items: center;
  border: 1px solid rgba(67, 91, 145, 0.16);
  border-radius: 50%;
  background: #fff;
}

.account-avatar.has-story {
  border: 0;
  background: conic-gradient(from 215deg, #ffd447 0 18%, #ff8a00 30%, #ff3f70 56%, #b825d9 78%, #ffd447 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.84), 0 6px 16px rgba(255, 63, 112, 0.12);
}

.account-avatar-face {
  position: relative;
  display: block;
  width: calc(var(--account-avatar-size) - 5px);
  height: calc(var(--account-avatar-size) - 5px);
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 43%, #253866 0 2px, transparent 2.4px),
    radial-gradient(circle at 62% 43%, #253866 0 2px, transparent 2.4px),
    radial-gradient(ellipse at 50% 69%, #ce6d82 0 4px, transparent 4.4px),
    radial-gradient(circle at 50% 55%, #ffd9c9 0 35%, transparent 36%),
    linear-gradient(145deg, #f7c66e 0 48%, #eaa74d 49% 100%);
}

.account-avatar-female .account-avatar-face {
  background: url("../uploads/client-woman.webp") center / cover no-repeat;
}

.account-avatar-female .account-avatar-face::before,
.account-avatar-female .account-avatar-face::after,
.account-avatar-male .account-avatar-face::before,
.account-avatar-male .account-avatar-face::after {
  display: none;
}

.account-avatar-face::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 7px;
  left: 7px;
  height: 16px;
  border-radius: 0 0 18px 18px;
  background: rgba(241, 189, 92, 0.96);
}

.account-avatar-face::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 7px;
  left: 9px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 236, 230, 0.62);
}

.account-avatar-male .account-avatar-face {
  background: url("../uploads/client-man.webp") center / cover no-repeat;
}

.account-avatar-neutral .account-avatar-face {
  background:
    radial-gradient(circle at 39% 44%, #435b91 0 2px, transparent 2.4px),
    radial-gradient(circle at 61% 44%, #435b91 0 2px, transparent 2.4px),
    radial-gradient(ellipse at 50% 69%, #6f84b9 0 4px, transparent 4.4px),
    radial-gradient(circle at 50% 56%, #eaf0fb 0 36%, transparent 37%),
    linear-gradient(145deg, #dde7f7 0 50%, #cbd9f0 51% 100%);
}

.account-profile.account-profile-compact h3 {
  font-size: clamp(30px, 4.8vw, 42px);
  font-weight: 430;
  line-height: 1.05;
  letter-spacing: 0;
}

.account-profile.account-profile-compact p {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 400;
}

.account-profile-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.account-profile-actions .account-new-booking {
  width: auto;
  min-height: 40px;
  margin: 0;
  padding: 0 15px;
  border-color: rgba(79, 118, 90, 0.25);
  border-radius: 6px;
  color: #41694c;
  background: #edf6ef;
  box-shadow: none;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.account-profile-actions .account-logout {
  min-height: 40px;
  padding: 8px 13px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.account-shell .action-confirm,
.account-shell .account-back-button,
.account-profile-actions .account-new-booking,
.account-profile-actions .account-logout,
.account-cancel-visit {
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.account-drawer-body.is-account-authenticated .account-visits {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
}

.account-visits-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.account-visits-title h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 520;
}

.account-visits-title span {
  color: #7d8797;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-visit-list {
  display: grid;
  gap: 7px;
}

.account-visit {
  margin-bottom: 0;
  padding: 10px 12px;
  border-radius: 9px;
}

.account-visit-head {
  gap: 8px;
}

.account-visit time {
  font-size: 16px;
  font-weight: 520;
}

.account-status {
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0;
}

.account-visit h5 {
  margin: 7px 0 6px;
  font-size: 20px;
  font-weight: 520;
  line-height: 1.18;
}

.account-visit-meta,
.account-visit > div:last-child.account-visit-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 0;
  border-top: 0;
  color: #596372;
  font-size: 12px;
}

.account-visit-meta span {
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-visit-meta strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 18px;
  font-weight: 560;
}

.account-cancel-visit {
  min-height: 34px;
  margin-top: 10px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.account-list-loader {
  padding: 13px 4px 4px;
  color: #7d8797;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 560px) {
  .account-drawer-head {
    min-height: 60px;
    padding: 10px 16px;
    gap: 12px;
  }

  .account-drawer-body {
    padding: 14px 16px 24px;
  }

  .account-profile.account-profile-compact {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 10px;
  }

  .account-profile-client {
    gap: 10px;
  }

  .account-avatar {
    --account-avatar-size: 58px;
  }

  .account-profile.account-profile-compact h3 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .account-profile-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .account-profile-actions .account-new-booking {
    width: 100%;
  }
}

/* Mobile/PWA services polish v50 */
.service-category,
.service-category.is-open,
.service-category.is-open .service-category-trigger,
.service-category.is-open .service-list-wrap,
.service-category.is-open .service-list-inner,
.selector-category,
.selector-category.is-open:not(.is-blocked),
.selector-category.is-open:not(.is-blocked) .selector-category-trigger,
.selector-category.is-open:not(.is-blocked) .selector-services,
.selector-category.is-open:not(.is-blocked) .selector-services > div {
  box-shadow: none !important;
}

@media (max-width: 720px), (display-mode: standalone) {
  .services-section {
    margin-right: 0;
    margin-left: 0;
    padding-right: 10px;
    padding-left: 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .services-mobile-accordion {
    gap: 9px;
  }

  .services-mobile-accordion .service-category {
    border-color: rgba(67, 91, 145, 0.14);
    box-shadow: none;
  }

  .services-mobile-accordion .service-category.is-open,
  .services-mobile-accordion .service-category.is-open .service-category-trigger,
  .services-mobile-accordion .service-category.is-open .service-list-wrap,
  .services-mobile-accordion .service-category.is-open .service-list-inner {
    background: #edf2fb;
    box-shadow: none;
  }

  .services-mobile-accordion .service-list-inner {
    padding-right: 10px;
    padding-left: 10px;
  }

  .services-mobile-accordion .public-service {
    margin-right: 0;
    margin-left: 0;
  }
}

/* Services accordion shadow + multiline descriptions v51 */
.service-name p,
.selector-service em,
.staff-service-card > div > p {
  white-space: pre-line;
}

@media (max-width: 720px), (display-mode: standalone) {
  .services-mobile-accordion .service-category,
  .services-mobile-accordion .service-category::before,
  .services-mobile-accordion .service-category::after,
  .services-mobile-accordion .service-category.is-open,
  .services-mobile-accordion .service-category.is-animating,
  .services-mobile-accordion .service-category.is-open::before,
  .services-mobile-accordion .service-category.is-open::after,
  .services-mobile-accordion .service-category .service-category-trigger,
  .services-mobile-accordion .service-category.is-open .service-category-trigger,
  .services-mobile-accordion .service-category .service-list-wrap,
  .services-mobile-accordion .service-category.is-open .service-list-wrap,
  .services-mobile-accordion .service-category .service-list-inner,
  .services-mobile-accordion .service-category.is-open .service-list-inner,
  .services-mobile-accordion .public-service,
  .services-mobile-accordion .public-service::before,
  .services-mobile-accordion .public-service::after {
    box-shadow: none !important;
    filter: none !important;
    text-shadow: none !important;
  }

  .services-mobile-accordion .service-category.is-open {
    border-color: rgba(67, 91, 145, 0.18);
  }
}

/* Mobile/PWA services section shadow reset v51 */
.service-name p,
.selector-service em {
  white-space: pre-line;
}

@media (max-width: 1100px), (display-mode: standalone) {
  .services-section {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: clamp(12px, 2.4vw, 18px) !important;
    padding-left: clamp(12px, 2.4vw, 18px) !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .services-main,
  .services-catalog,
  .services-mobile-accordion {
    width: 100% !important;
    max-width: 100% !important;
  }

  .services-mobile-accordion .service-category,
  .services-mobile-accordion .service-category.is-open,
  .services-mobile-accordion .service-category-trigger,
  .services-mobile-accordion .service-list-wrap,
  .services-mobile-accordion .service-list-inner,
  .services-mobile-accordion .public-service,
  .service-category.is-open .service-category-trigger,
  .service-category.is-open .service-list-wrap,
  .service-category.is-open .service-list-inner {
    box-shadow: none !important;
    filter: none !important;
  }

  .services-mobile-accordion .service-category.is-open,
  .services-mobile-accordion .service-category.is-open .service-category-trigger,
  .services-mobile-accordion .service-category.is-open .service-list-wrap,
  .services-mobile-accordion .service-category.is-open .service-list-inner {
    background: #edf2fb;
  }
}

/* Mobile/PWA services active color isolation v52 */
@media (max-width: 1100px), (hover: none), (pointer: coarse), (display-mode: standalone) {
  .services-mobile-accordion .service-category:not(.is-open),
  .services-mobile-accordion .service-category:not(.is-open) > .service-category-trigger {
    background: #fff !important;
  }

  .services-mobile-accordion .service-category:not(.is-open) > .service-list-wrap,
  .services-mobile-accordion .service-category:not(.is-open) > .service-list-wrap > .service-list-inner {
    background: transparent !important;
  }

  .services-mobile-accordion .service-category:not(.is-open) .service-category-trigger:hover .category-arrow,
  .services-mobile-accordion .service-category:not(.is-open) .service-category-trigger:active .category-arrow,
  .services-mobile-accordion .service-category:not(.is-open) .service-category-trigger:focus .category-arrow,
  .services-mobile-accordion .service-category:not(.is-open) .category-arrow {
    border-color: rgba(67, 91, 145, 0.25) !important;
    color: #435b91 !important;
    background: transparent !important;
    transform: none !important;
  }

  .services-mobile-accordion .service-category:not(.is-open) .category-arrow i:first-child {
    transform: rotate(0deg) !important;
    opacity: 1 !important;
  }

  .services-mobile-accordion .service-category:not(.is-open) .category-arrow i:last-child {
    transform: rotate(90deg) !important;
    opacity: 1 !important;
  }

  .services-mobile-accordion .service-category.is-open {
    border-color: rgba(67, 91, 145, 0.18) !important;
    background: #edf2fb !important;
  }

  .services-mobile-accordion .service-category.is-open > .service-category-trigger,
  .services-mobile-accordion .service-category.is-open > .service-list-wrap,
  .services-mobile-accordion .service-category.is-open > .service-list-wrap > .service-list-inner {
    background: #edf2fb !important;
  }
}


/* Mobile/PWA services background isolation v53
   Keep the page/heading background stable; only the opened category and its service list get the blue tint. */
@media (max-width: 1100px), (hover: none), (pointer: coarse), (display-mode: standalone) {
  .services-section {
    position: relative !important;
    isolation: isolate !important;
    contain: paint !important;
    background-color: #fcfdff !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
  }

  .services-section::before,
  .services-section::after {
    display: none !important;
    content: none !important;
  }

  .services-main,
  .services-main .section-heading,
  .services-catalog,
  .services-mobile-accordion {
    background-color: #fcfdff !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  .services-mobile-accordion {
    isolation: isolate !important;
  }

  .services-mobile-accordion .service-category:not(.is-open),
  .services-mobile-accordion .service-category:not(.is-open) > .service-category-trigger {
    background-color: #fff !important;
    background-image: none !important;
  }

  .services-mobile-accordion .service-category:not(.is-open) > .service-list-wrap,
  .services-mobile-accordion .service-category:not(.is-open) > .service-list-wrap > .service-list-inner {
    background: transparent !important;
  }

  .services-mobile-accordion .service-category.is-open,
  .services-mobile-accordion .service-category.is-open > .service-category-trigger,
  .services-mobile-accordion .service-category.is-open > .service-list-wrap,
  .services-mobile-accordion .service-category.is-open > .service-list-wrap > .service-list-inner {
    background-color: #edf2fb !important;
    background-image: none !important;
  }

  .services-mobile-accordion .public-service {
    background-color: transparent !important;
    background-image: none !important;
  }

  .services-mobile-accordion .service-category:not(.is-open) .service-category-trigger:hover .category-arrow,
  .services-mobile-accordion .service-category:not(.is-open) .service-category-trigger:active .category-arrow,
  .services-mobile-accordion .service-category:not(.is-open) .service-category-trigger:focus .category-arrow,
  .services-mobile-accordion .service-category:not(.is-open) .category-arrow {
    border-color: rgba(67, 91, 145, 0.25) !important;
    color: #435b91 !important;
    background: transparent !important;
    transform: none !important;
  }

  .services-mobile-accordion .service-category.is-open .category-arrow {
    border-color: #435b91 !important;
    color: #fff !important;
    background: #435b91 !important;
    transform: rotate(180deg) !important;
  }
}

/* Online booking sequential category state v68 */
.selector-category-sequential,
.selector-category-sequential.is-selected,
.selector-category-sequential.is-open,
.selector-category-sequential.is-open:not(.is-blocked) {
  border-color: rgba(53, 74, 122, 0.13) !important;
  background: #fff !important;
  box-shadow: none !important;
}

.selector-category-sequential.is-selected,
.selector-category-sequential.is-open,
.selector-category-sequential.is-open:not(.is-blocked) {
  border-color: rgba(67, 91, 145, 0.36) !important;
  background: #f0f4fb !important;
}

.selector-category-sequential .selector-category-trigger,
.selector-category-sequential .selector-services,
.selector-category-sequential .selector-services > div {
  background: transparent !important;
  box-shadow: none !important;
}

.selector-category-sequential.is-open,
.selector-category-sequential.is-open:not(.is-blocked),
.selector-category-sequential.is-open .selector-category-trigger,
.selector-category-sequential.is-open .selector-services,
.selector-category-sequential.is-open .selector-services > div,
.selector-category-sequential.is-open:not(.is-blocked) .selector-category-trigger,
.selector-category-sequential.is-open:not(.is-blocked) .selector-services,
.selector-category-sequential.is-open:not(.is-blocked) .selector-services > div {
  background: #eaf0fa !important;
  box-shadow: none !important;
}

.selector-sequential-hint,
.selector-category-sequential .selector-sequential-hint {
  border-color: rgba(112, 82, 132, 0.28) !important;
  color: #674b7d !important;
  background: #f3eafa !important;
}

.selector-category-sequential-any .selector-sequential-hint,
.selector-staff-hint {
  border-color: rgba(67, 91, 145, 0.26) !important;
  color: #435b91 !important;
  background: #eef3ff !important;
}

.selector-category-sequential .selector-category-name > span > small:not(.selector-parallel-hint) {
  color: var(--muted) !important;
  font-weight: 520;
}

.selector-category-sequential.is-selected .selector-category-name > span > small:not(.selector-parallel-hint),
.selector-category-sequential.is-open .selector-category-name > span > small:not(.selector-parallel-hint) {
  color: var(--wine) !important;
}

.selector-service.is-sequential-choice.is-selected {
  background: var(--wine) !important;
}

.selector-service.is-sequential-choice.is-selected .selector-sequential-hint,
.selector-service.is-selected .selector-sequential-hint {
  border-color: rgba(255, 255, 255, 0.32) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14) !important;
}

@media (max-width: 1100px), (hover: none), (pointer: coarse), (display-mode: standalone) {
  .selector-category-sequential,
  .selector-category-sequential.is-selected,
  .selector-category-sequential.is-open,
  .selector-category-sequential.is-open:not(.is-blocked),
  .selector-category-sequential.is-open:not(.is-blocked) .selector-category-trigger,
  .selector-category-sequential.is-open:not(.is-blocked) .selector-services,
  .selector-category-sequential.is-open:not(.is-blocked) .selector-services > div {
    box-shadow: none !important;
  }
}

/* Online booking callback + smooth selection motion v59 */
.booking-checkout-row .booking-feedback-button {
  gap: 8px;
  border-color: rgba(127, 49, 56, 0.24);
  color: var(--wine);
  background: #fff5f6;
  box-shadow: 0 12px 26px rgba(127, 49, 56, 0.11);
  cursor: pointer;
}

.booking-checkout-row .booking-feedback-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-callback[hidden] {
  display: none;
}

.booking-callback .account-copy {
  margin: -6px 0 18px;
  color: #667282;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.selector-selection span.is-new-selection {
  transform-origin: left center;
  animation: selectedServiceAppear 180ms ease-out both;
}

.selector-category-sequential {
  transform-origin: top center;
  animation: none;
}

.selector-parallel-hint,
.selector-sequential-hint {
  animation: none;
}

.selector-content {
  overflow-anchor: none;
}

.selector-content.is-quiet-render .selector-category,
.selector-content.is-quiet-render .selector-category-trigger,
.selector-content.is-quiet-render .selector-services,
.selector-content.is-quiet-render .selector-services > div,
.selector-content.is-quiet-render .selector-service {
  transition: none;
  animation: none;
}

@keyframes selectedServiceAppear {
  0% {
    transform: translateY(2px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .selector-selection span.is-new-selection,
  .selector-category-sequential,
  .selector-parallel-hint,
  .selector-sequential-hint {
    animation: none;
  }
}

/* Booking button and callback form polish v62 */
.booking-checkout {
  gap: 8px;
}

.booking-checkout-row {
  grid-template-columns: 1fr;
  gap: 8px;
}

.booking-checkout-row .action-button,
.booking-checkout-row .booking-feedback-button {
  width: 100%;
}

.booking-checkout .booking-help-copy {
  color: #1f2430;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.booking-drawer .action-confirm,
.account-shell .action-confirm,
.booking-drawer .phone-sms-button {
  min-height: 48px;
  padding: 9px 16px;
  border: 1px solid rgba(79, 118, 90, 0.25);
  border-radius: 8px;
  color: #41694c;
  background: #edf6ef;
  box-shadow: none;
  font-size: 15px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.booking-drawer .action-confirm:disabled {
  border-color: rgba(79, 118, 90, 0.18);
  color: #6d7b70;
  background: #f3f7f4;
  box-shadow: none;
}

.booking-drawer .booking-feedback-button {
  min-height: 48px;
  padding: 9px 16px;
  border: 1px solid rgba(67, 91, 145, 0.25);
  border-radius: 8px;
  color: var(--wine);
  background: #edf2fb;
  box-shadow: none;
  font-size: 15px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.selector-clear,
.selector-done,
.stage-back,
.account-back-button {
  font-size: 15px;
  font-weight: 540;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.selector-done {
  color: #41694c;
  background: #edf6ef;
  border: 1px solid rgba(79, 118, 90, 0.25);
}

.stage-back,
.account-back-button {
  color: #2d4f88;
}

.action-button,
.booking-feedback-button,
.booking-account,
.round-close,
.mobile-menu-head button,
.menu-button,
.footer-details a,
.footer-bottom a,
.mobile-menu nav a,
.booking-field-main,
.booking-field-clear,
.selector-clear,
.selector-done,
.selector-close,
.stage-back,
.account-back-button,
.header-account-icon,
.mobile-account-link,
.mobile-sticky-booking,
.phone-sms-button,
.account-profile-actions .account-new-booking,
.account-profile-actions .account-logout,
.account-cancel-visit,
.portfolio-controls button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, transform 120ms ease;
}

.desktop-nav a,
.contact-nav-link {
  transition: color 160ms ease;
}

.footer-details a,
.footer-bottom a,
.mobile-menu nav a {
  border-radius: 999px;
}

.action-button:hover:not(:disabled),
.action-button:focus-visible:not(:disabled),
.action-button:active:not(:disabled),
.action-button.is-pressed:not(:disabled),
.booking-field-main:hover:not(:disabled),
.booking-field-main:focus-visible:not(:disabled),
.booking-field-main:active:not(:disabled),
.booking-field-main.is-pressed:not(:disabled),
.mobile-account-link:hover:not(:disabled),
.mobile-account-link:focus-visible:not(:disabled),
.mobile-account-link:active:not(:disabled),
.mobile-account-link.is-pressed:not(:disabled),
.mobile-sticky-booking:hover:not(:disabled),
.mobile-sticky-booking:focus-visible:not(:disabled),
.mobile-sticky-booking:active:not(:disabled),
.mobile-sticky-booking.is-pressed:not(:disabled),
.portfolio-controls button:focus-visible:not(:disabled),
.portfolio-controls button:active:not(:disabled),
.portfolio-controls button.is-pressed:not(:disabled),
.portfolio-controls button:hover:not(:disabled) {
  border-color: rgba(67, 91, 145, 0.42);
  color: var(--wine);
  background: #dfe8f7;
  transform: translateY(-1px);
}

.desktop-nav a:hover,
.contact-nav-link:hover {
  color: var(--wine);
}

.footer-details a:hover,
.footer-details a:focus-visible,
.footer-details a:active,
.footer-details a.is-pressed,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.footer-bottom a:active,
.footer-bottom a.is-pressed {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible,
.mobile-menu nav a:active,
.mobile-menu nav a.is-pressed {
  color: var(--wine);
  background: #dfe8f7;
  transform: translateY(-1px);
}

.menu-button:hover:not(:disabled),
.menu-button:focus-visible:not(:disabled),
.menu-button:active:not(:disabled),
.menu-button.is-pressed:not(:disabled) {
  border-color: rgba(67, 91, 145, 0.42);
  color: var(--wine);
  background: #dfe8f7;
  transform: translateY(-1px);
}

.action-map:hover:not(:disabled),
.action-map:focus-visible:not(:disabled),
.action-map:active:not(:disabled),
.action-map.is-pressed:not(:disabled) {
  border-color: #405d9d;
  color: #fff;
  background: #405d9d;
  transform: translateY(-1px);
}

.action-instagram:hover:not(:disabled),
.action-instagram:focus-visible:not(:disabled),
.action-instagram:active:not(:disabled),
.action-instagram.is-pressed:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 22%, #fa7e1e 36%, transparent 52%),
    linear-gradient(135deg, #7230a8, #e32264 58%, #f2993f);
  transform: translateY(-1px);
}

.booking-feedback-button:hover:not(:disabled),
.booking-drawer .booking-feedback-button:hover:not(:disabled),
.booking-feedback-button:focus-visible:not(:disabled),
.booking-drawer .booking-feedback-button:focus-visible:not(:disabled),
.booking-feedback-button:active:not(:disabled),
.booking-drawer .booking-feedback-button:active:not(:disabled),
.booking-feedback-button.is-pressed:not(:disabled),
.booking-drawer .booking-feedback-button.is-pressed:not(:disabled),
.booking-account:hover:not(:disabled),
.booking-account:focus-visible:not(:disabled),
.booking-account:active:not(:disabled),
.booking-account.is-pressed:not(:disabled),
.header-account-icon:hover:not(:disabled),
.header-account-icon:focus-visible:not(:disabled),
.header-account-icon:active:not(:disabled),
.header-account-icon.is-pressed:not(:disabled),
.stage-back:hover:not(:disabled),
.stage-back:focus-visible:not(:disabled),
.stage-back:active:not(:disabled),
.stage-back.is-pressed:not(:disabled),
.account-back-button:focus-visible:not(:disabled),
.account-back-button:active:not(:disabled),
.account-back-button.is-pressed:not(:disabled),
.account-back-button:hover:not(:disabled) {
  border-color: var(--wine);
  color: #fff;
  background: var(--wine);
  transform: translateY(-1px);
}

.action-confirm:hover:not(:disabled),
.action-confirm:focus-visible:not(:disabled),
.action-confirm:active:not(:disabled),
.action-confirm.is-pressed:not(:disabled),
.submit-booking:hover:not(:disabled),
.submit-booking:focus-visible:not(:disabled),
.submit-booking:active:not(:disabled),
.submit-booking.is-pressed:not(:disabled),
.phone-sms-button:hover:not(:disabled),
.phone-sms-button:focus-visible:not(:disabled),
.phone-sms-button:active:not(:disabled),
.phone-sms-button.is-pressed:not(:disabled),
.selector-done:hover:not(:disabled),
.selector-done:focus-visible:not(:disabled),
.selector-done:active:not(:disabled),
.selector-done.is-pressed:not(:disabled),
.account-profile-actions .account-new-booking:focus-visible:not(:disabled),
.account-profile-actions .account-new-booking:active:not(:disabled),
.account-profile-actions .account-new-booking.is-pressed:not(:disabled),
.account-profile-actions .account-new-booking:hover:not(:disabled) {
  border-color: #4f765a;
  color: #fff;
  background: #4f765a;
  transform: translateY(-1px);
}

.booking-field-clear:hover:not(:disabled),
.booking-field-clear:focus-visible:not(:disabled),
.booking-field-clear:active:not(:disabled),
.booking-field-clear.is-pressed:not(:disabled),
.selector-clear:hover:not(:disabled),
.selector-clear:focus-visible:not(:disabled),
.selector-clear:active:not(:disabled),
.selector-clear.is-pressed:not(:disabled),
.selector-close:hover:not(:disabled),
.selector-close:focus-visible:not(:disabled),
.selector-close:active:not(:disabled),
.selector-close.is-pressed:not(:disabled),
.round-close:hover:not(:disabled),
.round-close:focus-visible:not(:disabled),
.round-close:active:not(:disabled),
.round-close.is-pressed:not(:disabled),
.mobile-menu-head button:hover:not(:disabled),
.mobile-menu-head button:focus-visible:not(:disabled),
.mobile-menu-head button:active:not(:disabled),
.mobile-menu-head button.is-pressed:not(:disabled),
.account-profile-actions .account-logout:focus-visible:not(:disabled),
.account-profile-actions .account-logout:active:not(:disabled),
.account-profile-actions .account-logout.is-pressed:not(:disabled),
.account-profile-actions .account-logout:hover:not(:disabled),
.account-cancel-visit:focus-visible:not(:disabled),
.account-cancel-visit:active:not(:disabled),
.account-cancel-visit.is-pressed:not(:disabled),
.account-cancel-visit:hover:not(:disabled) {
  border-color: #a03e43;
  color: #fff;
  background: #a03e43;
  transform: translateY(-1px);
}

.action-button:active:not(:disabled),
.action-button.is-pressed:not(:disabled),
.booking-feedback-button:active:not(:disabled),
.booking-feedback-button.is-pressed:not(:disabled),
.booking-account:active:not(:disabled),
.booking-account.is-pressed:not(:disabled),
.round-close:active:not(:disabled),
.round-close.is-pressed:not(:disabled),
.mobile-menu-head button:active:not(:disabled),
.mobile-menu-head button.is-pressed:not(:disabled),
.menu-button:active:not(:disabled),
.menu-button.is-pressed:not(:disabled),
.footer-details a:active,
.footer-details a.is-pressed,
.footer-bottom a:active,
.footer-bottom a.is-pressed,
.mobile-menu nav a:active,
.mobile-menu nav a.is-pressed,
.booking-field-main:active:not(:disabled),
.booking-field-main.is-pressed:not(:disabled),
.booking-field-clear:active:not(:disabled),
.booking-field-clear.is-pressed:not(:disabled),
.selector-clear:active:not(:disabled),
.selector-clear.is-pressed:not(:disabled),
.selector-done:active:not(:disabled),
.selector-done.is-pressed:not(:disabled),
.selector-close:active:not(:disabled),
.selector-close.is-pressed:not(:disabled),
.stage-back:active:not(:disabled),
.stage-back.is-pressed:not(:disabled),
.account-back-button:active:not(:disabled),
.account-back-button.is-pressed:not(:disabled),
.header-account-icon:active:not(:disabled),
.header-account-icon.is-pressed:not(:disabled),
.mobile-account-link:active:not(:disabled),
.mobile-account-link.is-pressed:not(:disabled),
.mobile-sticky-booking:active:not(:disabled),
.mobile-sticky-booking.is-pressed:not(:disabled),
.phone-sms-button:active:not(:disabled),
.phone-sms-button.is-pressed:not(:disabled),
.account-profile-actions .account-new-booking:active:not(:disabled),
.account-profile-actions .account-new-booking.is-pressed:not(:disabled),
.account-profile-actions .account-logout:active:not(:disabled),
.account-profile-actions .account-logout.is-pressed:not(:disabled),
.account-cancel-visit:active:not(:disabled),
.account-cancel-visit.is-pressed:not(:disabled),
.portfolio-controls button:active:not(:disabled),
.portfolio-controls button.is-pressed:not(:disabled) {
  box-shadow: none;
  transform: translateY(0) scale(0.97);
}

.booking-callback {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px 25px 36px;
}

.booking-callback h3 {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.05;
}

.callback-form-body {
  display: grid;
  gap: 14px;
}

.callback-form-body[hidden],
.callback-thanks[hidden] {
  display: none;
}

.booking-callback .account-copy {
  max-width: 42rem;
  margin: 0;
  color: #3f4958;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.booking-callback .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
}

.booking-callback .form-row label {
  display: grid;
  min-width: 0;
  width: 100%;
  gap: 7px;
  margin: 0;
  color: #566276;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-callback input:not([type="checkbox"]),
.booking-callback .phone-prefix-input {
  width: 100%;
  min-height: 56px;
  margin: 0;
  border: 1px solid rgba(67, 91, 145, 0.22);
  border-radius: 9px;
  background: #fff;
  box-shadow: none;
}

.booking-callback input:not([type="checkbox"]) {
  padding: 0 16px;
  color: var(--ink);
  font-size: 17px;
}

.booking-callback .phone-prefix-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 0 16px;
  overflow: visible;
}

.booking-callback .phone-prefix-input b {
  display: block;
  min-height: auto;
  border-right: 0;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
  font-weight: 500;
}

.booking-callback .phone-prefix-input input {
  min-height: 54px;
  padding: 14px 16px 14px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.callback-actions {
  display: grid;
  gap: 10px;
}

.booking-callback .submit-callback,
.booking-callback .stage-back {
  width: 100%;
  margin: 0;
}

.booking-callback .form-message {
  margin-top: 0;
}

.booking-callback .form-message:empty {
  display: none;
}

.callback-thanks {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(79, 118, 90, 0.22);
  border-radius: 14px;
  color: #315c3c;
  background: #edf6ef;
}

.callback-thanks strong {
  color: #243a2a;
  font-size: 24px;
  font-weight: 560;
  line-height: 1.15;
}

.callback-thanks span {
  color: #3f5c46;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .booking-callback {
    padding: 18px 18px 32px;
  }

  .booking-callback h3 {
    font-size: clamp(26px, 7vw, 34px);
  }
}

/* Mobile sticky booking CTA v67 */
@media (max-width: 720px) {
  .services-section {
    padding-bottom: max(92px, calc(72px + env(safe-area-inset-bottom)));
  }

  .mobile-sticky-booking {
    position: fixed;
    z-index: 60;
    right: clamp(12px, 4vw, 18px);
    left: clamp(12px, 4vw, 18px);
    bottom: max(16px, env(safe-area-inset-bottom));
    display: inline-flex;
    width: auto;
    max-width: calc(100vw - 24px);
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid rgba(67, 91, 145, 0.28);
    border-radius: 999px;
    color: var(--wine-dark);
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 12px 28px rgba(37, 53, 91, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.62);
    font-size: 13.5px;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
    backdrop-filter: blur(10px);
    transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  }

  .mobile-sticky-booking-label {
    position: relative;
    z-index: 1;
  }
}

/* Online booking/account form rhythm v68 */
.booking-drawer,
.account-shell {
  --site-form-gap: 12px;
  --site-field-gap: 8px;
  --site-control-height: 48px;
}

.booking-fields {
  display: grid;
  gap: 8px;
}

.booking-field {
  margin-bottom: 0;
}

.booking-contact,
.booking-password,
.otp-view,
.booking-callback,
.callback-form-body,
.account-panel-form {
  display: grid;
  gap: var(--site-form-gap);
}

.booking-contact .form-row,
.booking-callback .form-row {
  gap: var(--site-form-gap);
}

.booking-contact > label:not(.consent),
.booking-contact .form-row label,
.booking-password > label,
.booking-callback .form-row label,
.account-panel-form > label:not(.consent),
.account-panel-form[data-account-password-set] label {
  gap: var(--site-field-gap);
  color: #4e5f83;
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.35;
}

.booking-field-main > span {
  font-weight: 650;
}

.booking-field-main strong,
.booking-order-note strong,
.booking-created-card strong {
  font-weight: 540;
}

.booking-order-note ol,
.phone-status,
.booking-checkout .booking-help-copy,
.booking-callback .account-copy,
.account-copy {
  font-weight: 400;
}

.booking-contact input:not([type="checkbox"]),
.booking-contact textarea,
.booking-contact .phone-prefix-input,
.booking-password input,
.booking-callback input:not([type="checkbox"]),
.booking-callback .phone-prefix-input,
.account-panel-form input:not([type="checkbox"]),
.account-panel-form textarea,
.account-panel-form .phone-prefix-input,
.otp-view input {
  min-height: var(--site-control-height);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.booking-contact input:not([type="checkbox"]),
.booking-contact textarea,
.booking-password input,
.booking-callback input:not([type="checkbox"]),
.account-panel-form input:not([type="checkbox"]),
.account-panel-form textarea,
.otp-view input {
  padding-top: 11px;
  padding-bottom: 11px;
}

.booking-contact .phone-prefix-input,
.booking-callback .phone-prefix-input,
.account-panel-form .phone-prefix-input {
  align-items: center;
  gap: 8px;
  padding-top: 0;
  padding-bottom: 0;
}

.booking-contact .phone-prefix-input > b,
.booking-contact .phone-prefix-input > input,
.booking-callback .phone-prefix-input > b,
.booking-callback .phone-prefix-input > input,
.account-panel-form .phone-prefix-input > b,
.account-panel-form .phone-prefix-input > input {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.booking-contact .phone-prefix-input > input,
.booking-callback .phone-prefix-input > input,
.account-panel-form .phone-prefix-input > input {
  min-height: calc(var(--site-control-height) - 2px);
  padding-top: 11px;
  padding-bottom: 11px;
}

.booking-contact textarea {
  min-height: 72px;
}

.booking-contact .consent,
.account-panel-form .consent {
  min-height: 44px;
  gap: 10px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.booking-contact .consent input,
.account-panel-form .consent input {
  width: 26px;
  height: 26px;
  min-height: 26px;
  flex-basis: 26px;
}

.booking-drawer .action-confirm,
.account-shell .action-confirm,
.booking-drawer .booking-feedback-button,
.booking-drawer .phone-sms-button,
.booking-callback .submit-callback,
.selector-clear,
.selector-done,
.stage-back,
.account-back-button {
  min-height: var(--site-control-height);
  font-size: 15px;
  font-weight: 540;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.booking-drawer .action-confirm,
.account-shell .action-confirm,
.booking-drawer .booking-feedback-button,
.booking-drawer .phone-sms-button,
.booking-callback .submit-callback,
.stage-back,
.account-back-button {
  padding: 9px 16px;
}

.callback-actions,
.booking-checkout,
.booking-checkout-row {
  gap: 8px;
}

.selector-parallel-hint,
.selector-sequential-hint,
.selector-category-sequential .selector-category-name > span > small:not(.selector-parallel-hint),
.selector-category-sequential.is-selected .selector-category-name > span > small:not(.selector-parallel-hint),
.selector-category-sequential.is-open .selector-category-name > span > small:not(.selector-parallel-hint) {
  font-weight: 520 !important;
}

.otp-view input {
  font-weight: 500;
}

@media (max-width: 720px) {
  .booking-contact,
  .booking-password,
  .otp-view,
  .booking-callback,
  .callback-form-body,
  .account-panel-form {
    gap: var(--site-form-gap);
  }

  .booking-contact .form-row,
  .booking-callback .form-row {
    gap: var(--site-form-gap);
  }
}
