/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #faf9f6; /* Premium warm soft off-white */
    color: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container & Animation */
.container {
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Typography */
.name {
    font-family: 'Instrument Serif', serif;
    font-size: 2.8rem;
    font-weight: 400;
    font-style: italic;
    color: #111111;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.location {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 350;
    color: #666666;
    letter-spacing: 0.04em;
    margin-bottom: 1.8rem;
}

/* Contact Link */
.contact-btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    letter-spacing: 0.02em;
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.3);
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-btn:hover {
    color: #666666;
    border-bottom-color: rgba(17, 17, 17, 0);
    transform: translateY(-1px);
}

.contact-btn:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 4px;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
