:root {
  --salon-bg: #131313;
  --salon-text: #e5e2e1;
  --salon-muted: #a8a4a3;
  --salon-accent: #caf300;
  --salon-accent-text: #131313;
  --salon-border: rgba(229, 226, 225, 0.12);
  --salon-font: "Hanken Grotesk", "Inter", system-ui, sans-serif;
  --salon-mono: "Space Mono", ui-monospace, monospace;
  --salon-drawer-width: clamp(420px, 36vw, 480px);
}

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

.salon-body {
  margin: 0;
  min-height: 100vh;
  background: var(--salon-bg);
  color: var(--salon-text);
  font-family: var(--salon-font);
  line-height: 1.5;
}

.salon-body.salon-drawer-open {
  overflow: hidden;
}

.salon-flash {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #2a2a2a;
  border: 1px solid var(--salon-border);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.button--accent {
  background: var(--salon-accent);
  color: var(--salon-accent-text);
}

.button--accent:hover {
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  color: var(--salon-text);
  border-color: var(--salon-border);
}

.button--small {
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
}

.salon-page {
  min-height: 100vh;
}

.salon-page--chat-only {
  min-height: 100dvh;
}

.salon-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(19, 19, 19, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--salon-border);
}

.salon-nav__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.salon-nav__brand {
  font-weight: 700;
  color: var(--salon-text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.salon-nav__nexora {
  color: var(--salon-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.salon-nav__nexora:hover { color: var(--salon-text); }

.salon-nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
}

.salon-nav__links a,
.salon-nav__locale a {
  color: var(--salon-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.salon-nav__links a:hover,
.salon-nav__locale a:hover {
  color: var(--salon-text);
}

.salon-nav__locale a.is-active {
  color: var(--salon-accent);
}

.salon-nav__cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--salon-accent);
  background: transparent;
  color: var(--salon-accent);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.salon-nav__locale {
  display: flex;
  gap: 0.75rem;
  margin-left: auto;
}

.salon-layout__locale {
  position: fixed;
  top: 1rem;
  right: 5rem;
  z-index: 30;
}

.salon-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 100vh;
  padding-top: 4.5rem;
}

.salon-hero__media {
  min-height: 22rem;
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.35), rgba(19, 19, 19, 0.85)),
    url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1200&q=80") center / cover no-repeat;
}

.salon-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem clamp(1.25rem, 4vw, 4rem);
}

.salon-hero__eyebrow,
.salon-section__eyebrow,
.chat-drawer__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--salon-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--salon-accent);
}

.salon-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
}

.salon-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: var(--salon-muted);
  font-size: 1.05rem;
}

.salon-section {
  padding: 4.5rem 1.25rem;
}

.salon-section--alt {
  background: #181818;
}

.salon-section__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.salon-section__header h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.salon-services {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.salon-services__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--salon-border);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
}

.salon-services__item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.salon-services__meta {
  margin: 0;
  color: var(--salon-muted);
  font-size: 0.9rem;
}

.salon-services__price {
  font-family: var(--salon-mono);
  color: var(--salon-accent);
}

.salon-team {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 1rem;
}

.salon-team__card {
  padding: 1.25rem;
  border: 1px solid var(--salon-border);
  border-radius: 0.75rem;
  text-align: center;
}

.salon-team__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--salon-accent);
  color: var(--salon-accent-text);
  font-weight: 700;
}

.salon-team__card h3 {
  margin: 0;
  font-size: 1rem;
}

.salon-about__text {
  max-width: 40rem;
  color: var(--salon-muted);
}

.salon-about__details {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.salon-about__details dt {
  font-family: var(--salon-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--salon-muted);
}

.salon-about__details dd {
  margin: 0.15rem 0 0;
}

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

.salon-section__cta {
  margin-top: 0.5rem;
}

.salon-launcher {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: var(--salon-accent);
  color: var(--salon-accent-text);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(202, 243, 0, 0.25);
}

.chat-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.55);
}

.chat-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: var(--salon-drawer-width);
  max-width: 100%;
  height: 100dvh;
  max-height: 100vh;
  overflow: hidden;
  background: #1a1a1a;
  border-left: 1px solid var(--salon-border);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

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

