:root {
    --bg: #211b16;
    --surface: #d2b98f;
    --surface-2: #b8905f;
    --ink-surface: #1b1612;
    --paper: #c9ad7c;
    --paper-dark: #9f7648;
    --paper-light: #e3c995;
    --line: rgba(62, 41, 25, 0.36);
    --text: #fff4df;
    --muted: #6f4d31;
    --soft: #f1dcae;
    --accent: #b94735;
    --green: #25b86c;
    --blue: #2a8cc9;
    --radius: 8px;
    --shadow: 0 24px 70px rgba(35, 20, 10, 0.42);
    --paper-texture:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.035) 0 1px,
            transparent 1px 7px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(61, 36, 18, 0.035) 0 1px,
            transparent 1px 9px
        );
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    overflow: hidden;
    background:
        var(--paper-texture),
        linear-gradient(135deg, rgba(92, 58, 31, 0.72), rgba(26, 18, 13, 0.92)),
        var(--bg);
    color: var(--text);
    font-family:
        Inter,
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
    font: inherit;
}

.site-shell {
    width: min(1180px, 100%);
    height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-rows: 42px minmax(0, 1fr);
    background: var(--paper-texture), linear-gradient(180deg, #c4a16d, #8f663d);
    border-left: 1px solid rgba(255, 239, 206, 0.22);
    border-right: 1px solid rgba(64, 38, 22, 0.52);
    box-shadow:
        inset 0 1px rgba(255, 246, 219, 0.22),
        inset 0 -2px rgba(69, 43, 25, 0.22);
}

.site-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    border-bottom: 1px solid rgba(72, 43, 24, 0.42);
    background: var(--paper-texture), linear-gradient(180deg, #cfae78, #a47447);
    box-shadow:
        inset 0 1px rgba(255, 246, 219, 0.34),
        0 3px 0 rgba(73, 43, 24, 0.34);
}

.site-header strong {
    color: #2b1b11;
    text-shadow: 0 1px rgba(255, 241, 206, 0.58);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.profile-rail {
    grid-row: 2;
    min-width: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(62, 41, 25, 0.56);
    background: var(--paper-texture), linear-gradient(180deg, #7a5230, #4d3322);
    box-shadow:
        inset -4px 0 0 rgba(44, 27, 17, 0.22),
        inset 1px 0 rgba(255, 238, 203, 0.16);
}

.profile-strip {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px 42px;
    scrollbar-width: thin;
    scrollbar-color: #3f444e transparent;
    touch-action: pan-y;
}

.profile-rail::before,
.profile-rail::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    height: 34px;
    pointer-events: none;
}

.profile-rail::before {
    top: 0;
    background: linear-gradient(180deg, rgba(72, 46, 28, 0.9), transparent);
}

.profile-rail::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(72, 46, 28, 0.96), transparent);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 9px;
    z-index: 3;
    width: 24px;
    height: 28px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    gap: 2px;
    pointer-events: none;
}

.scroll-cue span {
    width: 11px;
    height: 11px;
    border-right: 2px solid rgba(255, 238, 203, 0.92);
    border-bottom: 2px solid rgba(255, 238, 203, 0.92);
    transform: rotate(45deg);
    animation: cueBounce 1.25s ease-in-out infinite;
    filter: drop-shadow(0 2px 0 rgba(47, 29, 17, 0.7));
}

.scroll-cue span:last-child {
    animation-delay: 160ms;
}

@keyframes cueBounce {
    0%,
    100% {
        opacity: 0.38;
        transform: translateY(-2px) rotate(45deg);
    }
    50% {
        opacity: 1;
        transform: translateY(3px) rotate(45deg);
    }
}

.profile-strip::-webkit-scrollbar,
.profile-main::-webkit-scrollbar {
    width: 5px;
}

.profile-strip::-webkit-scrollbar-thumb,
.profile-main::-webkit-scrollbar-thumb {
    background: #3f444e;
    border-radius: 99px;
}

.profile-thumb {
    width: 70px;
    height: 84px;
    flex: 0 0 auto;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 237, 202, 0.32);
    border-radius: var(--radius);
    padding: 0;
    background: var(--paper-texture), var(--surface-2);
    color: var(--text);
    cursor: pointer;
    box-shadow:
        0 5px 0 rgba(53, 32, 19, 0.78),
        0 9px 18px rgba(40, 24, 14, 0.34),
        inset 0 1px rgba(255, 244, 220, 0.35);
    transition:
        border-color 160ms ease,
        transform 160ms ease,
        opacity 160ms ease,
        box-shadow 160ms ease;
}

.profile-thumb:hover {
    transform: translateY(-2px);
}

.profile-thumb.is-active {
    border-color: rgba(255, 236, 192, 0.96);
    box-shadow:
        0 3px 0 rgba(53, 32, 19, 0.82),
        0 0 0 3px rgba(255, 231, 172, 0.18),
        0 10px 22px rgba(40, 24, 14, 0.42),
        inset 0 1px rgba(255, 244, 220, 0.48);
}

