/* ==========================================================================
   The public request form and the confirmation screen.
   ========================================================================== */

/* The logo is a wide lock-up with its own generous internal margins, so the
   page does not need to add nearly as much above it as it did above a line of
   tracked capitals. */
.page {
    min-height: 100vh;
    padding-block: 24px 48px;
    background: var(--blush-pale);
}

@media (min-width: 640px) { .page { padding-block: 32px 64px; } }
@media (min-width: 1024px) { .page { padding-block: 40px 72px; } }

/* --- Masthead --------------------------------------------------------- */

.masthead {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.masthead__brand {
    display: block;
    line-height: 0;
    text-decoration: none;
}

/* The wordmark is a wide, transparent lock-up; sized by width so the salon's
   own proportions survive, and capped so it never outgrows the headline it
   sits above. */
.masthead__logo {
    width: 208px;
    height: auto;
    transition: opacity .2s;
}

@media (min-width: 640px) { .masthead__logo { width: 250px; } }

.masthead__brand:hover .masthead__logo { opacity: .78; }

/* The vertical hairline between the brand and the title — the reference build's
   signature bit of spacing. */
.masthead__stem {
    display: block;
    width: 1px;
    height: 36px;
    margin-top: 28px;
    background: var(--gold);
}

@media (min-width: 640px) { .masthead__stem { margin-top: 34px; } }

.masthead__title {
    margin-top: 24px;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.18;
    color: var(--ink);
}

@media (min-width: 640px) { .masthead__title { font-size: 40px; } }

.masthead__intro {
    max-width: 520px;
    margin-top: 20px;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted-dark);
}

.masthead__lang { margin-top: 28px; }

/* --- Form card -------------------------------------------------------- */

.form-wrap { margin-top: 44px; }

@media (min-width: 640px) { .form-wrap { margin-top: 56px; } }

.form-card { border: 1px solid var(--line); background: var(--white); }

.form-card__inner { padding: 32px 20px; }

@media (min-width: 640px) { .form-card__inner { padding: 48px 40px; } }
@media (min-width: 1024px) { .form-card__inner { padding: 48px 56px; } }

.form-grid {
    display: grid;
    gap: 28px 24px;
}

@media (min-width: 640px) {
    .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .form-grid__full { grid-column: 1 / -1; }

    /* The name keeps the first row to itself at its own half-column width —
       stretched across both columns it becomes a field the eye has to travel,
       and a person's name is the shortest answer on the form. Phone and e-mail
       pair up underneath it. Placed explicitly rather than left to auto-flow,
       which would otherwise pull the phone up beside the name; everything
       after these three is full-width and starts its own row. */
    .form-grid__solo   { grid-column: 1; grid-row: 1; }
    .form-grid__pair-a { grid-column: 1; grid-row: 2; }
    .form-grid__pair-b { grid-column: 2; grid-row: 2; }
}

/* --- Radio group ------------------------------------------------------ */

.radio-set {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.radio-set__legend {
    padding: 0;
    margin-bottom: 10px;
    font-family: var(--font-label);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
}

.radio-grid {
    display: grid;
    gap: 12px;
}

@media (min-width: 640px) { .radio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.radio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 56px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    transition: border-color .15s, background-color .15s;
}

.radio:hover { border-color: var(--gold); }

.radio input { position: absolute; opacity: 0; pointer-events: none; }

/* The channel's own mark, so the three options are told apart at a glance
   rather than by reading three similar-length words. */
.radio__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    flex: 0 0 auto;
    color: var(--muted-dark);
    transition: color .15s;
}

.radio:has(input:checked) .radio__icon,
.radio--menu:has(input:checked) .radio__icon { color: var(--gold-deep); }

.radio__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    transition: border-color .15s, background-color .15s;
}

.radio input:checked ~ .radio__mark {
    border-color: var(--gold-deep);
    background: var(--gold-deep);
    box-shadow: inset 0 0 0 2px var(--white);
}

.radio:has(input:checked) { border-color: var(--gold-deep); background: var(--blush); }

.radio:has(input:focus-visible) {
    outline: 2px solid var(--gold-deep);
    outline-offset: 2px;
}

.radio__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
    color: var(--ink);
}

/* The app the messenger card will actually open. Small and below the label:
   it is a detail, and the decision the visitor made was "message me". */
.radio__hint {
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: .02em;
}

/* --- Messenger card ---------------------------------------------------
   One card that is both a radio and a menu. The label fills it so the whole
   surface still selects the channel; the caret is a separate control on top,
   and only it opens the list.
   ---------------------------------------------------------------------- */

.radio--menu { padding-right: 40px; cursor: default; }

