/* deployment-build:d9f769e83521b2be7a99 */
:root {
  --ink: #f6efe8;
  --muted: #cbb8b4;
  --bg: #140e12;
  --bg-soft: #1c1418;
  --rose: #e4b7b4;
  --rose-deep: #8a4a52;
  --line: rgba(246, 239, 232, 0.16);
  --serif: Palatino, "Palatino Linotype", "Iowan Old Style", Georgia, serif;
  --sans: "Segoe UI", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 80% -10%, rgba(228, 183, 180, 0.16), transparent 28rem),
    var(--bg);
}

body.salon-open { overflow: hidden; }

button,
input { font: inherit; }

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button { color: inherit; }
a { color: inherit; }

img {
  display: block;
  width: 100%;
}

.salon {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 18px 18px 0;
}

.hero {
  display: grid;
  gap: 22px;
}

.hero-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero-photo {
  aspect-ratio: 793 / 927;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-copy {
  display: grid;
  gap: 10px;
  padding: 4px 4px 8px;
}

.kicker,
.section-kicker {
  margin: 0;
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.name-line {
  margin: 0;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.04em;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(34px, 9vw, 52px);
  line-height: 0.95;
}

.bio,
.section-head p,
.note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.knock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 360px);
  min-height: 58px;
  margin-top: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: #140e12;
  background: var(--rose);
  cursor: pointer;
  font-size: 15px;
  font-weight: 760;
}

.knock .arrow {
  font-size: 18px;
  line-height: 1;
}

.is-waiting .knock .arrow {
  animation: busy-pulse 0.8s ease-in-out infinite alternate;
}

@keyframes busy-pulse {
  to { transform: translateX(3px); }
}

.gate-feedback {
  display: grid;
  gap: 5px;
  width: min(100%, 360px);
}

.cta-micro:empty,
.notice:empty { display: none; }

.cta-micro,
.notice {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.is-waiting .notice:not(:empty)::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border: 1.5px solid rgba(228, 183, 180, 0.3);
  border-top-color: var(--rose);
  border-radius: 50%;
  content: "";
  animation: notice-spin 0.75s linear infinite;
  vertical-align: -1px;
}

@keyframes notice-spin {
  to { transform: rotate(360deg); }
}

.haze-box {
  display: grid;
  height: 0;
  min-height: 0;
  padding: 0;
  place-items: center;
  overflow: hidden;
}

.haze-box.is-hazing {
  width: 100%;
  height: auto;
  min-height: 68px;
  padding: 4px 0;
  overflow: visible;
}

.lately,
.elsewhere,
.note {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.section-head {
  display: grid;
  gap: 8px;
}

.lately-grid {
  display: grid;
  gap: 12px;
}

.lately-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--bg-soft);
}

.lately-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
}

.lately-grid figcaption {
  padding: 10px 14px 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.elsewhere-row {
  display: grid;
  gap: 10px;
}

.elsewhere-row a,
.out-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  background: rgba(246, 239, 232, 0.04);
}

.note {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(228, 183, 180, 0.06);
}

.footer {
  display: grid;
  gap: 12px;
  margin-top: 42px;
  padding: 8px 4px 6px;
}

