html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: #f4efe5;
}

/* ---------- Cover ---------- */

.cover {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.cover-image {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    aspect-ratio: 1 / 1;
}

.cover-enter {
    margin-top: 1.5rem;
}

.cover-enter a {
    color: #6d6a56;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}

.cover-enter a:hover {
    color: #3f3c2f;
}
/* ---------- Contents Page ---------- */

.contents {

    max-width: 700px;

    margin: 80px auto;

    padding: 20px 40px;

}

.contents h1 {

    font-size: 3rem;

    font-weight: normal;

    margin-bottom: 60px;

}

.contents-list {

    display: flex;

    flex-direction: column;

    gap: 24px;

}

.contents-list a {

    color: #333;

    text-decoration: none;

    font-size: 1.4rem;

}

.contents-list a:hover {

    color: #6d765d;

}
/* ---------- Page Navigation ---------- */

.next-page {
    margin-top: 60px;
    text-align: right;
}

.next-page a {
    text-decoration: none;
    color: #6d765d;
    font-style: italic;
    font-size: 1.1rem;
}

.next-page a:hover {
    text-decoration: underline;
}
/* ---------- Standard Inside Pages ---------- */

.page {

    max-width: 700px;

    margin: 80px auto;

    padding: 20px 40px;

}

.page-stamp {
    display: block;
    width: 90px;
    margin: 0 auto 35px;
}

.page h1 {

    font-size: 3rem;

    font-weight: normal;

    margin-bottom: 40px;

}

.page p {

    font-size: 1.15rem;

    line-height: 1.8;

    margin-bottom: 30px;

}

/* ---------- Harmony ---------- */

.harmony-menu {

    list-style: none;

    padding: 0;

    margin: 50px 0;

}

.harmony-menu li {

    margin-bottom: 18px;

}

.harmony-menu a {

    text-decoration: none;

    color: #333;

    font-size: 1.3rem;

}

.harmony-menu a:hover {

    color: #6d765d;

}
.cover {
    position: relative;
}

.cover-next {
    position: absolute;
    right: 3rem;
    bottom: 2.5rem;
    margin: 0;
}

.cover-next a {
    font-family: Georgia, serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: #7b735c;      /* same family as the artwork */
    text-decoration: none;
    opacity: .75;
    transition: opacity .3s ease;
}

.cover-next a:hover {
    opacity: 1;
}


/* ---------- Cover Welcome Link ---------- */

.cover {
    text-align: center;
}

.cover-enter {
    margin-top: 1.2rem;
    margin-bottom: 2rem;
}

.cover-enter a {
    color: #6d6a56;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}

.cover-enter a:hover {
    color: #3f3c2f;
}
/* ---------- Athenaeum ---------- */

.athenaeum-menu {
    list-style: none;
    padding: 0;
    margin: 50px 0;
}

.athenaeum-menu li {
    margin-bottom: 18px;
}

.athenaeum-menu a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
}

.athenaeum-menu a:hover {
    color: #6d765d;
}
/* ---------- Contact ---------- */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 40px 0;
}

.contact-form label {
    font-weight: normal;
    margin-top: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    font: inherit;
    border: 1px solid #d7d0c3;
    background: #fffdf9;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    padding: 12px 28px;
    background: #6d765d;
    color: white;
    border: none;
    cursor: pointer;
    font: inherit;
}

.contact-form button:hover {
    background: #59614d;
}
/* ---------- Previous and Next Navigation ---------- */

.page-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.page-navigation a {
    color: #6d765d;
    text-decoration: none;
    font-style: italic;
    font-size: 1.1rem;
}

.page-navigation a:hover {
    text-decoration: underline;
}

.page-continue {
    text-align: right;
}
/* ---------- Contact Messages and Spam Trap ---------- */

.form-message {
    padding: 14px 16px;
    margin: 30px 0;
    border-left: 3px solid #6d765d;
}

.form-success {
    background: #e9eddf;
}

.form-error {
    background: #f3e3dd;
    border-left-color: #8a5548;
}

.contact-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid #6d765d;
    outline-offset: 2px;
}
/* ---------- Footer ---------- */

.site-footer {
    text-align: center;
    padding: 50px 20px 30px;
    color: #8a8576;
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}