.radio__hit {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    flex: 1 1 auto;
    cursor: pointer;
}

.radio__caret {
    position: absolute;
    top: 50%;
    right: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    border: 0;
    background: none;
    color: var(--muted);
    cursor: pointer;
    transition: color .15s;
}

.radio__caret[hidden] { display: none; }
.radio__caret:hover { color: var(--gold-deep); }
.radio__caret[aria-expanded="true"] svg { transform: rotate(180deg); }
.radio__caret svg { transition: transform .15s; }

.radio__menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    padding: 5px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 40px rgba(20, 20, 20, .10);
}

.radio__menu[hidden] { display: none; }

.radio__menu-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border: 0;
    background: none;
    font-size: 13px;
    text-align: left;
    color: var(--ink);
    cursor: pointer;
    transition: background-color .12s, color .12s;
}

.radio__menu-opt:hover { background: var(--blush-pale); }

.radio__menu-opt svg { flex: 0 0 auto; color: var(--muted-dark); }

.radio__menu-opt[aria-selected="true"] { background: var(--blush); }
.radio__menu-opt[aria-selected="true"] svg { color: var(--gold-deep); }

/* --- Service picker ---------------------------------------------------
   The CRM's custom select on this palette: a trigger, a search box, category
   headings and the choice echoed underneath as a removable tag.
   ---------------------------------------------------------------------- */

.picker { position: relative; }

.picker__native[hidden] { display: none; }

.picker__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: var(--white);
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .15s;
}

.picker__trigger:hover { border-color: var(--gold); }
.picker__trigger[aria-expanded="true"] { border-color: var(--gold-deep); }
.picker__trigger > svg { flex: 0 0 auto; color: var(--gold-deep); transition: transform .15s; }
.picker__trigger[aria-expanded="true"] > svg { transform: rotate(180deg); }

.picker.is-error .picker__trigger { border-color: var(--error-border); }

.picker__value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.picker__value--empty { color: rgba(153, 153, 153, .8); }

.picker__pop {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 40px rgba(20, 20, 20, .09);
}

.picker__pop[hidden] { display: none; }

.picker__search {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
}

.picker__search svg { flex: 0 0 auto; }

.picker__search-input {
    width: 100%;
    border: 0;
    background: none;
    font-size: 13px;
    color: var(--ink);
}

.picker__search-input:focus { outline: none; }

/* Safari draws its own clear button on a search input; it lands on top of the
   border and belongs to a different design language than everything here. */
.picker__search-input::-webkit-search-cancel-button { display: none; }

.picker__options {
    max-height: 300px;
    overflow-y: auto;
    padding-bottom: 4px;
    /* A flick of the wheel inside the list must not carry on into the page
       once it hits the end. */
    overscroll-behavior: contain;
}

/* The department headings. Two hundred options scroll past underneath them, so
   they carry their own ground and stick to the top of the list while their
   section is on screen — without that, a reader who has scrolled into the
   middle of the nail list has no idea what they are looking at. */
.picker__cat {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-block: 1px solid var(--line-soft);
    margin-top: -1px;
    background: var(--blush);
    font-family: var(--font-label);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8a5a32;
}

.picker__cat svg { flex: 0 0 auto; color: var(--gold-deep); }

.picker__cat[hidden] { display: none; }

.picker__opt {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    width: 100%;
    padding: 8px 14px;
    border: 0;
    background: none;
    font-size: 13.5px;
    text-align: left;
    color: var(--ink);
    cursor: pointer;
    transition: background-color .12s;
}

.picker__opt[hidden] { display: none; }
.picker__opt:hover { background: var(--blush-pale); }
.picker__opt.is-selected { background: var(--blush-pale); }

/* A real checkbox, because the list is a multi-select and a highlighted row
   alone does not say "you may take more than one". */
.picker__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    margin-top: 2px;
    border: 1px solid var(--line);
    background: var(--white);
    color: transparent;
    transition: border-color .12s, background-color .12s, color .12s;
}

.picker__opt.is-selected .picker__box {
    border-color: var(--gold-deep);
    background: var(--gold-deep);
    color: var(--white);
}

.picker__opt-text { min-width: 0; }

.picker__opt-name { line-height: 1.35; }

.picker__mark {
    background: var(--blush);
    color: var(--gold-deep);
    font-weight: 500;
}

.picker__empty {
    padding: 16px 14px;
    font-size: 12.5px;
    color: var(--muted);
    text-align: center;
}

.picker__empty[hidden] { display: none; }

/* The row of chosen services. Its height is held from the first paint, empty
   or not: it sits between the trigger and everything below it, and growing by
   a row the moment the first service is picked shunted the rest of the form
   down under the visitor's cursor mid-choice. */
