:root {
    --ink: #2b2b2b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--ink);
    font-family: 'Libre Baskerville', serif;
    padding: 40px 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px; /* Un poco más ancho para que la imagen luzca */
    width: 100%;
    gap: 15px;
}

.hero {
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Sombra suave elegante */
    border-radius: 2px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    display: block;
    height: auto;
    margin-top: 60px;
}

.cta-area {
    min-height: 50px; /* Evita que el contenido salte bruscamente */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cta-link {
    font-style: italic;
    font-size: 15px;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 5px;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.5;
}

/* Estilo exacto a tu cuarta captura */
.signup {
    display: flex;
    border-bottom: 1px solid var(--ink);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease forwards;
}

.signup.hidden {
    display: none;
}

.signup input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 16px;
    padding: 10px 5px;
    color: var(--ink);
}

.signup button {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--ink);
    padding: 0 10px;
}

.form-message {
    font-size: 13px;
    font-style: italic;
    color: var(--ink);
}

.footer-text {
    font-style: italic;
    font-size: 14px;
    margin-top: 10px;
}

.seal {
    width: 40px;
    height: auto;
    opacity: 1;
    margin-top: -10px;
}

/* Animación sutil para el dinamismo tipo Scuffers */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}