:root {
  --ink: #11130f;
  --ink-soft: #1a1d18;
  --panel: #20231e;
  --panel-light: #292d26;
  --cream: #f4efe4;
  --cream-muted: #b9b3a6;
  --lime: #d4ff5f;
  --lime-ink: #1c2407;
  --line: rgba(244, 239, 228, 0.1);
  --danger: #ff8a77;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  --safe-top: max(10px, env(safe-area-inset-top), var(--tg-content-safe-area-inset-top, 0px));
  --safe-bottom: max(12px, env(safe-area-inset-bottom), var(--tg-content-safe-area-inset-bottom, 0px));
  color-scheme: dark;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  color: var(--cream);
}

body {
  overscroll-behavior-y: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.app-shell {
  position: relative;
  width: min(100%, 560px);
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 115% 10%, rgba(212, 255, 95, 0.08), transparent 28%),
    var(--ink);
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 50%;
  width: min(100%, 560px);
  height: calc(58px + var(--safe-top));
  padding: var(--safe-top) 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(17, 19, 15, 0.96), rgba(17, 19, 15, 0.72), transparent);
  backdrop-filter: blur(7px);
}

.icon-button,
.brand,
.text-button,
.round-arrow,
.bottom-nav button {
  border: 0;
  background: none;
  cursor: pointer;
}

.icon-button {
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(32, 35, 30, 0.68);
}

.icon-button svg,
.primary-button svg,
.bottom-nav svg,
.location-pin svg,
.success-check svg,
.confirm-mark svg,
.avatar-any svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.18em;
}

.brand small {
  margin-top: 1px;
  color: var(--cream-muted);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 4px);
  gap: 3px;
  transform: skew(-18deg);
}

.brand-mark i {
  width: 4px;
  height: 22px;
  display: block;
  border-radius: 5px;
  background: var(--lime);
}

.brand-mark i:nth-child(2) {
  height: 15px;
}

#appMain {
  min-height: 100svh;
}

.screen {
  display: none;
  min-height: 100svh;
  padding-top: calc(58px + var(--safe-top));
  padding-bottom: calc(90px + var(--safe-bottom));
  animation: screen-in 240ms ease both;
}

.screen.is-active {
  display: block;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  height: min(70svh, 620px);
  min-height: 500px;
  margin-top: calc(-58px - var(--safe-top));
  overflow: hidden;
  background: #171a16;
}

.hero > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.78) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 11, 9, 0.18), transparent 28%, rgba(10, 11, 9, 0.18) 50%, #11130f 100%),
    linear-gradient(90deg, rgba(10, 11, 9, 0.82), rgba(10, 11, 9, 0.08) 70%);
}

.hero-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 34px;
}

.eyebrow,
.section-kicker {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(212, 255, 95, 0.13);
}

.hero h1,
.booking-head h1,
.page-head h1,
.success-screen h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 380px;
  font-size: clamp(46px, 12vw, 67px);
  line-height: 0.9;
}

.hero h1 em {
  color: var(--lime);
  font-weight: 400;
}

.hero-copy > p {
  max-width: 280px;
  margin: 15px 0 22px;
  color: rgba(244, 239, 228, 0.75);
  font-size: 15px;
  line-height: 1.5;
}

.primary-button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--lime-ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(166, 203, 65, 0.16);
  transition: transform 150ms ease, opacity 150ms ease;
}

.primary-button:active {
  transform: scale(0.98);
}

.primary-button:disabled {
  opacity: 0.34;
  cursor: default;
  box-shadow: none;
}

.primary-button svg {
  width: 20px;
  height: 20px;
}

.hero-rating {
  position: absolute;
  right: 17px;
  bottom: 36px;
  width: 88px;
  padding: 13px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 6px;
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 16px;
  background: rgba(17, 19, 15, 0.78);
  backdrop-filter: blur(12px);
}

.hero-rating span {
  color: var(--lime);
}