.profile-thumb img,
.profile-thumb video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.thumb-initial {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 900;
    background: var(--surface-2);
}

.thumb-age {
    position: absolute;
    right: 6px;
    bottom: 6px;
    min-width: 28px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 237, 202, 0.46);
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(91, 59, 36, 0.88),
        rgba(36, 22, 14, 0.86)
    );
    color: white;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.profile-main {
    grid-row: 2;
    min-width: 0;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #7e5735 transparent;
    background: var(--paper-texture), linear-gradient(180deg, #332217, #1b1410);
}

.profile-page {
    min-height: 100%;
    display: none;
    grid-template-rows: auto 1fr auto;
}

.profile-page.is-active {
    display: grid;
}

.profile-summary {
    margin: 0;
    border-bottom: 1px solid rgba(67, 42, 25, 0.42);
    background: var(--paper-texture), linear-gradient(180deg, #c09b65, #8b6039);
    box-shadow:
        0 5px 0 rgba(59, 35, 20, 0.44),
        inset 0 1px rgba(255, 244, 219, 0.3);
}

.summary-location {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--paper-texture), linear-gradient(180deg, #c75b45, #a63d2f);
    color: white;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    box-shadow:
        inset 0 1px rgba(255, 229, 201, 0.24),
        inset 0 -2px rgba(80, 30, 22, 0.22);
}

.summary-location::before {
    content: "♥";
    margin-right: 8px;
    color: #ff9ca0;
    font-size: 14px;
}

.summary-title {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    background: var(--paper-texture), linear-gradient(180deg, #2d2119, #1a1410);
}

.summary-title h1 {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    color: white;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1;
    letter-spacing: 0;
}

.summary-title h1 span {
    color: var(--soft);
    font-size: 0.75em;
}

.summary-title strong {
    min-width: 0;
    color: #ff6a58;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-align: right;
    overflow-wrap: anywhere;
}

.profile-content {
    display: grid;
    gap: 14px;
    padding: 12px 14px 14px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.gallery-item {
    aspect-ratio: 3 / 4;
    min-width: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 237, 202, 0.18);
    border-radius: var(--radius);
    padding: 0;
    background: var(--paper-texture), var(--surface-2);
    cursor: pointer;
    box-shadow:
        0 5px 0 rgba(48, 29, 17, 0.74),
        0 12px 24px rgba(23, 14, 9, 0.28),
        inset 0 1px rgba(255, 244, 220, 0.22);
    transition:
        transform 150ms ease,
        box-shadow 150ms ease,
        border-color 150ms ease;
}

.gallery-item:hover {
    border-color: rgba(255, 235, 191, 0.52);
    transform: translateY(-2px);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media-chip {
    position: absolute;
    right: 8px;
    bottom: 8px;
    min-width: 48px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.64);
    color: white;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.info-panel {
    display: grid;
    gap: 12px;
    align-content: start;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.stat-box {
    min-height: 72px;
    border: 1px solid rgba(255, 237, 202, 0.17);
    border-radius: var(--radius);
    padding: 10px;
    background: var(--paper-texture), linear-gradient(180deg, #2a2019, #17120f);
    box-shadow:
        0 4px 0 rgba(52, 31, 18, 0.68),
        inset 0 1px rgba(255, 239, 206, 0.1);
}

.stat-box small {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.2;
}

.stat-box strong {
    display: block;
    font-size: 20px;
    line-height: 1.1;
}

.description {
    margin: 0;
    border-left: 3px solid #c65b45;
    padding: 2px 0 2px 12px;
    color: #ded8cf;
    line-height: 1.55;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 237, 202, 0.17);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--paper-texture), linear-gradient(180deg, #2a2019, #17120f);
    box-shadow:
        0 4px 0 rgba(52, 31, 18, 0.68),
        inset 0 1px rgba(255, 239, 206, 0.1);
}

.contact-line span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.contact-line strong {
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: right;
}

.contact-actions {
    position: sticky;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(255, 237, 202, 0.14);
    background: var(--paper-texture), rgba(54, 36, 24, 0.96);
    backdrop-filter: blur(14px);
}

.contact-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    box-shadow:
        0 5px 0 rgba(37, 22, 14, 0.76),
        0 12px 22px rgba(22, 13, 8, 0.3),
        inset 0 1px rgba(255, 255, 255, 0.22);
    transition:
        transform 140ms ease,
        box-shadow 140ms ease,
        filter 140ms ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    filter: saturate(1.06);
}

.contact-button:active {
    transform: translateY(2px);
    box-shadow:
        0 2px 0 rgba(37, 22, 14, 0.8),
        0 6px 14px rgba(22, 13, 8, 0.28),
        inset 0 2px 5px rgba(0, 0, 0, 0.18);
}

.whatsapp {
    background: linear-gradient(135deg, var(--green), #128c7e);
}

.telegram {
    background: linear-gradient(135deg, var(--blue), #1769c2);
}

.contact-button.is-disabled {
    opacity: 0.38;
    pointer-events: none;
}

.empty-rail,
.empty-gallery,
.no-profiles {
    color: var(--muted);
    text-align: center;
}

.empty-gallery {
    min-height: 180px;
    grid-column: 1 / -1;
    display: grid;
    place-items: center;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

.no-profiles {
    min-height: 100vh;
    display: grid;
    place-content: center;
    gap: 10px;
    padding: 24px;
}

.no-profiles h1,
.no-profiles p {
    margin: 0;
}

.no-profiles a {
    color: var(--text);
    font-weight: 800;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: none;
    grid-template-rows: auto minmax(0, 1fr) auto;
    background: rgba(0, 0, 0, 0.96);
}

.lightbox.is-open {
    display: grid;
}

.lightbox-top {
    min-height: 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 44px;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    color: var(--soft);
}

.lightbox-top strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.icon-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    padding: 0 0 2px;
}

.close-button {
    font-size: 26px;
    padding: 0 0 3px;
}

.nav-button {
    font-size: 30px;
    padding: 0 0 3px;
}

.lightbox-stage {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    touch-action: pan-y;
}

.lightbox-media {
    min-width: 0;
    min-height: 0;
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    cursor: zoom-out;
}

.lightbox-media img,
.lightbox-media video {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--radius);
    object-fit: contain;
    cursor: default;
}

.lightbox-hint {
    min-height: 42px;
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 13px;
}

@media (min-width: 900px) {
    body {
        padding: 18px;
    }

    .site-shell {
        height: calc(100vh - 36px);
        grid-template-columns: 104px minmax(0, 1fr);
        grid-template-rows: 42px minmax(0, 1fr);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .profile-thumb {
        width: 84px;
        height: 98px;
    }

    .profile-content {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: start;
    }

    .gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-shell {
        grid-template-columns: 82px minmax(0, 1fr);
        border: 0;
    }

    .profile-thumb {
        width: 66px;
        height: 80px;
    }

    .summary-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .summary-title strong {
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lightbox-stage {
        grid-template-columns: minmax(0, 1fr);
        padding: 0;
    }

    .nav-button {
        display: none;
    }
}

/* Flat paper refresh */
:root {
    --bg: #171310;
    --surface: #231c17;
    --surface-2: #2b221c;
    --ink-surface: #1a1512;
    --paper: #b99a72;
    --paper-dark: #6e4f36;
    --paper-light: #d1b58c;
    --line: rgba(214, 179, 132, 0.2);
    --text: #f5e6cf;
    --muted: #b99f7d;
    --soft: #d8bf95;
    --accent: #bf5a45;
    --green: #1fad73;
    --blue: #2680c2;
    --shadow: 0 18px 44px rgba(18, 12, 8, 0.34);
    --paper-texture:
        radial-gradient(
            circle at 20% 18%,
            rgba(255, 232, 190, 0.035) 0 1px,
            transparent 1px 100%
        ),
        radial-gradient(
            circle at 74% 58%,
            rgba(0, 0, 0, 0.045) 0 1px,
            transparent 1px 100%
        ),
        linear-gradient(180deg, rgba(255, 232, 190, 0.025), rgba(0, 0, 0, 0.02));
}

body {
    background:
        var(--paper-texture),
        linear-gradient(135deg, #2b2119, #15110e 54%, #211812);
}

.site-shell {
    background: var(--paper-texture), linear-gradient(180deg, #2a211b, #1a1512);
    border-color: rgba(219, 183, 135, 0.16);
    box-shadow: var(--shadow);
}

.site-header {
    background: var(--paper-texture), #211913;
    border-bottom: 1px solid rgba(214, 179, 132, 0.18);
    box-shadow: none;
}

.site-header strong {
    color: #f0d8b4;
    text-shadow: none;
}

.profile-rail {
    background: var(--paper-texture), #211913;
    border-right: 1px solid rgba(214, 179, 132, 0.18);
    box-shadow: none;
}

.profile-rail::before {
    background: linear-gradient(180deg, rgba(33, 25, 19, 0.96), transparent);
}

.profile-rail::after {
    background: linear-gradient(0deg, rgba(33, 25, 19, 0.96), transparent);
}

.scroll-cue span {
    border-color: rgba(216, 191, 149, 0.88);
    filter: none;
}

.profile-thumb {
    border-color: rgba(216, 191, 149, 0.25);
    background: #2a211b;
    box-shadow:
        0 4px 0 rgba(0, 0, 0, 0.28),
        0 9px 18px rgba(0, 0, 0, 0.22);
}

.profile-thumb.is-active {
    border-color: rgba(240, 216, 177, 0.9);
    box-shadow:
        0 3px 0 rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(216, 191, 149, 0.18);
}

.profile-main {
    background: var(--paper-texture), linear-gradient(180deg, #1b1511, #17120f);
}

.profile-summary {
    background: #1f1814;
    border-bottom: 1px solid rgba(214, 179, 132, 0.16);
    box-shadow: none;
}

.summary-location {
    background: var(--paper-texture), #a8493a;
    box-shadow: none;
}

.summary-location::before {
    content: "♥";
    color: #e7b096;
}

.summary-title {
    background: var(--paper-texture), #1f1814;
}

.summary-title strong {
    color: #dc7664;
}

.gallery-item {
    border-color: rgba(216, 191, 149, 0.22);
    background: #241c17;
    box-shadow: none;
}

.gallery-item:hover {
    border-color: rgba(216, 191, 149, 0.5);
    transform: none;
}

.stat-box,
.contact-line {
    border-color: rgba(216, 191, 149, 0.18);
    background: var(--paper-texture), #211a16;
    box-shadow: none;
}

.description {
    border-left-color: #b95a45;
}

.contact-actions {
    background: var(--paper-texture), rgba(31, 24, 20, 0.96);
    border-top: 1px solid rgba(216, 191, 149, 0.16);
}

.contact-button {
    position: relative;
    gap: 9px;
    min-height: 52px;
    border: 1px solid rgba(255, 237, 204, 0.2);
    overflow: hidden;
    isolation: isolate;
}

.contact-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: calc(var(--radius) - 1px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18),
        transparent 48%
    );
    pointer-events: none;
}

.contact-button svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: currentColor;
}

.contact-button span {
    line-height: 1;
}

.whatsapp {
    background: linear-gradient(180deg, #26bf7b, #169765);
}

.telegram {
    background: linear-gradient(180deg, #2e93d2, #1f70b4);
}

.media-chip,
.thumb-age {
    background: rgba(25, 18, 14, 0.78);
    border-color: rgba(216, 191, 149, 0.32);
}

@media (min-width: 900px) {
    .site-shell {
        box-shadow: var(--shadow);
    }
}

/* Warm dashboard redesign */
:root {
    --bg: #e8e0d4;
    --surface: #fff7ec;
    --surface-2: #f4eadf;
    --ink-surface: #fff8ee;
    --paper: #fff3e1;
    --paper-dark: #e3d4c3;
    --paper-light: #fffaf2;
    --line: rgba(63, 53, 45, 0.12);
    --text: #191715;
    --muted: #7f746a;
    --soft: #9c8d7f;
    --accent: #f26a3d;
    --green: #24b36b;
    --blue: #2f8dd3;
    --shadow: 0 20px 55px rgba(92, 70, 47, 0.16);
    --paper-texture:
        radial-gradient(
            circle at 18% 22%,
            rgba(255, 255, 255, 0.42) 0 1px,
            transparent 1px 100%
        ),
        radial-gradient(
            circle at 72% 54%,
            rgba(137, 103, 70, 0.08) 0 1px,
            transparent 1px 100%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.32),
            rgba(243, 217, 184, 0.18)
        );
}

body {
    background:
        var(--paper-texture),
        radial-gradient(
            circle at 82% 34%,
            rgba(255, 185, 92, 0.34),
            transparent 32%
        ),
        linear-gradient(135deg, #e7dfd6, #f2e3d0 48%, #e9d4b8);
    color: var(--text);
}

.site-shell {
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 10px;
    padding: 10px;
}

.site-header {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding: 0 4px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.brand-mark span {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border-radius: 6px 2px 6px 2px;
    background: linear-gradient(135deg, #ff8b54, #ef572f);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.45);
    position: relative;
}

.brand-mark span::after {
    content: "";
    position: absolute;
    inset: 5px 3px;
    border-left: 3px solid #fff9ee;
    border-bottom: 3px solid #fff9ee;
    transform: skewX(-16deg);
}

.brand-mark strong {
    color: #191715;
    font-size: 16px;
    font-weight: 850;
    letter-spacing: 0;
}

.brand-mark h1 {
    margin: 0;
    color: #191715;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.brand-mark small {
    display: block;
    margin-top: 2px;
    color: #7f6e61;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.site-header > strong {
    display: none;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-actions span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(56, 48, 42, 0.12);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.58);
    color: #332b25;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.profile-rail {
    border: 0;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.42);
    box-shadow: inset 0 0 0 1px rgba(75, 62, 52, 0.08);
    backdrop-filter: blur(14px);
}

.profile-rail::before,
.profile-rail::after {
    height: 30px;
}

.profile-rail::before {
    background: linear-gradient(180deg, rgba(238, 228, 214, 0.95), transparent);
}

.profile-rail::after {
    background: linear-gradient(0deg, rgba(238, 228, 214, 0.95), transparent);
}

.profile-strip {
    gap: 12px;
    padding: 12px 9px 44px;
}

.profile-thumb {
    border: 1px solid rgba(67, 55, 45, 0.12);
    background: #fff7ec;
    box-shadow: 0 10px 24px rgba(89, 65, 43, 0.14);
}

.profile-thumb.is-active {
    border-color: #f26a3d;
    box-shadow:
        0 0 0 3px rgba(242, 106, 61, 0.14),
        0 12px 25px rgba(89, 65, 43, 0.18);
}

.thumb-age {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: #2c2520;
    color: #fff6e8;
    line-height: 0.6;
}

.scroll-cue span {
    border-color: rgba(70, 57, 45, 0.58);
}

.profile-main {
    border-radius: 24px;
    background: rgba(255, 248, 238, 0.32);
    box-shadow: inset 0 0 0 1px rgba(75, 62, 52, 0.07);
    backdrop-filter: blur(14px);
}

.profile-summary {
    margin: 0 0 10px;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 248, 238, 0.72);
    box-shadow: 0 14px 32px rgba(89, 65, 43, 0.12);
}

.summary-location {
    min-height: 44px;
    background: linear-gradient(135deg, #ff8a54, #f05c34);
    color: #fffaf3;
    box-shadow: none;
}

.summary-location::before {
    color: rgba(255, 255, 255, 0.72);
}

.summary-title {
    background: rgba(255, 250, 242, 0.86);
    padding: 17px 20px;
}

.summary-title h1 {
    color: #1d1a17;
}

.summary-title h1 span {
    color: #7d7065;
}

.summary-title strong {
    color: #e95735;
}

.profile-content {
    gap: 12px;
    padding: 0 0 14px;
}

.gallery {
    gap: 10px;
}

.gallery-item {
    border: 1px solid rgba(68, 55, 45, 0.12);
    background: #fff8ee;
    box-shadow: 0 12px 26px rgba(89, 65, 43, 0.12);
}

.gallery-item:hover {
    border-color: rgba(242, 106, 61, 0.46);
}

.info-panel {
    gap: 12px;
}

.stat-box,
.contact-line {
    border: 1px solid rgba(68, 55, 45, 0.1);
    background: rgba(255, 250, 242, 0.76);
    color: #1d1a17;
    box-shadow: 0 10px 22px rgba(89, 65, 43, 0.09);
}

.stat-box small,
.contact-line span {
    color: #8a7a6b;
}

.description {
    color: #2b2520;
    border-left-color: #f26a3d;
}

.contact-actions {
    gap: 12px;
    padding: 12px 0 2px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.contact-button {
    min-height: 54px;
    border: 0;
    color: white;
    box-shadow:
        0 5px 0 rgba(62, 48, 38, 0.28),
        0 16px 26px rgba(77, 55, 38, 0.18),
        inset 0 1px rgba(255, 255, 255, 0.22);
}

.whatsapp {
    background: linear-gradient(180deg, #29c980, #18a96a);
}

.telegram {
    background: linear-gradient(180deg, #36a4e4, #237fc6);
}

.media-chip {
    background: rgba(31, 27, 23, 0.74);
    border-color: rgba(255, 255, 255, 0.36);
}

.lightbox {
    background: rgba(25, 20, 17, 0.92);
}

.icon-button {
    border-color: rgba(255, 246, 232, 0.2);
    background: rgba(255, 250, 242, 0.1);
}

@media (min-width: 900px) {
    body {
        padding: 18px;
    }

    .site-shell {
        height: calc(100vh - 36px);
        grid-template-columns: 104px minmax(0, 1fr);
        grid-template-rows: 42px minmax(0, 1fr);
    }

    .profile-content {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .site-shell {
        gap: 8px;
        padding: 8px;
    }

    .header-actions {
        display: none;
    }

    .profile-main,
    .profile-rail,
    .profile-summary {
        border-radius: 16px;
    }
}

/* Dashboard polish */
.profile-main {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.profile-thumb.is-active {
    border-width: 3px;
    border-color: #f26a3d;
    box-shadow:
        0 0 0 2px rgba(255, 248, 238, 0.92),
        0 0 0 5px rgba(242, 106, 61, 0.18),
        0 12px 25px rgba(89, 65, 43, 0.16);
}

.summary-title {
    justify-content: flex-start;
}

.summary-title h1 {
    flex-wrap: wrap;
}

.summary-title h1 span {
    color: #7d7065;
    font-size: 0.72em;
    font-weight: 760;
}

.summary-title > strong {
    display: none;
}

.contact-button {
    border: 0;
    box-shadow: none;
}

.contact-button::before {
    display: none;
}

.contact-button:hover {
    transform: none;
    filter: brightness(1.03);
}

.contact-button:active {
    transform: translateY(1px);
    box-shadow: none;
}

.whatsapp {
    background: #22b978;
}

.telegram {
    background: #2d91d0;
}

@media (max-width: 640px) {
    .profile-main {
        border-radius: 0;
    }
}

/* Pricing, copy button, and clipping fixes */
.site-shell {
    overflow: visible;
}

.profile-rail {
    overflow: visible;
}

.profile-strip {
    padding-left: 14px;
    padding-right: 14px;
}

.profile-page {
    padding: 0 12px 18px;
}

.profile-summary {
    margin-left: 0;
    margin-right: 0;
}

.profile-content {
    overflow: visible;
}

.info-panel {
    overflow: visible;
}

.price-card {
    border: 1px solid rgba(68, 55, 45, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 250, 242, 0.76);
    color: #1d1a17;
    box-shadow: 0 10px 22px rgba(89, 65, 43, 0.09);
    overflow: hidden;
}

.price-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 12px 7px;
    color: #8a7a6b;
    font-size: 12px;
    font-weight: 850;
}

.price-head small {
    color: #9c8b7b;
    font-size: 11px;
    font-weight: 800;
}

.price-card table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 13px;
}

.price-card th,
.price-card td {
    padding: 8px 10px;
    border-top: 1px solid rgba(68, 55, 45, 0.08);
    text-align: right;
    white-space: nowrap;
}

.price-card th:first-child {
    text-align: left;
    color: #7d7065;
    font-weight: 850;
}

.price-card thead th {
    color: #9a8979;
    font-size: 11px;
    font-weight: 850;
}

.price-card tbody td {
    color: #1d1a17;
    font-weight: 850;
}

.payment-note {
    margin: 0;
    border-radius: var(--radius);
    padding: 10px 12px;
    background: rgba(242, 106, 61, 0.1);
    color: #6e4e39;
    font-size: 14px;
    line-height: 1.38;
}

.phone-copy {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(68, 55, 45, 0.1);
    border-radius: var(--radius);
    padding: 10px 12px;
    background: rgba(255, 250, 242, 0.86);
    color: #1d1a17;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(89, 65, 43, 0.09);
}

.phone-copy span {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 18px;
    font-weight: 900;
}

.phone-copy strong {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 7px 10px;
    background: #f26a3d;
    color: white;
    font-size: 12px;
    line-height: 1;
}

.phone-copy:disabled {
    opacity: 0.45;
    cursor: default;
}

@media (min-width: 900px) {
    .site-shell {
        grid-template-columns: 124px minmax(0, 1fr);
        overflow: visible;
    }

    .profile-thumb {
        width: 84px;
    }
}

@media (max-width: 640px) {
    .profile-page {
        padding: 0 8px 14px;
    }

    .price-card table {
        font-size: 12px;
    }
}

/* Final detail pass */
@media (min-width: 900px) {
    .site-shell {
        grid-template-columns: 136px minmax(0, 1fr);
    }
}

.profile-strip {
    padding-left: 18px;
    padding-right: 18px;
}

.profile-page {
    padding: 0 28px 28px 16px;
}

.profile-summary,
.gallery-item,
.stat-box,
.price-card,
.payment-note,
.phone-copy {
    box-shadow: 0 14px 30px rgba(105, 73, 42, 0.11);
}

.gallery-item {
    transition: border-color 160ms ease;
}

.gallery-item:hover {
    transform: none;
}

.gallery-item img,
.gallery-item video {
    transition: transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.025);
}

.price-card {
    border: 1px solid rgba(68, 55, 45, 0.09);
    border-radius: 14px;
    padding: 10px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.68),
            rgba(255, 243, 224, 0.64)
        ),
        rgba(255, 250, 242, 0.86);
    overflow: visible;
}

.price-head {
    min-height: 34px;
    margin: -2px -2px 6px;
    border-radius: 11px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.56);
    color: #6f5f51;
}

.price-head span {
    font-size: 13px;
    font-weight: 900;
}

.price-card table {
    border-collapse: separate;
    border-spacing: 0 6px;
}

.price-card th,
.price-card td {
    border-top: 0;
    padding: 8px 9px;
    background: rgba(255, 255, 255, 0.48);
}

.price-card thead th {
    background: transparent;
    padding-top: 0;
    padding-bottom: 2px;
}

.price-card tbody th:first-child {
    border-radius: 10px 0 0 10px;
}

.price-card tbody td:last-child {
    border-radius: 0 10px 10px 0;
}

.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(242, 106, 61, 0.11);
    color: #6a4b36;
}

.info-dot {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f26a3d;
    color: white;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.phone-copy strong {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    padding: 0;
}

.copy-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.check-svg {
    display: none;
}

.phone-copy.is-copied .copy-svg {
    display: none;
}

.phone-copy.is-copied .check-svg {
    display: block;
}

.description {
    margin-top: 2px;
}

.contact-button {
    box-shadow: 0 14px 26px rgba(77, 55, 38, 0.12);
}

.whatsapp {
    box-shadow: 0 14px 26px rgba(34, 185, 120, 0.24);
}

.telegram {
    box-shadow: 0 14px 26px rgba(45, 145, 208, 0.24);
}

.contact-button:hover {
    transform: none;
    filter: brightness(1.04);
}

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

.contact-button svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 640px) {
    .profile-strip {
        padding-left: 10px;
        padding-right: 10px;
    }

    .profile-page {
        padding: 0 10px 16px;
    }
}

/* Rail and brand icon cleanup */
.site-shell {
    grid-template-columns: 106px minmax(0, 1fr);
}

.profile-strip {
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.contact-button img {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    display: block;
    filter: brightness(0) invert(1);
}

@media (min-width: 900px) {
    .site-shell {
        grid-template-columns: 106px minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .site-shell {
        grid-template-columns: 82px minmax(0, 1fr);
    }
}

/* SEO landing copy */
.seo-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
    margin: 0 28px 14px 16px;
    border-radius: 22px;
    padding: 18px 20px;
    background: rgba(255, 248, 238, 0.7);
    box-shadow: 0 14px 30px rgba(105, 73, 42, 0.1);
}

.seo-eyebrow {
    display: block;
    margin-bottom: 6px;
    color: #f26a3d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.seo-panel h2 {
    margin: 0;
    color: #1d1a17;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.seo-panel p {
    max-width: 760px;
    margin: 10px 0 0;
    color: #5f5146;
    font-size: 15px;
    line-height: 1.45;
}

.profile-map {
    overflow: hidden;
    border: 1px solid rgba(68, 55, 45, 0.1);
    border-radius: 14px;
    background: rgba(255, 250, 242, 0.76);
    box-shadow: 0 14px 30px rgba(105, 73, 42, 0.11);
    min-height: 210px;
}

.profile-map .leaflet-container,
.profile-map {
    width: 100%;
    height: 210px;
}

.leaflet-profile-marker {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 3px solid white;
    border-radius: 999px;
    background: #f26a3d;
    box-shadow: 0 10px 22px rgba(242, 106, 61, 0.34);
}

.leaflet-profile-marker span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: white;
}

.thumb-online {
    position: absolute;
    left: 7px;
    bottom: 8px;
    width: 13px;
    height: 13px;
    border: 2px solid white;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(34, 197, 94, 0.12);
    color: #137a3e;
    font-size: 12px;
    font-weight: 900;
}

.online-badge span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.summary-title {
    align-items: center;
    justify-content: space-between;
}

.summary-title h2 {
    min-width: 0;
    flex-wrap: wrap;
}

.leaflet-container {
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
}

.leaflet-popup-content {
    margin: 10px 12px;
    font-size: 13px;
    line-height: 1.35;
}

.leaflet-control-attribution {
    font-size: 9px;
}

@media (max-width: 640px) {
    .summary-title {
        align-items: flex-start;
    }

    .online-badge {
        padding: 6px 9px;
    }
}

.seo-panel ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-panel li {
    border-radius: 999px;
    padding: 8px 11px;
    background: rgba(255, 255, 255, 0.58);
    color: #4c4037;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.summary-title h2 {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
    color: #1d1a17;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 100%;
    letter-spacing: 0;
}

.summary-title h2 span {
    color: #7d7065;
    font-size: 0.72em;
    font-weight: 760;
}

@media (max-width: 760px) {
    .seo-panel {
        grid-template-columns: 1fr;
        align-items: start;
        margin: 0 10px 12px;
        padding: 14px;
    }

    .seo-panel ul {
        display: flex;
        flex-wrap: wrap;
    }
}

.seo-faq {
    margin: 4px 28px 86px 16px;
    border-radius: 22px;
    padding: 20px;
    background: rgba(255, 248, 238, 0.62);
    box-shadow: 0 14px 30px rgba(105, 73, 42, 0.1);
}

.seo-faq h2 {
    margin: 0;
    color: #1d1a17;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
}

.seo-faq > p {
    max-width: 920px;
    margin: 10px 0 0;
    color: #5f5146;
    line-height: 1.5;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.faq-grid article {
    border-radius: 14px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.54);
}

.faq-grid h3 {
    margin: 0;
    color: #1d1a17;
    font-size: 15px;
}

.faq-grid p {
    margin: 7px 0 0;
    color: #65564a;
    font-size: 13px;
    line-height: 1.42;
}

@media (max-width: 760px) {
    .seo-faq {
        margin: 0 10px 78px;
        padding: 14px;
    }

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

/* Exclusive profile and smoother CTA hover */
.thumb-star {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ff7a32;
    color: #fff8ee;
    font-size: 14px;
    line-height: 0.6;
    text-shadow: 0 1px 0 rgba(80, 40, 14, 0.22);
    box-shadow: 0 7px 15px rgba(242, 106, 61, 0.28);
}

.profile-thumb.is-exclusive {
    border-color: rgba(255, 122, 50, 0.58);
}

.profile-thumb.is-exclusive.is-active {
    border-color: #ff7a32;
}

.contact-button {
    transition:
        transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 220ms ease,
        filter 220ms ease,
        background-color 220ms ease;
    will-change: transform;
}

.whatsapp {
    box-shadow: 0 12px 26px rgba(34, 185, 120, 0.22);
}

.telegram {
    box-shadow: 0 12px 26px rgba(45, 145, 208, 0.22);
}

.contact-button:hover {
    transform: scale(1.018);
    filter: saturate(1.05) brightness(1.02);
}

.whatsapp:hover {
    box-shadow: 0 18px 34px rgba(34, 185, 120, 0.3);
}

.telegram:hover {
    box-shadow: 0 18px 34px rgba(45, 145, 208, 0.3);
}

.contact-button:active {
    transform: scale(0.992);
    transition-duration: 120ms;
}

/* Fixed bottom contact actions */
.profile-main {
    padding-bottom: 92px;
}

.profile-page {
    padding-bottom: 112px;
}

.profile-page.is-active .contact-actions {
    position: fixed;
    left: calc((100vw - min(1180px, 100vw)) / 2 + 126px);
    right: calc((100vw - min(1180px, 100vw)) / 2 + 10px);
    bottom: 0;
    z-index: 10000;
    padding: 12px 0 max(12px, env(safe-area-inset-bottom));
    background: linear-gradient(
        180deg,
        rgba(238, 218, 191, 0),
        rgba(238, 218, 191, 0.96) 24%,
        rgba(238, 218, 191, 0.96)
    );
}

.profile-map .leaflet-control-container {
    font-family: inherit;
}

.profile-map .leaflet-control-zoom {
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(105, 73, 42, 0.18);
}

.profile-map .leaflet-control-zoom a {
    border: 0;
    background: rgba(255, 250, 242, 0.94);
    color: #1d1a17;
}

/* Domain, location, online and logo updates */
.brand-mark .brand-star {
    position: relative;
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 9px;
    background: linear-gradient(135deg, #ff8a54, #f05c34);
    color: #fff8ee;
    font-size: 17px;
    line-height: 0.8;
    box-shadow: 0 10px 20px rgba(242, 106, 61, 0.22);
}

.brand-mark .brand-star::after {
    content: none;
}

.summary-location {
    gap: 8px;
}

.summary-location::before {
    content: none;
}

.summary-location svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.86;
}

.profile-thumb.is-online {
    border-color: #22c55e;
    box-shadow:
        0 0 0 2px rgba(255, 248, 238, 0.95),
        0 0 0 6px rgba(34, 197, 94, 0.22),
        0 14px 28px rgba(33, 118, 73, 0.2);
}

.profile-thumb.is-online.is-active,
.profile-thumb.is-online.is-exclusive.is-active {
    border-color: #22c55e;
    box-shadow:
        0 0 0 3px rgba(255, 248, 238, 0.95),
        0 0 0 7px rgba(34, 197, 94, 0.26),
        0 16px 30px rgba(33, 118, 73, 0.24);
}

.profile-thumb.is-online .thumb-online {
    left: 8px;
    top: 9px;
    bottom: auto;
    width: 15px;
    height: 15px;
    border: 3px solid rgba(255, 248, 238, 0.98);
    background: #22c55e;
}

.profile-thumb.is-online:not(.is-active) {
    border-color: rgba(255, 248, 238, 0.72);
    box-shadow: 0 10px 20px rgba(89, 65, 43, 0.12);
}

.profile-thumb.is-online.is-exclusive:not(.is-active) {
    border-color: rgba(255, 122, 50, 0.58);
}

.lightbox {
    z-index: 20000;
}

body:has(.lightbox.is-open) .profile-page.is-active .contact-actions {
    display: none;
}

.lightbox.is-open ~ *,
.lightbox.is-open .leaflet-container {
    z-index: auto;
}

/* Quieter SEO content */
.seo-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 18px 28px 10px 16px;
    border-top: 1px solid rgba(93, 73, 55, 0.16);
    border-radius: 0;
    padding: 22px 0 0;
    background: transparent;
    box-shadow: none;
}

.seo-eyebrow {
    margin-bottom: 8px;
    color: #f26a3d;
    font-size: 11px;
    letter-spacing: 0;
    text-transform: none;
}

.seo-panel h2 {
    max-width: 760px;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.04;
    letter-spacing: 0;
}

.seo-panel p {
    max-width: 780px;
    margin-top: 8px;
    color: #5d5046;
    font-size: 14px;
}

.seo-panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.seo-panel li {
    border: 1px solid rgba(99, 76, 56, 0.12);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(255, 250, 242, 0.42);
    color: #6a5a4d;
    font-size: 12px;
    font-weight: 750;
}

.seo-faq {
    margin: 0 28px 86px 16px;
    border-top: 1px solid rgba(93, 73, 55, 0.12);
    border-radius: 0;
    padding: 20px 0 0;
    background: transparent;
    box-shadow: none;
}

.seo-faq h2 {
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: 0;
}

.seo-faq > p {
    max-width: 880px;
    color: #5d5046;
    font-size: 14px;
}

.faq-grid {
    gap: 8px;
}

.faq-grid article {
    border: 1px solid rgba(99, 76, 56, 0.1);
    border-radius: 12px;
    background: rgba(255, 250, 242, 0.46);
}

@media (max-width: 760px) {
    .seo-panel,
    .seo-faq {
        margin-left: 10px;
        margin-right: 10px;
        padding-top: 16px;
    }
}

@media (max-width: 640px) {
    .profile-main {
        padding-bottom: 84px;
    }

    .profile-page {
        padding-bottom: 104px;
    }

    .profile-page.is-active .contact-actions {
        left: 90px;
        right: 8px;
        padding-top: 10px;
    }
}
