:root {
    --navy:#1a2332;--navy-light:#2a3a4e;--black:#111111;--gold:#c9a96e;--gold-light:#d4b97e;
    --white:#ffffff;--cream:#faf8f5;--gray-50:#f7f7f7;--gray-100:#f0f0f0;
    --gray-200:#e2e2e2;--gray-500:#6b7280;--gray-700:#3d3d3d;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;color:var(--black);line-height:1.6;background:var(--white);}
h1,h2,h3,h4{font-family:'Playfair Display',Georgia,serif;}
p{color:var(--gray-700);margin-bottom:18px;}
a{color:inherit;text-decoration:none;}
.container{max-width:1140px;margin:0 auto;padding:0 24px;}
nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(255,255,255,0.97);border-bottom:1px solid var(--gray-100);backdrop-filter:blur(8px);}
nav .container{display:flex;align-items:center;justify-content:space-between;height:72px;}
.logo{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:700;color:var(--navy);letter-spacing:0.02em;}
.logo span{color:var(--gold);}
.nav-links{display:flex;gap:28px;list-style:none;align-items:center;}
.nav-links a{font-size:0.9rem;font-weight:500;color:var(--gray-700);transition:color 0.2s;}
.nav-links a:hover{color:var(--navy);}
.nav-phone{font-size:0.88rem;font-weight:600;color:var(--navy)!important;white-space:nowrap;}
.nav-cta{background:var(--gold);color:var(--navy)!important;padding:10px 24px;border-radius:6px;font-weight:500;transition:background 0.2s;}
.nav-cta:hover{background:var(--gold-light);}
.mobile-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px;}
.mobile-toggle span{display:block;width:24px;height:2px;background:var(--navy);border-radius:2px;}
.post-header{background:var(--navy);padding:120px 0 60px;}
.post-header .back{display:inline-flex;align-items:center;gap:8px;color:var(--gold);font-size:0.82rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;margin-bottom:20px;}
.post-header .back:hover{color:var(--gold-light);}
.post-meta{display:flex;gap:16px;align-items:center;margin-bottom:16px;}
.post-category{font-size:0.75rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--gold);}
.post-date{font-size:0.82rem;color:rgba(255,255,255,0.5);}
.post-header h1{color:var(--white);font-size:2.4rem;line-height:1.2;max-width:800px;margin-bottom:16px;}
.post-header .post-intro{color:rgba(255,255,255,0.75);font-size:1.05rem;max-width:700px;margin-bottom:0;}
.post-body{padding:72px 0 100px;background:var(--white);}
.post-content{max-width:760px;}
.post-content h2{font-size:1.5rem;color:var(--navy);margin:40px 0 14px;padding-bottom:8px;border-bottom:2px solid var(--gold);display:inline-block;}
.post-content h3{font-size:1.1rem;color:var(--navy);margin:28px 0 10px;}
.post-content ul,.post-content ol{color:var(--gray-700);margin:0 0 18px 22px;}
.post-content li{margin-bottom:8px;line-height:1.65;}
.post-content blockquote{border-left:4px solid var(--gold);padding:16px 24px;background:var(--cream);margin:24px 0;border-radius:0 8px 8px 0;font-style:italic;color:var(--gray-700);}
.post-content .callout{background:var(--navy);color:var(--white);padding:28px 32px;border-radius:10px;margin:32px 0;}
.post-content .callout p{color:rgba(255,255,255,0.85);margin:0;}
.post-content .callout strong{color:var(--gold);}
.post-cta{background:var(--navy);border-radius:12px;padding:48px 40px;margin-top:56px;text-align:center;}
.post-cta h3{color:var(--white);font-size:1.5rem;margin-bottom:10px;}
.post-cta p{color:rgba(255,255,255,0.75);margin-bottom:24px;}
.btn{display:inline-block;padding:14px 32px;border-radius:6px;font-weight:600;font-size:0.95rem;cursor:pointer;border:none;font-family:inherit;}
.btn-gold{background:var(--gold);color:var(--navy);}
.btn-gold:hover{background:var(--gold-light);}
footer{background:var(--navy);color:rgba(255,255,255,0.7);padding:60px 0 32px;}
.footer-grid{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:48px;margin-bottom:48px;}
.footer-brand .logo{font-size:1.3rem;color:var(--white);}
.footer-brand p{margin-top:12px;font-size:0.88rem;color:rgba(255,255,255,0.55);}
footer h4{color:var(--white);font-family:'Inter',sans-serif;font-size:0.8rem;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;margin-bottom:16px;}
footer ul{list-style:none;}
footer ul li{margin-bottom:10px;}
footer ul a{font-size:0.88rem;color:rgba(255,255,255,0.6);transition:color 0.2s;}
footer ul a:hover{color:var(--white);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:28px;display:flex;justify-content:space-between;font-size:0.82rem;color:rgba(255,255,255,0.4);}
@media(max-width:900px){.footer-grid{grid-template-columns:repeat(2,1fr);}.mobile-toggle{display:flex;}.nav-links{display:none;}.nav-links.show{display:flex;flex-direction:column;position:absolute;top:72px;left:0;right:0;background:var(--white);border-bottom:1px solid var(--gray-200);padding:20px 24px;gap:16px;}}
@media(max-width:640px){.post-header h1{font-size:1.75rem;}.footer-grid{grid-template-columns:1fr;}.footer-bottom{flex-direction:column;gap:8px;}}
