:root {
  --neo-theme-primary: #b19063;
  --neo-theme-secondary: #705b48;
  --neo-bg: color-mix(in srgb, var(--neo-theme-primary) 10%, #ffffff);
  --neo-surface: color-mix(in srgb, var(--neo-theme-primary) 4%, #ffffff);
  --neo-surface-strong: color-mix(in srgb, var(--neo-theme-primary) 12%, #ffffff);
  --neo-stroke: color-mix(in srgb, var(--neo-theme-secondary) 18%, transparent);
  --neo-text: color-mix(in srgb, var(--neo-theme-secondary) 62%, #111111);
  --neo-text-soft: color-mix(in srgb, var(--neo-theme-secondary) 46%, #6f6f6f);
  --neo-gold: var(--neo-theme-primary);
  --neo-cacao: var(--neo-theme-secondary);
  --neo-accent: var(--neo-theme-primary);
  --neo-button-text: #fffaf5;
  --neo-success: #5f7b68;
  --neo-warning: #8a6647;
  --neo-shadow: 0 18px 38px rgba(67, 50, 35, 0.08);
  --neo-radius: 8px;
  --neo-radius-small: 6px;
  --neo-max: 1180px;
  --neo-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --neo-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--neo-bg);
  color: var(--neo-text);
  font-family: var(--neo-sans);
  font-size: 16px;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  color: var(--neo-text);
  font-family: var(--neo-serif);
  font-weight: 600;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
  color: var(--neo-text-soft);
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--neo-surface) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--neo-text) 8%, transparent);
}

.site-header__inner,
.site-footer__inner,
.neo-page,
.neo-hero,
.neo-band {
  width: min(calc(100% - 32px), var(--neo-max));
  margin: 0 auto;
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

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

.site-brand__mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--neo-radius);
  background: linear-gradient(135deg, var(--neo-theme-primary) 0%, var(--neo-theme-secondary) 100%);
  color: var(--neo-button-text);
  font-family: var(--neo-serif);
  font-size: 18px;
  letter-spacing: 0;
  box-shadow: var(--neo-shadow);
}

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

.site-brand small {
  color: var(--neo-text-soft);
  font-size: 13px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--neo-text-soft);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.neo-page {
  padding: 48px 0 80px;
}

.neo-page__intro,
.neo-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.neo-page__intro h1,
.neo-section-heading h1 {
  font-size: clamp(2.2rem, 3vw, 3.8rem);
}

.neo-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--neo-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.neo-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 72px 0 36px;
  min-height: calc(100vh - 240px);
  align-items: center;
}

.neo-hero h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  max-width: 12ch;
}

.neo-hero__content p {
  max-width: 58ch;
  font-size: 1.05rem;
}

.neo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.neo-hero__media {
  display: flex;
  justify-content: flex-end;
}

.neo-image-frame {
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-shadow);
}

.neo-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.neo-hero-card,
.neo-surface {
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius);
  background: color-mix(in srgb, var(--neo-surface) 92%, transparent);
  box-shadow: var(--neo-shadow);
}

.neo-hero-card {
  padding: 28px;
  max-width: 420px;
}

.neo-hero-card ul {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--neo-text-soft);
}

.neo-band {
  padding: 24px 0 80px;
}

.neo-landing-hero {
  min-height: auto;
  padding-bottom: 24px;
}

.neo-landing-section {
  padding-top: 0;
}

.neo-landing-card,
.neo-landing-surface,
.neo-landing-plan,
.neo-landing-faq__item,
.neo-landing-cta__card {
  padding: 28px;
}

.neo-landing-card h3,
.neo-landing-plan h3,
.neo-landing-step h3 {
  margin-bottom: 10px;
}

.neo-landing-split {
  align-items: start;
}

.neo-landing-steps,
.neo-landing-feature-list,
.neo-landing-faq {
  display: grid;
  gap: 14px;
}

.neo-landing-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid color-mix(in srgb, var(--neo-text) 10%, transparent);
}

.neo-landing-step:first-child {
  padding-top: 0;
  border-top: 0;
}

.neo-landing-step > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--neo-theme-primary) 14%, transparent);
  color: var(--neo-text);
  font-family: var(--neo-serif);
  font-size: 1.1rem;
}

.neo-landing-feature-list__item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid color-mix(in srgb, var(--neo-text) 10%, transparent);
}

.neo-landing-feature-list__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.neo-landing-feature-list__item span {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--neo-theme-primary);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--neo-theme-primary) 16%, transparent);
}

