/* Palette: Charcoal, Copper, Warm Grey, White */
:root {
    --charcoal: #222222;
    --dark-grey: #333333;
    --copper: #C17E5F;
    --copper-light: #D69E85;
    --white: #FFFFFF;
    --bg-grey: #F5F5F5;
    
    --serif: 'Playfair Display', serif;
    --sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-grey);
    color: var(--charcoal);
    font-family: var(--sans);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.copper-header { background: var(--charcoal); padding: 25px 0; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--serif); font-size: 1.5rem; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
.copper-text { color: var(--copper); font-style: italic; }

.elegant-nav a { margin-left: 30px; color: #aaa; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.elegant-nav a:hover, .elegant-nav a.active { color: var(--copper); }

.menu-toggle { display: none; background: none; border: 1px solid var(--copper); color: var(--copper); padding: 5px 15px; cursor: pointer; text-transform: uppercase; font-size: 0.8rem; }

/* Mobile Menu */
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; transition: 0.4s; box-shadow: -10px 0 30px rgba(0,0,0,0.2); }
.mobile-overlay.active { right: 0; }
.close-btn { background: none; border: none; font-size: 2rem; position: absolute; top: 20px; right: 20px; cursor: pointer; color: var(--charcoal); }
.mobile-overlay nav a { display: block; font-family: var(--serif); font-size: 1.5rem; margin-bottom: 20px; color: var(--charcoal); }

@media (max-width: 900px) {
    .elegant-nav { display: none; }
    .menu-toggle { display: block; }
}

/* Hero */
.hero-moment { height: 90vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: brightness(0.6); }
.hero-content { position: relative; z-index: 10; color: var(--white); max-width: 800px; padding: 0 20px; }

.subtitle { color: var(--copper); font-family: var(--sans); letter-spacing: 3px; font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--serif); font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; letter-spacing: 1px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; font-weight: 300; }

.btn-copper { background: var(--copper); color: var(--white); padding: 15px 40px; border-radius: 2px; font-family: var(--sans); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; font-weight: 600; border: none; cursor: pointer; }
.btn-copper:hover { background: var(--copper-light); color: var(--charcoal); }

/* Process */
.text-center { text-align: center; }
.section-head h2 { font-family: var(--serif); font-size: 2.5rem; color: var(--charcoal); margin-bottom: 10px; }
.copper-line { width: 60px; height: 2px; background: var(--copper); margin: 20px auto 40px; }
.copper-line.left { margin: 20px 0 40px 0; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.p-step { text-align: center; padding: 30px; background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-top: 3px solid var(--charcoal); transition: 0.3s; }
.p-step:hover { border-color: var(--copper); transform: translateY(-5px); }
.step-num { font-family: var(--serif); font-size: 3rem; color: var(--copper); opacity: 0.3; font-style: italic; margin-bottom: 10px; }
.p-step h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 15px; }

/* Materials */
.materials { display: grid; grid-template-columns: 1fr 1fr; background: var(--charcoal); color: var(--white); }
.mat-content { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.mat-content h2 { font-family: var(--serif); font-size: 2.5rem; margin-bottom: 20px; color: var(--copper); }
.link-arrow { color: var(--white); border-bottom: 1px solid var(--white); display: inline-block; width: max-content; margin-top: 30px; }
.mat-image img { width: 100%; height: 100%; object-fit: cover; }

/* About */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h1 { font-family: var(--serif); font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.about-img-frame { padding: 20px; border: 1px solid var(--copper); }
.gold-list { list-style: none; margin-top: 30px; }
.gold-list li { margin-bottom: 15px; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--copper); }

/* Testimonials */
.moments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.moment-card { background: var(--white); padding: 40px; border: 1px solid #eee; }
.moment-card.highlight { background: var(--charcoal); color: var(--white); border: none; }
.card-top { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 0.7rem; letter-spacing: 1px; color: var(--copper); }
.review-text { font-family: var(--serif); font-style: italic; font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; }
.client-name { font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }

/* Contact */
.contact-dark { background: var(--white); padding: 60px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.contact-header { text-align: center; margin-bottom: 50px; }
.contact-header h2 { font-family: var(--serif); font-size: 2.5rem; color: var(--charcoal); }

.contact-split { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
.c-item { margin-bottom: 30px; }
.c-item strong { color: var(--copper); display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: 5px; }

.copper-form .input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.copper-form input, .copper-form select, .copper-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; background: #fafafa; font-family: var(--sans); margin-bottom: 20px; }
.copper-form input:focus { border-color: var(--copper); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-elegant { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border: 1px solid #eee; }
.legal-elegant h1 { font-family: var(--serif); color: var(--charcoal); }

/* Footer */
.moment-footer { background: var(--charcoal); color: #888; padding: 60px 0 20px; margin-top: 80px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 30px; }
.f-brand h4 { color: var(--white); font-family: var(--serif); margin-bottom: 5px; }
.f-nav a { margin-left: 20px; color: #aaa; font-size: 0.85rem; }
.f-nav a:hover { color: var(--copper); }
.copyright { text-align: center; font-size: 0.8rem; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .process-grid, .materials, .about-split, .moments-grid, .contact-split { grid-template-columns: 1fr; }
    .footer-row { flex-direction: column; text-align: center; gap: 20px; }
}