.hero-rating strong {
  font-size: 16px;
}

.hero-rating small {
  grid-column: 1 / -1;
  color: var(--cream-muted);
  font-size: 9px;
}

.hero-button {
  padding-right: 18px;
}

.content {
  padding: 25px 18px 8px;
}

.section-block + .section-block {
  margin-top: 38px;
}

.section-heading {
  margin-bottom: 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-heading h2 {
  margin: 5px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.text-button {
  padding: 6px 0;
  color: var(--cream-muted);
  font-size: 12px;
}

.muted-label {
  padding-bottom: 4px;
  color: #777b70;
  font-size: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-card {
  min-height: 150px;
  padding: 17px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgba(212, 255, 95, 0.11), transparent 48%),
    var(--ink-soft);
  cursor: pointer;
  text-align: left;
}

.service-card:nth-child(2) {
  background:
    radial-gradient(circle at 100% 0, rgba(235, 182, 107, 0.12), transparent 48%),
    var(--ink-soft);
}

.service-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel-light);
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 18px;
}

.service-card strong {
  margin-top: auto;
  font-size: 15px;
}

.service-card small {
  margin-top: 4px;
  color: var(--cream-muted);
  font-size: 11px;
}

.service-card .card-arrow {
  position: absolute;
  right: 13px;
  top: 13px;
  color: #666b5f;
  font-size: 18px;
}

.master-strip {
  margin-right: -18px;
  padding-right: 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 142px;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.master-strip::-webkit-scrollbar,
.date-strip::-webkit-scrollbar {
  display: none;
}

.master-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
}

.master-card-photo {
  height: 128px;
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.master-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% 20%;
  transform: scale(1.23);
  filter: saturate(0.72);
}

.master-card[data-master-id="max"] .master-card-photo img {
  object-position: 88% 25%;
  filter: grayscale(0.5) contrast(1.05);
}

.master-card[data-master-id="roman"] .master-card-photo img {
  object-position: 57% 22%;
  filter: sepia(0.16) brightness(0.85);
}

.master-card-copy {
  padding: 12px;
  display: block;
}

.master-card strong,
.master-card small {
  display: block;
}

.master-card strong {
  font-size: 14px;
}

.master-card small {
  margin-top: 3px;
  color: var(--cream-muted);
  font-size: 10px;
}

.location-card {
  margin-top: 38px;
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
}

.location-pin {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 14px;
  background: var(--lime);
  color: var(--lime-ink);
}

.location-card strong,
.location-card span {
  display: block;
}

.location-card strong {
  font-size: 13px;
}

.location-card span {
  margin-top: 4px;
  color: var(--cream-muted);
  font-size: 10px;
}

.round-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--panel-light);
  color: var(--cream-muted);
}

.bottom-nav {
  position: fixed;
  z-index: 25;
  bottom: 0;
  left: 50%;
  width: min(100%, 560px);
  min-height: calc(66px + var(--safe-bottom));
  padding: 8px 18px var(--safe-bottom);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
  background: rgba(17, 19, 15, 0.93);
  backdrop-filter: blur(18px);
}

.bottom-nav button {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #70756a;
}

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

.bottom-nav svg {
  width: 21px;
  height: 21px;
}

.bottom-nav span {
  font-size: 9px;
  font-weight: 700;
}

.booking-screen {
  padding-bottom: calc(104px + var(--safe-bottom));
}

.booking-head,
.page-head {
  padding: 28px 20px 18px;
}

.booking-head h1,
.page-head h1 {
  margin-top: 6px;
  font-size: 38px;
  line-height: 1;
}

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

.progress span {
  height: 3px;
  border-radius: 10px;
  background: var(--panel-light);
}

.progress span.is-current {
  background: var(--lime);
}

.booking-body {
  padding: 8px 18px 16px;
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
  animation: screen-in 220ms ease both;
}

.selection-list {
  display: grid;
  gap: 9px;
}

