* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #252525;
    background: #f7f5f0;
    line-height: 1.7;
}


/* HERO */

.hero {
    max-width: 1200px;
    margin: auto;
    padding: 70px 8%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
    min-height: 520px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    margin: 10px 0 25px;
    font-weight: normal;
}

.subtitle {
    max-width: 600px;
    font-size: 1.25rem;
    color: #555;
}

.eyebrow {
    font-family: Arial, sans-serif;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #806b4e;
}

.hero-art img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}


/* MAIN */

main {
    max-width: 1100px;
    margin: auto;
    padding: 0 7%;
}

section {
    margin: 100px 0;
}

.section-heading h2,
.about-text h2,
.writing-section h2,
.award-section h2,
.contact-section h2 {
    font-size: 2.6rem;
    font-weight: normal;
    margin-top: 5px;
}


/* BOOKS */

.books-section {
    border-top: 1px solid #ccc4b8;
    padding-top: 60px;
}

.books {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-top: 45px;
}

.book {
    display: grid;
    grid-template-columns: minmax(130px, 220px) 1fr;
    gap: 30px;
    align-items: center;
}

.book img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.book h3 {
    font-size: 1.45rem;
    margin-bottom: 5px;
}

.year {
    font-family: Arial, sans-serif;
    color: #806b4e;
    font-weight: bold;
}


/* SELECTED WRITING */

.writing-section {
    border-top: 1px solid #ccc4b8;
    padding-top: 60px;
}

.writing-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.writing-item {
    padding: 28px;
    border: 1px solid #ddd6cc;
    border-radius: 12px;
    background: #ffffff;
}

.writing-type {
    margin: 0 0 10px;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: #806b4e;
}

.writing-item h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    font-weight: normal;
}

.writing-item p {
    line-height: 1.6;
}

.writing-item a {
    display: inline-block;
    margin-top: 10px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: #806b4e;
    border-bottom: 1px solid #806b4e;
}

.writing-item a:hover {
    opacity: 0.6;
}


/* AWARDS */

.award-section {
    border-top: 1px solid #ccc4b8;
    padding-top: 60px;
}

.award-card {
    margin-top: 30px;
    padding: 28px;
    border-left: 4px solid #806b4e;
    background: #ffffff;
}

.award-card h3 {
    margin: 0 0 5px;
    font-size: 1.4rem;
    font-weight: normal;
}

.award-card .year {
    margin: 0;
}


/* ABOUT */

.about-section {
    border-top: 1px solid #ccc4b8;
    padding-top: 70px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 55px;
    align-items: center;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.about-text p:last-child {
    max-width: 650px;
    font-size: 1.1rem;
}


/* CONTACT */

.contact-section {
    border-top: 1px solid #ccc4b8;
    padding-top: 60px;
    max-width: 700px;
}

form {
    display: grid;
    gap: 10px;
}

label {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    margin-top: 10px;
}

input,
textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #bbb;
    background: white;
    font-size: 1rem;
}

button {
    margin-top: 15px;
    width: fit-content;
    padding: 13px 25px;
    border: 0;
    background: #252525;
    color: white;
    cursor: pointer;
    font-size: 0.95rem;
}

button:hover {
    opacity: 0.8;
}


/* FOOTER */

footer {
    text-align: center;
    border-top: 1px solid #ccc4b8;
    margin-top: 100px;
    padding: 35px;
    color: #777;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
}


/* PHONE */

@media (max-width: 750px) {

    .hero {
        grid-template-columns: 1fr;
        padding-top: 45px;
        gap: 30px;
    }

    .hero-art img {
        max-height: 300px;
    }

    .books {
        grid-template-columns: 1fr;
    }

    .book {
        grid-template-columns: 140px 1fr;
    }

    .writing-list {
        grid-template-columns: 1fr;
    }

    .about-section {
        grid-template-columns: 120px 1fr;
        gap: 25px;
    }

    section {
        margin: 70px 0;
    }
}


/* SMALL PHONES */

@media (max-width: 480px) {

    .hero {
        padding-left: 7%;
        padding-right: 7%;
    }

    .book {
        grid-template-columns: 1fr;
    }

    .book img {
        max-width: 190px;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 140px;
    }

    .writing-item {
        padding: 22px;
    }
}