.neo-landing-feature-list__item p {
  margin: 0;
}

.neo-landing-plan strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--neo-serif);
  font-size: 2rem;
}

.neo-landing-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--neo-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.neo-landing-faq__item summary::-webkit-details-marker {
  display: none;
}

.neo-landing-faq__item p {
  margin-top: 14px;
}

.neo-landing-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.neo-inline-list--wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.neo-client-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 24px;
}

.neo-client-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.neo-client-hero__lead {
  color: var(--neo-text);
  font-size: 1.1rem;
}

.neo-client-booking {
  padding-bottom: 40px;
}

.neo-booking-launch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.neo-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--neo-text-soft);
}

.neo-inline-list li {
  position: relative;
}

.neo-inline-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--neo-theme-primary) 54%, transparent);
  vertical-align: middle;
}

.neo-inline-list--hero {
  margin-top: 26px;
}

.neo-grid {
  display: grid;
  gap: 20px;
}

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

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

.neo-grid__full {
  grid-column: 1 / -1;
}

.neo-surface {
  padding: 28px;
}

.neo-page__content {
  max-width: 820px;
  margin-inline: auto;
}

.neo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--neo-radius-small);
  background: linear-gradient(135deg, var(--neo-theme-primary) 0%, var(--neo-theme-secondary) 100%);
  color: var(--neo-button-text);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 28px rgba(91, 70, 52, 0.16);
}

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

.neo-button--ghost {
  border-color: var(--neo-stroke);
  background: transparent;
  color: var(--neo-text);
  box-shadow: none;
}

.neo-button--small {
  min-height: 40px;
  padding-inline: 16px;
}

.neo-button.is-disabled,
.neo-button:disabled {
  opacity: 0.48;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
}

input[type="color"] {
  width: 100%;
  min-height: 48px;
  padding: 4px;
  border: 1px solid color-mix(in srgb, var(--neo-text) 18%, transparent);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
}

.neo-form {
  display: grid;
  gap: 20px;
}

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

.neo-form label > span {
  color: var(--neo-text);
  font-size: 0.92rem;
}

.neo-form input[type="text"],
.neo-form input[type="email"],
.neo-form input[type="tel"],
.neo-form input[type="number"],
.neo-form input[type="password"],
.neo-form input[type="file"],
.neo-form input[type="date"],
.neo-form input[type="time"],
.neo-form input[type="url"],
.neo-form select,
.neo-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid color-mix(in srgb, var(--neo-text) 18%, transparent);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
  color: var(--neo-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.neo-form textarea {
  min-height: 132px;
  resize: vertical;
}

.neo-form input:focus,
.neo-form textarea:focus {
  border-color: color-mix(in srgb, var(--neo-theme-primary) 64%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--neo-theme-primary) 12%, transparent);
}

.neo-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.neo-form__subheading {
  display: grid;
  gap: 4px;
  margin: 10px 0 4px;
}

.neo-form__subheading h3 {
  margin: 0;
  font-size: 1.08rem;
}

.neo-form__subheading p {
  margin: 0;
}

.neo-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.neo-checkbox--compact {
  justify-content: center;
}

.neo-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--neo-gold);
}

.neo-auth-box,
.neo-booking,
.neo-dashboard {
  display: grid;
  gap: 24px;
}

.neo-auth-note {
  padding: 18px;
  border-radius: var(--neo-radius-small);
  background: color-mix(in srgb, var(--neo-theme-primary) 10%, transparent);
}

.neo-auth-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--neo-text);
}

.neo-booking-auth {
  display: grid;
  gap: 20px;
}

.neo-booking__steps {
  display: inline-flex;
  gap: 10px;
}

.neo-booking__steps span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 95, 83, 0.12);
  color: var(--neo-text-soft);
  font-weight: 700;
}

.neo-booking__steps .is-active {
  background: var(--neo-gold);
  color: var(--neo-button-text);
}

.neo-booking-form {
  overflow: hidden;
}

.neo-booking-step {
  display: none;
  gap: 20px;
}

.neo-booking-step.is-active {
  display: grid;
}

