/* Quiet work surfaces and tactile entry controls, grounded in the approved suite. */
.sws-entry,
.sws-project-start {
    --entry-ink: #0b0b0b;
    --entry-paper: #f3efe6;
    --entry-accent: #c81754;
    --entry-brass: #c3aa7f;
    display: grid;
    grid-template-columns: minmax(0, 41.3fr) minmax(0, 58.7fr);
    min-height: calc(100svh - 86px);
    margin: 0;
    color: var(--entry-ink);
    background: var(--entry-paper);
}
.sws-entry *, .sws-project-start * { box-sizing: border-box; }
.sws-entry__instrument,
.sws-project-start__instrument {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0b0b;
    color: #e2d2b6;
}
.sws-entry__instrument-inner { width: 100%; padding: 58px 0 36px; }
.sws-entry__invitation {
    margin: 0 0 -35px;
    position: relative;
    z-index: 1;
    padding-inline: 32px;
    text-align: center;
    font: 400 clamp(48px, 5.2vw, 82px)/1.05 'SWS Cormorant', Georgia, serif;
    font-variant-caps: small-caps;
    letter-spacing: .015em;
}
.sws-entry__patch { display: block; width: 100%; height: auto; }
.sws-entry__instrument-note {
    margin: -25px 0 0;
    padding-inline: 24px;
    text-align: center;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b8b1a4;
}
.sws-entry__surface,
.sws-project-start__surface { display: flex; align-items: center; min-width: 0; padding: 76px clamp(28px, 6vw, 105px); }
.sws-entry__content { width: 100%; max-width: 550px; margin-inline: auto; }
.sws-entry__content--wide { max-width: 760px; }
.sws-entry__heading { margin-bottom: 48px; }
.sws-entry__heading h1 {
    margin: 0;
    font: 400 clamp(43px, 4.8vw, 76px)/1.05 'SWS Cormorant', Georgia, serif;
    font-variant-caps: small-caps;
    letter-spacing: -.025em;
    color: #0b0b0b;
}
.sws-entry__heading > p { margin: 16px 0 0; font: 400 23px/1.35 'SWS Cormorant', Georgia, serif; color: #5a5751; }
.sws-entry__form { display: flex; flex-direction: column; gap: 30px; margin: 0; }
.sws-entry__fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 28px; }
.sws-entry__full { grid-column: 1 / -1; }
.sws-entry .sws-field,
.sws-project-start .sws-field { min-width: 0; margin: 0; }
.sws-entry .sws-label,
.sws-project-start .sws-label {
    display: block;
    margin-bottom: 10px;
    font: 600 12px/1.3 Raleway, Arial, sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #171613;
}
.sws-entry .sws-input,
.sws-project-start .sws-input {
    display: block;
    width: 100%;
    min-height: 50px;
    margin: 0;
    border: 1px solid #8d8981;
    border-radius: 2px;
    background: transparent;
    box-shadow: none;
    color: #12110f;
    padding: 10px 13px;
    font: 400 22px/1.35 'SWS Cormorant', Georgia, serif;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}
