/* --- Scribe & Meridian: Light & Clean Theme --- */

.project-page {
    background-color: #f0e9e2; /* Aged Parchment */
}

/* Light Hero */
.project-hero-light {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.project-hero-light .hero-logo-container {
    max-width: 280px;
    margin-bottom: 2rem;
}
.project-hero-light h1 {
    font-family: 'Playfair Display', var(--font-serif);
    font-size: 3.5rem;
    color: #3a241c; /* Deep Cacao */
    margin: 0;
}
.project-hero-light p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #a98b64; /* Burnished Gold */
    max-width: 40ch;
    margin-top: 1rem;
}

/* Inline Images within text sections */
.inline-image {
    width: 100%;
    border-radius: 5px;
    margin: 3rem 0;
}

/* Standard project sections from project-style.css that we need */
.project-main { padding-top: 80px; }
.project-section { padding: 100px 0; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.text-manifesto { text-align: center; }
.text-manifesto h2 { font-size: 2.8rem; margin-bottom: 2rem; font-family: 'Playfair Display', var(--font-serif); }
.text-manifesto p { font-size: 1.25rem; line-height: 1.8; max-width: 60ch; margin-left: auto; margin-right: auto; }
.reflection-bg { background-color: var(--white-color); }
.text-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.text-image-grid.reverse { grid-template-columns: 1fr 1fr; }
.text-image-grid.reverse .text-content { order: 2; }
.text-image-grid h2 { font-size: 2.5rem; margin-bottom: 1.5rem; font-family: 'Playfair Display', var(--font-serif); }
.text-image-grid p { font-size: 1.1rem; line-height: 1.8; }
.text-image-grid img { border-radius: 5px; width: 100%; height: auto; }
.full-width-container { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.project-image-break img { width: 100%; height: auto; display: block; }
.project-nav { display: flex; justify-content: space-between; align-items: center; padding: 40px; border-top: 1px solid #ddd; }
.nav-link { font-weight: 500; color: var(--text-color); }
.cta-button-dark { display: inline-block; font-family: var(--font-sans); font-weight: 500; font-size: 1rem; color: var(--white-color); background-color: var(--text-color); border: 1px solid var(--text-color); padding: 14px 35px; text-decoration: none; border-radius: 50px; transition: background-color 0.3s ease, color 0.3s ease; }
.cta-button-dark:hover { background-color: transparent; color: var(--text-color); }


/* Responsive for Scribe & Meridian */
@media (max-width: 768px) {
    .project-hero-light h1 { font-size: 2.5rem; }
    .text-image-grid, .text-image-grid.reverse { grid-template-columns: 1fr; }
    .text-image-grid.reverse .text-content { order: 0; }
}
/* --- ADD THIS TO THE END OF project-scribe.css --- */

/* Palette Showcase for Scribe & Meridian */
.palette-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap; /* Allows it to stack on mobile */
}
.swatch-container {
    text-align: center;
}
.swatch-container .swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
}
.swatch-container span {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #888;
}