/* ===================================
   Global Layout Grid
=================================== */

:root {
    --container: 1100px;
    --gutter: 2rem;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
/* ===================================
   Mandy Bush Editorial
   Base Styles
=================================== */

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

body {
    font-family: "Source Sans 3", Arial, sans-serif;
    background-color: #f7f5f0;
    color: #2f2f2f;
    line-height: 1.7;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===================================
   Navigation
=================================== */

header {
    background: #ffffff;
    border-bottom: 1px solid #e9e4db;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: "Lora", serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #243447;
    line-height: 1;
}

.logo-sub {
    font-size: .75rem;
    letter-spacing: .25rem;
    text-transform: uppercase;
    color: #7a8b7a;
    margin-top: .35rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    transition: color .3s ease;
}

.nav-links a:hover {
    color: #7a8b7a;
}

/* ===================================
   Hero
=================================== */

.hero {
    padding: 4rem 0 5rem;
}

.hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-grid {
    align-items: center;
}
.hero-description {
    max-width: 600px;
}
.hero-grid {
    column-gap: 4rem;
}

/* Left side text */
.hero-text {
    text-align: left;
}
.hero h2 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

/* Right side image */
.hero-image {
    display: flex;
    justify-content: center;
}

/* Image box */
.photo-placeholder {
    width: 350px;
    height: 450px;
    background: #e9e4db;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #7a8b7a;
    font-weight: 600;

    margin: 0;
}

.eyebrow {
    color: #7a8b7a;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.button {
    display: inline-block;
    background-color: #243447;
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.button:hover {
    background-color: #3a5166;
    transform: translateY(-2px);
}
.button-secondary {
    background: transparent;
    color: #243447;
    border: 2px solid #243447;
}

.button-secondary:hover {
    background: #243447;
    color: white;
}
/* ===================================
   Services
=================================== */

.services {
    padding: 5rem 0;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-header h3 {
    font-family: "Lora", serif;
    font-size: 2.5rem;
    color: #243447;
    margin-bottom: 0.5rem;

    white-space: normal;
    text-align: center;
}
.section-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    color: #7a8b7a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(36, 52, 71, 0.08);
}

.service-card h4 {
    font-family: "Lora", serif;
    color: #243447;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}
/* ===================================
   About Preview
=================================== */

.about-preview {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
     display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 350px;
    height: 420px;
    background: #e9ece8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a8b7a;
    font-weight: 600;
}

.about-text h3 {
    font-family: "Lora", serif;
    font-size: 2.5rem;
    color: #243447;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}
/* ===================================
   Why Work With Me
=================================== */

.why-section {
    padding: 5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e9e4db;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(36, 52, 71, 0.08);
}

.why-card h4 {
    font-family: "Lora", serif;
    color: #243447;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.why-card p {
    font-size: 1rem;
    line-height: 1.6;
}
/* ===================================
   Call to Action
=================================== */

.cta {
    background: #ffffff;
    margin: 4rem 0 0;
    padding: 5rem 2rem;
    border-top: 1px solid #e9e4db;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h3 {
    font-family: "Lora", serif;
    font-size: 2.5rem;
    color: #243447;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4f4f4f;
}
/* ===================================
   Global Section Spacing
=================================== */

section {
    padding: 5rem 2rem;
}
p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2f2f2f;
}

h2, h3, h4 {
    line-height: 1.2;
}
.hero-text,
.about-text,
.section-header {
    text-align: left;
}
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
h1, h2, h3 {
    font-family: "Lora", serif;
    color: #243447;
    letter-spacing: -0.02em;
}
h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.hero-description,
.section-header p,
.about-text p,
.cta p {
    margin-bottom: 1.25rem;
}
/* ===================================
   Mobile Responsiveness
=================================== */

@media (max-width: 900px) {

    /* HERO STACK */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
        margin-top: 2rem;
    }

    .photo-placeholder {
        width: 280px;
        height: 360px;
    }

    /* SERVICES + WHY STACK */
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* ABOUT STACK */
    @media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        margin-bottom: 2rem;
    }
}

    .about-text {
        text-align: center;
    }
}
@media (max-width: 600px) {

    .hero h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    section {
        padding: 3.5rem 1.5rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    @media (max-width: 600px) {

    .services-page {
        padding: 2.5rem 0 4rem;
    }

    .services-page .service-card {
        padding: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}@media (max-width: 900px) {
    .cta {
        text-align: center;
    }
}
    @media (max-width: 900px) {

    .about-page-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-page-text {
        text-align: center;
    }

    @media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-card ul {
        text-align: left;
        display: inline-block;
    }
}
}
@media (max-width: 900px) {

    .services-page .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-page .service-card {
        text-align: center;
    }
}
@media (max-width: 900px) {
    .hero-photo {
        width: 280px;
        height: 360px;
        margin: 0 auto;
    }
}
@media (max-width: 900px) {
    .about-page-image {
        margin-bottom: 2rem;
    }

    .hero-photo {
        width: 280px;
        height: 360px;
    }
}
}/* ===================================
   About Page
=================================== */

.page-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-family: "Lora", serif;
    font-size: 3rem;
    color: #243447;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: #7a8b7a;
    font-size: 1.2rem;
}

.about-page {
    padding: 3rem 0 5rem;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-page-text p {
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

.about-page-image {
     display: flex;
    justify-content: center;
    align-items: center;
}
.hero-photo {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
/* ===================================
   Contact Page
=================================== */

.contact-section {
    padding: 3rem 0 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    font-family: "Lora", serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #243447;
}

.contact-text p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e9e4db;
    padding: 2rem;
    border-radius: 10px;
}

.contact-card h3 {
    margin-bottom: 1rem;
    font-family: "Lora", serif;
}

.contact-card ul {
    list-style: disc;
    padding-left: 1.2rem;
}

.contact-card li {
    margin-bottom: 0.5rem;
}
/* ===================================
   Services Page
=================================== */

.services-page {
    padding: 3rem 0 5rem;
}

.services-page .services-grid {
    margin-top: 2rem;
}
.hero-photo {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.hero-photo {
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.02);
}

.about-grid,
.about-page-grid {
    display: grid !important;
}