/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a2e4a;
  --navy-dark: #0f1e30;
  --gold: #c8972a;
  --gold-light: #e8b84b;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 8px;
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --max-width: 1100px;
  --transition: 0.2s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Georgia', 'Times New Roman', serif; color: var(--text); line-height: 1.7; background: var(--white); }
h1, h2, h3, h4, h5 { font-family: 'Georgia', serif; line-height: 1.3; color: var(--navy); }
h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-title { text-align: center; margin-bottom: 1rem; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 680px; margin: 0 auto 3rem; }
.btn { display: inline-block; padding: .75rem 1.75rem; border-radius: var(--radius); font-size: .95rem; font-weight: 600; font-family: 'Georgia', serif; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,151,42,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-header { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); padding: .5rem 1.25rem; font-size: .875rem; }
.btn-header:hover { background: var(--gold-light); color: var(--navy-dark); }
.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy); box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.header-inner { display: flex; align-items: center; gap: 2rem; padding-top: .875rem; padding-bottom: .875rem; }
.logo a { display: flex; flex-direction: column; text-decoration: none; }
.logo-name { font-size: 1.15rem; font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: .01em; }
.logo-tagline { font-size: .7rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .25rem; align-items: center; }
.main-nav a { color: rgba(255,255,255,0.85); font-size: .9rem; padding: .4rem .75rem; border-radius: 4px; transition: all var(--transition); }
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; margin-left: auto; }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--navy-dark); z-index: 200; padding: 2rem 1.5rem; flex-direction: column; }
.mobile-nav.open { display: flex; }
.mobile-nav ul { margin-top: 2rem; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a { display: block; color: var(--white); font-size: 1.2rem; padding: 1rem 0; }
.nav-close { align-self: flex-end; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1; }
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5f 100%); padding: 5rem 0 4.5rem; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.hero-content { max-width: 720px; }
.hero-eyebrow { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-family: Georgia, serif; margin-bottom: .75rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2rem; max-width: 620px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hero-note { font-size: .85rem; color: rgba(255,255,255,0.6); margin: 0; }
.trust-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
.trust-bar-inner { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--gray-600); font-weight: 600; }
.trust-icon { font-size: 1.1rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 2rem 1.75rem; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: .75rem; }
.card p { color: var(--text-muted); font-size: .925rem; margin-bottom: 1rem; }
.card-link { color: var(--gold); font-weight: 600; font-size: .9rem; }
.card-link:hover { color: var(--navy); }
.why-us { background: var(--gray-50); }
.why-inner { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.why-text h2 { margin-bottom: 1.5rem; }
.why-list { margin-bottom: 2rem; }
.why-list li { padding: .6rem 0 .6rem 1.5rem; position: relative; border-bottom: 1px solid var(--gray-200); font-size: .95rem; color: var(--text-muted); }
.why-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.why-list li strong { color: var(--text); }
.callout-box { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-lg); }
.callout-heading { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; color: var(--gold); }
.callout-box p { color: rgba(255,255,255,0.85); font-size: .925rem; }
.testimonials { background: var(--navy-dark); }
.testimonials .section-title { color: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.75rem; }
.testimonial-quote { color: rgba(255,255,255,0.88); font-style: italic; font-size: .975rem; margin-bottom: 1rem; line-height: 1.75; }
.testimonial-author { color: var(--gold); font-size: .85rem; font-weight: 600; margin: 0; }
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.area-grid h3 { margin-bottom: 1rem; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: .5rem; }
.area-list li { padding: .35rem 0; color: var(--text-muted); font-size: .925rem; border-bottom: 1px solid var(--gray-100); }
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 3.5rem 0; border-bottom: 4px solid var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,0.5); margin-bottom: .75rem; }
.breadcrumb a { color: var(--gold); }
.content-block { padding: 4rem 0; }
.content-block:nth-child(even) { background: var(--gray-50); }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.content-main h2 { margin-bottom: 1rem; }
.content-main h3 { margin: 1.75rem 0 .75rem; color: var(--navy); }
.content-main ul, .content-main ol { margin: .75rem 0 1rem 1.25rem; color: var(--text-muted); }
.content-main li { margin-bottom: .4rem; list-style: disc; }
.content-main ol li { list-style: decimal; }
.sidebar-box { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 1.75rem; position: sticky; top: 80px; }
.sidebar-box h3 { color: var(--gold); margin-bottom: 1rem; font-size: 1.1rem; }
.sidebar-box p { color: rgba(255,255,255,0.82); font-size: .9rem; }
.sidebar-box .btn { width: 100%; text-align: center; display: block; margin-top: 1rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 2.5rem 1.25rem 0; font-size: 1rem; font-weight: 600; font-family: Georgia, serif; color: var(--navy); cursor: pointer; position: relative; line-height: 1.4; }
.faq-question::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { display: none; padding: 0 0 1.25rem; color: var(--text-muted); font-size: .95rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .75rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: .95rem; font-family: Georgia, serif; color: var(--text); background: var(--white); transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,46,74,0.08); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }
.contact-info-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.75rem; }
.contact-info-box h3 { margin-bottom: 1.25rem; }
.contact-detail { display: flex; gap: .75rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail-text p { margin: 0; font-size: .9rem; color: var(--text-muted); }
.contact-detail-text strong { color: var(--navy); }
.contact-detail-text a { color: var(--navy); font-weight: 600; }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: start; }
.about-photo-box { background: var(--gray-100); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.about-photo-placeholder { aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gray-400); font-size: .875rem; text-align: center; padding: 2rem; gap: .5rem; }
.about-photo-placeholder span { font-size: 4rem; }
.about-credentials { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 1.5rem; margin-top: 1rem; }
.about-credentials h4 { color: var(--gold); margin-bottom: .75rem; font-size: .95rem; }
.about-credentials li { color: rgba(255,255,255,0.82); font-size: .875rem; padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cta-section { background: var(--navy); padding: 4rem 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.site-footer { background: var(--gray-800); color: rgba(255,255,255,0.7); padding-top: 3.5rem; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-firm { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.footer-heading { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; font-weight: 700; }
.footer-col p { font-size: .875rem; line-height: 1.7; margin-bottom: .4rem; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: .875rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col ul li { margin-bottom: .4rem; }
.footer-bottom { padding: 1.25rem 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,0.4); margin: 0; }
@media (max-width: 900px) { .why-inner { grid-template-columns: 1fr; } .content-grid { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } .about-grid { grid-template-columns: 1fr; } .about-photo-box { max-width: 280px; } }
@media (max-width: 768px) { .main-nav, .btn-header { display: none; } .nav-toggle { display: block; } .hero { padding: 3rem 0 2.5rem; } .section { padding: 3rem 0; } .cards { grid-template-columns: 1fr; } .trust-bar-inner { gap: 1rem; } .hero-ctas { flex-direction: column; } .hero-ctas .btn { text-align: center; } .cta-btns { flex-direction: column; align-items: center; } }
