:root {
    --black: #0a0a0a;
    --dark-grey: #333333;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.8;
    font-weight: 200;
}

.container { width: 90%; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.mono-header { padding: 40px 0; background-color: var(--white); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.8rem; letter-spacing: 5px; font-weight: 600; color: var(--black); }
.thin { font-weight: 300; }

.mono-nav ul { display: flex; gap: 40px; list-style: none; }
.mono-nav a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--dark-grey); position: relative; }
.mono-nav a::after { content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 0; background-color: var(--black); transition: 0.3s; }
.mono-nav a:hover::after, .mono-nav a.active::after { width: 100%; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; line-height: 1; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.5s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 2rem; cursor: pointer; }
.menu-links { display: flex; flex-direction: column; text-align: center; gap: 30px; }
.menu-links a { font-family: var(--font-serif); font-size: 3rem; color: var(--black); }

/* Hero */
.hero-mono { height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-text h1 { font-family: var(--font-serif); font-size: 4rem; font-weight: 300; letter-spacing: 10px; margin-bottom: 20px; }
.hero-text p { font-size: 1rem; letter-spacing: 2px; color: var(--dark-grey); }

/* Gallery Grid */
.section-padding { padding: 0 0 100px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.gallery-item:hover img { filter: grayscale(0%); transform: scale(1.02); }

.gallery-item.large { grid-row: span 2; }
.gallery-item.small { height: 400px; }

.caption { position: absolute; bottom: 20px; left: 20px; color: var(--white); opacity: 0; transition: 0.5s; text-shadow: 0 0 10px rgba(0,0,0,0.5); }
.gallery-item:hover .caption { opacity: 1; }
.caption h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 5px; }
.caption span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }

/* About */
.about-layout { display: flex; gap: 80px; align-items: center; }
.text-block { flex: 1; }
.text-block h1 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 30px; letter-spacing: 3px; }
.line { width: 60px; height: 1px; background-color: var(--black); margin-bottom: 30px; }
.text-block p { margin-bottom: 20px; text-align: justify; }
.signature { margin-top: 40px; font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; }
.image-block { flex: 1; }
.image-block img { width: 100%; filter: grayscale(100%); }

/* Testimonials */
.review-list { max-width: 800px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 80px; }
.review-item blockquote { font-family: var(--font-serif); font-size: 2rem; line-height: 1.4; margin-bottom: 20px; border: none; padding: 0; }
.review-item cite { font-style: normal; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }

/* Contact Form */
.contact-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; max-width: 1000px; margin: 0 auto; }
.info-side h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 20px; }
.info-side address { font-style: normal; line-height: 1.8; }

.clean-form .form-group { margin-bottom: 30px; }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; border: none; border-bottom: 1px solid var(--black); padding: 15px 0; font-family: var(--font-sans); font-size: 1rem; background: transparent; outline: none; transition: 0.3s; }
.clean-form input:focus, .clean-form select:focus, .clean-form textarea:focus { border-bottom: 1px solid #999; padding-left: 10px; }
.send-btn { background-color: var(--black); color: var(--white); border: none; padding: 15px 50px; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.3s; font-family: var(--font-sans); font-size: 0.8rem; }
.send-btn:hover { background-color: var(--dark-grey); }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 20px; letter-spacing: 3px; }
.legal-content h3 { font-family: var(--font-serif); margin-top: 40px; margin-bottom: 10px; }

/* Footer */
.mono-footer { padding: 50px 0; text-align: center; font-size: 0.8rem; border-top: 1px solid #eee; }
.socials { margin-top: 20px; }
.socials a { margin: 0 10px; font-weight: 600; }

@media (max-width: 900px) {
    .mono-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-text h1 { font-size: 2.5rem; }
    .gallery-grid, .about-layout, .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; }
    .gallery-item.large { grid-row: span 1; }
    .image-block { order: -1; }
}