@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-dark: #121212;
    --bg-section: #1a1a1a;
    --bg-light: #f9f8f4;
    --white: #ffffff;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dim: #8a7122;
    --text-dark: #1a1a1a;
    --text-light: #f9f8f4;
    --text-grey: #666666;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--bg-light); line-height: 1.8; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; color: var(--bg-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; position: relative; }

/* --- Buttons --- */
.btn {
    display: inline-block; padding: 18px 42px;
    background: transparent; color: var(--text-dark);
    text-decoration: none; border: 1px solid var(--gold);
    letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: var(--gold); z-index: -1; transition: 0.5s ease;
}
.btn:hover::before { width: 100%; }
.btn:hover { color: var(--bg-dark); border-color: var(--gold); }

.text-link { color: var(--gold); text-decoration: none; font-family: var(--font-serif); font-style: italic; border-bottom: 1px solid transparent; transition: 0.3s; }
.text-link:hover { border-bottom: 1px solid var(--gold); letter-spacing: 0.5px; }

/* --- Navigation --- */
#navbar { position: fixed; width: 100%; top: 0; padding: 25px 0; z-index: 1000; transition: 0.4s; mix-blend-mode: exclusion; }
#navbar.scrolled { background: rgba(255, 255, 255, 0.95); padding: 15px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.05); mix-blend-mode: normal; }
.nav-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 40px; }
.logo { display: flex; align-items: center; text-decoration: none; gap: 15px; }
.brand-name { font-family: var(--font-serif); font-weight: 700; letter-spacing: 2px; color: var(--text-dark); font-size: 1.1rem; }
.nav-links a { margin-left: 40px; text-decoration: none; color: var(--text-dark); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold-dim); }
.btn-nav { border: 1px solid var(--text-dark); padding: 10px 25px !important; }

/* --- Hero --- */
#hero { height: 90vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    background: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    z-index: -2;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(249, 248, 244, 0.7); z-index: -1; }
.hero-content { max-width: 800px; padding: 0 20px; }
.hero-eyebrow { display: block; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 20px; color: var(--text-grey); }
#hero h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; }
.hero-sub { font-size: 1.3rem; color: var(--text-grey); margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- General Sections --- */
.section-padding { padding: 140px 0; }
.section-title { font-size: 3rem; text-align: center; margin-bottom: 1rem; color: var(--bg-dark); }
.section-title-left { font-size: 2.5rem; margin-bottom: 2rem; position: relative; padding-left: 60px; }
.section-title-left::before { content: ''; position: absolute; left: 0; top: 50%; height: 1px; width: 40px; background: var(--gold); }
.section-subtitle { text-align: center; font-style: italic; color: #666; max-width: 600px; margin: 0 auto 5rem; font-family: var(--font-serif); font-size: 1.2rem; }

/* --- Expertise --- */
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.drop-cap::first-letter { float: left; font-size: 4.5rem; line-height: 0.8; font-family: var(--font-serif); padding-right: 15px; color: var(--gold); }
.expertise-visual { position: relative; }
.luxury-img { width: 100%; display: block; filter: sepia(20%) contrast(1.05); }
.gold-frame { position: absolute; top: 20px; left: 20px; width: 100%; height: 100%; border: 1px solid var(--gold); z-index: -1; }

/* --- Journal / Cards --- */
.bg-dark { background: var(--bg-section); }
.text-light { color: var(--text-light); }
.text-gold { color: var(--gold); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card { background: var(--white); border: none; box-shadow: 0 20px 50px rgba(0,0,0,0.08); transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); overflow: hidden; }
.card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2); }
.card-img { height: 260px; width: 100%; object-fit: cover; transition: 0.6s; }
.card:hover .card-img { transform: scale(1.05); }
.card-content { padding: 40px 35px; text-align: center; }
.card-title { font-size: 1.4rem; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.1); }

