/* =========================================
   GLOBAL RESETS & TYPOGRAPHY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    padding-top: 100px; /* Adjusted to match new nav height */
}

/* =========================================
   UNIVERSAL NAVIGATION RIBBON
   ========================================= */
nav { 
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 5%; 
    background: #ffffff; 
    z-index: 1000; 
    border-bottom: none; 
}

.logo { 
    font-family: 'Montserrat', sans-serif; 
    color: #d4af37; 
    text-decoration: none; 
    font-weight: 500; 
    letter-spacing: 6px; 
    text-transform: uppercase; 
    font-size: 0.95rem; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
}

.nav-links a { 
    color: #555555; 
    font-family: 'Montserrat', sans-serif; 
    text-decoration: none; 
    font-size: 0.58rem; 
    font-weight: 500;
    text-transform: uppercase; 
    letter-spacing: 3px; 
    transition: color 0.3s ease;
}

.nav-links a:hover { 
    color: #d4af37; 
}

/* =========================================
   ABOUT PAGE: EDITORIAL LAYOUT
   ========================================= */
.about-page {
    padding: 60px 10% 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

.about-image-column img {
    width: 100%;
    height: auto;
    filter: grayscale(10%);
    border: 1px solid #f0f0f0;
}

.editorial-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #b0b0b0;
    margin-bottom: 20px;
    display: block;
}

.bio-lead {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #d4af37;
    margin-bottom: 30px;
    font-style: italic;
}

.bio-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #333;
}

/* Future Works Box */
.future-works-section {
    margin-top: 50px;
    padding: 40px;
    background: #fafafa;
    border-left: 3px solid #d4af37;
}

.future-works-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.works-list {
    list-style: none;
}

.works-list li {
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.works-list li:last-child {
    border-bottom: none;
}

/* =========================================
   WRITING GRID (GALLERY STYLE)
   ========================================= */
.writing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.work-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 0.5px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card img {
    width: 80%;
    height: 80%;
    object-fit: contain; 
}

.work-info {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
}

.work-info h3 { 
    font-family: 'Montserrat', sans-serif; 
    color: #d4af37; 
    text-transform: uppercase; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    margin-bottom: 8px; 
    font-weight: 500;
}

.work-info p { 
    font-size: 0.8rem; 
    color: #666; 
    font-style: italic; 
}

.work-card:hover .work-info {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   SOPHISTICATED FOOTER
   ========================================= */
footer {
    width: 100%;
    padding: 80px 10% 60px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    margin-top: 120px;
}

/* Monogram/Symbol above links */
footer::before {
    content: "S.E."; 
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: #d4af37;
    margin-bottom: 40px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0 25px;
    position: relative;
    transition: all 0.4s ease;
}

/* The delicate vertical divider */
.footer-links a:not(:last-child) {
    border-right: 1px solid #eee;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    margin-top: 20px;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1000px) {
    nav { padding: 0 25px; }
    .nav-links { display: none; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; } 
    .about-image-column { max-width: 100%; margin: 0 auto; }
    .writing-grid { grid-template-columns: repeat(2, 1fr); }
    .about-page { padding: 40px 5% 60px; }
}

@media (max-width: 768px) {
    .footer-links { flex-direction: column; }
    .footer-links a { 
        border-right: none; 
        border-bottom: 1px solid #eee; 
        padding: 15px 0; 
        width: 100%; 
    }
    .footer-links a:last-child { border-bottom: none; }
    
    .writing-grid { grid-template-columns: 1fr; }
}