.sws-entry .sws-input::placeholder,
.sws-project-start .sws-input::placeholder { color: #77716a; opacity: 1; }
.sws-entry .sws-input:focus,
.sws-project-start .sws-input:focus { outline: none; border-color: #c81754; box-shadow: 0 2px 0 #c81754; }
.sws-entry .sws-input[aria-invalid="true"],
.sws-project-start .sws-input[aria-invalid="true"] { border-color: #c81754; }
.sws-entry .error-message,
.sws-project-start .error-message,
.sws-entry .sws-field__error,
.sws-project-start .sws-field__error { margin: 8px 0 0; color: #9b1642; font: 500 12px/1.5 Raleway, Arial, sans-serif; }
.sws-entry__label-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.sws-entry__text-link { display: inline-block; color: #a71344; font: 600 12px/1.6 Raleway, Arial, sans-serif; letter-spacing: .13em; text-transform: uppercase; text-decoration: underline; text-underline-offset: 5px; }
.sws-entry__text-link:hover { color: #711331; }
.sws-entry__label-row .sws-entry__text-link { color: #171613; }
.sws-entry__submit,
.sws-entry__secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 58px;
    width: 100%;
    padding: 16px 28px;
    border: 1px solid #ae1346;
    border-radius: 2px;
    background: #ae1346;
    color: #fff6ec;
    cursor: pointer;
    font: 600 12px/1.4 Raleway, Arial, sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}
.sws-entry__submit:hover { background: #861137; border-color: #861137; color: #fff6ec; transform: translateY(-1px); }
.sws-entry__submit:active { transform: translateY(1px); }
.sws-entry__submit:disabled { opacity: .65; cursor: wait; transform: none; }
.sws-entry__submit--compact { width: auto; min-width: 240px; align-self: flex-start; }
.sws-entry__secondary { color: #161411; background: transparent; border-color: #81796d; }
.sws-entry__secondary:hover { color: #a71344; border-color: #a71344; background: #ece6dc; }
.sws-entry a:focus-visible,
.sws-entry button:focus-visible,
.sws-entry summary:focus-visible,
.sws-project-start a:focus-visible,
.sws-project-start button:focus-visible,
.sws-project-dial__control:focus-visible { outline: 2px solid #c81754; outline-offset: 5px; }
.sws-entry__footnote { display: flex; align-items: baseline; gap: 20px; margin-top: 44px; padding-top: 28px; border-top: 1px solid #b8b1a4; font: 600 12px/1.6 Raleway, Arial, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.sws-entry__footnote--stack { flex-direction: column; gap: 16px; margin-top: 56px; }
.sws-entry__minor-link { margin: 24px 0 0; font: 400 11px/1.4 Raleway, Arial, sans-serif; }
.sws-entry__minor-link a { color: #77716a; text-underline-offset: 3px; }
.sws-entry__help { margin: 9px 0 0; font: 400 17px/1.4 'SWS Cormorant', Georgia, serif; color: #686259; }
.sws-entry__notice { border-left: 2px solid #a67c45; padding-left: 16px; font: 400 14px/1.6 Raleway, Arial, sans-serif; }
.sws-entry__notice a { color: #a71344; text-decoration: underline; }
.sws-entry__optional summary { width: fit-content; min-height: 44px; padding-block: 12px; cursor: pointer; font: 600 12px/1.5 Raleway, Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.sws-entry__optional summary span { font-weight: 400; }
.sws-entry__optional .sws-field { margin-top: 14px; max-width: calc(50% - 14px); }
.sws-entry--register .sws-entry__surface { padding-block: 56px; }
.sws-entry--register .sws-entry__heading { margin-bottom: 34px; }
.sws-entry--account { grid-template-columns: minmax(0, 36fr) minmax(0, 64fr); }
.sws-entry__identity { flex-direction: column; text-align: center; padding: 60px 28px 46px; }
.sws-entry__identity-medallion { position: relative; width: min(100%, 360px); }
.sws-entry__identity-medallion img { display: block; width: 100%; height: auto; }
.sws-entry__identity-medallion > span { position: absolute; inset: 0; display: grid; place-items: center; padding-bottom: 3%; font: 400 clamp(60px, 7vw, 112px)/1 'SWS Cormorant', Georgia, serif; }
.sws-entry__verification { margin: 20px 0 36px; font: 600 11px/1.5 Raleway, Arial, sans-serif; text-transform: uppercase; letter-spacing: .18em; color: #d1b17f; }
.sws-entry__identity h2 { margin: 0 0 16px; color: #e2d2b6; font: 400 34px/1.2 'SWS Cormorant', Georgia, serif; }
.sws-entry__identity-meta { margin: 0; font: 500 11px/2.1 Raleway, Arial, sans-serif; text-transform: uppercase; letter-spacing: .16em; color: #c3aa7f; }
.sws-entry__identity > .sws-entry__text-link { margin-top: 65px; color: #d1b17f; }
.sws-project-start { grid-template-columns: minmax(0, 47fr) minmax(0, 53fr); }
.sws-project-start__instrument-inner { position: sticky; top: 130px; width: 100%; align-self: flex-start; margin-block: auto; padding: 64px 36px; }
.sws-project-start__instrument h2 { margin: 0 0 25px; font: 600 12px/1.5 Raleway, Arial, sans-serif; letter-spacing: .18em; text-transform: uppercase; color: #d1b17f; text-align: center; }
.sws-project-dial { position: relative; margin: 0 auto; width: min(100%, 410px); aspect-ratio: 1; user-select: none; }
.sws-project-dial__image { display: block; width: 100%; height: auto; border-radius: 50%; transition: transform 240ms cubic-bezier(.2,.7,.25,1); pointer-events: none; }
.sws-project-dial.is-dragging .sws-project-dial__image { transition: none; will-change: transform; }
.sws-project-dial.is-dragging .sws-project-dial__control { cursor: grabbing; }
.sws-project-dial__control { transition: box-shadow var(--sws-motion-fast, 160ms) ease; }
.sws-project-dial__control:focus-visible { box-shadow: 0 0 0 1px #e3cba566; }
.sws-project-start__reveal { min-height: 0; }
.sws-project-dial__control { position: absolute; inset: 25%; display: grid; place-items: center; z-index: 2; cursor: grab; touch-action: none; border-radius: 50%; }
.sws-project-dial__control:active { cursor: grabbing; }
.sws-project-dial__control > span { color: #e3cba5; font: 400 clamp(26px, 3vw, 42px)/1 'SWS Cormorant', Georgia, serif; letter-spacing: .02em; text-transform: capitalize; pointer-events: none; }
.sws-project-dial__stop { position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%); display: grid; place-items: center; min-width: 60px; min-height: 44px; padding: 7px; background: #0b0b0b; border: 0; border-radius: 2px; color: #bda984; font: 600 12px/1.2 Raleway, Arial, sans-serif; letter-spacing: .12em; cursor: pointer; transition: color 180ms ease, background-color 180ms ease; }
.sws-project-dial__stop:nth-of-type(1) { left: 50%; top: 9%; }
.sws-project-dial__stop:nth-of-type(2) { left: 82%; top: 24.5%; }
.sws-project-dial__stop:nth-of-type(3) { left: 89.9%; top: 59.1%; }
.sws-project-dial__stop:nth-of-type(4) { left: 67.8%; top: 86.9%; }
.sws-project-dial__stop:nth-of-type(5) { left: 32.2%; top: 86.9%; }
.sws-project-dial__stop:nth-of-type(6) { left: 10.1%; top: 59.1%; }
.sws-project-dial__stop:nth-of-type(7) { left: 18%; top: 24.5%; }
.sws-project-dial__stop { background: transparent; text-shadow: 0 1px 3px #0b0b0b; }
.sws-project-dial__stop:hover, .sws-project-dial__stop[aria-pressed="true"] { color: #fff0dc; background: transparent; }
.sws-project-dial__stop[aria-pressed="true"] { text-decoration: underline; text-decoration-color: #c81754; text-underline-offset: 5px; }
.sws-project-dial__stop:disabled { color: #736958; cursor: not-allowed; }
.sws-project-start__dial-help { margin: 20px 0 24px; color: #b8b1a4; text-align: center; font: 400 11px/1.5 Raleway, Arial, sans-serif; }
.sws-project-start__mobile-choices { display: none; }
.sws-project-start__fallback { max-width: 260px; margin: 0 auto; }
.sws-project-start__fallback .sws-label { color: #c3aa7f; font-size: 12px; }
.sws-project-start__fallback .sws-input { color: #e5dac7; border-color: #756957; font-size: 18px; min-height: 44px; }
.sws-project-start__fallback option { background: #151310; color: #e5dac7; }
.sws-project-start__location { margin: 32px 0 0; color: #82796b; text-align: center; font: 500 10px/1.5 Raleway, Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.sws-project-start__surface { padding: 64px clamp(28px, 5vw, 88px); }
.sws-project-start__content { width: 100%; max-width: 610px; margin-inline: auto; }
.sws-project-start__content .sws-entry__heading { margin-bottom: 32px; }
.sws-project-start__content .sws-entry__heading h1 { font-size: clamp(42px, 4.6vw, 70px); }
.sws-entry__heading > .sws-project-start__selection { display: inline-block; margin-top: 26px; padding-bottom: 8px; border-bottom: 1px solid #c81754; color: #a71344; font: 600 12px/1.4 Raleway, Arial, sans-serif; letter-spacing: .17em; text-transform: uppercase; }
.sws-project-start__gate { margin-top: 70px; }
.sws-project-start__gate h2 { margin: 0 0 25px; font: 600 16px/1.4 Raleway, Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.sws-project-start__gate .sws-entry__secondary { margin-top: 14px; }
.sws-project-start .sws-entry__fields { gap: 27px 24px; }
.sws-project-start .sws-textarea { min-height: 130px; resize: vertical; }
.sws-project-start .sws-entry__submit--compact { margin-top: 28px; }
.sws-project-start__reveal[hidden] { display: none !important; }
.sws-project-start .sws-captcha { margin: 0; padding: 0; background: transparent; border: 0; }
.sws-project-start .sws-turnstile { min-height: 65px; margin-top: 8px; max-width: 100%; }
.sws-entry--error { grid-template-columns: minmax(0, 47fr) minmax(0, 53fr); }
.sws-entry__error-art { position: relative; width: 100%; }
.sws-entry__error-art img { display: block; width: 100%; height: auto; }
.sws-entry__error-number { position: absolute; top: 0; left: 14%; margin: 0; font: 400 clamp(105px, 13vw, 200px)/1 'SWS Cormorant', Georgia, serif; color: #dfcba9; }
.sws-entry__error-status { position: absolute; top: 30%; left: 15%; margin: 0; font: 500 12px/1.5 Raleway, Arial, sans-serif; text-transform: uppercase; letter-spacing: .16em; color: #c3aa7f; }
.sws-entry--error .sws-entry__submit { max-width: 290px; margin-top: 15px; }
.sws-entry--error .sws-entry__footnote { border: 0; margin-top: 10px; justify-content: flex-start; }
.sws-entry__error-credit { margin-top: 90px; font: 400 19px/1.5 'SWS Cormorant', Georgia, serif; color: #686259; }
.sws-entry-error-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 86px; padding: 15px 34px; background: #f3efe6; border-bottom: 1px solid #cfc8bb; }
.sws-entry-error-header .sws-brand { color: #0b0b0b; }
.sws-entry-error-header > a:last-child { color: #111; font: 600 11px/1.5 Raleway, Arial, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
@media (min-width: 761px) {
    .sws-entry:not(.sws-entry--register):not(.sws-entry--account):not(.sws-entry--error) .sws-entry__surface { padding-top: 26px; padding-bottom: 126px; }
}
@media (min-width: 1600px) { .sws-project-dial { width: 460px; } }
@media (max-width: 1100px) {
    .sws-entry__surface, .sws-project-start__surface { padding-inline: 36px; }
    .sws-entry__fields { gap: 25px 20px; }
    .sws-entry__instrument-inner { padding-block: 45px; }
    .sws-project-start__instrument-inner { padding-inline: 20px; }
    .sws-entry__heading h1 { font-size: 53px; }
}
@media (max-width: 760px) {
    .sws-entry, .sws-project-start, .sws-entry--account, .sws-entry--error { grid-template-columns: minmax(0, 1fr); min-height: auto; }
    .sws-entry__instrument-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 0; min-height: 165px; }
    .sws-entry__invitation { margin: 0; padding: 25px 0 25px 24px; text-align: left; font-size: 46px; }
    .sws-entry__patch { width: 220px; max-width: 100%; justify-self: end; margin-block: -18px; }
    .sws-entry__instrument-note { display: none; }
    .sws-entry__surface, .sws-project-start__surface { padding: 42px 25px 52px; }
    .sws-entry__heading { margin-bottom: 30px; }
    .sws-entry__heading h1 { font-size: 47px; }
    .sws-entry__heading > p { font-size: 21px; }
    .sws-entry__form { gap: 26px; }
    .sws-entry__fields { gap: 24px 18px; }
    .sws-entry .sws-input, .sws-project-start .sws-input { font-size: 21px; }
    .sws-entry--register .sws-entry__surface { padding-block: 40px; }
    .sws-entry__footnote { margin-top: 34px; padding-top: 25px; flex-wrap: wrap; gap: 13px; }
    .sws-entry__identity { display: grid; grid-template-columns: 115px 1fr; padding: 20px 24px; text-align: left; gap: 5px 22px; justify-content: start; }
    .sws-entry__identity-medallion { grid-row: 1 / 5; width: 115px; }
    .sws-entry__identity-medallion > span { font-size: 37px; }
    .sws-entry__verification { grid-column: 2; margin: 0; font-size: 9px; }
    .sws-entry__identity h2 { grid-column: 2; margin: 0; font-size: 26px; }
    .sws-entry__identity-meta { grid-column: 2; font-size: 9px; line-height: 1.8; }
    .sws-entry__identity > .sws-entry__text-link { grid-column: 2; margin-top: 6px; font-size: 11px; }
    .sws-project-start__instrument-inner { position: static; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 0 16px; padding: 28px 24px; }
    .sws-project-start__instrument h2 { text-align: left; margin: 0 0 18px; grid-column: 2; grid-row: 1; font-size: 11px; }
    .sws-project-dial { grid-column: 1; grid-row: 1 / 5; width: 210px; max-width: 100%; }
    .sws-project-dial__control > span { font-size: 22px; }
    .sws-project-dial__stop { display: none; }
    .sws-project-start__fallback { grid-column: 2; width: 100%; }
    .sws-project-start__fallback .sws-label { display: none; }
    .sws-project-start__fallback .sws-input { font-size: 16px; padding-inline: 8px; }
    .sws-project-start__dial-help { grid-column: 2; text-align: left; margin: 12px 0 0; font-size: 10px; }
    .sws-project-start__location { display: none; }
    .sws-project-start__mobile-choices { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-column: 1 / -1; grid-row: 5; gap: 4px 10px; margin-top: 16px; overflow: visible; }
    .sws-project-start__mobile-choices button { min-width: 0; min-height: 44px; padding: 10px 2px; color: #bda984; border: 0; border-bottom: 1px solid transparent; background: transparent; font: 600 11px/1.5 Raleway, Arial, sans-serif; letter-spacing: .1em; }
    .sws-project-start__mobile-choices button[aria-pressed="true"] { color: #fff0dc; border-bottom-color: #c81754; }
    .sws-project-start__mobile-choices button:disabled { color: #736958; }
    .sws-project-start__gate { margin-top: 42px; }
    .sws-project-start__gate h2 { font-size: 14px; }
    .sws-project-start__content .sws-entry__heading h1 { font-size: 49px; }
    .sws-entry__error-art { height: 245px; overflow: hidden; }
    .sws-entry__error-art img { width: 380px; margin-left: auto; margin-top: -85px; }
    .sws-entry__error-number { top: 45px; left: 24px; font-size: 110px; }
    .sws-entry__error-status { top: 170px; left: 30px; font-size: 10px; }
    .sws-entry__error-credit { margin-top: 50px; }
    .sws-entry-error-header { padding-inline: 22px; }
}
@media (max-width: 430px) {
    .sws-entry__fields, .sws-project-start .sws-entry__fields { grid-template-columns: minmax(0, 1fr); }
    .sws-entry__optional .sws-field { max-width: 100%; }
    .sws-entry__submit--compact { width: 100%; min-width: 0; }
    .sws-project-dial { width: 155px; }
    .sws-project-start__instrument-inner { gap: 0 12px; padding-inline: 16px; }
    .sws-project-dial__control > span { font-size: 19px; }
    .sws-entry-error-header .sws-brand__text { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
    .sws-entry *, .sws-project-start * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
