:root {
  --bg: #fff8f8;
  --bg-soft: #fff1f2;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-rose: linear-gradient(180deg, rgba(255, 247, 248, 0.94), rgba(255, 241, 243, 0.92));
  --line: rgba(142, 92, 100, 0.13);
  --line-strong: rgba(142, 92, 100, 0.2);
  --text: #2c2326;
  --muted: #725b61;
  --rose: #cb8e98;
  --rose-deep: #8b5f68;
  --rose-soft: #f6dce0;
  --shadow: 0 24px 60px rgba(154, 99, 110, 0.12);
  --shadow-soft: 0 18px 40px rgba(154, 99, 110, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 221, 226, 0.8), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(247, 232, 234, 0.9), transparent 28%),
    linear-gradient(180deg, #fffaf9 0%, #fff6f7 50%, #fffaf7 100%);
  opacity: 0;
  transition: opacity 700ms ease;
  overflow-x: hidden;
}

body.is-ready {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

body.auth-body,
body.dashboard-body,
body.maintenance-body {
  opacity: 1;
}

body.modal-open .page-shell::before,
body.modal-open .page-shell::after {
  opacity: 0;
}

body.modal-open .site-header,
body.modal-open .service-card,
body.modal-open .slide-card,
body.modal-open .booking-card,
body.modal-open .contact-card,
body.modal-open .experience-panel__card,
body.modal-open .trust-bar,
body.modal-open .review-card {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

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

p,
h1,
h2,
h3,
span,
strong,
a {
  overflow-wrap: anywhere;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(247, 223, 228, 0.52);
  filter: blur(48px);
  z-index: -1;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.page-shell::before {
  top: -48px;
  left: -96px;
}

.page-shell::after {
  right: -110px;
  bottom: 8%;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 28px;
  background: rgba(255, 252, 252, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
}

.site-header > *,
.hero > *,
.hero__bottom > *,
.section--split > *,
.reservation-layout > *,
.service-grid > *,
.process-grid > *,
.trust-bar > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f6d6dc, #f4ece4);
  color: var(--rose-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 0.98rem;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav,
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.site-nav {
  justify-content: center;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--rose-deep);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.btn:hover,
.btn:focus-visible,
.slider__button:hover,
.slider__button:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, #c98894, #e8b6bd);
  color: white;
  box-shadow: 0 14px 30px rgba(186, 118, 129, 0.26);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  border-color: var(--line);
}

.btn--full {
  width: 100%;
}

[hidden] {
  display: none !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(244, 231, 234, 0.9);
}

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

.modal {
  display: flex;
  flex-direction: column;
  width: min(100%, 960px);
  max-height: min(88vh, 920px);
  max-height: min(calc(100dvh - 48px), 920px);
  overflow: hidden;
  contain: layout paint;
  background: rgba(255, 251, 251, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 80px rgba(102, 62, 70, 0.18);
  border-radius: 34px;
  overflow-x: hidden;
}

.modal--l {
  max-width: 960px;
}

.modal__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 20px 0;
}

.modal__back,
.modal__close {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 226, 230, 0.86);
  color: var(--rose-deep);
  cursor: pointer;
}

.modal__back {
  margin-right: auto;
}

.modal-content-scroll {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 22px 22px;
  overflow-y: auto;
  overflow-x: hidden;
  contain: layout paint;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 95, 104, 0.42) rgba(255, 255, 255, 0);
}

.modal-content-scroll::-webkit-scrollbar {
  width: 10px;
}

.modal-content-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content-scroll::-webkit-scrollbar-thumb {
  background: rgba(139, 95, 104, 0.34);
  border: 2px solid rgba(255, 251, 251, 0.96);
  border-radius: 999px;
}

.modal-content-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 95, 104, 0.46);
}

.booking-modal__header {
  display: grid;
  gap: 12px;
  padding: 4px 6px 24px;
}

.booking-modal__header h2 {
  max-width: 100%;
  white-space: nowrap;
}

.booking-modal__header h2.is-wide {
  max-width: 100%;
  white-space: normal;
}

.booking-modal__header p:last-child {
  max-width: 58ch;
  margin: 0;
}

.booking-modal-warning {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 244, 233, 0.95);
  border: 1px solid rgba(224, 182, 117, 0.36);
  color: #9a5b17;
  font-size: 0.92rem;
  line-height: 1.55;
}

.booking-modal-warning i {
  margin-top: 2px;
}

.booking-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  min-width: 0;
}

.booking-modal__layout > * {
  min-width: 0;
  min-height: 0;
}

