/* Palette: Burgundy, Gold, Cream, Dark Grey */
:root {
    --burgundy: #5D001E;
    --burgundy-light: #7A0026;
    --gold: #C5A059;
    --cream: #F9F7F2;
    --white: #FFFFFF;
    --text: #333333;
    --grey: #F0F0F0;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: var(--font-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; border-radius: 2px; }

/* Top Bar */
.top-bar { background: var(--burgundy); color: var(--white); padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-flex { display: flex; justify-content: space-between; align-items: center; }
.client-login { color: var(--gold); font-weight: 500; }

/* Header */
.heritage-header { background: var(--white); padding: 25px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.8rem; color: var(--text); letter-spacing: 1px; font-weight: 700; }
.burgundy-text { color: var(--burgundy); }

.classic-nav a { margin-left: 30px; font-weight: 500; color: #555; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.classic-nav a:hover, .classic-nav a.active { color: var(--burgundy); border-bottom: 2px solid var(--gold); padding-bottom: 5px; }

.mobile-toggle { display: none; background: transparent; border: 1px solid var(--burgundy); color: var(--burgundy); padding: 5px 15px; font-family: var(--font-serif); cursor: pointer; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--burgundy); z-index: 2000; padding: 40px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; color: var(--gold); font-size: 1.5rem; margin-bottom: 30px; cursor: pointer; }
.mobile-menu a { display: block; color: var(--white); font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }

@media (max-width: 900px) {
    .classic-nav { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-heritage { height: 85vh; 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; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(20, 0, 5, 0.5); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; border: 1px solid rgba(197, 160, 89, 0.5); padding: 60px; background: rgba(0,0,0,0.3); backdrop-filter: blur(2px); }

.pre-header { color: var(--gold); font-family: var(--font-serif); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 15px; display: block; }
.hero-content h1 { font-family: var(--font-serif); font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #f0f0f0; font-weight: 300; }

.btn-burgundy { background: var(--burgundy); color: var(--white); padding: 15px 40px; font-family: var(--font-sans); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; border: 1px solid var(--burgundy); cursor: pointer; transition: 0.3s; }
.btn-burgundy:hover { background: var(--burgundy-light); border-color: var(--gold); }

/* Services Preview */
.section-title h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--burgundy); margin-bottom: 10px; }
.ornament { font-size: 1.5rem; color: var(--gold); margin-bottom: 20px; }
.ornament.left { text-align: left; margin: 10px 0 30px; }
.text-center { text-align: center; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-box { background: var(--white); padding: 40px; border-top: 3px solid var(--burgundy); box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: 0.3s; }
.service-box:hover { transform: translateY(-5px); border-color: var(--gold); }
.service-box h3 { font-family: var(--font-serif); color: var(--text); margin-bottom: 15px; font-size: 1.3rem; }
.service-box p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.service-box a { color: var(--burgundy); font-weight: 500; font-size: 0.9rem; }

/* Market Strip */
.market-strip { background: #222; color: var(--gold); padding: 15px 0; overflow: hidden; white-space: nowrap; font-family: var(--font-sans); font-size: 0.9rem; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.ticker-text { animation: ticker 20s linear infinite; display: inline-block; padding-left: 100%; }
@keyframes ticker { 0% { transform: translate(0, 0); } 100% { transform: translate(-100%, 0); } }

/* About */
.about-classic { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-txt h1 { font-family: var(--font-serif); font-size: 3rem; color: var(--text); line-height: 1.1; margin-bottom: 20px; }
.gold-list { list-style: none; margin-top: 30px; }
.gold-list li { margin-bottom: 15px; padding-left: 20px; border-left: 2px solid var(--gold); color: var(--burgundy); font-family: var(--font-serif); font-size: 1.1rem; }
.about-img img { border: 10px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Services List */
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.s-item { display: flex; gap: 20px; background: var(--white); padding: 30px; border-radius: 2px; border: 1px solid #e0e0e0; }
.s-icon { font-size: 2.5rem; }
.s-content h3 { font-family: var(--font-serif); color: var(--burgundy); margin-bottom: 10px; }

/* Contact */
.contact-formal { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-card { background: var(--burgundy); color: var(--white); padding: 50px; }
.contact-card h2 { font-family: var(--font-serif); margin-bottom: 20px; color: var(--gold); }
.c-details { margin-top: 40px; }
.c-line { margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.c-line strong { display: block; font-size: 0.8rem; color: var(--gold); margin-bottom: 5px; }

.burgundy-form .form-group { margin-bottom: 20px; }
.burgundy-form label { display: block; font-weight: 500; color: var(--text); margin-bottom: 5px; font-size: 0.9rem; }
.burgundy-form input, .burgundy-form select, .burgundy-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background: var(--white); font-family: var(--font-sans); }
.full { width: 100%; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
.legal-text h1 { font-family: var(--font-serif); color: var(--burgundy); }

/* Footer */
.heritage-footer { background: #1a1a1a; color: #999; padding: 60px 0 20px; margin-top: 100px; border-top: 5px solid var(--burgundy); }
.footer-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { color: var(--white); font-family: var(--font-serif); letter-spacing: 1px; margin-bottom: 5px; }
.f-nav a { margin-left: 20px; color: #999; font-size: 0.9rem; }
.f-nav a:hover { color: var(--gold); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #333; padding-top: 20px; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content { padding: 30px; }
    .cards-grid, .about-classic, .services-list, .contact-formal { grid-template-columns: 1fr; }
    .footer-row { flex-direction: column; gap: 20px; text-align: center; }
}