/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #213038;
    background-color: #ffffff;
}

a {
color: #213038;
text-decoration: none;
font-style: italic;

}

a:hover {
color: #000;
font-style: italic;
background-color: #bcf4a4;

}

a.email {
color: #213038;
text-decoration: none;
font-style: italic;

}

a.email:hover {
color: #000;
font-style: italic;
background-color: #e699ff;
text-decoration: none;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.font-garamond {
    font-family: 'EB Garamond', serif;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

/* Hidden Elements */
.masthead {
    display: none;
}

/* Separator */
.separator {
    width: 40px !important;
    height: 2px;
    background-color: #213038;
    margin: 20px 0;
}

/* Hero Section */
.hero-section {
    padding: 30px 20px 20px 20px;
    margin: 30px 30px 30px 30px;
    text-align: left;
}

.hero-name {
    font-family: 'Lato', sans-serif;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 10px;
    line-height: 1.2;
    color: #213038;

}

/* Quote Section */
.quote-section {
    padding: 20px 20px;
    margin: 20px 30px 30px 30px;
}

.hero-quote {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 42px;
    color: #213038;
    margin-left: 0px;
    line-height: 150%;
    max-width: 860px;
}

/* Order = Top, Right, Bottom, Left */

/* Section Titles */
.section-title {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 4px;
    padding-top: 10px;
    color: #213038;
}

/* Bio Section */
.bio-section {
    padding: 80px 0;
}

.bio-blocks {
    margin-top: -40px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.bio-left {
    flex: 1;
    min-width: 300px;
    padding-right: 60px;
}

.bio-right {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.bio-short {
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 20px;
}

.bio-long {
    font-size: 18px;
    line-height: 180%;
    margin-bottom: 20px;
}

.bio-long-padded {
    padding-top: 10px;
}

/* Logos Section */
.logos-section {
    margin: 55px 0 70px;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
}

.logo-item {
    font-size: 14px;
    font-weight: 300;
    color: #6C757D;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #E9ECEF;
    border-radius: 4px;
    background-color: #F8F9FA;
}

/* Expertise Section */
/* Order = Top, Right, Bottom, Left */
.expertise-section {
    padding: 20px;
}

.expertise-blocks {
    margin: 20px !important;
   /*  display: flex;*/
    flex-wrap: wrap;
    gap: 40px;
}

.expertise-left {
    flex: flex-wrap;
    min-width: 80px;
}

.expertise-right {
    flex: 1;
    min-width: 300px;
}

.expertise-short {
    font-size: 15px;
    line-height: 140%;
}

.expertise-long {
    font-size: 18px;
    line-height: 180%;
}

.thin-line {
    font-weight: 100 !important;
    padding-right: 10px;
    color: #6C757D;
}

/* Testimonial Section */
.testimonial-section {
    padding: 20px;
}

.testimonial-content {
    max-width: 860px;
    text-align: left;
}

.testimonial-quote {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    font-size: 24px;
    line-height: 120%;
    color: #213038;
    margin: 30px 30px 30px 30px;
 
}

.testimonial-attribution {
    font-size: 14px;
    line-height: 150%;
    color: #6C757D;
    margin: 30px 30px 30px 90px;
}

.testimonial-author {
    color: #213038;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 20px;
    background-color: #666666;
    color: #ffffff;
}

.contact-title {
    color: #ffffff;
}

.contact-separator {
    background-color: #ffffff;
}

.contact-content {
    max-width: none;
}

.contact-info {
    font-size: 18px;
    line-height: 160%;
     margin: 30px 30px 0px 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-item {
    font-size: 16px;
    line-height: 150%;
}

.contact-item strong {
    font-weight: 600;
    margin-right: 10px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    /*border-bottom: 1px solid transparent;*/
    transition: border-bottom-color 0.3s ease;
}

.contact-item a:hover {
    border-bottom-color: #ffffff;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #000000;
    color: #6C757D;
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-content p:last-child {
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive Styles */
/* Order = Top, Right, Bottom, Left */
@media screen and (max-width: 1024px) {
    .hero-quote {
        font-size: 42px;
        margin: 10px;
    }

    .quote-section {
    padding: 0px;
    margin: 20px 30px 30px 30px;
}

    
    .bio-left {
        padding-right: 30px;
    }
    
    .bio-right {
        padding-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-name {
        font-size: 8vw;
        letter-spacing: 8px;
        padding-top: 20px;
        max-width: 768px;
        margin: 20px;
    }
    
    .hero-quote {
        font-size: 6vw;
        padding: 0px;
        margin: 20px;
    }
    
    .bio-blocks,
    .expertise-blocks {
        flex-direction: column;
        gap: 30px;
    }
    
    .bio-left,
    .bio-right {
        padding-right: 0;
        min-width: auto;
    }
    
    .logo-grid {
        justify-content: center;
        gap: 20px;
    }
    
    .testimonial-section {
        margin: 40px 0 30px 0;
        padding: 60px 20px;
    }
    
    .testimonial-quote {
        font-size: 20px;
    }
    
    .contact-details {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-name {
       font-size: 9vw;
        letter-spacing: 6px;
        line-height: 1.3;
        margin:10px;
        margin-left:0px;
        padding:0px;
    }
    
    .hero-quote {
        font-size: 6vw;
        margin: 10px;
        margin-right: 0px;
        line-height: 120%;
        padding:0px;
    }
    
    .section-title {
        font-size: 18px;
        letter-spacing: 3px;
    }
    
    .bio-short,
    .expertise-short {
        font-size: 14px;
    }
    
    .bio-long,
    .expertise-long {
        font-size: 16px;
        line-height: 170%;
    }
    
    .logo-grid {
        gap: 15px;
    }
    
    .logo-item {
        font-size: 12px;
        padding: 8px 15px;
        letter-spacing: 1px;
    }
    
    .testimonial-section {
        margin: 20px 0 20px 0;
        padding: 40px 15px;
    }
    
    .testimonial-quote {
        font-size: 18px;
        line-height: 150%;
    }
    
    .testimonial-attribution {
        font-size: 13px;
    }
    
    .contact-info {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-item {
        font-size: 15px;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-item strong {
        margin-right: 0;
        margin-bottom: 5px;
        display: block;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-content p {
        font-size: 13px;
        line-height: 150%;
    }
}

@media screen and (max-width: 360px) {
    .hero-name {
        font-size: 9vw;
        letter-spacing: 4px;
        padding-bottom: 0px;
    }
    
    .hero-quote {
        font-size: 6vw;
        padding:0px;
    }
    
    .separator {
        width: 30px !important;
    }
    
    .logo-item {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero-name {
        padding-top: 10px;
    }
    
    .hero-quote {
        margin: 30px 0 30px;
        padding:0px;

    }
    
    .testimonial-section {
        margin: 40px 0 40px 0;
        padding: 30px 15px;
    }
}