:root {
  --font-ui: "VT323", "Courier New", Courier, monospace;
  --font-body: "IBM Plex Mono", "Courier New", Courier, monospace;
  font-family: var(--font-body);
  color: #f7f5e9;
  background: #087c80;
  font-synthesis: none;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
::selection { background: #145e69; color: #f6d887; }

body { margin: 0; min-width: 280px; }
button, a { -webkit-tap-highlight-color: transparent; }

.desktop {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: radial-gradient(circle at 76% 37%, #25a4a0 0, #118b8c 27%, #087c80 60%, #056f75 100%);
}

.desktop__flash {
  position: absolute;
  inset: 0;
  z-index: 15000;
  background: #f3fff0;
  pointer-events: none;
  opacity: 0;
}

.desktop__flash.is-on { opacity: 1; }
.desktop__flash.is-fading {
  opacity: 0;
  transition: opacity 480ms ease;
}

.desktop__heading {
  position: absolute;
  z-index: 2;
  top: clamp(40px, 8vh, 100px);
  left: clamp(24px, 6vw, 96px);
  font-family: var(--font-ui);
  text-shadow: 2px 3px 0 #095d64;
}

.desktop__eyebrow {
  font-size: 18px;
  letter-spacing: .34em;
}

.desktop__heading h1 {
  max-width: 720px;
  margin: 4px 0 6px;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .04em;
}

.desktop__icons {
  display: grid;
  grid-template-columns: repeat(3, 104px);
  gap: 12px clamp(16px, 3vw, 36px);
  position: absolute;
  z-index: 2;
  right: clamp(24px, 6vw, 96px);
  bottom: 85px;
}

.shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 104px;
  padding: 10px 4px;
  border: 1px solid transparent;
  background: transparent;
  color: #fffdf3;
  cursor: pointer;
  text-decoration: none;
  font: 18px/1.1 var(--font-ui);
  text-shadow: 1px 2px 0 #07515a;
}

.shortcut:hover, .shortcut:focus-visible { background: #ffffff1c; border-color: #d8f6e680; outline: none; }
.shortcut:active { transform: translateY(2px); }
.shortcut__icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  background: #f3eedb;
  border-top: 2px solid #fdfcf4;
  border-left: 2px solid #fdfcf4;
  border-right: 2px solid #8d8c7c;
  border-bottom: 2px solid #8d8c7c;
  box-shadow: 4px 4px 0 #07585d;
}
.shortcut__icon svg { display: block; width: 42px; height: 42px; }
.shortcut__icon--patreon { color: #ff6d49; }
.shortcut__icon--x { background: #252d35; color: #fffdf3; box-shadow: 4px 4px 0 #07585d; }
.shortcut__icon--forms { background: #f6d887; }
.shortcut__icon--portfolio { background: #c8e3dd; }
.shortcut__icon--contacts { background: #e8e4d5; }
.shortcut__icon--models { background: #d7c4a3; }
.shortcut__label { padding: 3px 8px; background: #064c5570; }

.window {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: min(480px, calc(100vw - 28px));
  min-height: 330px;
  background: #dcded0;
  border-top: 2px solid #fefcf0;
  border-left: 2px solid #fefcf0;
  border-right: 2px solid #5a6a62;
  border-bottom: 2px solid #5a6a62;
  box-shadow: 2px 2px 0 #184148, 6px 6px 0 #0a5960, 13px 16px 0 #074c5270;
  color: #203c41;
  transform: translate(-50%, -50%);
}
.window.is-opening { animation: window-bounce 560ms cubic-bezier(0.22, 1.35, 0.36, 1); }
@keyframes window-bounce {
  0% { translate: 0 -22px; }
  32% { translate: 0 11px; }
  54% { translate: 0 -7px; }
  74% { translate: 0 3px; }
  100% { translate: 0 0; }
}
.window[hidden], .desktop__note[hidden] { display: none; }
.window__titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  padding: 4px 6px 4px 10px;
  background: linear-gradient(90deg, #145e69, #0e4a52);
  color: #fffdf3;
  cursor: grab;
  touch-action: none;
  user-select: none;
  font-family: var(--font-ui);
}
.window__titlebar:active { cursor: grabbing; }
.window__title { display: flex; align-items: center; gap: 10px; font-size: 20px; }
.window__tiny-icon { display: grid; place-items: center; width: 21px; height: 21px; background: #f6d887; border: 1px solid #fff9d8; color: #164650; font-size: 17px; }
.window__close {
  width: 27px;
  height: 27px;
  padding: 0;
  background: #dcded0;
  border-top: 2px solid #fefcf0;
  border-left: 2px solid #fefcf0;
  border-right: 2px solid #8b9991;
  border-bottom: 2px solid #8b9991;
  color: #193d45;
  cursor: pointer;
  font: bold 22px/18px Arial, sans-serif;
}
.window__close:hover, .window__close:focus-visible { background: #f6d887; outline: 2px solid #fffdf3; outline-offset: 2px; }

.window--forms { display: flex; flex-direction: column; width: min(760px, calc(100vw - 28px)); height: min(740px, calc(100dvh - 78px)); min-height: 0; overflow: hidden; }
.window--forms .window__titlebar { flex: none; }
.window--about { width: min(420px, calc(100vw - 28px)); min-height: 0; }
.about { padding: 22px 24px 26px; background: #f8f6e9; border: 2px solid #8c9c91; border-top: 0; }
.about__eyebrow { margin: 0 0 6px; color: #5d7772; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.about h2 { margin: 0 0 12px; font-family: var(--font-ui); font-size: 32px; font-weight: 400; letter-spacing: .03em; }
.about p { margin: 0 0 10px; color: #3e5b59; font-size: 13px; line-height: 1.6; }
.about p:last-child { margin-bottom: 0; }

.commission { min-height: 0; flex: 1; overflow: auto; overscroll-behavior: contain; border: 2px solid #8c9c91; border-top: 0; background: #f8f6e9; }
.commission form { display: flex; min-height: calc(100% - 56px); flex-direction: column; }
.commission__progress { position: sticky; z-index: 2; top: 0; padding: 10px 12px; border-bottom: 2px solid #becbc1; background: #dcded0; }
.commission__progress ol { display: flex; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: step; border: 2px solid #8c9c91; background: #c5cbbd; }
.commission__progress li {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 4px;
  border-right: 1px solid #8c9c91;
  color: #314f51;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  counter-increment: step;
}
.commission__progress li:last-child { border-right: 0; }
.commission__progress li::before { content: counter(step) "."; color: inherit; font-size: 12px; }
.commission__progress li[aria-current="step"] { background: #145e69; color: #fffdf3; }
.commission__progress li.is-complete { background: #c5ddd6; color: #145e69; }
.commission__step { flex: 1; min-width: 0; }
.commission__intro { padding: 28px 30px 24px; border-bottom: 2px solid #d2d8c8; background: #e8e4d5; }
.commission__eyebrow { color: #5d7772; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.commission__intro h2 { margin: 8px 0 14px; color: #203c41; font-family: var(--font-ui); font-size: 34px; font-weight: 400; letter-spacing: .02em; }
.commission__intro p { margin: 0 0 12px; color: #3e5b59; font-size: 13px; line-height: 1.65; }
.commission__intro p:last-of-type { margin-bottom: 0; }
.commission__rules { margin-top: 19px; border: 1px solid #b6beb1; background: #f8f6e9; }
.commission__rules summary { padding: 12px 14px; cursor: pointer; color: #285963; font-size: 12px; font-weight: 700; }
.commission__rules summary:focus-visible { outline: 2px solid #145e69; outline-offset: 2px; }
.commission__rules ul { margin: 0; padding: 0 20px 15px 34px; color: #3e5b59; font-size: 12px; line-height: 1.7; }
.form-section { min-width: 0; margin: 0; padding: 25px 30px 27px; border: 0; border-bottom: 2px solid #d2d8c8; }
.form-section legend, .form-section h3 { margin: 0 0 13px; padding: 0; color: #1e5f66; font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.form-section__hint { margin: 0 0 12px; color: #5c706d; font-size: 12px; line-height: 1.5; }
.form-options { display: grid; gap: 9px; }
.form-options--inline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-options label { display: flex; align-items: flex-start; gap: 9px; min-width: 0; padding: 11px 12px; border: 1px solid #b6beb1; background: #fffdf3; color: #314f51; cursor: pointer; font-size: 12px; line-height: 1.4; }
.form-options label:has(input:checked) { border-color: #168c8d; background: #e2f1e8; box-shadow: inset 3px 0 0 #168c8d; }
.form-options label:focus-within { outline: 2px solid #145e69; outline-offset: 2px; }
.form-options input, .form-confirm input { flex: none; margin: 1px 0 0; accent-color: #168c8d; }
.form-options:not(.form-options--cards) label > span:last-child { margin-left: auto; white-space: nowrap; color: #1e7173; font-weight: 700; }
.form-options--cards label { align-items: center; gap: 12px; }
.form-options--cards label span { display: grid; gap: 3px; }
.form-options--cards em { color: #168c8d; font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: .12em; }
.form-options--cards strong { font-size: 13px; }
.form-options--cards small { color: #617672; font-size: 11px; line-height: 1.45; }
.form-options__glyph { flex: none; width: 42px; height: 34px; }
.form-field { display: grid; gap: 9px; margin-top: 19px; color: #314f51; font-size: 12px; font-weight: 700; }
.form-field__optional { color: #6d817b; font-size: 11px; font-weight: 400; }
.form-field input, .form-field textarea { width: 100%; padding: 11px 12px; border: 1px solid #96aaa1; border-radius: 0; outline: none; background: #fffdf3; color: #203c41; font: 13px/1.5 var(--font-body); }
.form-field input:focus, .form-field textarea:focus { border-color: #168c8d; box-shadow: 0 0 0 2px #168c8d55; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-subsection { min-width: 0; margin: 0 0 18px; padding: 0; border: 0; }
.form-subsection legend { margin-bottom: 10px; color: #3e5b59; font-size: 12px; font-weight: 700; }
.form-subsection:last-child { margin-bottom: 0; }
.form-confirm { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; padding: 13px; border: 1px solid #b6beb1; background: #e8e4d5; color: #314f51; cursor: pointer; font-size: 12px; font-weight: 700; line-height: 1.5; }
.commission__footer { flex: none; border-top: 2px solid #becbc1; background: #dcded0; }
.commission__estimate-row { display: flex; justify-content: flex-end; padding: 8px 30px 6px; border-bottom: 1px solid #d2d8c8; text-align: right; }
.commission__estimate { display: grid; grid-template-columns: auto auto; max-width: 100%; align-items: baseline; justify-content: end; column-gap: 15px; row-gap: 2px; color: #40615f; }
.commission__estimate span { font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.commission__estimate strong { color: #145e69; font-family: var(--font-ui); font-size: 28px; font-weight: 400; letter-spacing: .02em; }
.commission__estimate small { grid-column: 1 / -1; font-size: 10px; line-height: 1.35; }
.commission__navigation { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 56px; padding: 7px 30px; }
.commission__navigation > span { color: #5c706d; font-size: 11px; font-weight: 700; }
.commission__navigation #commission-next { margin-left: auto; }
.commission__review-button, .commission__back-button, .commission__email-button, .commission__copy-button {
  display: inline-grid;
  place-items: center;
  min-height: 41px;
  padding: 9px 14px;
  border-top: 2px solid #fffdf3;
  border-left: 2px solid #fffdf3;
  border-right: 2px solid #8b9991;
  border-bottom: 2px solid #8b9991;
  box-shadow: 3px 3px 0 #78918b;
  background: #f6d887;
  color: #244951;
  cursor: pointer;
  font: 700 12px var(--font-body);
  text-align: center;
  text-decoration: none;
}
.commission__back-button { background: #dcded0; }
.commission__review-button:hover, .commission__back-button:hover, .commission__email-button:hover, .commission__copy-button:hover, .commission__review-button:focus-visible, .commission__back-button:focus-visible, .commission__email-button:focus-visible, .commission__copy-button:focus-visible { outline: 2px solid #145e69; outline-offset: 2px; }
.commission__review { padding: 26px 30px 32px; background: #f8f6e9; }
.commission__review h3 { margin: 0 0 10px; color: #1e5f66; font-family: var(--font-ui); font-size: 28px; font-weight: 400; }
.commission__review p { margin: 0 0 14px; color: #4d6867; font-size: 12px; line-height: 1.5; }
.receipt { margin: 0 0 8px; border: 1px solid #b6beb1; background: #fffdf3; }
.receipt__row { display: grid; grid-template-columns: 11rem minmax(0, 1fr); gap: 8px 12px; margin: 0; padding: 9px 12px; border-top: 1px solid #e0e6dc; }
.receipt__row:first-child { border-top: 0; }
.receipt__row dt { margin: 0; color: #5c706d; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.receipt__row dd { margin: 0; color: #203c41; font-size: 13px; overflow-wrap: anywhere; }
.receipt__row--block { grid-template-columns: 1fr; }
.receipt__row--block dd { white-space: pre-wrap; }
#thanks-id { background: #e8e4d5; cursor: default; }
#review-thanks { padding-top: 4px; }
.commission__review-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.commission__review-actions #submit-request { background: #f6d887; }
.commission__review-button:disabled { opacity: .65; cursor: default; }
.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.commission__copy-button { background: #dcded0; }
.commission__email-button[aria-disabled="true"] { background: #dcded0; opacity: .7; cursor: not-allowed; }
.commission__review .commission__delivery-note { margin: 13px 0 0; }

.window--portfolio { display: flex; flex-direction: column; width: min(560px, calc(100vw - 28px)); height: min(520px, calc(100dvh - 78px)); min-height: 0; overflow: hidden; }
.window--portfolio .window__titlebar, .window--viewer .window__titlebar { flex: none; }
.window--viewer { display: flex; flex-direction: column; width: min(520px, calc(100vw - 28px)); min-height: 0; }
.explorer { display: flex; min-height: 0; flex: 1; flex-direction: column; border: 2px solid #8c9c91; border-top: 0; background: #f8f6e9; }
.explorer__toolbar { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-bottom: 1px solid #b6beb1; background: #e8e4d5; color: #4d6867; font-size: 10px; font-weight: 700; }
.explorer__toolbar #explorer-count { margin-left: auto; }
.explorer__back {
  min-height: 24px;
  padding: 2px 8px;
  border-top: 2px solid #fffdf3;
  border-left: 2px solid #fffdf3;
  border-right: 2px solid #8b9991;
  border-bottom: 2px solid #8b9991;
  background: #dcded0;
  color: #244951;
  cursor: pointer;
  font: 700 11px var(--font-body);
}
.explorer__back:hover, .explorer__back:focus-visible { outline: 2px solid #145e69; outline-offset: 1px; }
.explorer__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 6px; min-height: 0; flex: 1; align-content: start; padding: 14px; overflow: auto; }
.explorer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 8px 4px;
  border: 1px solid transparent;
  background: transparent;
  color: #203c41;
  cursor: pointer;
  font: 16px/1.15 var(--font-ui);
  text-align: center;
}
.explorer__item svg { width: 42px; height: 42px; }
.explorer__thumb {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: #203c41;
  border-top: 1px solid #fefcf0;
  border-left: 1px solid #fefcf0;
  border-right: 1px solid #8b9991;
  border-bottom: 1px solid #8b9991;
}
.explorer__item[aria-selected="true"] .explorer__thumb { outline: 1px solid #f6d887; }
.explorer__item span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.explorer__item:hover, .explorer__item:focus-visible { background: #ffffff7a; border-color: #145e6980; outline: none; }
.explorer__item[aria-selected="true"] { background: #145e69; border-color: #0e4a52; color: #fffdf3; }
.explorer__empty { display: flex; min-height: 0; flex: 1; flex-direction: column; align-items: center; justify-content: center; padding: 24px 20px; text-align: center; }
.explorer__empty[hidden] { display: none !important; }
.explorer__empty svg { width: 66px; height: 66px; margin-bottom: 11px; }
.explorer__empty h2 { margin: 0 0 8px; font-family: var(--font-ui); font-size: 28px; font-weight: 400; letter-spacing: .02em; }
.explorer__empty p { margin: 0; color: #506866; font-size: 13px; line-height: 1.5; }
.explorer__status { padding: 8px 12px; border-top: 1px solid #b6beb1; background: #e8e4d5; color: #53766c; font-size: 10px; }
.viewer { display: flex; flex-direction: column; border: 2px solid #8c9c91; border-top: 0; background: #11181a; }
.viewer__stage { display: grid; place-items: center; min-height: 240px; max-height: min(52vh, 420px); padding: 12px; }
.viewer__stage img, .viewer__stage video { max-width: 100%; max-height: min(48vh, 380px); background: #000; }
.viewer__caption { margin: 0; padding: 8px 12px; border-top: 1px solid #2a3a3c; background: #e8e4d5; color: #3e5b59; font-size: 12px; line-height: 1.45; }
.viewer__caption:empty { display: none; }

.window--book { display: flex; flex-direction: column; width: min(520px, calc(100vw - 28px)); height: min(500px, calc(100dvh - 78px)); min-height: 0; overflow: hidden; }
.window--book .window__titlebar { flex: none; }
.book { display: flex; min-height: 0; flex: 1; flex-direction: column; border: 2px solid #8c9c91; border-top: 0; background: #f8f6e9; }
.book__toolbar { display: flex; justify-content: space-between; gap: 12px; padding: 8px 12px; border-bottom: 1px solid #b6beb1; background: #e8e4d5; color: #4d6867; font-size: 10px; font-weight: 700; }
.book__notice { margin: 0; padding: 10px 14px; border-bottom: 1px solid #d2d8c8; background: #e2f1e8; color: #1e5f66; font-size: 12px; line-height: 1.45; }
.book__list { min-height: 0; flex: 1; overflow: auto; padding: 12px; display: grid; gap: 10px; align-content: start; }
.book__heading {
  margin: 6px 0 0;
  padding: 4px 2px 0;
  color: #145e69;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .08em;
}
.book__heading:first-child { margin-top: 0; }
.book__subheading {
  margin: 2px 0 0;
  color: #5c706d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.book__empty { display: flex; min-height: 0; flex: 1; flex-direction: column; align-items: center; justify-content: center; padding: 24px 22px; text-align: center; }
.book__empty h2 { margin: 0 0 8px; font-family: var(--font-ui); font-size: 28px; font-weight: 400; }
.book__empty p { margin: 0; color: #506866; font-size: 13px; line-height: 1.5; }
.book__status { padding: 8px 12px; border-top: 1px solid #b6beb1; background: #e8e4d5; color: #53766c; font-size: 10px; }
.card { padding: 14px; border: 1px solid #b6beb1; background: #fffdf3; color: #314f51; }
.card--person { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 12px; align-items: start; }
.card--model { grid-template-columns: 96px minmax(0, 1fr); }
.card--model .card__avatar { width: 96px; height: 96px; }
.card__avatar {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid #8c9c91;
  background: #145e69;
  color: #fffdf3;
  display: grid;
  place-items: center;
  font: 28px/1 var(--font-ui);
}
.card h3 { margin: 0 0 4px; font-size: 15px; }
.card p { margin: 0 0 8px; font-size: 12px; line-height: 1.5; }
.card p:last-child { margin-bottom: 0; }
.card__role { color: #168c8d; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card__links, .card__shop { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.card__links a, .card__shop {
  padding: 6px 10px;
  border-top: 2px solid #fffdf3;
  border-left: 2px solid #fffdf3;
  border-right: 2px solid #8b9991;
  border-bottom: 2px solid #8b9991;
  background: #f6d887;
  color: #244951;
  font: 700 11px var(--font-body);
  text-decoration: none;
}
.card__thumb { display: block; width: 100%; max-height: 140px; margin-bottom: 10px; object-fit: cover; background: #203c41; }

.desktop__note { position: absolute; left: 24px; bottom: 60px; z-index: 10001; max-width: min(320px, calc(100vw - 48px)); padding: 12px 16px; background: #e8e4d5; border: 2px solid #fffdf3; box-shadow: 4px 4px 0 #07585d; color: #203c41; font-size: 13px; }

.betty {
  position: absolute;
  left: 12px;
  bottom: 52px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: calc(100vw - 24px);
  filter: drop-shadow(3px 4px 0 #07585d);
}
.betty.is-arriving {
  pointer-events: none;
  animation: betty-vanish-in 480ms steps(8, end) both;
}
.betty.is-leaving { pointer-events: none; }
@keyframes betty-vanish-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.betty__balloon {
  position: relative;
  width: min(252px, calc(100vw - 28px));
  margin: 0 0 10px 6px;
  padding: 12px 28px 12px 12px;
  background: #fff4b0;
  border-top: 2px solid #fffdf3;
  border-left: 2px solid #fffdf3;
  border-right: 2px solid #8a7a3a;
  border-bottom: 2px solid #8a7a3a;
  color: #203c41;
}
.betty__balloon::after,
.betty__balloon::before {
  content: "";
  position: absolute;
  left: 28px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}
.betty__balloon::before {
  bottom: -22px;
  border-top: 12px solid #8a7a3a;
}
.betty__balloon::after {
  bottom: -16px;
  border-top: 10px solid #fff4b0;
}
.betty__eyebrow {
  margin: 0 0 4px;
  color: #6d6a32;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}
.betty__line {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.betty__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  padding: 0;
  background: #dcded0;
  border-top: 2px solid #fefcf0;
  border-left: 2px solid #fefcf0;
  border-right: 2px solid #8b9991;
  border-bottom: 2px solid #8b9991;
  color: #193d45;
  cursor: pointer;
  font: bold 16px/16px Arial, sans-serif;
}
.betty__close:hover, .betty__close:focus-visible { background: #f6d887; outline: 2px solid #145e69; outline-offset: 1px; }
.betty__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.betty__actions button {
  min-height: 28px;
  padding: 3px 10px;
  border-top: 2px solid #fffdf3;
  border-left: 2px solid #fffdf3;
  border-right: 2px solid #8b9991;
  border-bottom: 2px solid #8b9991;
  background: #dcded0;
  color: #244951;
  cursor: pointer;
  font: 700 11px var(--font-body);
}
.betty__actions button:hover, .betty__actions button:focus-visible { background: #f6d887; outline: 2px solid #145e69; outline-offset: 1px; }
.betty__actions button:active { transform: translate(1px, 1px); }
.betty__sprite {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: grab;
  touch-action: none;
}
.betty__sprite:active { cursor: grabbing; }
.betty__sprite:focus-visible { outline: 2px solid #fffdf3; outline-offset: 4px; }
.betty__sprite img {
  display: block;
  width: 168px;
  height: 214px;
  object-fit: cover;
  object-position: 50% 46%;
  pointer-events: none;
  user-select: none;
}

.taskbar {
  position: absolute;
  z-index: 10000;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 45px;
  padding: 4px 10px;
  border-top: 2px solid #f7f5e9;
  background: #dcded0;
  box-shadow: 0 -2px 0 #135e67;
  color: #244951;
  font-family: var(--font-ui);
  font-size: 18px;
}
.taskbar__start-wrap { position: relative; }
.taskbar__start {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 11px;
  border-top: 2px solid #fffdf3;
  border-left: 2px solid #fffdf3;
  border-right: 2px solid #8b9991;
  border-bottom: 2px solid #8b9991;
  background: #dcded0;
  color: #244951;
  cursor: pointer;
  font: 18px var(--font-ui);
}
.taskbar__start[aria-expanded="true"] {
  border-top: 2px solid #8b9991;
  border-left: 2px solid #8b9991;
  border-right: 2px solid #fffdf3;
  border-bottom: 2px solid #fffdf3;
}
.taskbar__start-symbol { color: #138d8a; font-size: 21px; }
.taskbar__hint { margin-left: auto; font-size: 14px; letter-spacing: .12em; color: #5d7673; }
.taskbar__clock { min-width: 64px; padding: 5px 8px; border: 1px solid #aeb7aa; box-shadow: inset 1px 1px 0 #8c9a90; text-align: center; }

.start-menu {
  position: absolute;
  left: 0;
  bottom: 41px;
  z-index: 40;
  width: 268px;
  background: #dcded0;
  border-top: 2px solid #fefcf0;
  border-left: 2px solid #fefcf0;
  border-right: 2px solid #5a6a62;
  border-bottom: 2px solid #5a6a62;
  box-shadow: 4px 4px 0 #07585d;
}
.start-menu__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #145e69, #0d3f46);
  color: #fffdf3;
}
.start-menu__avatar {
  flex: none;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 2px solid #fffdf3;
  box-shadow: 2px 2px 0 #063f47;
  background: #0d3f46;
}
.start-menu__identity { min-width: 0; }
.start-menu__brand {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 22px;
  letter-spacing: .06em;
  line-height: 1.1;
}
.start-menu__visits {
  margin: 4px 0 0;
  color: #c8e3dd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.start-menu button {
  display: block;
  width: 100%;
  padding: 9px 14px;
  border: 0;
  background: transparent;
  color: #203c41;
  cursor: pointer;
  font: 18px var(--font-ui);
  text-align: left;
}
.start-menu button:hover, .start-menu button:focus-visible { background: #145e69; color: #fffdf3; outline: none; }
.start-menu__joke {
  margin: 0;
  padding: 8px 14px 12px;
  border-top: 1px solid #aeb7aa;
  color: #5d7673;
  font-size: 12px;
  line-height: 1.4;
}

.age-gate {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 20px 20px 28px;
  background: #070b0c;
}
.age-gate__room {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.age-gate__set {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.age-gate__set--on { opacity: 0; transition: opacity 180ms linear; }
.age-gate:has(#age-denied:not([hidden])) .age-gate__set--off { filter: brightness(.7); }
.age-gate.is-powering .age-gate__set--on { opacity: 1; }
.age-gate.is-powering .age-gate__panel {
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms linear;
}
.age-gate__nosignal {
  position: absolute;
  top: 46%;
  left: 50%;
  margin: 0;
  color: #9fd8a8;
  font-family: var(--font-ui);
  font-size: clamp(28px, 6vw, 56px);
  letter-spacing: .32em;
  text-shadow: 0 0 14px #8cff9a99;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.age-gate__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #e8e4d5;
  border-top: 2px solid #fefcf0;
  border-left: 2px solid #fefcf0;
  border-right: 2px solid #5a6a62;
  border-bottom: 2px solid #5a6a62;
  box-shadow: 6px 6px 0 #084e56, 13px 15px 0 #063f4780;
  color: #203c41;
}
.age-gate__titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  background: linear-gradient(90deg, #145e69, #0e4a52);
  color: #fffdf3;
  font-family: var(--font-ui);
  font-size: 18px;
  letter-spacing: .12em;
}
.age-gate__titlebar span:last-child { font-size: 21px; color: #f6d887; }
.age-gate__content { padding: 22px 26px 26px; text-align: center; }
.age-gate__eyebrow { margin: 0 0 6px; color: #538078; font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.age-gate__content h2 { margin: 0 0 10px; font-family: var(--font-ui); font-size: 36px; font-weight: 400; letter-spacing: .04em; }
.age-gate__content p:not(.age-gate__eyebrow) { margin: 0 auto; max-width: 310px; font-size: 13px; line-height: 1.6; }
.age-gate__actions { display: grid; gap: 9px; margin-top: 22px; }
.age-gate__button {
  min-height: 42px;
  padding: 9px 14px;
  border-top: 2px solid #fffdf3;
  border-left: 2px solid #fffdf3;
  border-right: 2px solid #8b9991;
  border-bottom: 2px solid #8b9991;
  box-shadow: 3px 3px 0 #78918b;
  background: #dcded0;
  color: #244951;
  cursor: pointer;
  font: 700 13px var(--font-body);
}
.age-gate__button--primary { background: #f6d887; }
.age-gate__button:hover, .age-gate__button:focus-visible { outline: 2px solid #145e69; outline-offset: 2px; filter: brightness(1.04); }
.age-gate__button:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #78918b; }
.age-gate__content .age-gate__denied { margin-top: 20px !important; padding: 14px; border: 1px solid #c17862; background: #f4d6c8; color: #713c32; font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .age-gate.is-powering .age-gate__set--on,
  .age-gate.is-powering .age-gate__panel,
  .desktop__flash { transition: none; }
  .window.is-opening, .betty.is-arriving { animation: none; }
}

@media (max-width: 620px) {
  .desktop__heading { top: 8%; left: 24px; }
  .desktop__heading h1 { max-width: calc(100vw - 48px); font-size: clamp(36px, 11vw, 54px); }
  .desktop__icons { right: 18px; bottom: 75px; grid-template-columns: repeat(3, 76px); gap: 8px; }
  .shortcut { width: 76px; font-size: 16px; }
  .shortcut__icon { width: 64px; height: 64px; }
  .shortcut__icon svg { width: 36px; height: 36px; }
  .window { min-height: 300px; }
  .window--forms, .window--portfolio, .window--book { top: 6px; width: calc(100vw - 16px); height: calc(100dvh - 56px); max-height: calc(100dvh - 56px); transform: translateX(-50%); }
  .window--viewer { width: calc(100vw - 16px); }
  .commission__intro, .form-section, .commission__review { padding-right: 18px; padding-left: 18px; }
  .commission__progress { padding-right: 8px; padding-left: 8px; }
  .commission__progress li { flex-direction: column; gap: 0; font-size: 10px; }
  .receipt__row { grid-template-columns: 1fr; }
  .commission__estimate-row, .commission__navigation { padding-right: 18px; padding-left: 18px; }
  .taskbar__clock { margin-left: auto; }
  .age-gate { padding-bottom: 16px; }
  .betty { left: 8px; bottom: 50px; z-index: 3; }
  .betty__sprite img { width: 128px; height: 164px; }
}

@media (max-width: 440px) {
  .desktop__icons { grid-template-columns: repeat(2, 76px); gap: 10px; }
  .shortcut { width: 76px; }
  .form-options--cards label { align-items: flex-start; }
}

@media (max-height: 700px) {
  .betty { z-index: 3; }
}

@media (max-height: 550px) {
  .desktop__heading { top: 25px; }
  .desktop__icons { bottom: 60px; }
  .window { max-height: calc(100dvh - 60px); overflow: auto; }
  .window--forms { overflow: hidden; }
  .age-gate__content { padding: 16px 18px 18px; }
}
