.start-page {
    width: min(100%, 780px);
    min-height: min(760px, calc(100vh - 48px));
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 5vw, 48px) 0 clamp(28px, 6vw, 56px);
}

.start-masthead {
    position: relative;
    min-height: 154px;
    display: grid;
    place-items: start center;
}

.start-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.start-brand .brand {
    font-family: "IBM Plex Sans Hebrew", "IBM Plex Sans", Arial, sans-serif;
    font-size: clamp(2.35rem, 7vw, 3.35rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.brand-tagline {
    margin: 16px 0 0;
    color: #62676b;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

[dir="rtl"] .brand-tagline {
    letter-spacing: 0.08em;
}

.brand-rule {
    width: 48px;
    margin-block-start: 20px;
    border-block-start: 2px solid #171918;
}

.start-masthead .language-form {
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 0;
}

.start-masthead .language-form label {
    color: #62676b;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.start-masthead .language-form select {
    min-height: 38px;
    padding-block: 6px;
    border-color: #c8c6bf;
    border-radius: 0;
    background-color: transparent;
    color: #171918;
    font-size: 0.85rem;
}

.choice-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 6vw, 52px) 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.choice-card h1 {
    font-family: "Frank Ruhl Libre", Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.instruction {
    margin: 12px 0 clamp(28px, 5vw, 44px);
    color: #62676b;
    font-family: "IBM Plex Sans Hebrew", "IBM Plex Sans", Arial, sans-serif;
    font-size: 1rem;
}

.choices {
    gap: 16px;
}

.choice-form {
    min-width: 0;
}

.choice-button {
    position: relative;
    min-height: 230px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto auto;
    align-items: start;
    gap: 0;
    padding: 21px 22px 19px;
    border: 1px solid #c8c6bf;
    border-radius: 13px;
    background: #f8f7f3;
    color: #171918;
    text-align: start;
    box-shadow: none;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease,
        transform 160ms ease, box-shadow 160ms ease;
}

.choice-button--lost,
.choice-button--found {
    background: #f8f7f3;
    color: #171918;
}

.choice-kicker {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    color: #62676b;
    font-size: 0.73rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

[dir="rtl"] .choice-kicker {
    letter-spacing: 0.06em;
}

.choice-icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid #c8c6bf;
    border-radius: 50%;
}

.choice-icon svg {
    width: 26px;
    height: 26px;
}

.choice-title {
    grid-column: 1 / -1;
    grid-row: 3;
    display: block;
    margin-block-start: 25px;
    font-family: "Frank Ruhl Libre", Georgia, serif;
    font-size: clamp(1.45rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.12;
}

.choice-description {
    grid-column: 1;
    grid-row: 4;
    display: block;
    margin-block-start: 9px;
    color: #62676b;
    font-size: 0.9rem;
    line-height: 1.45;
}

.choice-arrow {
    grid-column: 2;
    grid-row: 4;
    align-self: end;
    font-size: 1.35rem;
    line-height: 1;
}

[dir="rtl"] .choice-arrow {
    transform: scaleX(-1);
}

.choice-button:hover,
.choice-button:focus-visible {
    border-color: #171918;
    background: #171918;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgb(23 25 24 / 12%);
}

.choice-button:hover .choice-kicker,
.choice-button:hover .choice-description,
.choice-button:focus-visible .choice-kicker,
.choice-button:focus-visible .choice-description {
    color: #d8d6cf;
}

.choice-button:hover .choice-icon,
.choice-button:focus-visible .choice-icon {
    border-color: #73736f;
}

.choice-button:active {
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    .start-page {
        min-height: auto;
        padding-block-start: 22px;
    }

    .start-masthead {
        min-height: 186px;
        place-items: end center;
    }

    .start-masthead .language-form {
        width: 100%;
        justify-content: space-between;
    }

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

    .choice-button {
        min-height: 190px;
    }
}

@media (max-width: 420px) {
    .start-brand .brand {
        font-size: 2.15rem;
    }

    .brand-tagline {
        font-size: 0.69rem;
        letter-spacing: 0.2em;
    }

    .choice-card {
        padding-block-start: 34px;
    }

    .choice-card h1 {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .choice-button {
        transition: none;
    }
}