.booking-step {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.booking-step--details {
  gap: 0;
}

.booking-config {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: 22px;
  min-width: 0;
}

.booking-config__main,
.booking-config__aside {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.booking-main {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.booking-calendar,
.booking-sidebar__block {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(231, 208, 213, 0.9);
  box-shadow: var(--shadow-soft);
  border-radius: 28px;
}

body.modal-open .booking-calendar,
body.modal-open .booking-sidebar__block {
  box-shadow: 0 10px 24px rgba(154, 99, 110, 0.07);
}

.booking-calendar {
  padding: 22px;
}

.booking-calendar--full {
  width: 100%;
}

.booking-calendar-meta {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(231, 208, 213, 0.9);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
}

.booking-calendar-meta--step {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

body.modal-open .booking-calendar-meta {
  box-shadow: 0 10px 24px rgba(154, 99, 110, 0.07);
}

.booking-calendar-meta__item {
  display: grid;
  gap: 8px;
}

.booking-calendar-meta__item strong {
  color: var(--text);
  line-height: 1.45;
}

.booking-calendar-meta__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.booking-calendar-meta__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.booking-calendar-meta__legend i {
  color: #bb7d2e;
}

.booking-step__cta {
  min-width: 180px;
  align-self: end;
}

.booking-calendar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.booking-calendar__top strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.05rem;
}

.booking-calendar__month,
.booking-sidebar__label {
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-calendar__mini-actions {
  display: inline-flex;
  gap: 10px;
}

.booking-calendar__nav {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(247, 234, 236, 0.92);
  color: var(--rose-deep);
  cursor: pointer;
}

.booking-calendar__nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.booking-calendar__weekdays,
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.booking-calendar__weekdays {
  gap: 8px;
  margin-bottom: 10px;
}

.booking-calendar__weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-calendar__grid {
  gap: 10px;
}

.booking-day {
  position: relative;
  min-height: 54px;
  padding: 0;
  border: 1px solid rgba(231, 208, 213, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.booking-day__number {
  display: inline-grid;
  place-items: center;
  width: 100%;
  min-height: inherit;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.booking-day__warning {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #bb7d2e;
  font-size: 0.72rem;
}

.booking-day:disabled {
  cursor: default;
}

.booking-day--past,
.booking-day--muted {
  color: rgba(114, 91, 97, 0.42);
  background: rgba(255, 248, 249, 0.74);
  border-color: rgba(231, 208, 213, 0.54);
}

.booking-day--past::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  height: 1.5px;
  background: rgba(114, 91, 97, 0.5);
  transform: translateY(-50%) rotate(-16deg);
  pointer-events: none;
}

.booking-day--outside {
  color: rgba(114, 91, 97, 0.46);
  background: rgba(255, 252, 252, 0.58);
  border-color: rgba(231, 208, 213, 0.48);
}

.booking-day--weekend {
  background: linear-gradient(180deg, rgba(255, 241, 244, 0.95), rgba(255, 247, 248, 0.94));
  box-shadow: inset 0 0 0 1px rgba(233, 196, 204, 0.22);
}

.booking-day--past.booking-day--weekend {
  background: rgba(255, 248, 249, 0.74);
  box-shadow: none;
}

.booking-day--busy {
  color: rgba(139, 95, 104, 0.56);
  background: rgba(247, 232, 235, 0.96);
}

.booking-day--warning {
  box-shadow: inset 0 0 0 1px rgba(214, 172, 83, 0.26);
}

.booking-day--selected {
  border-color: rgba(174, 92, 108, 0.9);
  background: linear-gradient(135deg, rgba(199, 104, 123, 0.88), rgba(225, 151, 167, 0.92));
  color: #fff8fa;
  box-shadow: 0 14px 24px rgba(188, 114, 129, 0.28), inset 0 0 0 1px rgba(255, 244, 246, 0.32);
  transform: translateY(-1px);
}

.booking-day--in-range {
  border-color: rgba(219, 165, 176, 0.96);
  background: linear-gradient(180deg, rgba(250, 220, 227, 0.98), rgba(255, 236, 240, 0.98));
  color: #8d4c5d;
  box-shadow: inset 0 0 0 1px rgba(255, 247, 249, 0.52);
}

.booking-day--in-range .booking-day__number {
  font-weight: 800;
}

.booking-day--selected.booking-day--in-range {
  background: linear-gradient(135deg, rgba(199, 104, 123, 0.9), rgba(225, 151, 167, 0.94));
}

.booking-day--selected .booking-day__number {
  text-shadow: 0 1px 10px rgba(124, 52, 67, 0.24);
}

.booking-sidebar {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.booking-sidebar__block {
  padding: 20px;
}

.booking-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

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

.booking-choices--passes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-choice {
  min-height: 46px;
  border: 1px solid rgba(231, 208, 213, 0.9);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  cursor: pointer;
  padding: 0 12px;
}

.booking-choice--rich {
  min-height: 64px;
  padding: 12px 14px;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 4px;
  text-align: left;
}

.booking-choice__label {
  font-weight: 700;
  line-height: 1.3;
}

.booking-choice__meta {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.3;
}

.booking-choice:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  color: rgba(113, 97, 101, 0.88);
  background: rgba(250, 244, 245, 0.92);
  border-color: rgba(227, 214, 217, 0.92);
  box-shadow: none;
}

.booking-choice:disabled .booking-choice__meta {
  color: rgba(150, 132, 136, 0.92);
}

.booking-choice.is-selected {
  border-color: rgba(201, 136, 148, 0.72);
  background: linear-gradient(135deg, rgba(201, 136, 148, 0.14), rgba(255, 241, 244, 0.98));
  color: var(--rose-deep);
}

.booking-choice.is-selected .booking-choice__meta {
  color: var(--rose-deep);
}

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

.booking-field input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(231, 208, 213, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  outline: none;
}

.booking-field select {
  width: 100%;
  padding: 15px 48px 15px 16px;
  border: 1px solid rgba(231, 208, 213, 0.9);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.98);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%238b5f68' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right 16px center;
  background-size: 100% 100%, 14px 9px;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.booking-field select:hover {
  background-color: rgba(255, 250, 251, 0.99);
  border-color: rgba(214, 183, 190, 0.95);
}

.booking-field input:focus {
  border-color: rgba(139, 95, 104, 0.35);
  box-shadow: 0 0 0 4px rgba(228, 191, 198, 0.22);
}

.booking-field select:focus {
  border-color: rgba(139, 95, 104, 0.35);
  box-shadow: 0 0 0 4px rgba(228, 191, 198, 0.22);
  background-color: rgba(255, 252, 252, 1);
}

.booking-field select:disabled {
  cursor: default;
  color: rgba(114, 91, 97, 0.62);
  background-color: rgba(252, 247, 248, 0.96);
}

.booking-slots {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.booking-slots__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.booking-slots__header strong {
  display: block;
  color: var(--text);
}

.booking-slots__header p,
.booking-date-group__header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-date-groups {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.booking-date-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.booking-date-chip {
  display: grid;
  gap: 6px;
  justify-items: start;
  min-height: 78px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(231, 208, 213, 0.84);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  text-align: left;
}

.booking-date-chip span {
  font-size: 0.92rem;
}

.booking-date-chip strong {
  color: var(--rose-deep);
}

.booking-date-chip.is-active {
  border-color: rgba(201, 136, 148, 0.72);
  background: linear-gradient(135deg, rgba(201, 136, 148, 0.14), rgba(255, 241, 244, 0.98));
}

.booking-date-chip.is-warning {
  box-shadow: inset 0 0 0 1px rgba(220, 166, 78, 0.28);
}

.booking-date-chip.is-disabled {
  opacity: 0.58;
}

.booking-date-panel {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(231, 208, 213, 0.72);
}

.booking-date-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-date-panel__header strong {
  display: block;
  color: var(--text);
}

.booking-date-panel__header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.booking-date-group {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(231, 208, 213, 0.72);
}

.booking-date-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-date-group__header strong {
  display: block;
  color: var(--text);
}

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

.booking-slot-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(231, 208, 213, 0.78);
}

.booking-slot-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-slot-card strong {
  display: block;
  color: var(--text);
}

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

.booking-slot-card__grid--single {
  grid-template-columns: 1fr;
}

.booking-slot-action,
.booking-slot-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(214, 183, 190, 0.88);
  background: rgba(255, 250, 251, 0.96);
  color: var(--text);
  padding: 0 14px;
}

.booking-slot-action {
  white-space: nowrap;
}

.booking-slot-remove {
  min-width: 40px;
  padding: 0;
}

.booking-slot-action i,
.booking-slot-remove i {
  color: var(--rose-deep);
}

.ui-select,
.booking-time-dropdown {
  position: relative;
}

.ui-select__native {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ui-select__trigger,
.booking-time-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid rgba(231, 208, 213, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: rgba(114, 91, 97, 0.7);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ui-select__trigger.has-value,
.booking-time-dropdown__trigger.has-value {
  color: var(--text);
}

.ui-select__trigger:hover,
.ui-select.is-open .ui-select__trigger,
.booking-time-dropdown__trigger:hover,
.booking-time-dropdown.is-open .booking-time-dropdown__trigger {
  background: rgba(255, 250, 251, 0.99);
  border-color: rgba(214, 183, 190, 0.95);
}

.ui-select__trigger:focus-visible,
.booking-time-dropdown__trigger:focus-visible {
  border-color: rgba(139, 95, 104, 0.35);
  box-shadow: 0 0 0 4px rgba(228, 191, 198, 0.22);
}

.ui-select__trigger i,
.booking-time-dropdown__trigger i {
  color: var(--rose-deep);
  transition: transform 180ms ease;
}

.ui-select.is-open .ui-select__trigger i,
.booking-time-dropdown.is-open .booking-time-dropdown__trigger i {
  transform: rotate(180deg);
}

.ui-select__menu,
.booking-time-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: 4px;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 251, 252, 0.98);
  border: 1px solid rgba(231, 208, 213, 0);
  box-shadow: 0 18px 34px rgba(154, 99, 110, 0);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    max-height 220ms ease,
    padding 220ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.ui-select.opens-up .ui-select__menu,
.booking-time-dropdown.opens-up .booking-time-dropdown__menu {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(6px);
}

.ui-select.is-open .ui-select__menu,
.booking-time-dropdown.is-open .booking-time-dropdown__menu {
  max-height: 260px;
  padding: 8px;
  overflow-y: auto;
  border-color: rgba(231, 208, 213, 0.9);
  box-shadow: 0 18px 34px rgba(154, 99, 110, 0.16);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ui-select__option,
.booking-time-dropdown__option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  text-align: left;
}

.ui-select__option:not(.ui-select__option--disabled),
.booking-time-dropdown__option:not(.booking-time-dropdown__option--blocked):not(.booking-time-dropdown__option--empty) {
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.ui-select__option:not(.ui-select__option--disabled):hover,
.ui-select__option.is-selected,
.booking-time-dropdown__option:not(.booking-time-dropdown__option--blocked):not(.booking-time-dropdown__option--empty):hover,
.booking-time-dropdown__option.is-selected {
  background: rgba(248, 232, 236, 0.92);
  color: var(--rose-deep);
}

.ui-select__option--disabled,
.booking-time-dropdown__option--blocked,
.booking-time-dropdown__option--empty {
  cursor: default;
}

.ui-select__option--disabled {
  color: rgba(114, 91, 97, 0.58);
  background: rgba(250, 246, 247, 0.92);
}

.booking-time-dropdown__option--blocked {
  gap: 8px;
  color: rgba(143, 117, 61, 0.92);
  background: rgba(255, 248, 231, 0.92);
  text-decoration: line-through;
  text-decoration-thickness: 1.6px;
  text-decoration-color: rgba(228, 183, 66, 0.95);
}

.booking-time-dropdown__option--blocked i {
  color: rgba(181, 139, 52, 0.98);
  font-size: 0.78rem;
  text-decoration: none;
}

.booking-time-dropdown__option--empty {
  color: rgba(114, 91, 97, 0.62);
}

.booking-note,
.booking-feedback,
.form-feedback {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.booking-login-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--rose-deep);
  font-weight: 700;
}

.booking-feedback,
.form-feedback {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 245, 247, 0.92);
  border: 1px solid rgba(231, 208, 213, 0.78);
  opacity: 0;
  transform: translateY(6px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  will-change: opacity, transform;
}

.booking-feedback.is-visible,
.form-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.booking-feedback.is-leaving,
.form-feedback.is-leaving {
  opacity: 0;
  transform: translateY(-4px);
  visibility: hidden;
}

.booking-feedback.is-error,
.form-feedback.is-error {
  color: #8e4353;
  background: rgba(255, 238, 241, 0.96);
  border-color: rgba(201, 136, 148, 0.34);
}

.booking-feedback.is-success,
.form-feedback.is-success {
  color: #49635a;
  background: rgba(240, 248, 244, 0.96);
  border-color: rgba(159, 191, 176, 0.42);
}

.booking-summary {
  gap: 14px;
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(231, 208, 213, 0.7);
}

.booking-summary__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.booking-summary__row--strong {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 136, 148, 0.28);
  border-bottom: 0;
}

.booking-summary__row span {
  color: var(--muted);
}

.booking-summary__row strong {
  color: var(--text);
  text-align: right;
}

.booking-summary__row--slots strong {
  font-size: 0.9rem;
  line-height: 1.5;
}

.booking-summary__row--strong strong {
  color: var(--rose-deep);
  font-size: 1.08rem;
}

.booking-modal__cta {
  min-height: 50px;
}

.section {
  padding: 44px 0;
}

.hero {
  display: grid;
  gap: 22px;
  min-height: auto;
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  max-width: none;
  font-size: clamp(3.8rem, 6.6vw, 6.4rem);
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

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

h2 {
  max-width: 16ch;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 2rem;
}

p {
  line-height: 1.75;
  color: var(--muted);
}

.hero__lead {
  max-width: 44ch;
  margin: 14px 0 0;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero__intro {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.hero__bottom {
  display: block;
  width: 100%;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.hero-frame {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  transform-origin: center center;
  --hero-base-x: 0px;
  --hero-base-y: 0px;
  --hero-base-rotate: 0deg;
  --hero-float-x-from: 0px;
  --hero-float-x-to: 0px;
  --hero-float-y-from: 0px;
  --hero-float-y-to: -8px;
  --hero-float-rotate-from: 0deg;
  --hero-float-rotate-to: 0deg;
  translate: var(--hero-base-x) var(--hero-base-y);
  rotate: var(--hero-base-rotate);
  animation: hero-frame-float var(--hero-frame-duration, 7.2s) ease-in-out infinite alternate;
  animation-delay: var(--hero-frame-delay, 0s);
}

.hero-frame--one {
  --hero-frame-duration: 7.4s;
  --hero-frame-delay: -1.3s;
  --hero-base-rotate: -0.9deg;
  --hero-float-x-from: -2px;
  --hero-float-x-to: 4px;
  --hero-float-y-from: 2px;
  --hero-float-y-to: -9px;
  --hero-float-rotate-from: -0.08deg;
  --hero-float-rotate-to: 0.14deg;
}

.hero-frame--two {
  --hero-frame-duration: 8.5s;
  --hero-frame-delay: -3.1s;
  --hero-base-y: 10px;
  --hero-base-rotate: 0.7deg;
  --hero-float-x-from: 3px;
  --hero-float-x-to: -3px;
  --hero-float-y-from: 3px;
  --hero-float-y-to: -7px;
  --hero-float-rotate-from: 0.12deg;
  --hero-float-rotate-to: -0.1deg;
}

.hero-frame--three {
  --hero-frame-duration: 6.8s;
  --hero-frame-delay: -0.7s;
  --hero-base-y: -4px;
  --hero-base-rotate: -0.55deg;
  --hero-float-x-from: 2px;
  --hero-float-x-to: -4px;
  --hero-float-y-from: 1px;
  --hero-float-y-to: -6px;
  --hero-float-rotate-from: -0.06deg;
  --hero-float-rotate-to: 0.1deg;
}

.hero-frame__media {
  overflow: hidden;
  min-height: 360px;
  border-radius: 26px;
}

.hero-frame__media--image {
  padding: 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 247, 248, 0.82);
}

.hero-frame__media--image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-frame__content {
  display: grid;
  gap: 6px;
  padding: 4px 8px 6px;
}

.hero-frame__content strong {
  display: block;
  color: var(--text);
}

.hero-frame__content p {
  margin: 0;
}

.service-card,
.process-card,
.slide-card,
.booking-card,
.contact-card,
.experience-panel__card,
.trust-bar,
.site-footer {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.slide-card__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.slide-card__content p,
.service-card p,
.process-card p,
.booking-card p,
.contact-card p {
  margin: 0;
}

.media-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 251, 0.92), rgba(248, 231, 234, 0.88)),
    repeating-linear-gradient(
      45deg,
      rgba(203, 142, 152, 0.07) 0,
      rgba(203, 142, 152, 0.07) 8px,
      rgba(255, 255, 255, 0.1) 8px,
      rgba(255, 255, 255, 0.1) 16px
    );
  color: var(--rose-deep);
  border: 1px dashed rgba(139, 95, 104, 0.2);
  border-radius: inherit;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
}

.media-placeholder--portrait {
  min-height: 520px;
  border-radius: 28px;
}

.media-placeholder--wide {
  min-height: 300px;
  border-radius: 28px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 26px;
  border-radius: 28px;
}

.trust-bar div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
  min-width: 0;
}

.trust-bar i,
.service-card i {
  color: var(--rose-deep);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: start;
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.service-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.service-card i {
  font-size: 1.2rem;
}

.service-card h3 {
  margin: 14px 0 10px;
  font-size: 1.7rem;
  line-height: 1.08;
}

.experience-panel__card {
  padding: 24px;
  border-radius: 30px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.section--soft {
  padding: 42px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.section-heading h2 {
  max-width: 18ch;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 14px;
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  z-index: 3;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff7f7 0%, rgba(255, 247, 247, 0) 100%);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff7f7 0%, rgba(255, 247, 247, 0) 100%);
}

.reviews-marquee__inner {
  position: relative;
  height: 206px;
}

.reviews-track {
  --reviews-gap: 18px;
  display: flex;
  align-items: stretch;
  width: max-content;
  will-change: transform;
  animation: reviews-marquee 42s linear infinite;
}

.reviews-track__group {
  display: flex;
  align-items: stretch;
  gap: var(--reviews-gap);
  padding-right: var(--reviews-gap);
}

.review-card {
  display: grid;
  gap: 14px;
  width: min(360px, calc(100vw - 72px));
  min-height: 168px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(154, 99, 110, 0.09);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  transform-origin: center center;
  animation: review-float var(--review-duration, 7s) ease-in-out infinite alternate;
  animation-delay: var(--review-delay, 0s);
}

body.modal-open .reviews-track {
  will-change: auto;
  animation-play-state: paused;
}

body.modal-open .review-card {
  animation-play-state: paused;
}

.review-card__meta {
  display: grid;
  gap: 4px;
}

.review-card__meta strong {
  font-size: 1rem;
  color: var(--text);
}

.review-card__meta span {
  color: var(--rose-deep);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.review-card p {
  margin: 0;
  line-height: 1.65;
  font-size: 0.98rem;
}

.section--reservation {
  padding-bottom: 12px;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
}

.booking-card,
.contact-card {
  padding: 26px;
  border-radius: 32px;
}

.booking-card__mock {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.mock-field {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface-rose);
  border: 1px solid var(--line);
}

.mock-field span,
.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mock-field strong {
  display: block;
  line-height: 1.45;
}

.booking-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.contact-form textarea {
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(139, 95, 104, 0.35);
  box-shadow: 0 0 0 4px rgba(228, 191, 198, 0.25);
  background: white;
}

.auth-body,
.dashboard-body {
  min-height: 100vh;
}

.auth-page,
.dashboard-page {
  padding-bottom: 48px;
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  align-content: start;
}

.maintenance-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 26px;
}

.maintenance-login {
  min-height: 42px;
  padding: 0 16px;
}

.maintenance-hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 130px);
}

.maintenance-card {
  width: min(100%, 980px);
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(247, 226, 230, 0.9), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 252, 0.94), rgba(255, 244, 246, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 70px rgba(154, 99, 110, 0.14);
}

.maintenance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 30px;
  align-items: center;
}

.maintenance-copy {
  min-width: 0;
}

.maintenance-card h1 {
  max-width: 16ch;
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 4.5vw, 4.15rem);
  line-height: 1.02;
  text-wrap: balance;
}

.maintenance-lead {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.maintenance-animals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.maintenance-illustration {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
}

.maintenance-illustration__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.maintenance-illustration::before {
  content: "";
  position: absolute;
  inset: 10% 6% 12%;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(255, 242, 245, 0.25) 62%, rgba(255, 242, 245, 0) 75%),
    radial-gradient(circle at bottom, rgba(240, 197, 207, 0.35), rgba(240, 197, 207, 0) 68%);
  filter: blur(8px);
  z-index: 0;
}

.maintenance-illustration__image {
  width: min(100%, 390px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 36px rgba(143, 90, 101, 0.18));
  animation: maintenance-float 7.6s ease-in-out infinite alternate;
}

.maintenance-animal {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 22px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 208, 213, 0.78);
  box-shadow: var(--shadow-soft);
  animation: maintenance-float var(--maintenance-duration, 7s) ease-in-out infinite alternate;
}

.maintenance-animal i {
  font-size: 2rem;
  color: var(--rose-deep);
}

.maintenance-animal span {
  font-weight: 700;
  text-align: center;
}

.maintenance-animal--cat {
  --maintenance-duration: 7.2s;
}

.maintenance-animal--dog {
  --maintenance-duration: 8.1s;
  translate: 0 10px;
}

.maintenance-animal--paw {
  --maintenance-duration: 6.6s;
  translate: 0 -6px;
}

.maintenance-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 247, 248, 0.94);
  color: var(--rose-deep);
  font-weight: 700;
}

