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

body {
    background-color: #FAFAFA;
    color: #2C3539;
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wrapper {
    background-color: #FFFFFF;
    max-width: 900px;
    width: 100%;
    padding: 80px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #EAEAEA;
    text-align: center;
    animation: fadeUp 1.5s ease-out;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem; /* Un poco más grande al no haber logo */
    font-weight: 600;
    letter-spacing: 2px;
    color: #1A1A1A;
    margin-bottom: 5px;
}

.brand-sub {
    font-size: 0.9rem;
    letter-spacing: 10px;
    font-weight: 400;
    color: #666666;
    text-transform: uppercase;
}

.main-content {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.headline em {
    font-style: italic;
    color: #555555;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
}

/* Sección de Contacto ajustada para 2 elementos */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px; /* Separación amplia para equilibrar el diseño */
}

.contact-block {
    min-width: 200px;
}

.label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999999;
    margin-bottom: 10px;
}

.value {
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #2C3539;
}

.link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.link:hover {
    color: #8B9D83;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .wrapper { padding: 40px 20px; }
    .brand-name { font-size: 2.8rem; }
    .headline { font-size: 1.8rem; }
    .contact-section { flex-direction: column; gap: 40px; }
    .contact-block { border-bottom: 1px solid #EEEEEE; padding-bottom: 20px; width: 100%; }
    .contact-block:last-child { border-bottom: none; padding-bottom: 0; }
}