.neo-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.neo-service-card,
.neo-slot-button {
  width: 100%;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius);
  background: var(--neo-surface);
  color: var(--neo-text);
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.neo-service-card:hover,
.neo-slot-button:hover,
.neo-service-card.is-selected,
.neo-slot-button.is-selected {
  border-color: color-mix(in srgb, var(--neo-theme-primary) 72%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(91, 70, 52, 0.1);
}

.neo-service-card strong,
.neo-slot-summary strong {
  color: var(--neo-text);
}

.neo-slot-summary {
  padding: 16px;
  border-radius: var(--neo-radius-small);
  background: color-mix(in srgb, var(--neo-theme-primary) 8%, transparent);
}

.neo-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.neo-slot-button {
  min-height: 56px;
  justify-content: center;
  text-align: center;
}

.neo-social-auth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--neo-radius-small);
  background: color-mix(in srgb, var(--neo-theme-primary) 8%, transparent);
}

.neo-social-auth--stacked {
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.neo-booking-account {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) auto;
  gap: 18px;
  align-items: start;
}

.neo-booking-account__meta,
.neo-booking-account__summary {
  display: grid;
  gap: 10px;
}

.neo-booking-account__meta div,
.neo-booking-account__summary div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
}

.neo-booking-account__meta span,
.neo-booking-account__summary span {
  font-size: 0.82rem;
  color: var(--neo-text-soft);
}

.neo-social-auth__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.neo-booking-auth__shell {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.neo-auth-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.neo-auth-choice .neo-button {
  width: 100%;
  justify-content: center;
}

.neo-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--neo-text-soft);
  font-size: 0.88rem;
}

.neo-auth-divider::before,
.neo-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: color-mix(in srgb, var(--neo-text) 10%, transparent);
}

.neo-auth-panel {
  display: grid;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--neo-text) 10%, transparent);
}

.neo-auth-panel[hidden] {
  display: none !important;
}

.neo-auth-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.neo-auth-panel__head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.neo-auth-panel__switch {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--neo-text-soft);
  text-decoration: underline;
}

.neo-booking-auth__shell .neo-grid--2 {
  grid-template-columns: 1fr;
}

.neo-booking-auth__shell .neo-form__actions .neo-button {
  width: 100%;
}

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

.neo-customer-account {
  display: grid;
  gap: 24px;
}

.neo-customer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 24px;
}

.neo-customer-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  height: max-content;
}

.neo-customer-sidebar__identity {
  display: grid;
  gap: 10px;
}

.neo-customer-avatar {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ead9c7 0%, #cfb18e 100%);
  color: var(--neo-button-text);
  font-family: var(--neo-serif);
  font-size: 1.6rem;
  box-shadow: var(--neo-shadow);
}

.neo-customer-nav {
  display: grid;
  gap: 8px;
}

.neo-customer-nav a {
  padding: 12px 14px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
  color: var(--neo-text-soft);
}

.neo-customer-nav a.is-active {
  border-color: color-mix(in srgb, var(--neo-theme-primary) 54%, transparent);
  background: color-mix(in srgb, var(--neo-theme-primary) 12%, transparent);
  color: var(--neo-text);
}

.neo-customer-content {
  display: grid;
  gap: 20px;
}

.neo-customer-subsection {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid color-mix(in srgb, var(--neo-text) 12%, transparent);
}

.site-account-menu {
  position: relative;
}

.site-account-menu > summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 7px 8px;
  border: 1px solid var(--neo-stroke);
  border-radius: 999px;
  background: color-mix(in srgb, var(--neo-surface) 92%, transparent);
  color: var(--neo-text);
  list-style: none;
  cursor: pointer;
}

.site-account-menu > summary::-webkit-details-marker {
  display: none;
}

.site-account-menu__avatar {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ead9c7 0%, #cfb18e 100%);
  color: var(--neo-button-text);
  font-family: var(--neo-serif);
  font-weight: 700;
}

.site-account-menu__label {
  font-size: 0.92rem;
  font-weight: 600;
}

.site-account-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius);
  background: color-mix(in srgb, var(--neo-surface) 98%, transparent);
  box-shadow: var(--neo-shadow);
}

.site-account-menu__identity {
  display: grid;
  gap: 4px;
}

.site-account-menu__identity small {
  color: var(--neo-text-soft);
}

.site-account-menu__links {
  display: grid;
  gap: 8px;
}

.site-account-menu__links a {
  padding: 10px 12px;
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
  border: 1px solid color-mix(in srgb, var(--neo-text) 10%, transparent);
  color: var(--neo-text);
}

.site-account-menu__logout {
  display: grid;
}

.neo-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 22px;
}

.neo-modal[hidden] {
  display: none !important;
}

