:root {
  color-scheme: dark;
  --ink: #fffaf1;
  --muted: #d7c6b5;
  --bg: #080604;
  --panel: #17110d;
  --panel-2: #201713;
  --gold: #d8a94e;
  --gold-soft: #ffe3a0;
  --rose: #b77a73;
  --teal: #2f7772;
  --line: rgba(255, 250, 241, 0.14);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(47, 119, 114, 0.26), transparent 30rem),
    linear-gradient(180deg, #100a07 0%, var(--bg) 42%, #0f0b09 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  background: rgba(8, 6, 4, 0.72);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center top;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(8, 6, 4, 0.88) 0%, rgba(8, 6, 4, 0.28) 22%, transparent 42%),
    linear-gradient(180deg, transparent 78%, rgba(8, 6, 4, 0.3) 100%);
}

.language-switcher {
  position: absolute;
  z-index: 3;
  top: calc(14px + env(safe-area-inset-top));
  right: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 360px;
  margin-left: auto;
  padding: 3px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 6px;
  background: rgba(8, 6, 4, 0.78);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.language-switcher button {
  min-width: 0;
  min-height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: #130d08;
  background: var(--gold-soft);
}

.language-switcher button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 24px 22px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  position: absolute;
  z-index: 2;
  top: calc(72px + env(safe-area-inset-top));
  right: 18px;
  left: 18px;
  max-width: none;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 8.2vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

h2 {
  margin-bottom: 12px;
  font-size: 1.38rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero__copy {
  max-width: 30rem;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.primary-link,
.secondary-link,
.link-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary-link {
  width: 100%;
  max-width: 360px;
  color: #130d08;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 42%, #9c6b2f);
  box-shadow: 0 14px 34px rgba(216, 169, 78, 0.22);
}

.pulse {
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 34px rgba(216, 169, 78, 0.22);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(216, 169, 78, 0.34);
  }
}

.profile,
.quick-links,
.services,
.gallery,
.about,
.reviews,
.booking,
footer {
  padding-inline: 20px;
}

.profile {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 10px;
}

.avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 227, 160, 0.42);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--panel-2), rgba(183, 122, 115, 0.36));
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.profile h2 {
  margin-bottom: 2px;
}

.profile p,
.service-row p,
.about p,
.booking p,
footer {
  color: var(--muted);
  line-height: 1.55;
}

.quick-links {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  padding-bottom: 28px;
}

.link-button {
  width: 100%;
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.07);
  padding: 0 18px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.link-button:hover,
.link-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 227, 160, 0.62);
  background: rgba(255, 250, 241, 0.1);
}

.link-button--gold {
  color: #130d08;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 48%, #9c6b2f);
}

.link-button__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 6, 4, 0.22);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.scramble {
  min-height: 88px;
  display: grid;
  place-items: center;
  border-block: 1px solid var(--line);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 8vw, 2.4rem);
  text-align: center;
}

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

.services,
.gallery,
.about,
.reviews,
.booking {
  padding-top: 34px;
  padding-bottom: 12px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.service-row b {
  color: var(--ink);
}

.service-row--compact {
  align-items: center;
}

.service-row strong {
  white-space: nowrap;
  color: var(--gold-soft);
  font-size: 1.12rem;
}

.regular-price {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.regular-price s {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  text-decoration-color: var(--rose);
  text-decoration-thickness: 2px;
}

.service-row__action {
  min-width: 92px;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.book-service,
.form-submit,
.booking-trigger,
.dialog-close {
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.book-service {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 6px;
  color: #130d08;
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.book-service:hover,
.book-service:focus-visible {
  background: var(--gold-soft);
}

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

.work-card {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.work-card--featured {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 5;
}

.work-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.work-card--featured img {
  object-position: 50% 48%;
}

.work-card--brows img {
  object-position: 52% 50%;
}

.work-card--healed img {
  object-position: 57% 50%;
}

.work-card--full-pmu img {
  object-position: 50% 46%;
}

.work-card--tightline img {
  object-position: 54% 46%;
}

.work-card:hover img {
  transform: scale(1.025);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 6, 4, 0.82) 100%);
  pointer-events: none;
}

.work-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  font-size: 0.76rem;
  font-weight: 800;
}

.about {
  background:
    linear-gradient(135deg, rgba(47, 119, 114, 0.2), transparent),
    var(--panel);
}

blockquote {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.06);
  color: var(--ink);
  line-height: 1.6;
}

cite {
  display: block;
  margin-top: 12px;
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 800;
}

.booking {
  margin-top: 22px;
  background: linear-gradient(135deg, rgba(216, 169, 78, 0.16), rgba(183, 122, 115, 0.14));
}

.booking-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.booking-trigger {
  padding-inline: 20px;
}

.secondary-link {
  min-width: 92px;
  padding-inline: 18px;
  border: 1px solid var(--line);
  background: rgba(8, 6, 4, 0.22);
}

.booking-dialog {
  width: min(calc(100% - 28px), 480px);
  max-height: calc(100dvh - 28px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
  overscroll-behavior: contain;
}

.intake-dialog {
  width: min(calc(100% - 28px), 620px);
}

.booking-dialog::backdrop {
  background: rgba(3, 2, 2, 0.82);
  backdrop-filter: blur(5px);
}

.booking-dialog__header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(23, 17, 13, 0.97);
}

.booking-dialog__header h2 {
  margin: 0;
}

.dialog-language-switcher {
  display: grid;
  grid-template-columns: repeat(3, 32px);
  gap: 2px;
  margin-left: auto;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(8, 6, 4, 0.52);
}

.dialog-language-switcher button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  cursor: pointer;
}

.dialog-language-switcher button.is-active {
  color: #130d08;
  background: var(--gold-soft);
}

.dialog-language-switcher button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.dialog-close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.08);
  font-size: 1.65rem;
  line-height: 1;
}

