*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D2B4E;
  --navy-mid: #163D6E;
  --gold: #C9922A;
  --gold-light: #F0C06A;
  --off-white: #F5F3EE;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --border: #D8D4CC;
  --white: #ffffff;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.7; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); border-bottom-color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

/* ── HERO (home) ── */
.hero { background: var(--navy); color: #fff; padding: 5.5rem 2rem 4.5rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(201,146,42,0.04) 60px, rgba(201,146,42,0.04) 61px); }
.hero-inner { position: relative; max-width: 700px; margin: 0 auto; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.12; margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2.25rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); color: #fff; padding: 3.5rem 2rem; }
.page-hero .container { max-width: 760px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.15; margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ── SHARED ── */
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; }
.section-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3.5vw, 2.3rem); color: var(--navy); line-height: 1.2; margin-bottom: 0.9rem; }
.section-intro { font-size: 1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; }
.container { max-width: 980px; margin: 0 auto; }
section { padding: 4.5rem 2rem; }

/* ── BADGES ── */
.badges { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; margin-bottom: 2.25rem; }
.badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(201,146,42,0.45); color: var(--gold-light); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.38rem 0.85rem; border-radius: 2px; }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; background: var(--gold); color: #fff; text-decoration: none; font-weight: 600; font-size: 0.92rem; padding: 0.82rem 2rem; border-radius: 2px; letter-spacing: 0.04em; transition: background 0.2s; }
.btn-primary:hover { background: #b07e22; }
.btn-outline { display: inline-block; background: transparent; color: var(--navy); text-decoration: none; font-weight: 600; font-size: 0.92rem; padding: 0.75rem 1.75rem; border-radius: 2px; border: 1.5px solid var(--navy); letter-spacing: 0.04em; transition: all 0.2s; }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--off-white); border-top: 3px solid var(--gold); padding: 1.4rem 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; text-align: center; }
.trust-item { font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }
.trust-item span { display: block; font-size: 0.72rem; font-weight: 400; color: var(--text-muted); text-transform: none; margin-top: 1px; }

/* ── HOME: INTRO STRIP ── */
.intro-strip { background: var(--off-white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.intro-text p { color: var(--text-muted); margin-bottom: 1rem; }
.intro-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.icon-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 1.25rem; border-radius: 0 0 4px 4px; }
.icon-circle { font-size: 1.5rem; margin-bottom: 0.5rem; }
.icon-card h3 { font-size: 0.92rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.icon-card p { font-size: 0.83rem; color: var(--text-muted); }

/* ── HOME: SERVICES PREVIEW ── */
.services-preview { background: var(--white); }
.preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.preview-card { border: 1px solid var(--border); border-top: 3px solid var(--navy); padding: 1.25rem; border-radius: 0 0 4px 4px; }
.preview-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.preview-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── SERVICES: FULL GRID ── */
.services-full-grid { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.service-full-card { display: flex; gap: 1.25rem; background: var(--off-white); border-left: 4px solid var(--gold); padding: 1.5rem; border-radius: 0 4px 4px 0; align-items: flex-start; }
.service-icon { font-size: 1.75rem; flex-shrink: 0; margin-top: 2px; }
.service-full-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.service-full-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.step-card { background: var(--white); border: 1px solid var(--border); padding: 1.5rem; border-radius: 4px; }
.step-num { width: 36px; height: 36px; background: var(--navy); color: var(--gold-light); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 0.75rem; }
.step-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.step-card p { font-size: 0.87rem; color: var(--text-muted); }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.why-card { border: 1px solid rgba(255,255,255,0.1); border-left: 3px solid var(--gold); padding: 1.25rem 1.25rem 1.25rem 1.5rem; border-radius: 0 4px 4px 0; }
.why-card h3 { font-size: 0.93rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.86rem; color: rgba(255,255,255,0.65); }

/* ── ABOUT PAGE ── */
.about-layout { display: grid; grid-template-columns: 320px 1fr; gap: 3.5rem; align-items: start; }
.owner-profile-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.owner-avatar-lg { background: var(--navy); height: 180px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--gold-light); }
.owner-profile-info { padding: 1.5rem; }
.profile-credentials { margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.cred-row { display: flex; justify-content: space-between; font-size: 0.83rem; }
.cred-label { color: var(--text-muted); }
.cred-val { font-weight: 600; color: var(--navy); }
.about-bio p { color: var(--text-muted); margin-bottom: 1rem; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.value-item { background: var(--off-white); border-left: 3px solid var(--gold); padding: 1rem 1rem 1rem 1.1rem; border-radius: 0 4px 4px 0; }
.value-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.value-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-col h2 { margin-bottom: 0; }
.contact-row { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.1rem; }
.contact-icon { width: 38px; height: 38px; background: var(--navy); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-light); }
.contact-icon svg { width: 17px; height: 17px; }
.contact-detail { font-size: 0.9rem; }
.contact-detail strong { display: block; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1px; }
.contact-detail a { color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-detail a:hover { color: var(--gold); }
.contact-detail span { color: var(--text); font-weight: 500; }
.license-block { margin-top: 2rem; background: var(--off-white); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 1rem 1.25rem; border-radius: 0 4px 4px 0; }
.license-block p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.license-block p:last-child { margin-bottom: 0; }
.license-block strong { color: var(--navy); font-weight: 600; }
.contact-cta-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 2rem; margin-bottom: 1.5rem; }
.contact-cta-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.contact-cta-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.no-fee-note { text-align: center; margin-top: 1rem; font-size: 0.78rem; color: var(--text-muted); font-style: italic; }
.contact-faq { background: var(--off-white); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem; }
.contact-faq h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.faq-item { margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--border); }
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.faq-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--off-white); border-top: 3px solid var(--gold); padding: 4rem 2rem; }
.cta-banner h2 { margin-bottom: 0.5rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 1.75rem; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 2.5rem 2rem; text-align: center; font-size: 0.8rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer-logo { height: 120px; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-legal { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 96px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; gap: 1rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .intro-grid, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .intro-cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .owner-avatar-lg { height: 130px; }
}

@media (max-width: 480px) {
  .intro-cards { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.25rem; }
}
