@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600&family=Six+Caps&display=swap');
* {
    box-sizing: border-box;
}

body {
    background-color: #F3ECE5;
    color: #31131C;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

main {
    max-width: none;
    margin: 0;
}

/* Navigation */

.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 25px;
    padding: 30px 50px;
    background: transparent;
    border-bottom: none;
    z-index: 10;
}

.site-nav a {
    color: #4E6D9F;
    text-decoration: none;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav a:hover {
    color: #C168BE;
}

/* Landing Hero */

.landing-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    border-top: none;
    background-color: #F3ECE5;
}

.landing-name {
    width: 52%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.5rem;
}

.landing-name-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.landing-name h1 {
    margin: 0;
    font-family: "Six Caps", Arial, sans-serif;
    color: #5B142C;
    font-size: clamp(7rem, 17vw, 18rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-name-text p {
    margin: 1rem 0 0 0.45rem;
    font-family: "Raleway", Arial, sans-serif;
    color: #B84726;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.landing-image {
    width: 48%;
    min-height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.landing-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
}

/* Buttons */

.hero-button,
.resume-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 12px 22px;
    font-family: "Raleway", Arial, sans-serif;
    color: #31131C;
    background-color: #86A5D7;
    border: 2px solid #86A5D7;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
}

.hero-button:hover,
.resume-button:hover {
    color: #F3ECE5;
    background-color:#C168BE;
    border-color: #C168BE;
}

.resume-button {
    margin-top: 1.5rem;
    transform: translateY(-10px);
}
/* General Sections */

section {
    padding: 70px 50px 70px 140px;
    border-top: 2px solid #31131C;
}

.content-section {
    background-color: #F3ECE5;
}

.content-section > *,
.gallery-section > * {
    max-width: 1200px;
}

.gallery-section {
    background-color: #5B142C;
    color: #F3ECE5;
}

.gallery-section h2 {
    color: #F3ECE5;
}

/* Headings */

h1,
h2,
h3,
h4 {
    font-family: "Six Caps", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

h1 {
    color: #5B142C;
    font-size: clamp(8rem, 18vw, 18rem);
    line-height: 0.78;
    letter-spacing: 0.03em;
    margin: 0 0 40px;
}

h2 {
    color: #31131C;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.8;
    letter-spacing: 0.04em;
    margin-top: 5px;
    margin-bottom: 34px;
}

h3 {
    color: #B84726;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    letter-spacing: 0.06em;
    margin-top: 0;
    margin-bottom: 24px;
}

h4 {
    color: #5B142C;
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.85;
    letter-spacing: 0.04em;
    margin-top: 0;
    margin-bottom: 28px;
}

/* About + Video Section */

.about-section {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 0;
    padding: 0;
    margin: 0;
    border-top: none;
    background-color: #F3ECE5;
}

.about-card {
    min-height: auto;
    padding: 90px 70px;
    border: none;
}

.about-bio {
    background-color: #5B142C;
    color: #F3ECE5;
    padding-left: 140px;
}

.about-bio h2,
.about-bio p {
    color: #F3ECE5;
}

.about-bio p {
    max-width: 680px;
    font-size: 20px;
    line-height: 1.7;
}

.video-card {
    background-color: #F3ECE5;
    color: #31131C;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 70px;
}

.video-caption {
    margin-top: 3rem;
}

.video-caption h2 {
    color: #5B142C;
    margin: 0;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 0.65;
}

.video-caption p {
    max-width: 680px;
    margin: 0.75rem 0 0 0;
    font-size: 20px;
    line-height: 1.7;
    color: #31131C;
}

.video-caption a {
    display: inline-block;
    margin-top: 1.3rem;
    color: #4E6D9F;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

.video-caption a:hover {
    color: #C168BE;
}

.video-card h2 {
    color: #5B142C;
    margin-top: 0;
    margin-bottom: 2rem;
}

.video-resume {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    object-fit: cover;
    border: none;
    background-color: #31131C;
}



/* Skills Strips */

.brand-strip,
.skills-strip {
    background-color: #31131C;
    color: #F3ECE5;
    padding: 28px 50px;
    border-top: none;
}

.brand-strip p,
.skills-strip p {
    margin: 0;
    max-width: none;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.brand-strip {
    text-align: center;
}

.skills-strip {
    text-align: left;
    padding-left: 140px;
}

/* Projects Page */

.projects-hero {
    background-color: #F3ECE5;
    color: #31131C;
    padding: 150px 70px 110px 140px;
    border-top: none;
}

.projects-hero h1 {
    color: #5B142C;
    margin: 0;
    white-space: nowrap;
    font-size: clamp(10rem, 22vw, 22rem);
}

.projects-intro {
    max-width: 900px;
    font-size: 24px;
    line-height: 1.6;
    margin: 0;
}


/* Project Panel Sections */

.project-panel-section {
    color: #F3ECE5;
    padding: 90px 70px 100px 140px;
    border-top: none;
}

.featured-projects {
    background-color: #5B142C;
}

.selected-projects {
    background-color: #31131C;
}

.featured-heading {
    max-width: none;
    margin: 0 0 60px 0;
}

.featured-heading h2 {
    color: #F3ECE5;
    margin: 0 0 2.75rem 0;
}

.featured-heading p {
    max-width: none;
    font-size: 24px;
    line-height: 1.65;
    margin: 0;
    color: #F3ECE5;
}

.project-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    width: 100%;
    max-width: 1600px;
    margin: 0;
    align-items: stretch;
}

.project-panel {
    background-color: #F3ECE5;
    color: #31131C;
    padding: 38px 38px 55px 38px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 0 rgba(49, 19, 28, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 0 rgba(49, 19, 28, 0.35);
    z-index: 5;
}

.panel-light,
.panel-orange {
    background-color: #F3ECE5;
    color: #31131C;
}

.project-panel h3 {
    color: #5B142C;
    font-family: "Raleway", Arial, sans-serif;
    font-size: clamp(1.55rem, 2.5vw, 2.35rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0.05em;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
}

.project-image-frame {
    min-height: 360px;
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.project-image-frame img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border: 1px solid #31131C;
    margin: 0;
}

.project-panel h4 {
    color: #B84726;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 2rem 0 .5rem 0;
    text-transform: uppercase;
}

.project-panel p,
.project-meta {
    color: #31131C;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}

.project-button {
    display: inline-block;
    align-self: flex-start;
       margin-top: 1.25rem;
    transform: translateY(10px);
    padding: 12px 22px;
    font-family: "Raleway", Arial, sans-serif;
    color: #31131C;
    background-color: #86A5D7;
    border: 2px solid #86A5D7;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 0 #31131C;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.hero-button,
.resume-button {
    box-shadow: 0 5px 0 #31131C;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.hero-button:hover,
.resume-button:hover,
.project-button:hover {
    color: #F3ECE5;
    background-color: #C168BE;
    border-color: #C168BE;
}

.hero-button:active,
.resume-button:active,
.project-button:active {
    transform: translateY(5px);
    box-shadow: 0 1px 0 #31131C;
}

/* Audio Section */

.audio-section {
    background-color: #F3ECE5;
    color: #31131C;
    padding: 90px 70px 100px 140px;
}

.audio-section h2 {
    color: #5B142C;
}

.audio-section p {
    font-size: 20px;
    line-height: 1.7;
}

.audio-section audio {
    width: 100%;
    max-width: 700px;
    margin-top: 1.5rem;
}

/* Footer */

footer {
    background-color: #5B142C;
    color: #F3ECE5;
    text-align: center;
    padding: 38px 140px;
    margin-top: 0;
}

.footer-links {
    margin: 0 0 1rem 0;
}

.footer-links a {
    color: #86A5D7;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-links a:hover {
    color: #C168BE;
}

.footer-links span {
    color: #F3ECE5;
    margin: 0 0.75rem;
    font-size: 20px;
}

footer small {
    color: #F3ECE5;
}

/* Philosophy Section */

.philosophy-section {
    background-color: #F3ECE5;
    color: #31131C;
    padding: 90px 70px 120px 140px;
    border-top: none;
}

.philosophy-heading {
    margin-bottom: 70px;
}

.philosophy-heading h2 {
    color: #5B142C;
    margin: 0;
    font-size: clamp(5rem, 10vw, 9rem);
    line-height: 0.8;
}

.principles-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    width: 100%;
    align-items: start;
}

.principle-card {
    padding: 0;
    border: none;
    background: transparent;
}

.principle-card h3 {
    color: #B84726;
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    min-height: 8.6rem;
}

.principle-card p {
    color: #31131C;
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
}

/* Contact Page */

/* Contact Page */

.contact-hero {
    background-color: #F3ECE5;
    color: #31131C;
    padding: 150px 70px 110px 140px;
    border-top: none;
}

.contact-hero h1 {
    color: #5B142C;
    margin: 0;
    white-space: nowrap;
    font-size: clamp(10rem, 22vw, 22rem);
}

.contact-section {
    background-color: #31131C;
    padding: 0 70px 100px 140px;
    border-top: none;
}

.contact-strip {
    width: calc(100% + 210px);
    margin-left: -140px;
    background-color: #5B142C;
    padding: 1.25rem 140px;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-strip p {
    color: #F3ECE5;
    text-transform: uppercase;
    letter-spacing: 0.27em;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.contact-section .featured-heading {
    margin: 0 0 2.5rem 0;
    padding-top: 4rem;
}

.contact-section .featured-heading h2 {
    color: #F3ECE5;
    margin: 0 0 2rem 0;
}

.contact-section .featured-heading p {
    max-width: 900px;
    font-size: 20px;
    line-height: 1.6;
    color: #F3ECE5;
    margin: 0;
}

.contact-content-row {
    display: grid;
    grid-template-columns: 48% 42%;
    gap: 8%;
    align-items: center;
}

.contact-card {
    background-color: #F3ECE5;
    color: #31131C;
    padding: 3rem;
    width: 100%;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.contact-form label {
    color: #B84726;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 16px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.9rem;
    border: 1px solid #5B142C;
    font-family: inherit;
    font-size: 1rem;
    background-color: #FFF8F1;
    color: #31131C;
}

.contact-form button {
    width: fit-content;
    margin-top: 0.5rem;
}

.contact-image {
    width: 100%;
}

.contact-image img {
    width: 100%;
    display: block;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

/* Responsive Design */

@media (max-width: 768px) {
    .site-nav {
        position: static;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        background-color: #F3ECE5;
    }

    .site-nav a {
        font-size: 18px;
    }

    .landing-split {
        flex-direction: column;
        min-height: auto;
    }

    .landing-name {
        width: 100%;
        min-height: 45vh;
        padding: 3rem 1.5rem;
    }

    .landing-name h1 {
        font-size: clamp(3.5rem, 20vw, 6rem);
        line-height: 0.92;
        letter-spacing: -0.04em;
    }

    .landing-name-text p {
        font-size: 1rem;
        letter-spacing: 0.14em;
    }

    .landing-image {
        width: 100%;
        min-height: 55vh;
    }

    .landing-image img {
        height: 55vh;
    }

    section {
        padding: 45px 24px;
    }

    h1 {
        font-size: 90px;
        letter-spacing: -3px;
    }

    h2 {
        font-size: 48px;
    }

    .brand-strip,
    .skills-strip {
        padding: 24px;
        text-align: left;
    }

    .brand-strip p,
    .skills-strip p {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 0.14em;
    }

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

    .about-card {
        padding: 50px 24px;
    }

    .about-bio {
        padding-left: 24px;
    }

    .about-bio p {
        font-size: 18px;
    }

    .video-card {
        padding: 50px 24px;
    }

    .video-caption h2 {
        font-size: 56px;
        line-height: 0.75;
    }

    .video-caption p {
        font-size: 18px;
    }

    .video-caption a {
        font-size: 16px;
    }

    .projects-hero,
    .project-panel-section,
    .audio-section {
        padding: 50px 24px;
    }

    .projects-hero h1 {
        font-size: 90px;
        line-height: 0.85;
        letter-spacing: -3px;
    }

    .projects-intro {
        font-size: 20px;
        line-height: 1.6;
    }

    .featured-heading {
        margin-bottom: 40px;
    }

    .featured-heading h2 {
        font-size: 56px;
        line-height: 0.85;
    }

    .featured-heading p {
        font-size: 18px;
        line-height: 1.6;
    }

    .project-panel-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: none;
    }

    .project-panel {
        padding: 36px 24px 44px 24px;
    }

    .project-panel:hover {
        transform: none;
    }

    .project-panel h3 {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: 0.06em;
    }

    .project-panel h4 {
        font-size: 16px;
    }

    .project-panel p,
    .project-meta {
        font-size: 18px;
        line-height: 1.6;
    }

    .project-button {
        font-size: 14px;
        margin-top: 2rem;
    }

    .audio-section p {
        font-size: 18px;
    }

    .philosophy-section {
        padding: 50px 24px;
    }

    .philosophy-heading {
        margin-bottom: 45px;
    }

    .philosophy-heading h2 {
        font-size: 56px;
        line-height: 0.85;
    }

    .principles-row {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .principle-card h3 {
        min-height: auto;
        font-size: 48px;
    }

    .principle-card p {
        font-size: 18px;
    }

    .skills-list li {
        font-size: clamp(1.2rem, 5vw, 2rem);
    }
}