.has-neo-modal {
  overflow: hidden;
}

.neo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(52, 40, 30, 0.48);
  backdrop-filter: blur(8px);
}

.neo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow: auto;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--neo-text) 14%, transparent);
  border-radius: var(--neo-radius);
  background: color-mix(in srgb, var(--neo-surface) 96%, transparent);
  box-shadow: 0 26px 60px rgba(38, 29, 21, 0.18);
}

.neo-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--neo-stroke);
  border-radius: 50%;
  background: color-mix(in srgb, var(--neo-surface) 94%, transparent);
  color: var(--neo-text);
  font-size: 1.6rem;
  line-height: 1;
  z-index: 2;
}

.neo-modal__content .neo-booking {
  width: 100%;
  padding: 0;
}

.neo-modal__content .neo-booking .neo-section-heading {
  margin-top: -12px;
}

.neo-modal__content .neo-booking-auth {
  gap: 16px;
}

.neo-booking--auth .neo-booking-auth {
  max-width: 620px;
  margin: 0 auto;
}

.neo-modal.is-auth-modal {
  padding: 16px;
}

.neo-modal.is-auth-modal .neo-modal__dialog {
  width: min(500px, calc(100vw - 28px));
  max-height: calc(100vh - 44px);
  padding: 10px;
  border-radius: 8px;
}

.neo-modal.is-auth-modal .neo-modal__dialog:has([data-auth-panel="login"].is-active) {
  overflow: visible;
}

.neo-modal.is-auth-modal .neo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  margin: 0;
  font-size: 1.35rem;
}

.neo-modal.is-auth-modal .neo-modal__content .neo-booking {
  max-width: 100%;
}

.neo-modal.is-auth-modal .neo-booking-auth {
  gap: 8px;
}

.neo-modal.is-auth-modal .neo-alert {
  padding: 8px 10px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.neo-modal.is-auth-modal .neo-alert--admin-session {
  display: none;
}

.neo-modal.is-auth-modal .neo-booking-auth__shell {
  max-width: none;
  gap: 12px;
  padding: 22px 22px 18px;
  border-radius: 8px;
  box-shadow: none;
}

.neo-modal.is-auth-modal .neo-booking-auth__shell > h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.neo-modal.is-auth-modal .neo-booking-auth__shell > p {
  display: none;
}

.neo-modal.is-auth-modal .neo-auth-panel {
  gap: 10px;
  padding-top: 0;
  border-top: 0;
}

.neo-modal.is-auth-modal .neo-social-auth {
  gap: 9px;
  padding: 10px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--neo-theme-primary) 6%, transparent);
}

.neo-modal.is-auth-modal .neo-social-auth p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.neo-modal.is-auth-modal .neo-social-auth__actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.neo-modal.is-auth-modal .neo-social-auth__actions .neo-button {
  min-height: 38px;
  width: 100%;
  padding-inline: 10px;
  justify-content: center;
  font-size: 0.9rem;
}

.neo-modal.is-auth-modal .neo-social-auth .neo-muted {
  display: none;
}

.neo-modal.is-auth-modal .neo-auth-divider {
  gap: 8px;
  font-size: 0.78rem;
}

.neo-modal.is-auth-modal .neo-form {
  gap: 9px;
}

.neo-modal.is-auth-modal .neo-form label {
  gap: 4px;
}

.neo-modal.is-auth-modal .neo-form label > span {
  font-size: 0.84rem;
}

.neo-modal.is-auth-modal .neo-form input[type="text"],
.neo-modal.is-auth-modal .neo-form input[type="email"],
.neo-modal.is-auth-modal .neo-form input[type="tel"],
.neo-modal.is-auth-modal .neo-form input[type="password"] {
  min-height: 40px;
  padding: 9px 11px;
}

.neo-modal.is-auth-modal .neo-form__actions {
  margin-top: 0;
}

.neo-modal.is-auth-modal .neo-form__actions .neo-button {
  min-height: 42px;
}