.maintenance-note i {
  color: #d17b8b;
}

.auth-header,
.dashboard-header {
  margin-bottom: 34px;
}

.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.auth-layout--single {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

.auth-layout--login-simple {
  min-height: calc(100vh - 140px);
  align-content: center;
}

.auth-panel,
.dashboard-panel,
.dashboard-stat,
.auth-card,
.dashboard-hero {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.auth-panel,
.dashboard-panel,
.dashboard-hero {
  border-radius: 32px;
  padding: 28px;
}

.auth-panel--intro {
  min-height: 100%;
}

.auth-card {
  padding: 28px;
  border-radius: 30px;
}

.auth-card--compact {
  max-width: 520px;
  margin: 0 auto;
}

.auth-title {
  max-width: 100%;
  font-size: clamp(1.72rem, 2.2vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.auth-back-link {
  min-height: 42px;
  padding: 0 16px;
  margin-bottom: 22px;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.auth-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -2px;
}

.auth-inline-link {
  color: var(--rose-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.auth-inline-link:hover {
  color: var(--text);
}

.auth-form label {
  display: grid;
  gap: 8px;
}

.auth-form input {
  width: 100%;
  padding: 16px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.auth-form input:focus {
  border-color: rgba(139, 95, 104, 0.35);
  box-shadow: 0 0 0 4px rgba(228, 191, 198, 0.25);
  background: white;
}

.auth-lead {
  max-width: 42ch;
  margin: 10px 0 0;
}

.auth-lead--compact {
  max-width: 50ch;
}

.auth-note-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.auth-note-list div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.auth-note-list i {
  color: var(--rose-deep);
}

.auth-card__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(231, 208, 213, 0.72);
}

.auth-card__footer p {
  margin: 0 0 10px;
}

.dashboard-layout {
  display: grid;
  gap: 24px;
}

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

.dashboard-stat {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border-radius: 26px;
}

.dashboard-stat span {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.dashboard-stat strong {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1;
}

.dashboard-panel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dashboard-bookings {
  display: grid;
  gap: 16px;
}

.dashboard-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(231, 208, 213, 0.8);
}

.dashboard-booking__meta {
  display: grid;
  gap: 6px;
}

.dashboard-booking__meta strong {
  color: var(--text);
  font-size: 1.05rem;
}

.dashboard-booking__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 234, 236, 0.92);
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-booking__status {
  align-self: start;
}

.booking-note--strong {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.page-shell.admin-page {
  max-width: min(1680px, calc(100vw - 24px));
  padding-left: 16px;
  padding-right: 16px;
}

.admin-page .dashboard-layout {
  gap: 28px;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.admin-sidebar__intro {
  display: grid;
  gap: 10px;
}

.admin-sidebar__intro h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
}

.admin-sidebar__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.admin-summary {
  grid-template-columns: 1fr;
}

.admin-nav {
  display: grid;
  gap: 10px;
}

.admin-nav__button {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(231, 208, 213, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.admin-nav__button i {
  color: var(--rose-deep);
}

.admin-nav__button span {
  font-weight: 700;
  letter-spacing: -0.01em;
  overflow-wrap: normal;
}

.admin-nav__button:hover,
.admin-nav__button:focus-visible {
  border-color: rgba(180, 132, 142, 0.46);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(161, 120, 129, 0.12);
  transform: translateY(-1px);
}

.admin-nav__button.is-active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 242, 244, 0.96));
  border-color: rgba(180, 132, 142, 0.5);
  box-shadow: 0 20px 42px rgba(161, 120, 129, 0.14);
}

.admin-content {
  min-width: 0;
  display: grid;
}

.admin-section {
  display: none;
  min-width: 0;
}

.admin-section.is-active {
  display: grid;
  gap: 20px;
}

.admin-section__intro {
  margin: -8px 0 0;
  max-width: 64ch;
  color: var(--muted);
}

.admin-disclosure,
.admin-card-disclosure,
.admin-subdetails {
  border: 1px solid rgba(231, 208, 213, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.admin-disclosure summary,
.admin-subdetails summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  color: var(--text);
}

.admin-disclosure summary::-webkit-details-marker,
.admin-card-disclosure summary::-webkit-details-marker,
.admin-subdetails summary::-webkit-details-marker {
  display: none;
}

.admin-disclosure[open] summary,
.admin-subdetails[open] summary {
  border-bottom: 1px solid rgba(231, 208, 213, 0.7);
}

.admin-disclosure--form > form,
.admin-subdetails > div,
.admin-subdetails > .admin-fields,
.admin-subdetails > .admin-form {
  padding: 18px 20px 20px;
}

.admin-form {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-section > .admin-form:not(.admin-form--inline) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-section > .admin-form:not(.admin-form--inline) > .admin-toggle,
.admin-section > .admin-form:not(.admin-form--inline) > textarea,
.admin-section > .admin-form:not(.admin-form--inline) > button {
  grid-column: 1 / -1;
}

.admin-form--inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.admin-form--compact {
  margin-bottom: 0;
}

.admin-form input,
.admin-form select,
.admin-form input[type="time"],
.admin-form textarea,
.admin-fields input,
.admin-fields input[type="time"],
.admin-fields select,
.admin-fields textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 208, 213, 0.9);
  border-radius: 16px;
  outline: none;
}

.admin-form select,
.admin-fields select {
  padding-right: 48px;
  background-color: rgba(255, 255, 255, 0.82);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%238b5f68' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right 16px center;
  background-size: 100% 100%, 14px 9px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.admin-form select:hover,
.admin-fields select:hover {
  background-color: rgba(255, 252, 252, 0.96);
  border-color: rgba(214, 183, 190, 0.95);
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form input[type="time"]:focus,
.admin-form textarea:focus,
.admin-fields input:focus,
.admin-fields input[type="time"]:focus,
.admin-fields select:focus,
.admin-fields textarea:focus {
  border-color: rgba(139, 95, 104, 0.35);
  box-shadow: 0 0 0 4px rgba(228, 191, 198, 0.18);
}

.admin-form select:disabled,
.admin-fields select:disabled {
  cursor: default;
  color: rgba(114, 91, 97, 0.62);
  background-color: rgba(252, 247, 248, 0.96);
}

.admin-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(231, 208, 213, 0.82);
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.admin-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.admin-item {
  display: grid;
  gap: 12px;
  padding: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(231, 208, 213, 0.8);
  overflow: hidden;
}

.admin-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.admin-fields--stack {
  grid-template-columns: 1fr;
}

.admin-fields textarea {
  min-height: 104px;
  resize: vertical;
}

.admin-fields .admin-toggle,
.admin-fields textarea {
  grid-column: 1 / -1;
}

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

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.admin-card-summary__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.admin-card-summary__copy strong {
  font-size: 1rem;
}

.admin-card-summary__copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-card-disclosure[open] .admin-card-summary {
  border-bottom: 1px solid rgba(231, 208, 213, 0.7);
}

.admin-card-body {
  display: grid;
  gap: 16px;
  padding: 18px 20px 20px;
}

.admin-card-body--site-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.admin-booking-copy {
  display: grid;
  gap: 6px;
}

.admin-booking-copy p {
  margin: 0;
}

.admin-empty {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px dashed rgba(201, 170, 177, 0.7);
}

.admin-subsection {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: 28px;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  body,
  .reveal,
  .slider__track,
  .btn,
  .slider__button,
  .slider__dots button {
    transition: none;
  }

  .reviews-track {
    animation: none;
  }

  .review-card {
    animation: none;
  }

  .hero-frame {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
    padding: 12px 14px;
    border-radius: 28px;
  }

  .brand__text strong {
    font-size: 0.94rem;
  }

  .brand__text span {
    font-size: 0.74rem;
  }

  .site-header__panel {
    gap: 14px;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .site-header__actions .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .section--split,
  .booking-modal__layout,
  .booking-config,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px 20px;
  }

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

  .hero-frame--three {
    grid-column: 1 / -1;
    max-width: 72%;
  }

  .reviews-marquee__inner {
    height: 184px;
  }

  .review-card {
    width: min(280px, calc(100vw - 64px));
    min-height: 150px;
    padding: 18px 18px 16px;
  }

  .review-card__meta strong {
    font-size: 0.92rem;
  }

  .review-card__meta span {
    font-size: 0.74rem;
  }

  .review-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .modal-overlay {
    padding: 18px;
  }

  .modal {
    border-radius: 28px;
  }

  .modal-content-scroll {
    padding: 0 18px 18px;
  }

  .page-shell.admin-page {
    max-width: calc(100vw - 16px);
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

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

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

  .admin-card-summary {
    align-items: start;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header__panel {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 10px;
  }

  .site-header.is-menu-open .site-header__panel {
    display: grid;
  }

  .site-nav,
  .site-header__actions {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a,
  .site-header__actions .btn {
    width: 100%;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px 14px 42px;
  }

  .site-header {
    position: static;
    gap: 14px;
    margin-bottom: 14px;
    padding: 11px 12px;
  }

  h1 {
    font-size: clamp(2.1rem, 9vw, 3.5rem);
  }

  .hero-title-line {
    white-space: normal;
  }

  .auth-title {
    font-size: clamp(1.6rem, 6.2vw, 1.95rem);
    white-space: normal;
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  h3 {
    font-size: 1.45rem;
  }

  p {
    line-height: 1.62;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .hero {
    gap: 18px;
    padding-top: 10px;
  }

  .hero__lead {
    max-width: 34ch;
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .hero__actions,
  .service-grid,
  .trust-bar,
  .booking-card__actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .site-header__actions .btn {
    width: 100%;
    min-height: 44px;
    font-size: 0.92rem;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-frame,
  .hero-frame--one,
  .hero-frame--two,
  .hero-frame--three {
    --hero-base-x: 0px;
    --hero-base-y: 0px;
    --hero-base-rotate: 0deg;
  }

  .hero-frame--three {
    max-width: none;
    grid-column: auto;
  }

  .section {
    padding: 32px 0;
  }

  .modal-overlay {
    padding: 10px;
  }

  .modal {
    max-height: 92vh;
    max-height: calc(100dvh - 20px);
    border-radius: 24px;
  }

  .modal__nav {
    padding: 14px 14px 0;
  }

  .modal-content-scroll {
    padding: 0 14px 14px;
  }

  .booking-modal__header {
    gap: 10px;
    padding: 2px 2px 18px;
  }

  .booking-modal__header h2 {
    white-space: normal;
  }

  .booking-calendar,
  .booking-sidebar__block,
  .booking-calendar-meta {
    padding: 16px;
    border-radius: 22px;
  }

  .booking-calendar-meta--step {
    grid-template-columns: 1fr;
  }

  .booking-calendar__top {
    margin-bottom: 14px;
  }

  .booking-calendar__grid {
    gap: 8px;
  }

  .booking-day {
    min-height: 42px;
    border-radius: 13px;
    font-size: 0.88rem;
  }

  .booking-choices,
  .booking-choices--services,
  .booking-choices--passes {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .booking-slots__header,
  .booking-date-panel__header,
  .booking-date-group__header,
  .booking-slot-card__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-slot-card__grid {
    grid-template-columns: 1fr;
  }

  .booking-slot-action {
    width: 100%;
    justify-content: center;
  }

  .booking-calendar-meta__legend {
    flex-direction: column;
    gap: 8px;
  }

  .booking-choice {
    min-height: 42px;
    border-radius: 13px;
    font-size: 0.88rem;
  }

  .maintenance-card {
    padding: 26px 22px;
  }

  .maintenance-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .maintenance-illustration {
    order: -1;
  }

  .maintenance-illustration__image {
    width: min(100%, 320px);
  }

  .maintenance-animals {
    grid-template-columns: 1fr;
  }

  .admin-card-body--site-setting {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar {
    gap: 12px;
    padding: 16px 16px;
  }

  .trust-bar div {
    font-size: 0.88rem;
  }

  .service-card,
  .booking-card,
  .contact-card,
  .experience-panel__card {
    padding: 18px;
  }

  .service-card h3 {
    margin: 12px 0 8px;
    font-size: 1.38rem;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 14px;
  }

  .media-placeholder--wide {
    min-height: 190px;
  }

  .hero-frame__media,
  .hero-frame__media--image img {
    min-height: 220px;
  }

  .reviews-marquee__inner {
    height: 154px;
  }

  .review-card {
    width: min(224px, calc(100vw - 44px));
    min-height: 122px;
    padding: 14px 14px 12px;
    gap: 10px;
  }

  .review-card__meta strong {
    font-size: 0.82rem;
  }

  .review-card__meta span {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .review-card p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .reviews-marquee::before,
  .reviews-marquee::after {
    width: 22px;
  }

  .slider__button--prev {
    left: 6px;
  }

  .slider__button--next {
    right: 6px;
  }

  .slider__button {
    width: 38px;
    height: 38px;
  }

  .slider__dots {
    gap: 8px;
  }

  .slider__dots button {
    width: 8px;
    height: 8px;
  }

  .slider__dots button.is-active {
    width: 22px;
  }

  .contact-form {
    gap: 12px;
    margin-top: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .auth-layout,
  .dashboard-summary,
  .admin-summary {
    grid-template-columns: 1fr;
  }

  .auth-panel,
  .dashboard-panel,
  .dashboard-hero,
  .auth-card,
  .dashboard-stat {
    padding: 20px;
    border-radius: 24px;
  }

  .dashboard-panel__header,
  .dashboard-booking {
    grid-template-columns: 1fr;
  }

  .admin-form--inline,
  .admin-fields,
  .admin-fields--booking {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .admin-nav__button {
    min-height: 52px;
    padding: 0 14px;
  }

  .admin-card-summary,
  .admin-item__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-disclosure summary,
  .admin-subdetails summary,
  .admin-card-summary,
  .admin-card-body,
  .admin-disclosure--form > form,
  .admin-subdetails > div,
  .admin-subdetails > .admin-fields,
  .admin-subdetails > .admin-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .admin-section > .admin-form:not(.admin-form--inline) {
    grid-template-columns: 1fr;
  }

  .auth-layout--login-simple {
    min-height: auto;
  }
}

@keyframes review-float {
  from {
    transform: translateY(var(--review-translate-start, -3px)) rotate(var(--review-rotate-start, -0.8deg));
  }

  to {
    transform: translateY(var(--review-translate-end, 4px)) rotate(var(--review-rotate-end, 0.8deg));
  }
}

@keyframes hero-frame-float {
  from {
    translate: calc(var(--hero-base-x) + var(--hero-float-x-from)) calc(var(--hero-base-y) + var(--hero-float-y-from));
    rotate: calc(var(--hero-base-rotate) + var(--hero-float-rotate-from));
  }

  to {
    translate: calc(var(--hero-base-x) + var(--hero-float-x-to)) calc(var(--hero-base-y) + var(--hero-float-y-to));
    rotate: calc(var(--hero-base-rotate) + var(--hero-float-rotate-to));
  }
}

@keyframes maintenance-float {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -10px;
  }
}

@keyframes reviews-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}