.picker__tags {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 7px;
    min-height: 28px;
    margin-top: 10px;
}

/* Sits in the reserved row until the first service is chosen. */
.picker__tags-empty {
    align-self: center;
    font-size: 11.5px;
    color: rgba(153, 153, 153, .9);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 6px 5px 11px;
    border: 1px solid var(--gold);
    background: var(--blush);
    font-size: 11.5px;
    color: #8a5a32;
}

.tag__x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 0;
    background: none;
    color: inherit;
    opacity: .6;
    cursor: pointer;
    transition: opacity .15s;
}

.tag__x:hover { opacity: 1; }

/* --- Hour picker ------------------------------------------------------
   Two snapping columns, the CRM's TimeField restyled. The half-hour <select>
   it replaces is still in the markup for the no-JS path.
   ---------------------------------------------------------------------- */

.timepick { position: relative; }

.timepick__native[hidden] { display: none; }

.timepick__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: var(--white);
    text-align: left;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    cursor: pointer;
    transition: border-color .15s;
}

.timepick__trigger:hover { border-color: var(--gold); }
.timepick__trigger[aria-expanded="true"] { border-color: var(--gold-deep); }
.timepick__trigger svg { flex: 0 0 auto; color: var(--gold-deep); }

.timepick__value--empty { color: rgba(153, 153, 153, .8); }

.timepick__pop {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    left: 0;
    width: min(260px, 100%);
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 40px rgba(20, 20, 20, .09);
}

.timepick__pop[hidden] { display: none; }

.timepick__cols {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.timepick__colon {
    font-size: 17px;
    color: var(--muted);
    /* Optically centred against the highlighted row rather than the column,
       which includes the two stepper buttons. */
    padding-bottom: 2px;
}

.timepick__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 72px;
}

.timepick__step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 26px;
    border: 1px solid var(--line-soft);
    background: var(--white);
    color: var(--muted-dark);
    cursor: pointer;
    transition: color .15s, border-color .15s;
}

.timepick__step:hover:not(:disabled) { color: var(--gold-deep); border-color: var(--gold); }
.timepick__step:disabled { opacity: .3; cursor: not-allowed; }

.timepick__step--up   { border-bottom: 0; }
.timepick__step--down { border-top: 0; }

/* Five rows: the selection, two above and two below. Three was too few to
   read as a wheel — the neighbours were all that showed, and the column gave
   no sense of where in the day you were. 5 x 34px. */
.timepick__viewport {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    border-inline: 1px solid var(--line-soft);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

/* The outer rows stay legible and fade towards the frame rather than being
   cut off at it, so the column reads as a strip that continues past the
   opening rather than a list that ends. The gradient is deliberately weak
   through the first outer row — at full strength it veiled all but the top
   sliver of those digits, which is the same as not showing them. */
.timepick__viewport::before,
.timepick__viewport::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 68px;
    z-index: 2;
    pointer-events: none;
}

.timepick__viewport::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .34) 46%, rgba(255, 255, 255, 0) 100%);
}

.timepick__viewport::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .34) 46%, rgba(255, 255, 255, 0) 100%);
}

.timepick__highlight {
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    height: 34px;
    transform: translateY(-50%);
    background: var(--blush);
    border-block: 1px solid var(--gold);
    pointer-events: none;
}

.timepick__strip {
    padding-block: 68px;
    transition: transform .25s ease;
    will-change: transform;
}

/* While a finger or the mouse is dragging, the strip must track the pointer
   exactly — a transition here turns the drag into a lag. */
.timepick__strip.is-dragging { transition: none; }

.timepick__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 34px;
    border: 0;
    background: none;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    color: var(--muted);
    cursor: pointer;
    transition: color .2s, font-size .2s;
}

.timepick__item.is-selected {
    color: var(--ink);
    font-size: 16px;
    font-weight: 400;
}

.timepick__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
}

.timepick__action {
    border: 0;
    background: none;
    padding: 4px 0;
    font-family: var(--font-label);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-dark);
    cursor: pointer;
    transition: color .15s;
}

.timepick__action:hover { color: var(--gold-deep); }
.timepick__action--ok { color: var(--ink); }

/* --- Date picker ------------------------------------------------------ */

.daypick { position: relative; }

.daypick__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: var(--white);
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .15s;
}

.daypick__trigger:hover { border-color: var(--gold); }
.daypick__trigger[aria-expanded="true"] { border-color: var(--gold-deep); }