.service-option,
.master-option {
  width: 100%;
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ink-soft);
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.service-option.is-selected,
.master-option.is-selected {
  border-color: rgba(212, 255, 95, 0.68);
  background:
    radial-gradient(circle at 100% 0, rgba(212, 255, 95, 0.09), transparent 45%),
    var(--ink-soft);
}

.option-icon,
.avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background: var(--panel-light);
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 20px;
}

.service-option-copy strong,
.service-option-copy small,
.master-option-copy strong,
.master-option-copy small {
  display: block;
}

.service-option-copy strong,
.master-option-copy strong {
  font-size: 14px;
}

.service-option-copy small,
.master-option-copy small {
  margin-top: 4px;
  color: var(--cream-muted);
  font-size: 11px;
}

.service-option-price {
  text-align: right;
}

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

.service-option-price strong {
  font-size: 14px;
}

.service-option-price small {
  margin-top: 3px;
  color: #73776d;
  font-size: 10px;
}

.master-list {
  margin-top: 9px;
}

.avatar {
  border-radius: 50%;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 18%;
  transform: scale(1.45);
  filter: saturate(0.72);
}

.avatar-any {
  padding: 14px;
}

.option-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #42473e;
  border-radius: 50%;
  color: transparent;
  font-size: 13px;
}

.is-selected .option-check {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime-ink);
}

.date-strip {
  margin: 2px -18px 26px;
  padding: 0 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 67px;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.date-button {
  min-height: 84px;
  padding: 9px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--ink-soft);
  color: var(--cream);
  cursor: pointer;
}

.date-button.is-selected {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime-ink);
}

.date-button span {
  font-size: 10px;
  text-transform: uppercase;
}

.date-button strong {
  font-size: 22px;
}

.date-button small {
  font-size: 9px;
}

.time-title {
  margin-bottom: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.time-title strong {
  font-size: 15px;
}

.time-title span {
  color: #70756a;
  font-size: 10px;
}

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

.time-button {
  min-height: 47px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--ink-soft);
  color: var(--cream);
  cursor: pointer;
  font-weight: 700;
}

.time-button.is-selected {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--lime-ink);
}

.time-button:disabled {
  opacity: 0.25;
  text-decoration: line-through;
}

.time-note {
  margin: 22px 0 0;
  padding: 13px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  border-radius: 15px;
  background: rgba(244, 239, 228, 0.04);
  color: #8d9186;
  font-size: 10px;
  line-height: 1.5;
}

.time-note > span {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 1px solid #64685f;
  border-radius: 50%;
  color: var(--cream-muted);
  font-family: Georgia, serif;
}

.booking-footer {
  position: fixed;
  z-index: 24;
  bottom: 0;
  left: 50%;
  width: min(100%, 560px);
  min-height: calc(86px + var(--safe-bottom));
  padding: 13px 18px var(--safe-bottom);
  display: grid;
  grid-template-columns: 1fr minmax(170px, 1.35fr);
  align-items: center;
  gap: 13px;
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
  background: rgba(17, 19, 15, 0.96);
  backdrop-filter: blur(18px);
}

.booking-total span,
.booking-total strong {
  display: block;
}

.booking-total span {
  color: #7a7e74;
  font-size: 10px;
}

.booking-total strong {
  margin-top: 2px;
  font-size: 19px;
}

.booking-footer .primary-button {
  width: 100%;
}

.confirm-card {
  margin-bottom: 18px;
  padding: 23px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(212, 255, 95, 0.12), transparent 42%),
    var(--ink-soft);
}

.confirm-mark {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
}

.confirm-card h2 {
  margin: 6px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
}

.summary-list {
  margin: 0;
  display: grid;
  gap: 10px;
}

.summary-row {
  padding-top: 10px;
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.summary-row dt {
  color: #7f8378;
  font-size: 11px;
}

.summary-row dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.field {
  margin-top: 13px;
  display: block;
}

.field > span {
  margin: 0 0 7px 2px;
  display: block;
  color: var(--cream-muted);
  font-size: 11px;
}

.field input {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--ink-soft);
  color: var(--cream);
}