.neo-modal.is-auth-modal .neo-auth-forgot {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.neo-modal.is-auth-modal .neo-auth-choice {
  padding-top: 0;
}

.neo-modal.is-auth-modal .neo-auth-choice .neo-button {
  min-height: 40px;
  background: transparent;
}

.neo-alert {
  padding: 14px 16px;
  border-radius: var(--neo-radius-small);
  border: 1px solid transparent;
}

.neo-alert--success {
  color: #45614f;
  background: rgba(95, 123, 104, 0.1);
  border-color: rgba(95, 123, 104, 0.14);
}

.neo-alert--warning {
  color: #7f5e40;
  background: rgba(138, 102, 71, 0.12);
  border-color: rgba(138, 102, 71, 0.18);
}

.neo-dashboard__switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.neo-dashboard__header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.neo-auth-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.neo-auth-inline__label {
  color: var(--neo-text-soft);
  font-size: 0.9rem;
}

.neo-dashboard__switcher button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--neo-radius-small);
  border: 1px solid var(--neo-stroke);
  background: color-mix(in srgb, var(--neo-surface) 88%, transparent);
  color: var(--neo-text-soft);
}

.neo-dashboard__switcher button.is-active {
  border-color: color-mix(in srgb, var(--neo-theme-primary) 54%, transparent);
  background: color-mix(in srgb, var(--neo-theme-primary) 14%, transparent);
  color: var(--neo-text);
}

.neo-dashboard__panel {
  display: none;
}

.neo-dashboard__panel.is-active {
  display: block;
}

.neo-profile-preview {
  display: grid;
  gap: 18px;
}

.neo-profile-preview__card {
  overflow: hidden;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius);
  background: var(--neo-surface);
  box-shadow: var(--neo-shadow);
}

.neo-profile-preview__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.neo-profile-preview__body {
  padding: 22px;
}

.neo-service-list,
.neo-booking-list {
  display: grid;
  gap: 14px;
}

.neo-service-item,
.neo-booking-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
}

.neo-service-item__thumb {
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
  overflow: hidden;
  border-radius: var(--neo-radius-small);
  background: color-mix(in srgb, var(--neo-theme-primary) 8%, #ffffff);
}

.neo-service-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.neo-service-item__body {
  display: grid;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.neo-service-item__meta,
.neo-booking-card__meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.neo-booking-card__identity {
  display: grid;
  gap: 8px;
}

.neo-booking-card__details {
  display: grid;
  gap: 6px;
  color: var(--neo-text-soft);
}

.neo-booking-card__details small {
  color: var(--neo-text);
}

.neo-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding-inline: 10px;
  border-radius: 999px;
  background: rgba(111, 95, 83, 0.12);
  color: var(--neo-text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.neo-status--active {
  background: rgba(95, 123, 104, 0.12);
  color: var(--neo-success);
}

.neo-agenda-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  margin-bottom: 18px;
}

.neo-agenda-hero__primary,
.neo-agenda-hero__aside {
  display: grid;
  gap: 14px;
}

.neo-agenda-hero__primary {
  padding: 22px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius);
  background: var(--neo-surface);
  box-shadow: var(--neo-shadow);
}

.neo-studio-cover {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 74vh;
  margin: 18px auto 0;
  padding: 56px 0 44px;
  width: min(calc(100% - 32px), var(--neo-max));
  border-radius: var(--neo-radius);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: var(--neo-shadow);
}

.neo-studio-cover__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 31, 24, 0.15) 0%, rgba(42, 31, 24, 0.62) 100%),
    linear-gradient(90deg, rgba(42, 31, 24, 0.58) 0%, rgba(42, 31, 24, 0.14) 70%);
}

.neo-studio-cover__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 780px);
  margin-left: 32px;
}

.neo-studio-cover .neo-eyebrow,
.neo-studio-cover h1,
.neo-studio-cover p,
.neo-studio-cover strong,
.neo-studio-cover span {
  color: var(--neo-button-text);
}

.neo-studio-cover .neo-button--ghost {
  border-color: color-mix(in srgb, var(--neo-button-text) 32%, transparent);
  color: var(--neo-button-text);
}

.neo-studio-cover h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
}

.neo-studio-cover__lead {
  font-size: 1.18rem;
  max-width: 32ch;
}

.neo-studio-statbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.neo-studio-statbar article {
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--neo-button-text) 24%, transparent);
  border-radius: var(--neo-radius-small);
  background: color-mix(in srgb, var(--neo-button-text) 8%, transparent);
  backdrop-filter: blur(6px);
}

.neo-studio-statbar strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--neo-serif);
  font-size: 1.45rem;
  line-height: 1;
}

.neo-studio-nav-band {
  width: min(calc(100% - 32px), var(--neo-max));
  margin: 0 auto;
  padding: 18px 0 0;
}

.neo-studio-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.neo-studio-nav a,
.neo-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--neo-stroke);
  background: color-mix(in srgb, var(--neo-surface) 92%, transparent);
  color: var(--neo-text-soft);
}