/* --- Concierge --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.info-block { margin-bottom: 30px; }
.info-block h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; font-family: var(--font-sans); }

.luxury-form { display: flex; flex-direction: column; gap: 30px; }
.form-group { position: relative; padding-top: 15px; }
.form-group input, .form-group textarea {
    width: 100%; border: none; border-bottom: 1px solid #ccc; background: transparent;
    padding: 10px 0; font-family: var(--font-serif); font-size: 1.1rem; color: var(--bg-dark);
    outline: none; transition: 0.3s; resize: none;
}
.form-group textarea { height: 100px; }
.form-group label {
    position: absolute; top: 25px; left: 0; color: #999; pointer-events: none;
    transition: 0.3s; font-family: var(--font-sans); font-size: 0.9rem;
}
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label {
    top: 0; font-size: 0.7rem; color: var(--gold);
}
.btn-submit { background: var(--bg-dark); color: var(--gold); width: 100%; border-color: var(--bg-dark); }
.btn-submit:hover { background: var(--gold); border-color: var(--gold); color: var(--bg-dark); }

/* --- Footer --- */
.main-footer { background: #0b0b0b; padding: 80px 0 30px; color: #888; border-top: 3px solid var(--gold); }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 60px; border-bottom: 1px solid #222; padding-bottom: 40px; }
.footer-logo { display: block; color: var(--gold); font-family: var(--font-serif); letter-spacing: 2px; font-size: 1.5rem; margin-bottom: 10px; }
.footer-links a { display: block; color: #888; text-decoration: none; margin-bottom: 10px; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { text-align: center; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- Utilities / Animations --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: 1s ease; }
.fade-in.active { opacity: 1; transform: translateY(0); }

.reveal-up { opacity: 0; transform: translateY(40px); transition: 0.8s ease-out; }
.reveal-up.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: 1s ease-out; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: 1s ease-out; }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* --- Success Page --- */
.success-content { text-align: center; max-width: 700px; margin: 0 auto; }
.success-icon-wrapper { margin-bottom: 40px; }
.success-icon { display: block; margin: 0 auto; }
.success-circle { stroke-dasharray: 302; stroke-dashoffset: 302; animation: drawCircle 1s ease-out forwards; }
.success-checkmark { stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawCheck 0.5s ease-out 0.8s forwards; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.success-title { font-size: 2.8rem; margin-bottom: 25px; color: var(--bg-dark); }
.success-message { font-size: 1.15rem; line-height: 1.8; color: var(--text-grey); margin-bottom: 40px; }
.success-info { margin: 40px 0; padding: 30px; background: var(--bg-light); border-left: 4px solid var(--gold); text-align: left; }
.success-info h4 { color: var(--gold); margin-bottom: 15px; }
.info-text { margin-bottom: 8px; color: var(--text-grey); }
.success-actions { margin-top: 40px; }

/* --- Cookie Banner --- */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); border-top: 2px solid var(--gold); padding: 20px; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 9999; box-shadow: 0 -10px 30px rgba(0,0,0,0.05); transform: translateY(100%); transition: 0.5s; }
.cookie-banner.show { transform: translateY(0); }
.btn-small { padding: 10px 20px; background: var(--bg-dark); color: var(--gold); border: none; cursor: pointer; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1px; }

/* --- Mobile --- */
.mobile-toggle { display: none; cursor: pointer; background: none; border: none; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 25px; height: 2px; background: var(--gold); transition: 0.3s; }

@media (max-width: 768px) {
    #hero h1 { font-size: 2.5rem; }
    .grid-3, .expertise-grid, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .section-title-left { padding-left: 0; }
    .section-title-left::before { display: none; }
    .container { padding: 0 20px; }
    .success-title { font-size: 2rem; }
}

/* --- Footer Disclaimer --- */
.footer-disclaimer {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px 30px;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
    border-radius: 5px;
}
.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-grey);
    margin: 0;
}
.footer-disclaimer strong {
    color: var(--bg-dark);
    font-weight: 700;
}