.footer small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.out-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.out-links a {
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 8px 20px calc(18px + env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 10px;
}

.legal-links button {
  min-height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.legal-links button:focus-visible,
.knock:focus-visible,
.elsewhere-row a:focus-visible,
.out-links a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.runtime-only,
.crossing-screen {
  display: none;
}

html.is-crossing,
html.is-crossing body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

html.is-crossing body {
  display: block;
  padding: 0;
}

html.is-crossing body > :not(.crossing-screen):not(noscript) {
  display: none !important;
}

html.is-crossing .crossing-screen {
  position: fixed;
  z-index: 2147483647;
  inset: 0;
  display: grid;
  width: 100vw;
  height: 100dvh;
  min-height: 100%;
  padding: 24px;
  place-items: center;
  overflow: hidden;
  color: #f6efe8;
  background: radial-gradient(circle at 50% 42%, #3a2428 0, #140e12 52%);
  font: 15px/1.4 Palatino, Georgia, serif;
  text-align: center;
  touch-action: none;
}

.crossing-card {
  display: grid;
  width: min(100%, 340px);
  gap: 8px;
  justify-items: center;
}

.crossing-mark {
  color: var(--rose);
  font: 30px/1 Palatino, Georgia, serif;
  animation: crossing-mark 1.1s ease-in-out infinite alternate;
}

.crossing-screen strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@keyframes crossing-mark {
  to {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

html.is-crossing .crossing-card .haze-box.is-hazing {
  width: 100%;
  padding-top: 10px;
}

.sheet {
  width: min(calc(100% - 20px), 464px);
  max-height: min(78svh, 608px);
  margin: auto auto 0;
  padding: 38px 22px calc(24px + env(safe-area-inset-bottom));
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  color: var(--ink);
  background: rgba(20, 14, 18, 0.98);
  box-shadow: 0 -16px 64px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.sheet::backdrop {
  background: rgba(8, 6, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sheet-handle {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 45px;
  height: 4px;
  border-radius: 99px;
  background: rgba(246, 239, 232, 0.22);
  transform: translateX(-50%);
}

.sheet-close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  color: var(--ink);
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 21px;
}

.sheet h2 {
  margin: 0 0 13px;
  color: var(--ink);
  font: 600 24px/1.05 var(--serif);
  letter-spacing: -0.02em;
}

.sheet p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sheet button:focus-visible,
.sheet a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.check-sheet { text-align: center; }

.check-mark {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border: 1px solid rgba(228, 183, 180, 0.28);
  border-radius: 50%;
  place-items: center;
  color: var(--rose);
  background: #24181c;
  font-size: 18px;
  font-weight: 800;
}

.check-confirm {
  width: 100%;
  min-height: 54px;
  margin-top: 19px;
  padding: 13px 16px;
  border: 0;
  border-radius: 999px;
  color: #140e12;
  background: var(--rose);
  cursor: pointer;
  font-weight: 760;
}

.check-confirm:disabled,
.escape-actions button:disabled,
.android-browser-choices button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.dusk-box { min-height: 0; }

.captcha-disclosure { font-size: 10px !important; }
.captcha-disclosure a { color: var(--muted); }

.escape-sheet { text-align: left; }

.escape-sheet.is-launching {
  text-align: center;
}

.escape-sheet.is-launching .sheet-close,
.escape-sheet.is-launching .native-exit-cue,
.escape-sheet.is-launching .escape-guide,
.escape-sheet.is-launching .android-browser-choices,
.escape-sheet.is-launching .escape-actions,
.escape-sheet.is-launching .escape-status,
.escape-sheet.is-launching .escape-footnote {
  display: none;
}

.escape-sheet.is-launching .escape-mark {
  margin-inline: auto;
  animation: escape-launch-pulse .8s ease-in-out infinite alternate;
}

.escape-sheet.is-launching h2 { margin-bottom: 5px; }

.escape-sheet.is-launching [data-leave-copy] { margin-top: 0; }

@keyframes escape-launch-pulse {
  to { opacity: .7; transform: translateY(-2px) scale(1.04); }
}

.native-exit-cue {
  position: fixed;
  z-index: 2;
  right: max(10px, env(safe-area-inset-right));
  bottom: calc(6px + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: auto 54px;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.55));
}

.native-exit-cue[hidden] { display: none; }

.native-exit-cue span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #140e12;
  background: var(--rose);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .01em;
}

.native-exit-cue svg {
  width: 54px;
  height: 42px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.escape-sheet[data-recovery-profile="snapchat-ios"] {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

.escape-sheet[data-recovery-profile="snapchat-ios"] .escape-guide,
.escape-sheet[data-recovery-profile="tiktok-ios"] .escape-guide {
  border-color: rgba(228, 183, 180, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.escape-sheet[data-recovery-profile="snapchat-ios"] .escape-guide strong,
.escape-sheet[data-recovery-profile="tiktok-ios"] .escape-guide strong {
  font-size: 15px;
}

.escape-sheet[data-recovery-profile="snapchat-ios"] .escape-copy-link,
.escape-sheet[data-recovery-profile="tiktok-ios"] .escape-copy-link {
  min-height: 38px;
  border-color: transparent;
  color: var(--muted);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.escape-sheet[data-recovery-profile="snapchat-ios"] .escape-status,
.escape-sheet[data-recovery-profile="snapchat-ios"] .escape-footnote,
.escape-sheet[data-recovery-profile="tiktok-ios"] .escape-status,
.escape-sheet[data-recovery-profile="tiktok-ios"] .escape-footnote {
  display: none;
}

.escape-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 0 16px;
  border: 1px solid rgba(228, 183, 180, 0.35);
  border-radius: 16px;
  place-items: center;
  color: #140e12;
  background: var(--rose);
}

.escape-mark svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.escape-guide {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
}

.menu-dots {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 11px;
  background: var(--rose);
}

.escape-mark.is-centered { margin-inline: auto; }

.menu-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #140e12;
}

.menu-dots.is-browser-icon span { display: none; }
.menu-dots.is-browser-icon::before {
  content: "\2197";
  color: #140e12;
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
}

.escape-guide strong,
.escape-guide small { display: block; }

.escape-guide strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}

.escape-guide small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.android-browser-choices { margin-top: 14px; }
.android-browser-choices[hidden] { display: none; }

.android-browser-choices > span {
  display: block;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
}

.android-browser-choices > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.android-browser-choices button {
  min-height: 43px;
  padding: 8px 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 760;
}

.escape-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}

.escape-actions.is-android,
.escape-actions.is-single {
  grid-template-columns: 1fr;
}

.escape-actions button {
  min-height: 51px;
  padding: 11px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
}

.escape-retry {
  border: 0;
  color: #140e12;
  background: var(--rose);
}

.escape-copy-link {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--bg-soft);
}

.escape-status {
  min-height: 18px;
  margin-top: 11px !important;
  color: var(--rose) !important;
  font-size: 11px !important;
  text-align: center;
}

.escape-footnote {
  margin-top: 4px !important;
  color: var(--muted) !important;
  font-size: 10px !important;
  text-align: center;
}

.article-dialog {
  width: min(calc(100% - 24px), 520px);
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  background: var(--bg);
}

.article-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.noscript {
  position: fixed;
  z-index: 2147483647;
  inset: 0;
  display: grid;
  padding: 32px;
  place-items: center;
  color: #fff;
  background: var(--bg);
  text-align: center;
}

@media (min-width: 720px) {
  .lately-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .elsewhere-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .knock {
    width: 100%;
    min-height: 58px;
  }

  .knock,
  .elsewhere-row a,
  .out-links a,
  .legal-links button {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crossing-mark,
  .is-waiting .knock .arrow {
    animation: none;
  }
}