.neo-studio-layout {
  width: min(calc(100% - 32px), var(--neo-max));
  margin: 0 auto;
  padding: 28px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.74fr);
  gap: 28px;
}

.neo-studio-layout__main,
.neo-studio-layout__aside {
  display: grid;
  gap: 24px;
}

.neo-studio-story,
.neo-studio-services,
.neo-aside-card {
  padding: 28px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius);
  background: color-mix(in srgb, var(--neo-surface) 90%, transparent);
  box-shadow: var(--neo-shadow);
}

.neo-studio-story__copy p:last-child,
.neo-section-copy {
  max-width: 60ch;
}

.neo-image-frame--story {
  min-height: 320px;
}

.neo-image-frame--story img {
  min-height: 320px;
}

.neo-service-showcase {
  display: grid;
  gap: 16px;
}

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

.neo-service-showcase__item {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
  overflow: hidden;
}

.neo-service-showcase__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--neo-radius-small);
  background: color-mix(in srgb, var(--neo-theme-primary) 8%, #ffffff);
}

.neo-service-showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.neo-service-showcase__content {
  display: grid;
  gap: 14px;
  height: 100%;
}

.neo-service-showcase__head,
.neo-service-showcase__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.neo-service-showcase__head strong {
  font-family: var(--neo-serif);
  font-size: 1.35rem;
  white-space: nowrap;
}

.neo-service-showcase__head p {
  margin: 8px 0 0;
}

.neo-service-showcase__footer {
  align-items: center;
  margin-top: 14px;
  margin-top: auto;
}

.neo-service-showcase__footer span {
  color: var(--neo-text-soft);
}

.neo-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.neo-preview-details,
.neo-preview-list,
.neo-hours-list,
.neo-contact-stack {
  display: grid;
  gap: 14px;
}

.neo-preview-list,
.neo-hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.neo-preview-list li,
.neo-hours-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--neo-text) 10%, transparent);
}

.neo-preview-list li:last-child,
.neo-hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.neo-hours-list span {
  display: grid;
  gap: 3px;
  color: var(--neo-text-soft);
}

.neo-hours-list small {
  color: var(--neo-text-soft);
}

.neo-contact-stack a,
.neo-contact-stack div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
}

.neo-contact-stack strong {
  color: var(--neo-text);
}

.neo-contact-stack span {
  color: var(--neo-text-soft);
}

.neo-service-card small {
  color: var(--neo-text-soft);
}

.neo-service-item p {
  margin-bottom: 8px;
}

.neo-service-highlight h2 {
  margin-bottom: 10px;
}

.neo-agenda-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px 16px;
  margin-bottom: 22px;
}

.neo-agenda-tools label {
  min-width: 220px;
}

.neo-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.neo-kpi-card {
  padding: 18px 20px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
}

.neo-kpi-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--neo-text-soft);
}

.neo-kpi-card strong {
  font-family: var(--neo-serif);
  font-size: 2rem;
  line-height: 1;
}

.neo-schedule-table {
  display: grid;
  gap: 10px;
}

.neo-schedule-table__head,
.neo-schedule-table__row {
  display: grid;
  grid-template-columns: 1.2fr 72px repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.neo-schedule-table__head {
  color: var(--neo-text-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.neo-schedule-table__row {
  padding: 14px;
  border: 1px solid var(--neo-stroke);
  border-radius: var(--neo-radius-small);
  background: var(--neo-surface);
}

.neo-week-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.neo-week-calendar__day {
  min-height: 260px;
  padding: 14px;
  border-radius: var(--neo-radius-small);
  border: 1px solid var(--neo-stroke);
  background: var(--neo-surface);
}

.neo-week-calendar__header {
  margin-bottom: 12px;
  color: var(--neo-text);
  font-weight: 700;
}

.neo-week-calendar__body {
  display: grid;
  gap: 10px;
}

.neo-calendar-card {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: var(--neo-radius-small);
  background: color-mix(in srgb, var(--neo-theme-primary) 11%, transparent);
}

.neo-muted {
  color: var(--neo-text-soft);
}

.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--neo-text) 8%, transparent);
  padding-bottom: 32px;
}

