:root {
    --ink: #1a1b1f;
    --sand: #f6f3ee;
    --clay: #c96f4f;
    --sage: #214f4b;
    --oat: #ffffff;
    --shadow: 0 18px 60px rgba(26, 27, 31, 0.12);
    --pros-ink: #1a1b1f;
    --pros-sage: #f08502;
    --pros-forest: var(--sage);
    --pros-border: rgba(26, 27, 31, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(201, 111, 79, 0.18),
            transparent 55%
        ),
        radial-gradient(
            circle at 85% 10%,
            rgba(43, 111, 106, 0.2),
            transparent 50%
        ),
        linear-gradient(135deg, #f7f1ea 0%, #fefaf4 55%, #f5ece0 100%);
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn {
    font-family: "Playfair Display", "Times New Roman", serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(43, 111, 106, 0.12);
    color: var(--sage);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.card {
    background: var(--oat);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--sage);
    color: #fff;
    box-shadow: 0 10px 30px rgba(43, 111, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--sage);
    border: 1px solid rgba(43, 111, 106, 0.3);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field label {
    font-weight: 600;
    font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
    border-radius: 12px;
    border: 1px solid rgba(26, 27, 31, 0.15);
    padding: 12px 14px;
    font-size: 1rem;
    font-family: inherit;
}

.field--tight {
    margin: 0;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.helper {
    font-size: 0.85rem;
    color: rgba(26, 27, 31, 0.65);
}

.error {
    color: #b9352a;
    font-size: 0.85rem;
}

.is-hidden {
    display: none !important;
}

.pros-header {
    background: #fff;
    border-bottom: 1px solid var(--pros-border);
    padding: 0 2%;
}

.pros-header__inner {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    max-width: none;
}

.pros-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-header__logo img {
    height: 34px;
}

.pros-header__actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.pros-header__lang,
.pros-header__login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--pros-forest);
    font-size: 1.1rem;
}

.pros-header__lang i {
    font-size: 1.05rem;
}

.pros-header__cta {
    background: var(--pros-forest);
    border-radius: 10px !important;
    padding: 14px 28px;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.pros-hero {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.pros-hero__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin: 18px 0 12px;
}

.pros-hero__subtitle {
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.6;
}

.pros-archive {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: stretch;
}

.pros-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: min(360px, 100%);
}

.pros-card__cover {
    position: relative;
}

.pros-card__cover img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.pros-card__cover-fallback {
    height: 160px;
    background: linear-gradient(
        135deg,
        rgba(43, 111, 106, 0.22),
        rgba(201, 111, 79, 0.25)
    );
}

.pros-card__avatar {
    position: absolute;
    left: 18px;
    bottom: -26px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    background: #fff;
}

.pros-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pros-card__avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--pros-sage);
    background: rgba(43, 111, 106, 0.12);
}

.pros-card__body {
    padding: 36px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pros-card__title {
    font-size: 1.2rem;
    font-weight: 600;
}

.pros-card__name {
    font-weight: 600;
}

.pros-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pros-card__tag {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.pros-card__location {
    font-weight: 600;
}

.pros-card__intro {
    margin: 0;
    color: rgba(26, 27, 31, 0.75);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pros-card__more {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pros-sage);
    font-weight: 600;
}

.pros-footer {
    margin-top: 60px;
    text-align: center;
    color: rgba(26, 27, 31, 0.6);
}

.pros-page {
    width: 100%;
    max-width: none;
}

.pros-page__card {
    max-width: 950px;
    margin: 0 auto;
}

.pros-page__cover {
    /* margin: -32px -32px 20px; */
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.pros-page__cover img {
    width: 100%;
    object-fit: contain;
}

.pros-page__identity {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.pros-page__title {
    margin: 0;
}

.pros-page__tagline {
    margin-top: 4px;
}

.pros-page__section-title {
    margin-bottom: 12px;
}

.pros-page__link-arrow {
    color: var(--pros-sage);
    font-weight: 600;
}

.pros-page__qr-actions {
    margin-top: 12px;
}

.pros-pagination {
    margin-top: 20px;
}

.pros-my-page__intro {
    margin-bottom: 24px;
}

.pros-my-page__title {
    margin: 12px 0 8px;
}

.pros-my-page__user {
    margin-top: 0;
}

.pros-my-page__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pros-onboarding__top-actions {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 50;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pros-onboarding__intro-card {
    margin-bottom: 24px;
}

.pros-onboarding__title {
    margin: 12px 0 8px;
}

.pros-onboarding__status {
    color: var(--sage);
    font-weight: 600;
}

.pros-onboarding__section-title {
    margin-top: 0;
}

.pros-onboarding__cover-preview {
    width: 100%;
    max-width: 260px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 8px;
}

.pros-onboarding__avatar-preview {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 8px;
}

.pros-onboarding__meta {
    margin-top: 8px;
}

.pros-onboarding__contact-grid {
    margin-top: 18px;
}

.pros-onboarding__actions-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 24px;
}

.step-pill {
    border: 1px solid rgba(26, 27, 31, 0.15);
    background: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(26, 27, 31, 0.7);
}

.step-pill.is-active {
    background: rgba(43, 111, 106, 0.12);
    color: var(--sage);
    border-color: rgba(43, 111, 106, 0.35);
}

.step-panel {
    display: none;
}

.step-panel.is-active {
    display: block;
}

.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.tags-grid,
.links-grid {
    display: grid;
    gap: 12px;
}

.tags-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tags-row input {
    flex: 1;
}

.link-row {
    display: grid;
    gap: 10px;
    grid-template-columns: 1.2fr 1.6fr 1fr auto;
    align-items: end;
}

.link-row .btn-ghost {
    padding: 10px 12px;
}

.wysiwyg-wrap textarea {
    min-height: 320px;
}

.fluid-auth__switch {
    line-height: 16px;
}

.fluid-auth__meta {
    margin-top: 8px;
}

.fluid-auth__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
}
.pros-page__avatar {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .pros-page__avatar {
        width: 200px;
        height: 200px;
        text-align: center;
        border-radius: 24px;
        object-fit: cover;
        margin-top: 30px;
    }
}

.pros-page__avatar-fallback {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: rgba(43, 111, 106, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.pros-page__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.pros-page__content {
    margin-top: 26px;
    line-height: 1.7;
}

.pros-page__links {
    margin-top: 32px;
}

.pros-page__links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.pros-page__link {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pros-page__link-icon {
    margin-right: 10px;
    color: var(--pros-sage);
}

.pros-page__contact {
    margin-top: 28px;
}

.pros-page__contact-grid {
    display: grid;
    gap: 6px;
}

.pros-page__qr {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px dashed rgba(26, 27, 31, 0.2);
    text-align: center;
}

.pros-page__qr img {
    width: 180px;
    height: 180px;
    border-radius: 18px;
    background: white;
}

@media (max-width: 860px) {
    .link-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .card {
        padding: 24px;
    }
}