.booking-form {
  display: grid;
  gap: 15px;
  padding: 20px;
}

.intake-form {
  gap: 18px;
}

.intake-progress {
  display: grid;
  gap: 9px;
}

.intake-progress > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.intake-progress strong {
  color: var(--gold-soft);
}

.intake-progress progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 4px;
  background: #0e0a08;
  color: var(--gold);
}

.intake-progress progress::-webkit-progress-bar {
  background: #0e0a08;
}

.intake-progress progress::-webkit-progress-value {
  background: var(--gold);
}

.intake-progress progress::-moz-progress-bar {
  background: var(--gold);
}

.intake-page[hidden] {
  display: none;
}

.intake-page--single-question {
  min-height: min(52dvh, 440px);
  display: grid;
  align-content: center;
}

.intake-page--single-question .question-item {
  border-top: 0;
}

.intake-page--single-question .question-item legend {
  font-size: 1.08rem;
  line-height: 1.5;
}

.intake-page--single-question .answer-option span {
  min-height: 58px;
  font-size: 1rem;
}

.intake-profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.intake-profile .wide {
  grid-column: 1 / -1;
}

.question-list,
.consent-list {
  display: grid;
}

.question-item {
  min-width: 0;
  margin: 0;
  padding: 16px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.question-item legend {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.question-item legend span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 169, 78, 0.14);
  color: var(--gold-soft);
  font-size: 0.76rem;
}

.answer-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-left: 38px;
}

.answer-option {
  display: block;
  cursor: pointer;
}

.booking-form .answer-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.answer-option span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0e0a08;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.answer-option input:focus-visible + span {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 169, 78, 0.14);
}

.answer-option input:checked + span {
  border-color: var(--gold);
  background: var(--gold);
  color: #130d08;
}

.question-item--missing {
  margin-inline: -10px;
  padding-inline: 10px;
  border-color: #e8897c;
  background: rgba(232, 137, 124, 0.07);
}

.question-detail {
  margin: 12px 0 0 38px;
}

.intake-intro {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.consent-item {
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 500;
  line-height: 1.52;
  cursor: pointer;
}

.booking-form .consent-item input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.consent-item b {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(216, 169, 78, 0.14);
  color: var(--gold-soft);
  font-size: 0.72rem;
}

.photo-permission {
  margin-top: 10px;
}

.signature-copy {
  margin-bottom: 18px;
  padding: 16px;
  border-left: 3px solid var(--gold);
  background: rgba(216, 169, 78, 0.08);
}

.signature-copy h3 {
  margin-bottom: 8px;
}

.signature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.signature-page {
  display: grid;
  gap: 15px;
}

.intake-navigation {
  position: sticky;
  bottom: -20px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin: 0 -20px -20px;
  padding: 14px 20px 20px;
  border-top: 1px solid var(--line);
  background: rgba(23, 17, 13, 0.97);
}

.intake-navigation--auto {
  grid-template-columns: 1fr;
}

.intake-back {
  min-width: 92px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0e0a08;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.intake-next,
.intake-pay {
  width: 100%;
}

.intake-next[hidden],
.intake-pay[hidden] {
  display: none;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  padding: 11px 12px;
  background: #0e0a08;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.booking-form textarea {
  min-height: 88px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 169, 78, 0.14);
}

.time-picker {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.time-picker legend {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.time-slots {
  min-height: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.time-slot {
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0e0a08;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
}

.time-slot:hover,
.time-slot:focus-visible {
  border-color: var(--gold);
}

.time-slot--selected {
  border-color: var(--gold);
  background: var(--gold);
  color: #130d08;
}

.time-slots__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 12px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

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

.optional {
  color: var(--muted);
  font-weight: 500;
}

.booking-form .consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.booking-form .consent input {
  min-height: 0;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.payment-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.payment-summary strong {
  color: var(--gold-soft);
  text-align: right;
}

.form-submit {
  min-height: 52px;
  border-radius: 6px;
  color: #130d08;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, #9c6b2f);
  font-weight: 800;
}

.secure-payment {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

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

.payment-choice .form-submit {
  flex: 1;
  min-width: 160px;
}

.form-submit--secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
}

.deposit-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status--success {
  color: #a8dfb2;
}

.form-status--error {
  color: #ffb3a9;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  padding-bottom: 34px;
  font-size: 0.88rem;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 700px) {
  body {
    padding: 28px 0;
  }

  .page-shell {
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
  }
}

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

@media (max-width: 390px) {
  .language-switcher {
    right: 10px;
    left: 10px;
  }

  .language-switcher button {
    padding-inline: 5px;
    font-size: 0.67rem;
  }

  .booking-dialog__header {
    gap: 8px;
  }

  .booking-dialog__header > div:first-child {
    min-width: 0;
  }

  .dialog-language-switcher {
    grid-template-columns: repeat(3, 28px);
  }

  .dialog-language-switcher button {
    width: 28px;
  }

  .service-row {
    display: grid;
  }

  .service-row__action {
    width: 100%;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-items: start;
  }

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

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

  .intake-profile {
    grid-template-columns: 1fr;
  }

  .intake-profile .wide {
    grid-column: auto;
  }

  .answer-toggle {
    margin-left: 0;
  }

  .question-detail {
    margin-left: 0;
  }

  .intake-navigation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .booking-dialog,
  .intake-dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .booking-dialog__header {
    padding-top: calc(16px + env(safe-area-inset-top));
  }

  .dialog-close {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .intake-navigation {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .intake-back,
  .intake-next,
  .intake-pay,
  .form-submit {
    min-height: 54px;
  }
}
