* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #111; background: #FDFBF7; line-height: 1.6; }
.serif { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }
.text-gold { color: #926A12; }
.bg-light { background-color: #F7F3EF; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-small { max-width: 800px; margin: 0 auto; padding: 0 20px; }

#navbar { position: fixed; w-full; width: 100%; z-index: 100; display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; background: rgba(253, 251, 247, 0.95); border-bottom: 1px solid #eee; transition: 0.3s; }
.logo { font-size: 24px; font-weight: 700; font-family: 'Cormorant Garamond', serif; text-transform: uppercase; }
.logo span { color: #926A12; }
.nav-links a { text-decoration: none; color: #111; margin-left: 30px; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover, .nav-links a.highlight { color: #926A12; }

.hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&q=80'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 10vw, 6rem); line-height: 1.1; margin-bottom: 30px; }
.subtitle { text-transform: uppercase; letter-spacing: 4px; font-weight: 600; font-size: 14px; color: #926A12; margin-bottom: 15px; }

.btn { text-decoration: none; padding: 16px 35px; font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 2px; transition: 0.4s; display: inline-block; }
.btn-gold { background: #926A12; color: #fff; border: 2px solid #926A12; }
.btn-gold:hover { background: #7a590f; }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }

.section { padding: 100px 0; }
.about-grid { display: grid; grid-template-cols: 1fr 1fr; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.img-wrapper img { width: 100%; border-left: 10px solid #926A12; box-shadow: 20px 20px 0px #eee; }
.about-text h2 { font-size: 40px; font-family: 'Cormorant Garamond', serif; margin-bottom: 20px; }
.signature { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-style: italic; font-weight: 700; border-top: 2px solid #926A12; display: inline-block; margin-top: 20px; padding-top: 5px; }


.price-list { margin-top: 40px; }
.price-item { display: flex; justify-content: space-between; border-bottom: 2px solid #111; padding: 20px 0; font-weight: 700; text-transform: uppercase; font-size: 18px; }
.price { color: #926A12; font-family: 'Cormorant Garamond', serif; font-size: 28px; }


.sub-nav { padding: 40px; }
.back-link { text-decoration: none; color: #111; font-weight: 700; text-transform: uppercase; font-size: 12px; }
.portfolio-header { text-align: center; padding-bottom: 50px; }
.portfolio-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 80px; font-style: italic; }
.gallery-section { margin-bottom: 80px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.gallery-grid-special { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery-item img { width: 100%; height: 450px; object-fit: cover; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }


footer { padding: 80px 20px; background: #111; color: #fff; text-align: center; }
.social-links a { color: #926A12; font-weight: 700; text-decoration: none; margin: 0 20px; text-transform: uppercase; border-bottom: 1px solid #926A12; }
.credits { margin-top: 40px; font-size: 10px; color: #555; letter-spacing: 2px; text-transform: uppercase; }
.credits a { color: #888; text-decoration: none; border-bottom: 1px solid #444; }


@media (max-width: 768px) {
    .about-grid, .gallery-grid-special { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}