* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --white: #ffffff;
    --charcoal: #1a1a18;
    --warm-gray: #8a867f;
    --accent: #b8a99a;
    --sidebar-width: 220px;
}
body {
    background-color: var(--white);
    color: var(--charcoal);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    min-height: 100vh;
}
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
    z-index: 100;
    overflow: visible;
}
.social-links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 12px;
    width: 100%;
}
.social-links a img {
    width: 24px;
    height: 24px;
    object-fit: contain
}
.logo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.logo h1 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--charcoal);
    line-height: 1.4;
}
nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
nav ul li a {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.18rem;
    color: var(--charcoal);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
}
nav ul li a:hover {
    color: var(--warm-gray);
}
nav ul li a.active {
    color: var(--charcoal);
}
.has-dropdown {
    display: flex;
    flex-direction: column;
}
.dropdown {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 12px;
}
.has-dropdown:hover .dropdown {
    max-height: 200px;
}
.dropdown li a {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.14rem;
    color: var(--charcoal);
    padding: 5px 0;
    white-space: nowrap;
    transition: color 0.15s ease;
    font-weight: 500;
}
.dropdown li a:hover {
    color: var(--warm-gray);
    font-weight: bold;
}
main {
    padding: 60px 48px;
    flex: 1;
}
.contact-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content-wrap {
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    flex: 1;
}
section {
    margin-bottom: 80px;
    display: block;
}
.column {
    columns: 4;
    column-gap: 12px;
}
.column-3 {
    columns: 3;
}
.column img {
    width: 100%;
    margin-bottom: 12px;
    display: block;
    break-inside: avoid;
}
footer {
    padding: 28px 48px;
    border-top: 1px solid var(--accent);
    display: flex;
    justify-content: space-between;
}
footer p ,
footer ul li a {
    font-size: 0.65rem;
    color: var(--warm-gray);
    text-decoration: none;
}
footer ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
/* Contact Page Styles */
main h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.04rem;
    margin-bottom: 12px;
}
main p {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-bottom: 36px;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 700px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.full-width {
    grid-column: 1 / -1;
}
.form-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--charcoal);
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--accent);
    padding: 8px 0;
    outline: none;
    transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom: 1px solid var(--charcoal);
}
.submit-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--white);
    background-color: var(--charcoal);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    justify-self: start;
}
.submit-btn:hover {
    background-color: var(--warm-gray);
}
/* About Page Styles */
.about-main {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
}
.bio-section {
    width: 100%;
}
.collage {
    display: grid;
    grid-template-columns: 350px 550px 350px;
    grid-template-rows: 450px 500px 450px;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.collage-top-left {
    grid-column: 1;
    grid-row: 1;
    width: 350px;
    height: 450px;
    object-fit: cover;
    align-self: end;
}
.collage-top-mid {
    grid-column: 2;
    grid-row: 1;
    width: 550px;
    height: 450px;
    object-fit: cover;
    align-self: end;
}
.collage-top-right {
    grid-column: 3;
    grid-row: 1;
    width: 350px;
    height: 450px;
    object-fit: cover;
    align-self: end;
}
.collage-headshot {
    grid-column: 1;
    grid-row: 2;
    width: 350px;
    height: 500px;
    object-fit: cover;
}
.bio-text {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px 20px 20px;
}
.bio-text h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    text-align: center;
}
.bio-text p {
    font-size: 0.85rem;
    color: var(--charcoal);
    line-height: 1.8;
}
.collage-portrait {
    grid-column: 3;
    grid-row: 2;
    width: 350px;
    height: 500px;
    object-fit: cover;
}
.collage-bot-left {
    grid-column: 1;
    grid-row: 3;
    width: 350px;
    height: 450px;
    object-fit: cover;
    align-self: start;
}
.collage-bot-mid {
    grid-column: 2;
    grid-row: 3;
    width: 550px;
    height: 450px;
    object-fit: cover;
    align-self: start;
}
.collage-bot-right {
    grid-column: 3;
    grid-row: 3;
    width: 350px;
    height: 450px;
    object-fit: cover;
    align-self: start;
}