@media (max-width: 1080px) {
  .neo-hero,
  .neo-client-hero,
  .neo-grid--2,
  .neo-grid--3 {
    grid-template-columns: 1fr;
  }

  .neo-landing-cta__card,
  .neo-landing-step {
    grid-template-columns: 1fr;
  }

  .neo-studio-layout {
    grid-template-columns: 1fr;
  }

  .neo-kpi-grid {
    grid-template-columns: 1fr;
  }

  .neo-booking-account,
  .neo-agenda-hero,
  .neo-customer-shell {
    grid-template-columns: 1fr;
  }

  .neo-week-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header__inner,
  .site-footer__inner,
  .neo-page__intro,
  .neo-section-heading,
  .neo-dashboard__header-actions,
  .neo-auth-inline,
  .neo-social-auth,
  .neo-social-auth__actions,
  .neo-booking-launch,
  .neo-auth-choice,
  .neo-service-showcase__head,
  .neo-service-showcase__footer,
  .neo-service-item,
  .neo-booking-card {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    display: none;
  }

  .site-header__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .neo-service-showcase--gallery {
    grid-template-columns: 1fr;
  }

  .neo-service-item__thumb {
    width: 100%;
    height: auto;
    flex-basis: auto;
    aspect-ratio: 16 / 10;
  }

  .site-account-menu {
    width: 100%;
  }

  .site-account-menu > summary {
    width: 100%;
    justify-content: center;
  }

  .site-account-menu__dropdown {
    width: min(100vw - 32px, 320px);
    right: 0;
  }

  .neo-schedule-table__head {
    display: none;
  }

  .neo-schedule-table__row {
    grid-template-columns: 1fr 1fr;
  }

  .neo-week-calendar {
    grid-template-columns: 1fr;
  }

  .neo-booking__steps {
    align-self: flex-start;
  }

  .neo-image-frame,
  .neo-image-frame img {
    min-height: 360px;
  }

  .neo-studio-cover {
    min-height: 62vh;
    padding: 36px 0 30px;
  }

  .neo-studio-cover__inner {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .neo-studio-cover h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .neo-studio-cover__lead {
    font-size: 1rem;
  }

  .neo-studio-statbar {
    grid-template-columns: 1fr;
  }

  .neo-studio-nav {
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  .neo-studio-story,
  .neo-studio-services,
  .neo-aside-card,
  .neo-landing-card,
  .neo-landing-surface,
  .neo-landing-plan,
  .neo-landing-faq__item,
  .neo-landing-cta__card {
    padding: 20px;
  }

  .neo-modal {
    padding: 10px;
  }

  .neo-modal__dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 14px;
  }

  .neo-modal__content .neo-booking .neo-section-heading h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .neo-auth-panel__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .neo-customer-sidebar {
    position: static;
  }
}

/* Neo Beauty SaaS - ajustes mobile e recuperacao de senha */
.neo-auth-forgot { margin: 10px 0 0; text-align: center; }
.neo-auth-forgot .neo-auth-panel__switch,
.neo-reset-request > summary {
  cursor: pointer;
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.neo-reset-request { margin-top: 18px; }
.neo-reset-request .neo-form { margin-top: 14px; }
.neo-reset-box { margin-bottom: 22px; }

@media (max-width: 782px) {
  .neo-shell,
  .neo-container,
  .neo-dashboard,
  .neo-booking,
  .neo-booking-auth { width: 100%; max-width: 100%; padding-left: 14px; padding-right: 14px; }
  .neo-grid,
  .neo-grid--2,
  .neo-grid--3,
  .neo-dashboard-grid,
  .neo-profile-grid,
  .neo-booking-grid { display: grid; grid-template-columns: 1fr !important; gap: 14px; }
  .neo-surface,
  .neo-card,
  .neo-booking-auth__shell { border-radius: 18px; padding: 18px; }
  .neo-section-heading { gap: 14px; align-items: flex-start; flex-direction: column; }
  .neo-section-heading h1,
  .neo-hero h1 { font-size: clamp(2.1rem, 12vw, 3.4rem); line-height: .95; }
  .neo-form input,
  .neo-form select,
  .neo-form textarea { width: 100%; min-height: 46px; font-size: 16px; }
  .neo-form__actions,
  .neo-auth-choice,
  .neo-social-auth__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .neo-button,
  .neo-button--ghost { width: 100%; justify-content: center; min-height: 46px; }
  .neo-tabs,
  .neo-dashboard-tabs,
  .neo-panel-tabs { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .neo-tabs > *,
  .neo-dashboard-tabs > *,
  .neo-panel-tabs > * { flex: 0 0 auto; }
  .neo-table-wrap,
  .neo-list-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .neo-public-hero,
  .neo-hero-card { min-height: auto; border-radius: 20px; }
}

@media (max-width: 520px) {
  .neo-surface,
  .neo-card,
  .neo-booking-auth__shell { padding: 16px; }
  .neo-section-heading h1,
  .neo-hero h1 { font-size: clamp(1.9rem, 13vw, 2.8rem); }
  .neo-auth-panel__head { align-items: flex-start; flex-direction: column; gap: 8px; }
}

/* Agenda de trabalho - cards premium */
.neo-schedule-builder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.neo-schedule-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--neo-theme-secondary) 12%, transparent);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--neo-theme-primary) 5%, #fff) 100%);
  box-shadow: 0 18px 42px rgba(67, 50, 35, 0.06);
  transition: border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}