.field input::placeholder {
  color: #666a61;
}

.phone-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.phone-row button {
  padding: 0 14px;
  border: 1px solid rgba(212, 255, 95, 0.35);
  border-radius: 15px;
  background: rgba(212, 255, 95, 0.07);
  color: var(--lime);
  font-size: 11px;
  cursor: pointer;
}

.consent {
  margin-top: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  color: #8a8e83;
  font-size: 10px;
  line-height: 1.4;
}

.consent input {
  accent-color: var(--lime);
}

.form-error {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--danger);
  font-size: 11px;
}

.page-head p {
  margin: 10px 0 0;
  color: var(--cream-muted);
  font-size: 13px;
}

.appointments-content {
  padding-top: 4px;
}

.appointment-card {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
}

.appointment-accent {
  height: 4px;
  background: var(--lime);
}

.appointment-card-body {
  padding: 17px;
}

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

.appointment-date strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.appointment-date span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(212, 255, 95, 0.1);
  color: var(--lime);
  font-size: 9px;
  text-transform: uppercase;
}

.appointment-meta {
  margin-top: 13px;
  color: var(--cream-muted);
  font-size: 11px;
  line-height: 1.7;
}

.appointment-id {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: #64685f;
  font-size: 9px;
}

.empty-state {
  padding: 50px 24px;
  border: 1px dashed rgba(244, 239, 228, 0.15);
  border-radius: var(--radius-lg);
  color: var(--cream-muted);
  text-align: center;
}

.empty-state-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel);
  color: var(--lime);
  font-size: 23px;
}

.empty-state strong,
.empty-state span {
  display: block;
}

.empty-state strong {
  color: var(--cream);
}

.empty-state span {
  margin: 8px 0 18px;
  font-size: 11px;
  line-height: 1.5;
}

.success-screen {
  padding: calc(96px + var(--safe-top)) 22px calc(32px + var(--safe-bottom));
  text-align: center;
}

.success-visual {
  width: 116px;
  height: 116px;
  margin: 0 auto 28px;
  position: relative;
  display: grid;
  place-items: center;
}

.success-rings {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 255, 95, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 16px rgba(212, 255, 95, 0.035),
    0 0 60px rgba(212, 255, 95, 0.08);
  animation: success-pulse 1.7s ease-in-out infinite;
}

@keyframes success-pulse {
  50% { transform: scale(1.05); opacity: 0.7; }
}

.success-check {
  width: 64px;
  height: 64px;
  padding: 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
}

.success-screen h1 {
  margin-top: 8px;
  font-size: 43px;
  line-height: 0.98;
}

.success-screen > p {
  max-width: 330px;
  margin: 14px auto 20px;
  color: var(--cream-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ticket {
  max-width: 420px;
  margin: 0 auto 21px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  text-align: left;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
}

.ticket-row + .ticket-row {
  margin-top: 9px;
}

.ticket-row span {
  color: #7f8378;
}

.ticket-row strong {
  text-align: right;
}

.success-screen .primary-button {
  width: min(100%, 360px);
}

.success-secondary {
  margin-top: 10px;
  color: var(--lime);
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: calc(94px + var(--safe-bottom));
  max-width: min(88vw, 420px);
  padding: 11px 15px;
  transform: translate(-50%, 18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(41, 45, 38, 0.96);
  box-shadow: var(--shadow);
  color: var(--cream);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (min-width: 561px) {
  body {
    background: #090a08;
  }

  .app-shell {
    box-shadow: 0 0 0 1px rgba(244, 239, 228, 0.08), 0 0 90px rgba(0, 0, 0, 0.8);
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 470px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-rating {
    right: 13px;
  }

  .service-card {
    min-height: 138px;
  }

  .booking-footer {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

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