*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #0c1e38;
  --navy-mid:  #162e50;
  --gold:      #a0804a;
  --gold-lt:   #c4a06a;
  --gold-faint:#f0e8d8;
  --white:     #ffffff;
  --off-white: #f7f6f3;
  --gray-200:  #ddd9d2;
  --gray-400:  #9a9690;
  --text:      #1a1816;
  --text-muted:#5a5652;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; font-weight: 400; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; padding-bottom: 56px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--white); display: flex; align-items: center; justify-content: space-between; padding: 0 5%; height: 90px; border-bottom: 1px solid var(--gray-200); box-shadow: 0 1px 16px rgba(12,30,56,0.07); }
.nav-logo img { height: 58px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--navy); text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 0.55rem 1.25rem !important; letter-spacing: 0.08em !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }
.nav-actions { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); text-decoration: none; letter-spacing: 0.04em; white-space: nowrap; display: flex; align-items: center; gap: 0.45rem; transition: color 0.2s; }
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { color: var(--gold); flex-shrink: 0; }
.lang-switch { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; border: 1px solid var(--gray-200); padding: 0.3rem 0.65rem; transition: color 0.2s, border-color 0.2s; }
.lang-switch:hover { color: var(--gold); border-color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--navy); }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 130px 5% 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(160,128,74,0.1) 0%, transparent 60%); pointer-events: none; }
.page-hero-inner { position: relative; max-width: 1100px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #6a8aaa; margin-bottom: 1.5rem; }
.breadcrumb a { color: #6a8aaa; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; line-height: 1.1; margin-bottom: 0.75rem; }
.page-hero p { font-size: 0.95rem; color: #8fa3bc; line-height: 1.75; max-width: 560px; margin-top: 0.75rem; }

/* BLOG LISTING */
.blog-wrap { max-width: 1100px; margin: 0 auto; padding: 72px 5% 96px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--gray-200); background: var(--white); text-decoration: none; transition: box-shadow 0.2s, transform 0.2s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(12,30,56,0.1); transform: translateY(-2px); }
.blog-card-img { background: var(--navy); height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(160,128,74,0.15) 0%, transparent 60%); }
.blog-card-img svg { color: rgba(160,128,74,0.4); position: relative; z-index: 1; }
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.blog-card h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.3rem; color: var(--navy); line-height: 1.3; margin-bottom: 0.85rem; }
.blog-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; flex: 1; }
.blog-card-link { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 1.25rem; display: flex; align-items: center; gap: 0.4rem; }

/* BLOG POST */
.post-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; max-width: 1100px; margin: 0 auto; padding: 72px 5% 96px; align-items: start; }
.post-content h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.5rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.post-content h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.2rem; color: var(--navy); margin: 2rem 0 0.75rem; }
.post-content p { font-size: 0.925rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.25rem; }
.post-content ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; padding-left: 0.25rem; }
.post-content ul li { font-size: 0.925rem; color: var(--text-muted); line-height: 1.7; padding-left: 1.25rem; position: relative; }
.post-content ul li::before { content: ''; position: absolute; left: 0; top: 0.68em; width: 6px; height: 1px; background: var(--gold); }
.post-content a { color: var(--gold); text-decoration: none; }
.post-content a:hover { color: var(--gold-lt); text-decoration: underline; }
.post-content .callout { background: var(--off-white); border-left: 2px solid var(--gold); padding: 1.25rem 1.5rem; margin: 1.75rem 0; }
.post-content .callout p { margin: 0; font-size: 0.875rem; }
.post-meta { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 2rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.post-meta span { display: flex; align-items: center; gap: 0.35rem; }
.post-sidebar { position: sticky; top: 110px; }
.sidebar-cta { background: var(--navy); padding: 2rem; margin-bottom: 1.5rem; }
.sidebar-cta h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.3rem; color: #fff; margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: 0.83rem; color: #8fa3bc; line-height: 1.7; margin-bottom: 1.25rem; }
.sidebar-cta a { display: block; background: var(--gold); color: #fff; text-decoration: none; padding: 0.8rem 1.25rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; transition: background 0.2s; }
.sidebar-cta a:hover { background: var(--gold-lt); }
.sidebar-related h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.sidebar-related ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-related ul li a { font-size: 0.875rem; color: var(--navy); text-decoration: none; font-weight: 500; line-height: 1.4; transition: color 0.2s; }
.sidebar-related ul li a:hover { color: var(--gold); }

/* CTA BANNER */
.cta-banner { background: var(--navy); padding: 64px 5%; }
.cta-banner-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; }
.cta-banner p { font-size: 0.9rem; color: #8fa3bc; margin-top: 0.5rem; }
.btn-banner { background: var(--gold); color: #fff; text-decoration: none; padding: 0.9rem 2rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; transition: background 0.2s; }
.btn-banner:hover { background: var(--gold-lt); }

/* FOOTER */
footer { background: var(--white); border-top: 1px solid var(--gray-200); padding: 2rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo img { height: 34px; width: auto; }
.footer-copy { font-size: 0.78rem; color: var(--gray-400); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* MOBILE CTA BAR */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; height: 56px; }
.mobile-cta-call { flex: 1; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; gap: 0.5rem; text-decoration: none; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-cta-consult { flex: 1; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .post-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 90px; left: 0; right: 0; background: var(--white); padding: 1.5rem 5%; gap: 1.25rem; border-bottom: 1px solid var(--gray-200); box-shadow: 0 8px 24px rgba(12,30,56,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .lang-switch { display: none; }
  .mobile-cta-bar { display: flex; }
  .blog-wrap { padding: 52px 5% 72px; }
  .post-wrap { padding: 52px 5% 72px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1.25rem; }
  .cta-banner-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 5% 48px; }
}