.daypick__value { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.daypick__value--empty { color: rgba(153, 153, 153, .8); }

.daypick__trigger svg { flex: 0 0 auto; color: var(--gold-deep); }

.daypick__pop {
    position: absolute;
    z-index: 30;
    top: calc(100% + 6px);
    left: 0;
    width: min(320px, 100%);
    padding: 16px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 40px rgba(20, 20, 20, .09);
}

.daypick__pop[hidden] { display: none; }

/* Nav to the outside, month in the middle — the reference build's
   arrangement, and the one every native calendar uses. */
.daypick__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}

.daypick__month {
    flex: 1 1 auto;
    text-align: center;
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.2;
    color: var(--ink);
}

.daypick__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--muted-dark);
    cursor: pointer;
    transition: border-color .15s, color .15s;
}

.daypick__nav:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.daypick__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.daypick__dow {
    padding: 6px 0 10px;
    text-align: center;
    font-family: var(--font-label);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Bookable days carry the gold; days already gone are greyed rather than
   removed, so the month keeps its shape and the visitor can see at a glance
   how much of it is still available. */
.daypick__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: transparent;
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
    color: var(--gold-deep);
    cursor: pointer;
    transition: border-color .12s, background-color .12s, color .12s;
}

.daypick__day:hover:not(:disabled) { background: var(--blush); }

.daypick__day:disabled { color: #cfc7c1; cursor: default; }

.daypick__day--today:not([aria-pressed="true"]) {
    border-color: var(--gold-deep);
    color: var(--gold-deep);
}

.daypick__day[aria-pressed="true"] {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.daypick__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
}

.daypick__action {
    border: 0;
    background: none;
    padding: 4px 0;
    font-family: var(--font-label);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-dark);
    cursor: pointer;
    transition: color .15s;
}

.daypick__action:hover { color: var(--gold-deep); }
.daypick__action--today { color: var(--ink); }

.daypick.is-error .daypick__trigger { border-color: var(--error-border); }

/* --- Submit ----------------------------------------------------------- */

.form-actions { margin-top: 36px; }

.submit-btn {
    width: 100%;
    min-height: 54px;
    padding: 16px 24px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s, border-color .2s, opacity .2s;
}

.submit-btn:hover:not(:disabled) { background: var(--ink-soft); border-color: var(--ink-soft); }

.submit-btn:disabled { opacity: .5; cursor: not-allowed; }

.submit-btn.is-busy { opacity: .7; cursor: progress; }

.consent {
    margin-top: 20px;
    font-size: 11.5px;
    line-height: 1.7;
    color: var(--muted);
    text-align: center;
}

.form-alert { margin-bottom: 28px; }

/* --- intl-tel-input fit ------------------------------------------------
   The plugin ships its own rounded, shadowed look. Flatten it onto the
   palette so the phone field is indistinguishable from the fields beside it.
   ---------------------------------------------------------------------- */

.iti { width: 100%; display: block; }

.iti__tel-input,
.iti input[type="tel"] {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    font-size: 14px;
}

.iti--separate-dial-code .iti__selected-flag {
    background: var(--blush-pale);
    border-right: 1px solid var(--line-soft);
}

.iti__country-list {
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 0 14px 40px rgba(20, 20, 20, .09);
    font-size: 13px;
}

.iti__country.iti__highlight { background: var(--blush); }

/* --- Success screen --------------------------------------------------- */

.done {
    padding: 40px 20px;
    text-align: center;
}

@media (min-width: 640px) { .done { padding: 56px 48px; } }

.done__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--gold);
    color: var(--gold-deep);
}

.done__title {
    margin-top: 24px;
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--ink);
}

@media (min-width: 640px) { .done__title { font-size: 32px; } }

.done__body {
    max-width: 520px;
    margin: 18px auto 0;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted-dark);
}

.done__notice {
    max-width: 560px;
    margin: 22px auto 0;
    text-align: left;
}

.done__summary {
    display: grid;
    gap: 1px;
    margin-top: 32px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
    text-align: left;
}

@media (min-width: 640px) { .done__summary { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.done__cell { padding: 16px 18px; background: var(--white); }

.done__cell dt {
    font-family: var(--font-label);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.done__cell dd {
    margin: 8px 0 0;
    font-size: 13.5px;
    color: var(--ink);
}

.done__cell dd.is-ref { font-variant-numeric: tabular-nums; letter-spacing: 0.06em; }

.done__again { margin-top: 32px; }

/* --- Page footer ------------------------------------------------------ */

.page-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 14px;
    margin-top: 48px;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

.page-foot a { color: var(--ink); text-decoration: none; }
.page-foot a:hover { color: var(--gold-deep); }

.page-foot__sep { color: var(--gold); }
