body {
    margin: 0;
    background: #f3efe8;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
}

.site-header {
    background: #171717;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 36px;
}

.brand-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 11px;
    letter-spacing: 1.2px;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.main-nav a:hover {
    color: #c94b43;
}

.buy-button {
    background: #a72d2a;
    padding: 16px 22px;
}

.buy-button:hover {
    background: #8e2422;
    color: #ffffff !important;
}

.page-content {
    padding: 70px 60px;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    font-size: 64px;
    margin-bottom: 10px;
}

h2 {
    font-size: 40px;
    margin-top: 40px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}
/* HERO SECTION */

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 720px;
    background: #f3efe8;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 82px;
    margin: 0 0 20px 0;
    line-height: 0.95;
}

.hero h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 25px 0;
    max-width: 720px;
    font-weight: normal;
}

.hero-copy {
    font-size: 19px;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-button {
    display: inline-block;
    width: fit-content;
    background: #a72d2a;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: bold;
}

.hero-button:hover {
    background: #8e2422;
}

.hero-image {
    height: 720px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* FEATURED BOOK SECTION */

.featured-book {
    background: #171717;
    color: #ffffff;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    padding: 70px 8%;
    gap: 90px;
}

.featured-cover {
    text-align: center;
    align-self: start;
    padding-top: 25px;
}

.featured-cover img {
    width: 100%;
    max-width: 240px;
    height: auto;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.featured-text {
    max-width: 700px;
}

.featured-label {
    color: #d6a7a3;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0 0 18px 0;
}

.featured-text h2 {
    color: #ffffff;
    font-size: 68px;
    line-height: 0.95;
    margin: 0 0 22px 0;
}

.featured-subtitle {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-style: italic;
    line-height: 1.35;
    margin-bottom: 30px;
}

.featured-copy {
    font-size: 17px;
    line-height: 1.7;
    color: #dddddd;
    margin-bottom: 18px;
}

.featured-buttons {
    display: flex;
    gap: 15px;
    margin-top: 34px;
}

.book-buy-button,
.book-more-button {
    display: inline-block;
    padding: 16px 22px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.book-buy-button {
    background: #a72d2a;
    color: #ffffff;
}

.book-buy-button:hover {
    background: #8e2422;
}

.book-more-button {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.book-more-button:hover {
    background: #ffffff;
    color: #171717;
}

/* BOOK CATALOGUE */

.books-section {
    background: #f3efe8;
    padding: 90px 7%;
}

.books-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.books-label {
    color: #a72d2a;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.books-heading h2 {
    font-size: 58px;
    margin: 0 0 15px 0;
}

.books-heading > p:last-child {
    font-size: 18px;
    line-height: 1.6;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    max-width: 1150px;
    margin: 0 auto;
}

.book-card {
    text-align: center;
}

.book-cover-wrap {
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 28px;
}

.book-cover-wrap img {
    max-width: 190px;
    max-height: 340px;
    width: auto;
    height: auto;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.book-status {
    color: #a72d2a;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.book-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.book-description {
    font-size: 15px;
    line-height: 1.55;
    max-width: 300px;
    margin: 0 auto 20px auto;
}

.book-link {
    color: #a72d2a;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
}

.book-link:hover {
    text-decoration: underline;
}

.coming-soon {
    color: #777777;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* MOBILE RESPONSIVE STYLES */

@media (max-width: 900px) {

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 18px 22px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .buy-button {
        padding: 12px 16px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: 55px 28px 45px 28px;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .hero-image {
        height: 520px;
    }

    .featured-book {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 60px 28px;
    }

    .featured-cover {
        padding-top: 0;
    }

    .featured-text {
        max-width: none;
    }

    .featured-text h2 {
        font-size: 50px;
    }

    .featured-subtitle {
        font-size: 24px;
    }

    .featured-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .book-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .book-cover-wrap {
        height: auto;
        margin-bottom: 24px;
    }

    .book-cover-wrap img {
        max-width: 220px;
        max-height: none;
    }

    .books-section {
        padding: 70px 28px;
    }

    .books-heading h2 {
        font-size: 46px;
    }
}

@media (max-width: 600px) {

    .brand-name {
        font-size: 28px;
    }

    .brand-tagline {
        font-size: 9px;
        line-height: 1.4;
    }

    .main-nav a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero-image {
        height: 420px;
    }

    .featured-text h2 {
        font-size: 42px;
    }

    .featured-cover img {
        max-width: 210px;
    }

    .books-heading h2 {
        font-size: 40px;
    }
}

/* ABOUT PETE TEASER */

.about-teaser {
    background: #171717;
    color: #ffffff;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 600px;
}

.about-teaser-image {
    overflow: hidden;
    min-height: 600px;
}

.about-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
}

.about-teaser-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 75px 10%;
    max-width: 720px;
}

.about-label {
    color: #d6a7a3;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0 0 18px 0;
}

.about-teaser-text h2 {
    color: #ffffff;
    font-size: 52px;
    line-height: 1.08;
    margin: 0 0 28px 0;
    font-weight: normal;
}

.about-teaser-text p {
    color: #dddddd;
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 17px 0;
}

.about-teaser-text .about-punchline {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-style: italic;
    margin-top: 5px;
}

.about-button {
    display: inline-block;
    width: fit-content;
    margin-top: 18px;
    color: #ffffff;
    border-bottom: 1px solid #a72d2a;
    padding-bottom: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.about-button:hover {
    color: #d6a7a3;
}

/* ABOUT TEASER - MOBILE */

@media (max-width: 900px) {

    .about-teaser {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-teaser-image {
        min-height: 480px;
        height: 480px;
    }

    .about-teaser-text {
        padding: 60px 28px;
        max-width: none;
    }

    .about-teaser-text h2 {
        font-size: 42px;
    }
}

@media (max-width: 600px) {

    .about-teaser-image {
        min-height: 380px;
        height: 380px;
    }

    .about-teaser-text h2 {
        font-size: 36px;
    }
}

/* NEWSLETTER */

.newsletter-section {
    background: #f3efe8;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 7%;
}

.newsletter-intro {
    max-width: 620px;
}

.newsletter-label {
    color: #a72d2a;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0 0 15px 0;
}

.newsletter-intro h2 {
    font-size: 46px;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.newsletter-intro p {
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.newsletter-signup {
    width: 100%;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 18px 20px;
    border: 1px solid #b8b2a8;
    background: #ffffff;
    font-size: 15px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #171717;
}

.newsletter-form button {
    border: none;
    background: #a72d2a;
    color: #ffffff;
    padding: 18px 32px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #8e2422;
}

.newsletter-small {
    font-size: 12px;
    color: #666666;
    margin: 12px 0 0 0;
    text-align: right;
}


/* FOOTER */

.site-footer {
    background: #171717;
    color: #ffffff;
    padding: 50px 7% 25px 7%;
}

.footer-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 9px;
    letter-spacing: 1.2px;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 28px;
    margin: 35px 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #c94b43;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #999999;
    font-size: 11px;
}

/* NEWSLETTER + FOOTER MOBILE */

@media (max-width: 900px) {

    .newsletter-section {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 60px 28px;
    }

    .newsletter-intro h2 {
        font-size: 38px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form button {
        width: 100%;
    }

    .newsletter-small {
        text-align: left;
    }

    .site-footer {
        padding: 45px 28px 25px 28px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 18px 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 600px) {

    .newsletter-intro h2 {
        font-size: 34px;
    }
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.active-nav {
    border-bottom: 2px solid #a72d2a;
    padding-bottom: 6px;
}


/* ABOUT HERO */

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 660px;
    background: #f3efe8;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 9%;
}

.about-hero-text h1 {
    font-size: 76px;
    line-height: 0.95;
    margin: 0 0 24px 0;
}

.about-hero-text h2 {
    font-size: 38px;
    line-height: 1.15;
    font-weight: normal;
    margin: 0 0 25px 0;
}

.about-hero-text p {
    font-size: 17px;
    line-height: 1.65;
    max-width: 590px;
    margin: 0 0 15px 0;
}

.about-hero-image {
    min-height: 660px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* THREE ABOUT COLUMNS */

.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #ffffff;
    padding: 75px 7%;
    gap: 0;
}

.about-pillar {
    padding: 0 45px;
    border-right: 1px solid #d4cec4;
}

.about-pillar:first-child {
    padding-left: 0;
}

.about-pillar:last-child {
    border-right: none;
    padding-right: 0;
}

.pillar-number {
    color: #a72d2a;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.about-pillar h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 24px 0;
}

.about-pillar p {
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 16px 0;
}


/* WHY I WRITE */

.why-i-write {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    background: #f3efe8;
}

.why-image {
    overflow: hidden;
    min-height: 620px;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
}

.why-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 75px 9%;
}

.why-text h2 {
    font-size: 58px;
    margin: 0 0 28px 0;
}

.why-text p {
    font-size: 17px;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 0 18px 0;
}

.why-final {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px !important;
    font-style: italic;
}


/* ABOUT QUOTE */

.about-quote {
    background: #171717;
    color: #ffffff;
    text-align: center;
    padding: 90px 10%;
}

.about-quote blockquote {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.35;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 25px auto;
}

.about-quote p {
    color: #d6a7a3;
    font-size: 13px;
    letter-spacing: 2px;
}


/* ABOUT PAGE MOBILE */

@media (max-width: 900px) {

    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-hero-text {
        padding: 55px 28px;
    }

    .about-hero-text h1 {
        font-size: 56px;
    }

    .about-hero-image {
        min-height: 500px;
        height: 500px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        padding: 60px 28px;
    }

    .about-pillar,
    .about-pillar:first-child,
    .about-pillar:last-child {
        padding: 35px 0;
        border-right: none;
        border-bottom: 1px solid #d4cec4;
    }

    .about-pillar:last-child {
        border-bottom: none;
    }

    .why-i-write {
        grid-template-columns: 1fr;
    }

    .why-image {
        min-height: 470px;
        height: 470px;
    }

    .why-text {
        padding: 60px 28px;
    }

    .why-text h2 {
        font-size: 46px;
    }

    .about-quote {
        padding: 70px 28px;
    }

    .about-quote blockquote {
        font-size: 30px;
    }
}

@media (max-width: 600px) {

    .about-hero-text h1 {
        font-size: 46px;
    }

    .about-hero-text h2 {
        font-size: 30px;
    }

    .about-hero-image {
        min-height: 400px;
        height: 400px;
    }

    .why-image {
        min-height: 380px;
        height: 380px;
    }

    .why-text h2 {
        font-size: 40px;
    }

    .about-quote blockquote {
        font-size: 25px;
    }
}

/* HOMEPAGE ABOUT - TEXT ONLY */
.about-teaser {
    display: block;
    background: #171717;
    padding: 70px 40px;
}

.about-teaser-text {
    max-width: 820px;
    margin: 0 auto;
    padding: 0;
}

/* ABOUT PAGE HERO - TEXT ONLY */
.about-hero {
    display: block;
    background: #f3efe8;
    padding: 70px 60px 90px;
}

.about-hero-text {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.about-hero {
    min-height: auto;
}

/* ABOUT PAGE - SMALLER B&W PHOTO */
.why-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.why-image img {
    width: 70%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ABOUT PAGE OPENING PUNCHLINE */
.about-hero .about-punchline {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    margin-top: 24px;
}

/* WIDEN ABOUT HERO COPY */
.about-hero-text > p:not(.eyebrow) {
    max-width: 900px;
}

/* =========================================================
   BOOK PAGE
   ========================================================= */

.book-page-hero {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: #f3efe8;
    min-height: 760px;
}

.book-page-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 40px;
}

.book-page-cover img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.book-page-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 90px 80px 50px;
    max-width: 760px;
}

.book-page-label {
    color: #a72d2a;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 18px;
}

.book-page-intro h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    line-height: 0.95;
    margin: 0 0 12px 0;
}

.book-page-author {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 28px;
}

.book-page-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.25;
    font-weight: normal;
    margin: 0 0 24px 0;
}

.book-page-intro p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 18px 0;
}

.book-buy-button {
    display: inline-block;
    width: fit-content;
    margin-top: 14px;
    background: #a72d2a;
    color: #ffffff;
    text-decoration: none;
    padding: 17px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: bold;
}

.book-buy-button:hover {
    background: #8e2422;
}


/* ABOUT THE BOOK */

.book-about {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    padding: 90px 10%;
    background: #ffffff;
}

.book-about-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: 1.1;
    margin: 0;
}

.book-about-copy {
    max-width: 700px;
}

.book-about-copy p {
    font-size: 17px;
    line-height: 1.75;
    margin-top: 0;
    margin-bottom: 22px;
}

.book-page-punchline {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px !important;
    font-style: italic;
}


/* BOOK QUOTE */

.book-quote {
    background: #171717;
    color: #ffffff;
    text-align: center;
    padding: 90px 12%;
}

.book-quote p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    line-height: 1.35;
    max-width: 1000px;
    margin: 0 auto 24px;
}

.book-quote span {
    color: #c7bfb5;
    font-size: 12px;
    letter-spacing: 2px;
}


/* MOBILE */

@media (max-width: 900px) {

    .book-page-hero {
        grid-template-columns: 1fr;
    }

    .book-page-cover {
        padding: 50px 25px 20px;
    }

    .book-page-cover img {
        max-width: 360px;
    }

    .book-page-intro {
        padding: 40px 30px 60px;
    }

    .book-page-intro h1 {
        font-size: 52px;
    }

    .book-about {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 70px 30px;
    }

    .book-quote p {
        font-size: 28px;
    }
}
/* BOOK PAGE - FIX NEWSLETTER LAYOUT */
.newsletter {
    text-align: center;
    padding: 80px 30px;
    background: #f3efe8;
}

.newsletter > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.15;
    margin-top: 10px;
    margin-bottom: 20px;
}

.newsletter p {
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    max-width: 760px;
    margin: 30px auto 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px;
    border: 1px solid #c9c1b8;
    font-size: 15px;
}

.newsletter-form button {
    background: #a72d2a;
    color: #ffffff;
    border: none;
    padding: 16px 28px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}

.newsletter-small {
    font-size: 12px;
    opacity: 0.75;
}

/* COMING SOON BOOK BUTTON */
.coming-soon-button {
    display: inline-block;
    width: fit-content;
    margin-top: 14px;
    border: 1px solid #a72d2a;
    color: #a72d2a;
    padding: 16px 24px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
    background: #f3efe8;
    padding: 90px 60px 100px;
}

.contact-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    line-height: 1;
    margin: 10px 0 24px;
}

.contact-hero h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.25;
    font-weight: normal;
    max-width: 850px;
    margin-bottom: 24px;
}

.contact-hero p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 800px;
}


.contact-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    padding: 90px 10%;
    background: #ffffff;
}

.contact-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    margin: 0 0 20px;
}

.contact-copy p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-note {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px !important;
    font-style: italic;
    margin-top: 28px;
}


.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c9c1b8;
    background: #ffffff;
    padding: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    margin-bottom: 24px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: fit-content;
    background: #a72d2a;
    color: #ffffff;
    border: none;
    padding: 17px 26px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #8e2422;
}


@media (max-width: 900px) {

    .contact-hero {
        padding: 60px 30px 70px;
    }

    .contact-hero h1 {
        font-size: 52px;
    }

    .contact-hero h2 {
        font-size: 28px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 70px 30px;
    }

}
