.simple-contact-wrapper {
background-color: #FAF9F6; /* Off-White Background */
padding: 100px 20px;
font-family: 'Inter', sans-serif;
text-align: center;
color: #1a1a1a;
}
.simple-contact-container {
background: #FFFFFF; /* Pure White Card */
max-width: 500px;
margin: 0 auto;
padding: 50px 30px;
border-radius: 4px; /* Minimalist Sharp Corners */
box-shadow: 0 4px 20px rgba(0,0,0,0.02);
border: 1px solid #f0f0f0;
}
.brand-title {
font-family: 'Playfair Display', serif;
font-size: 32px;
margin-bottom: 20px;
letter-spacing: 1px;
}
.contact-divider {
width: 40px;
height: 2px;
background: #1a1a1a;
margin: 0 auto 40px auto;
}
.info-row {
margin-bottom: 25px;
display: flex;
flex-direction: column;
gap: 5px;
}
.label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 2px;
color: #888;
font-weight: 600;
}
.value {
font-size: 18px;
font-weight: 400;
color: #1a1a1a;
}
.value.link {
text-decoration: none;
transition: color 0.3s ease;
}
.value.link:hover {
color: #666;
}
/* Mobile tweak */
@media (max-width: 480px) {
.brand-title { font-size: 26px; }
.value { font-size: 16px; }
}