*,
*::before,
*::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    --white: #ffffff;
    --magenta: #9f2064;
    --magenta-light: #c42a7f;
    --magenta-pale: rgba(159, 32, 100, 0.08);
    --magenta-glow: rgba(159, 32, 100, 0.18);
}

html,
body{
    height: 100%;
    background: var(--white);
    color: #1a1a1a;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

body::before{
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 110% 10%, rgba(159, 32, 100, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at -10% 90%, rgba(159, 32, 100, 0.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

body::after{
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.page{
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 2rem;
}

header{
    padding: 3.2rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeDown 0.8s ease both;
}

.logo{
    height: 60px;
}

.brand-name{
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--magenta);
    letter-spacing: 0.01em;
    line-height: 1;
}

.brand-sub{
    font-size: 0.72rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 3px;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0 3rem;
}

.status-chip{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--magenta-pale);
    border: 1px solid rgba(159, 32, 100, 0.2);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--magenta);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 2.2rem;
    animation: fadeUp 0.8s 0.1s ease both;
}

.status-chip .dot{
    width: 7px;
    height: 7px;
    background: var(--magenta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

h1{
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.2s ease both;
}

h1 em{
    font-style: italic;
    color: var(--magenta);
}

.intro{
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    max-width: 560px;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s 0.3s ease both;
}

.divider{
    width: 52px;
    height: 2px;
    background: var(--magenta);
    border-radius: 2px;
    margin-bottom: 2.2rem;
    animation: expandW 0.8s 0.4s ease both;
}

.contact-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    animation: fadeUp 0.8s 0.45s ease both;
}

.contact-card{
    background: var(--white);
    border: 1.5px solid rgba(159, 32, 100, 0.15);
    border-radius: 14px;
    padding: 1.3rem 1.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.contact-card:hover{
    border-color: var(--magenta);
    box-shadow: 0 6px 28px var(--magenta-glow);
    transform: translateY(-3px);
}

.contact-card a{
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.card-icon{
    width: 38px;
    height: 38px;
    background: var(--magenta-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: background 0.25s;
}

.contact-card:hover .card-icon{
    background: var(--magenta);
}

.contact-card:hover .card-icon .icon-svg{
    stroke: white;
}

.card-icon .icon-svg{
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--magenta);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.25s;
}

.card-label{
    font-size: 0.7rem;
    font-weight: 500;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.card-value{
    font-size: 0.92rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.45;
}

.thanks{
    margin-top: 2.8rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    animation: fadeUp 0.8s 0.55s ease both;
}

footer{
    padding: 1.8rem 0 2.2rem;
    border-top: 1px solid rgba(159, 32, 100, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    animation: fadeUp 0.8s 0.6s ease both;
}

footer span{
    font-size: 0.78rem;
    color: #bbb;
    letter-spacing: 0.04em;
}

.footer-accent{
    width: 8px;
    height: 8px;
    background: var(--magenta);
    border-radius: 50%;
    display: inline-block;
}

@keyframes fadeDown{
    from{
        opacity: 0;
        transform: translateY(-16px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(20px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandW{
    from{
        width: 0;
        opacity: 0;
    }

    to{
        width: 52px;
        opacity: 1;
    }
}

@keyframes pulse{
    0%,
    100%{
        opacity: 1;
        transform: scale(1);
    }

    50%{
        opacity: 0.5;
        transform: scale(0.75);
    }
}

@media (max-width: 480px){
    .page{
        padding: 0 1.2rem;
    }

    h1{
        font-size: 2rem;
    }

    .contact-grid{
        grid-template-columns: 1fr;
    }

    footer{
        flex-direction: column;
        align-items: flex-start;
    }
}