/* ==========================================================================
   Katline Roddes — link-in-bio
   Editorial, feminine and fine. Pure white background, delicate serif,
   near-monochrome ink palette with one subtle blush accent.
   Single, non-scrolling page.
   ========================================================================== */

:root {
    --color-white: #ffffff;
    --color-ink: #4a4542;             /* soft charcoal instead of black */

    /* Single subtle touch of colour — adjust here to dial it up or down */
    --color-accent: #c69a94;          /* dusty blush / rosé poudré */
    --color-accent-rgb: 198, 154, 148;

    --line: rgba(74, 69, 66, 0.16);
    --line-strong: rgba(74, 69, 66, 0.32);

    --text-primary: #4a4542;
    --text-muted: rgba(74, 69, 66, 0.58);

    --shadow-soft: 0 18px 50px rgba(26, 22, 20, 0.08);

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100dvh;
    overflow: auto;
}

body {
    font-family: var(--font-body), sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-primary);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: linear-gradient(135deg, #f8f6f4 0%, #faf8f6 50%, #f5f2ef 100%);
}

/* Page layout — fills the viewport, no scroll */
.page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: 16px;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 32px 32px;
    background: var(--color-white);
    border-radius: 3px;
    box-shadow: 0 24px 80px rgba(26, 22, 20, 0.09),
                0 8px 24px rgba(26, 22, 20, 0.06);
}

/* Profile */
.profile-section {
    margin-bottom: 28px;
    text-align: center;
    width: 100%;
}

.profile-header {
    position: relative;
    margin-bottom: 18px;
}

.profile-picture {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(26, 22, 20, 0.14);
    margin: 0 auto 18px;
    display: block;
    position: relative;
    z-index: 2;
    border: 3px solid var(--color-white);
    transform: translateY(10px);
}

.profile-picture::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 136px;
    height: 136px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    z-index: -1;
}

.name {
    margin-bottom: 8px;
    font-family: var(--font-display), serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--color-ink);
}

.subtitle {
    font-family: var(--font-body), sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Fine accent divider under the subtitle */
.divider-after {
    position: relative;
    padding-bottom: 18px;
}

.divider-after::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 36px;
    height: 1px;
    background: var(--color-accent);
    transform: translateX(-50%);
}

/* Links */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.link-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-title {
    font-family: var(--font-body), sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-align: center;
    color: var(--text-muted);
    margin: 0;
}

.link-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-item.with-spacing {
    margin-bottom: 10px;
    align-items: center;
}

.announcement {
    padding: 0 8px;
    font-family: var(--font-body), sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.22em;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-muted);
}

.announcement:empty {
    display: none;
}

/* Links — elegant buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    padding: 16px 32px;
    font-family: var(--font-display), serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    background: var(--color-white);
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary {
    color: var(--text-primary);
}

.button-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

@media (hover: hover) {
    .cta-button:hover {
        color: var(--color-accent);
        border-color: var(--color-accent);
    }
}

/* Social row — buttons */
.social-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.social-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 100px;
    padding: 14px 12px;
    text-decoration: none;
    color: var(--text-primary);
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .social-card:hover {
        color: var(--color-accent);
    }
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-label {
    font-family: var(--font-display), serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
}

/* Responsive */
@media (max-width: 480px) {
    .page {
        padding: 8px;
    }

    .container {
        padding: 24px 20px;
        margin: 0;
        max-width: 100%;
    }

    .profile-picture {
        width: 100px;
        height: 100px;
        margin-bottom: 14px;
    }

    .profile-picture::after {
        width: 116px;
        height: 116px;
    }

    .name {
        font-size: 32px;
    }

    .subtitle {
        font-size: 10px;
    }

    .section-title {
        font-size: 10px;
    }

    .links-container {
        gap: 20px;
    }

    .cta-button {
        font-size: 13px;
        padding: 14px 24px;
        max-width: 100%;
    }

    .button-icon {
        width: 15px;
        height: 15px;
    }

    .social-grid {
        gap: 8px;
    }

    .social-card {
        min-width: 0;
        flex: 1;
        padding: 12px 10px;
    }

    .social-label {
        font-size: 13px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }
}
