:root {
    color-scheme: light;
    font-family: 'Inter', Arial, sans-serif;
    color: #2b2521;
    background: #fbf8f2;
    font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; }
body { background: #fbf8f2; }

.gold-threads {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 22%, rgba(193, 139, 54, .055), transparent 34%),
        radial-gradient(circle at 92% 82%, rgba(193, 139, 54, .04), transparent 28%);
}

.gold-threads svg { width: 100%; height: 100%; opacity: .12; }

.navbar {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 16px 3.75%;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28.8px;
    font-style: italic;
    line-height: 1.6;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 96px 24px;
    text-align: center;
}

.hero-content { width: 100%; max-width: 800px; }

.photo-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .16);
}

.profile-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    margin: 0 0 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.6;
}

.connect-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    background: #332720;
    color: #fffaf2;
    font-size: 15.2px;
    font-weight: 600;
    line-height: 1.6;
    text-decoration: none;
    transition: background-color .2s, transform .2s;
}

.connect-button:hover { background: #594236; transform: translateY(-2px); }
.connect-button:focus-visible { outline: 2px solid #8d684b; outline-offset: 5px; }

@media (max-width: 768px) {
    .navbar { padding: 16px 6%; }
    .logo { font-size: 25px; }
    .hero { padding: 96px 24px 56px; }
    .hero-content { max-width: 580px; }
    .photo-wrapper { width: 150px; height: 150px; margin-bottom: 28px; }
    h1 { font-size: clamp(34px, 6.8vw, 48px); line-height: 1.35; margin-bottom: 28px; }
    .connect-button { min-height: 48px; padding-inline: 28px; }
}

@media (max-width: 360px) {
    .hero { padding-inline: 20px; }
    h1 { font-size: 31px; }
}

@media (prefers-reduced-motion: reduce) {
    .connect-button { transition: none; }
    .connect-button:hover { transform: none; }
}
