body {
    background-color: #fcfaf5; /* Aged paper tone */
    color: #1a1a1b;            /* Deep charcoal soot */
    font-family: 'EB Garamond', serif;
    margin: 0;
    padding: 40px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

nav a {
    color: #1a1a1b;
    text-decoration: none;
    margin: 0 15px;
    font-style: italic;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

nav a:hover {
    border-bottom: 1px solid #1a1a1b;
}

.hero img {
    max-width: 100%;
    height: auto;
    /* The 'Chalk and Soot' Filter */
    filter: grayscale(100%) contrast(140%) brightness(90%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 0;
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* High-contrast 'Soot' effect */
    filter: grayscale(100%) contrast(150%) brightness(85%);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    filter: grayscale(100%) contrast(160%) brightness(100%);
}

/* Professional Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    /* The 'Chalk and Soot' auto-processor */
    filter: grayscale(100%) contrast(160%) brightness(90%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.gallery-grid img:hover {
    filter: grayscale(100%) contrast(140%) brightness(105%);
    transform: scale(1.01);
}