.neo-schedule-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--neo-theme-primary);
  opacity: .9;
}

.neo-schedule-card.is-inactive {
  opacity: .72;
  background: color-mix(in srgb, var(--neo-text-soft) 4%, #fff);
}

.neo-schedule-card.is-inactive::before {
  background: color-mix(in srgb, var(--neo-text-soft) 45%, transparent);
}

.neo-schedule-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.neo-schedule-card__header strong {
  display: block;
  color: var(--neo-text);
  font-family: var(--neo-serif);
  font-size: 1.2rem;
  line-height: 1.1;
}

.neo-schedule-card__header small {
  display: block;
  margin-top: 4px;
  color: var(--neo-text-soft);
  font-size: .88rem;
}

.neo-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.neo-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.neo-switch > span {
  position: relative;
  width: 48px;
  height: 28px;
  flex: 0 0 48px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--neo-text-soft) 24%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--neo-text-soft) 18%, transparent);
  transition: background .2s ease;
}

.neo-switch > span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.16);
  transition: transform .2s ease;
}

.neo-switch input:checked + span {
  background: var(--neo-theme-primary);
}

.neo-switch input:checked + span::after {
  transform: translateX(20px);
}

.neo-switch em {
  color: var(--neo-text-soft);
  font-size: .82rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.neo-schedule-card__body,
.neo-schedule-break__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.neo-schedule-break__fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.neo-schedule-field {
  display: grid;
  gap: 7px;
}

.neo-schedule-field span {
  color: var(--neo-text-soft);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.neo-schedule-field input,
.neo-schedule-field select {
  min-height: 48px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--neo-theme-secondary) 14%, transparent);
  background: #fff;
  color: var(--neo-text);
  padding: 0 13px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.neo-schedule-field input:focus,
.neo-schedule-field select:focus {
  border-color: color-mix(in srgb, var(--neo-theme-primary) 72%, #fff);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--neo-theme-primary) 14%, transparent);
}

.neo-schedule-break {
  padding: 14px;
  border: 1px dashed color-mix(in srgb, var(--neo-theme-secondary) 18%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--neo-theme-primary) 4%, #fff);
}

.neo-schedule-break__fields {
  display: none;
}

.neo-schedule-card.has-break .neo-schedule-break__fields {
  display: grid;
}

.neo-checkbox--inline {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 0;
  color: var(--neo-text);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .neo-schedule-builder {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .neo-schedule-card {
    padding: 16px;
    border-radius: 16px;
  }

  .neo-schedule-card__header,
  .neo-schedule-card__body,
  .neo-schedule-break__fields {
    grid-template-columns: 1fr;
  }

  .neo-schedule-card__header {
    align-items: flex-start;
  }

  .neo-switch {
    width: 100%;
    justify-content: space-between;
    padding-top: 4px;
  }
}

.neo-checkbox-grid,
.neo-staff-public-grid {
  display: grid;
  gap: 0.75rem;
}

.neo-checkbox-grid {
  margin-top: 0.75rem;
}

.neo-staff-public-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 1rem;
}

.neo-staff-choice {
  border: 1px solid rgba(120, 95, 70, 0.18);
  background: var(--neo-surface, #fff);
  border-radius: 18px;
  padding: 0.85rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.neo-staff-choice.is-selected,
.neo-staff-choice:hover {
  border-color: var(--neo-gold, #b19063);
  box-shadow: 0 12px 28px rgba(80, 55, 35, 0.12);
}

.neo-staff-choice img,
.neo-staff-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}

.neo-staff-card .neo-booking-card__identity {
  gap: 0.35rem;
}

.neo-booking-card__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
