/* Palette: Night Black, White, Slate Blue */
:root {
    --night: #111111;
    --slate: #607D8B;
    --off-white: #F8F9FA;
    --border: #E0E0E0;
    --white: #FFFFFF;
    
    --font-head: 'Lexend Deca', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--night);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.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 */
.moment-header { background: var(--white); padding: 25px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--night); letter-spacing: -1px; }
.slate { color: var(--slate); }

.moment-nav a { margin-left: 25px; font-weight: 400; font-size: 0.85rem; text-transform: uppercase; color: #555; }
.moment-nav a:hover, .moment-nav a.active { color: var(--slate); }

.btn-dark { background: var(--night); color: var(--white) !important; padding: 10px 25px; border-radius: 0; font-weight: 600; font-size: 0.8rem; }
.btn-dark:hover { background: var(--slate); }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--night); }

.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2rem; background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: var(--night); }

@media (max-width: 900px) {
    .moment-nav { display: none; }
    .mobile-toggle { display: flex; }
}

/* Hero */
.hero-moment { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { color: var(--white); max-width: 800px; padding: 20px; }
.moment-label { letter-spacing: 4px; font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.9; font-weight: 300; }

.cta-btns { display: flex; justify-content: center; gap: 15px; }
.btn-main { background: var(--white); color: var(--night); padding: 15px 35px; font-weight: 700; font-family: var(--font-head); }
.btn-outline { border: 1px solid var(--white); color: var(--white); padding: 13px 35px; font-weight: 600; }

/* Grid */
.section-title h2 { font-family: var(--font-head); font-size: 2rem; }
.slate-line { width: 60px; height: 3px; background: var(--slate); margin: 15px auto 0; }
.slate-line.left { margin: 20px 0; }

.moment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.moment-card { position: relative; overflow: hidden; height: 500px; }
.moment-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: var(--white); transform: translateY(20px); transition: 0.4s; opacity: 0.9; }
.moment-card:hover img { transform: scale(1.05); }
.moment-card:hover .card-overlay { transform: translateY(0); }

/* About & Contact */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-col h1 { font-family: var(--font-head); font-size: 2.5rem; line-height: 1.1; }
.values { list-style: none; margin-top: 30px; font-weight: 600; color: var(--slate); }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--off-white); padding: 60px; }
.contact-info h2 { font-family: var(--font-head); margin-bottom: 20px; }
.info-list p { margin-bottom: 10px; font-weight: 500; }

.moment-form .input-grp { margin-bottom: 20px; }
.moment-form input, .moment-form select, .moment-form textarea { width: 100%; padding: 15px; border: none; border-bottom: 1px solid var(--border); background: transparent; font-family: var(--font-body); font-size: 1rem; outline: none; transition: 0.3s; }
.moment-form input:focus, .moment-form textarea:focus { border-bottom-color: var(--slate); }
.btn-submit { width: 100%; background: var(--night); color: var(--white); border: none; padding: 15px; font-family: var(--font-head); font-weight: 700; cursor: pointer; }

/* Testimonials & Legal */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testi-card { padding: 40px 30px; border: 1px solid var(--border); transition: 0.3s; }
.testi-card.active { border-color: var(--night); background: var(--off-white); }
.testi-card strong { display: block; margin-top: 20px; color: var(--slate); }

.legal-box { max-width: 800px; margin: 0 auto; background: var(--off-white); padding: 60px; }
.legal-box h1 { font-family: var(--font-head); }
.legal-box h3 { color: var(--slate); margin-top: 30px; }

/* Footer */
.moment-footer { background: var(--white); padding: 80px 0 30px; margin-top: 80px; border-top: 1px solid var(--border); }
.footer-layout { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 40px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--font-head); color: var(--night); }
.f-links a { margin-left: 25px; color: var(--slate); font-weight: 600; }
.copyright { text-align: center; font-size: 0.8rem; color: #999; }

/* Cookie */
.cookie-strip { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--night); color: var(--white); padding: 10px 25px; display: flex; align-items: center; gap: 20px; z-index: 3000; display: none; }
.cookie-strip.active { display: flex; }
.cookie-strip button { background: var(--white); color: var(--night); border: none; padding: 5px 15px; font-weight: 700; cursor: pointer; }

@media (max-width: 900px) {
    .moment-grid, .vision-grid, .contact-wrapper, .testi-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.8rem; }
    .footer-layout { flex-direction: column; text-align: center; gap: 30px; }
}