:root {
    --bg: #f6efe8;
    --bg-soft: #fffaf7;
    --card: rgba(255, 255, 255, 0.82);
    --text: #2b211e;
    --muted: #6f5c55;
    --line: rgba(60, 38, 31, 0.08);
    --accent: #e89a9d;
    --accent-dark: #d97d82;
    --shadow: 0 24px 60px rgba(66, 40, 33, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(232, 154, 157, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.65), transparent 26%),
        linear-gradient(180deg, #f8f2ec 0%, #f4ebe3 100%);
    color: var(--text);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 18px;
}

.card {
    width: min(1040px, 100%);
    min-height: min(720px, calc(100svh - 36px));
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255, 250, 247, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.media {
    position: relative;
    min-height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #e8ddd6;
}

.media img {
    filter: saturate(0.96) contrast(1.01);
}

.photo-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 250, 247, 0.92);
    color: #584640;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(50, 30, 26, 0.1);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #62c174;
    flex: 0 0 auto;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 12px 10px 6px;
}

.mini-profile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #7a6259;
    font-size: 0.86rem;
    font-weight: 600;
    border: 1px solid rgba(60, 38, 31, 0.06);
}

h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 800;
    max-width: 10ch;
}

.subheadline {
    margin: 18px 0 0;
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: var(--muted);
    max-width: 34ch;
}

.details {
    margin: 14px 0 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #8b746b;
    max-width: 34ch;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: fit-content;
    padding: 0 24px;
    margin-top: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    font-size: 0.98rem;
    font-weight: 800;
    box-shadow: 0 16px 30px rgba(217, 125, 130, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(217, 125, 130, 0.28);
}

@media (max-width: 900px) {
    .page {
        padding: 12px;
    }

    .card {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
        border-radius: 26px;
    }

    .media {
        min-height: 42svh;
    }

    .content {
        padding: 2px 4px 8px;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .subheadline,
    .details {
        max-width: none;
    }

    .cta {
        width: 100%;
    }
}