.chat-drawer__header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--salon-border);
}

.chat-drawer__title {
  margin: 0.25rem 0;
  font-size: 1.35rem;
}

.chat-drawer__subtitle {
  margin: 0;
  color: var(--salon-muted);
  font-size: 0.9rem;
}


.chat-drawer__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--salon-muted);
  font-size: 0.85rem;
}

.chat-drawer__status::before {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--salon-accent);
  box-shadow: 0 0 0.55rem rgba(202, 243, 0, 0.55);
}

.salon-launcher__icon {
  margin-left: 0.35rem;
  font-size: 0.95rem;
  line-height: 1;
}

.chat-drawer__toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-drawer__close {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--salon-border);
  border-radius: 50%;
  background: transparent;
  color: var(--salon-text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.chat-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem 1.25rem;
}

.booking-chat {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.booking-chat > turbo-frame {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.booking-chat__messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0 1.5rem;
  align-content: start;
}

.booking-chat__message {
  max-width: 90%;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  background: #252525;
  overflow-wrap: anywhere;
}

.booking-chat__message--customer {
  justify-self: end;
  background: #2f3318;
  border: 1px solid rgba(202, 243, 0, 0.25);
}

.booking-chat__message-author {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  color: var(--salon-muted);
}

.booking-chat__message-content p {
  margin: 0.25rem 0 0;
}

.booking-chat__form {
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--salon-border);
}

.booking-chat__completed {
  flex: 0 0 auto;
  margin-top: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(202, 243, 0, 0.28);
  background: rgba(202, 243, 0, 0.08);
  color: var(--salon-text);
  font-size: 0.9rem;
}

.booking-chat__form textarea {
  width: 100%;
  resize: vertical;
  min-height: 4.5rem;
  padding: 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid var(--salon-border);
  background: #131313;
  color: var(--salon-text);
  font: inherit;
}

.booking-chat__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.65rem;
}

.booking-chat__status {
  font-size: 0.85rem;
  color: var(--salon-muted);
}

.booking-chat__send {
  background: var(--salon-accent);
  color: var(--salon-accent-text);
  border: none;
}

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

.salon-chat-alt {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 10;
  margin: 0;
  max-width: 18rem;
  color: var(--salon-muted);
  font-size: 0.9rem;
}

.salon-chat-alt a {
  color: var(--salon-accent);
}

@media (max-width: 900px) {
  .salon-hero {
    grid-template-columns: 1fr;
  }

  .salon-hero__media {
    min-height: 16rem;
  }

  .salon-nav__locale {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .chat-drawer {
    width: 100%;
    max-width: none;
    height: 100dvh;
  }

  .salon-nav__links {
    display: none;
  }
}

.booking-identity {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
}

.booking-identity__intro h3 {
  margin: 0.35rem 0 0.65rem;
  font-size: 1.4rem;
}

.booking-identity__intro p:last-child,
.booking-identity__privacy {
  color: var(--salon-muted);
}

.booking-identity__google {
  display: flex;
  min-height: 44px;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.booking-identity__google > div,
.booking-identity__google iframe {
  max-width: 100%;
}

.booking-identity__google-fallback {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid #747775;
  border-radius: 4px;
  background: #fff;
  color: #1f1f1f;
  font-weight: 600;
}

.booking-identity__google-fallback strong {
  color: #4285f4;
  font-size: 1.15rem;
}

.booking-identity__credential-form {
  display: none;
}

.booking-identity__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  color: var(--salon-muted);
  font-size: 0.85rem;
}

.booking-identity__divider span {
  height: 1px;
  background: var(--salon-border);
}

.booking-identity__guest,
.booking-identity form {
  width: 100%;
}

.booking-identity__guest {
  justify-content: center;
}

.booking-identity__error {
  margin: 0;
  color: #ffb4ab;
  font-size: 0.85rem;
}

.booking-identity__privacy {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
}

.chat-drawer__toolbar form {
  flex-shrink: 0;
}
