* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Georgia', serif; background-color: #F4F3F0; color: #2D2D2D; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.hero-container { position: relative; width: 100vw; height: 100vh; background-color: #000; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.hero-border-box { position: absolute; top: 30px; left: 30px; right: 30px; bottom: 30px; border: 1px solid #C05621; border-radius: 12px; pointer-events: none; z-index: 2; }
.hero-content { position: relative; z-index: 3; padding-left: 8%; max-width: 70%; color: #FFFFFF; }
.tagline { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25vh; opacity: 0.9; }
.main-title { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.05; font-weight: 400; }
.subtitle { font-size: clamp(1.5rem, 3.5vw, 3rem); display: block; margin-top: 10px; font-weight: 300; }
.menu-trigger { position: absolute; top: 50px; right: 6%; z-index: 4; cursor: pointer; text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.hamburger-lines { width: 45px; height: 12px; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger-lines span { width: 100%; height: 2px; background-color: #FFFFFF; display: block; }
.hamburger-lines.dark span { background-color: #3A3A38; }
.menu-text { color: #FFFFFF; font-size: 13px; letter-spacing: 3px; margin-top: 8px; }
.menu-text.dark { color: #3A3A38; }
.inner-header { display: flex; justify-content: space-between; align-items: center; padding: 30px 6%; background-color: #F4F3F0; }
.tagline-inner { font-size: 12px; letter-spacing: 2px; color: #3A3A38; }
.menu-trigger-inner { cursor: pointer; display: flex; flex-direction: column; align-items: flex-end; }
.nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(58, 58, 56, 0.98); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.close-btn { position: absolute; top: 40px; right: 6%; background: none; border: none; color: #FFFFFF; font-size: 3.5rem; cursor: pointer; }
.overlay-menu { display: flex; flex-direction: column; gap: 30px; text-align: center; }
.overlay-menu a { color: #FFFFFF; font-size: 2rem; text-decoration: none; }
.overlay-menu a:hover, .overlay-menu a.active { color: #C05621; }
.intro-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.accent-heading { color: #C05621; font-size: 2.2rem; font-weight: 400; margin-bottom: 25px; }
.content-img { width: 100%; height: auto; }
.page-title { font-size: 3rem; font-weight: 400; margin-bottom: 40px; border-bottom: 1px solid #3A3A38; padding-bottom: 15px; }
@media (max-width: 768px) {
    .hero-border-box { top: 15px; left: 15px; right: 15px; bottom: 15px; }
    .hero-content { padding-left: 25px; max-width: 90%; }
    .tagline { margin-bottom: 15vh; }
    .menu-trigger { top: 35px; right: 35px; }
    .intro-grid { grid-template-columns: 1fr; gap: 30px; }
}
/* About Me section — bottom of the home page */
.about-section {
    width: 100%;
    padding: 22px 0 90px;
    background: #f4f3f0;
}

.about-card {
    width: calc(100% - 136px);
    max-width: 1700px;
    min-height: 860px;
    margin: 0 auto;
    padding: 45px 54px 60px;
    display: grid;
    grid-template-columns: minmax(0, 636px) minmax(0, 1fr);
    column-gap: 94px;
    align-items: start;
    background: #4a4c47;
    color: #f4f3f0;
}

.about-photo {
    width: 100%;
    height: 770px;
    overflow: hidden;
    border-radius: 5px;
}

.about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(100%);
}

.about-copy {
    padding-top: 1px;
    max-width: 760px;
}

.about-heading {
    display: grid;
    grid-template-columns: max-content minmax(80px, 1fr);
    align-items: center;
    column-gap: 42px;
    margin-bottom: 28px;
}

.about-heading h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 23px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 400;
    white-space: nowrap;
}

.about-heading span {
    display: block;
    height: 1px;
    width: 100%;
    background: rgba(244, 243, 240, 0.65);
}

.about-body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.42;
    letter-spacing: 0;
    color: #f4f3f0;
}

.about-body p {
    margin: 0 0 22px;
}

.about-body ul {
    margin: 0 0 22px 27px;
    padding: 0;
}

.about-body li {
    padding-left: 2px;
    margin: 4px 0;
}

.about-body li::marker {
    font-size: .72em;
}

@media (max-width: 1200px) {
    .about-card {
        width: calc(100% - 70px);
        grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
        column-gap: 50px;
        padding: 40px;
    }
    .about-photo { height: 650px; }
    .about-body { font-size: 15px; }
}

@media (max-width: 900px) {
    .about-section { padding: 35px 0 70px; }
    .about-card {
        width: calc(100% - 36px);
        min-height: auto;
        grid-template-columns: 1fr;
        row-gap: 35px;
        padding: 28px;
    }
    .about-photo {
        height: min(78vw, 620px);
        min-height: 400px;
    }
    .about-copy { max-width: none; }
}

@media (max-width: 560px) {
    .about-section { padding: 20px 0 50px; }
    .about-card {
        width: calc(100% - 20px);
        padding: 18px;
        row-gap: 25px;
    }
    .about-photo {
        height: 112vw;
        min-height: 300px;
    }
    .about-heading {
        column-gap: 14px;
        margin-bottom: 20px;
    }
    .about-heading h2 { font-size: 16px; letter-spacing: 1.5px; }
    .about-body { font-size: 14px; line-height: 1.45; }
}
