@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

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

:root {
  --navy:      #1a2744;
  --navy-dark: #0f1a30;
  --navy-mid:  #243156;
  --gold:      #C9A84C;
  --gold-light:#E8C97A;
  --gold-pale: #f5e9cc;
  --cream:     #faf8f4;
  --text:      #1a2744;
  --muted:     #5a6478;
  --border:    #e0d9cc;
  --white:     #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--text); background: var(--white); font-size: 17px; line-height: 1.75; }

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--navy); }

/* ── LAYOUT ── */
.container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 3.5rem 0; }
.divider { height: 1px; background: var(--border); margin: 0 2rem; }

/* ── NAV ── */
.nav {
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 960px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; height: 88px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 80px; height: 80px; border-radius: 0;
  overflow: hidden; flex-shrink: 0;
  background: transparent;
}
.nav-logo-mark img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.nav-brand { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--white); font-size: 17px; line-height: 1.2; }
.nav-brand span { display: block; font-size: 10px; font-family: 'Source Sans 3', sans-serif; font-weight: 400; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #b0bbd4; font-size: 13px; padding: 6px 14px;
  border-radius: 4px; transition: color 0.2s; font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--navy-dark);
  font-size: 13px; font-weight: 700; padding: 9px 18px;
  border-radius: 4px; transition: background 0.2s; letter-spacing: 0.3px; margin-left: 8px;
  border: 2px solid var(--gold);
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy-dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--navy-dark);
  font-weight: 600; font-size: 14px; padding: 12px 28px; border-radius: 4px;
  transition: background 0.2s; letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--gold-light); color: var(--navy-dark); }
.btn-outline {
  display: inline-block; background: none; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3); font-size: 14px; padding: 12px 28px;
  border-radius: 4px; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── HERO ── */
.hero {
  background: var(--navy-dark);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.04) 60px, rgba(201,168,76,0.04) 61px);
  pointer-events: none;
}
.hero-eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.25rem; }
.hero-headline { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--white); font-size: 44px; line-height: 1.2; max-width: 640px; margin: 0 auto 1rem; }
.hero-headline em { color: var(--gold-light); font-style: normal; }
.hero-tagline { font-size: 18px; color: #e8edf5; font-weight: 300; max-width: 500px; margin: 0 auto 2rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem 0;
}
.stats-bar-inner { max-width: 960px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: center; }
.stat-item { text-align: center; padding: 0 3rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 11px; color: #c8d4e8; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ── SECTION LABELS & HEADINGS ── */
.section-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.75rem; }
.section-heading { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 1rem; line-height: 1.3; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }
.page-hero { background: var(--navy-dark); padding: 3.5rem 0; }
.page-hero h1 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 36px; font-weight: 700; margin-bottom: 0.5rem; }
.page-hero p { color: #e8edf5; font-size: 16px; font-weight: 300; max-width: 560px; }

/* ── CHALLENGE / PULLQUOTE ── */
.challenge-block { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.5rem 2rem; margin: 2rem 0; border-radius: 0 6px 6px 0; }
.challenge-block p { font-size: 17px; color: var(--navy); line-height: 1.7; }
.pullquote { background: var(--navy-dark); padding: 2rem 2.5rem; margin: 2rem 0; border-radius: 6px; border-left: 4px solid var(--gold); }
.pullquote p { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--white); line-height: 1.6; font-style: italic; }

/* ── SERVICES GRID (home) ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.service-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 8px; padding: 1.5rem; border-top: 3px solid var(--gold); transition: box-shadow 0.2s; text-decoration: none; display: block; }
.service-card:hover { box-shadow: 0 4px 16px rgba(26,39,68,0.1); }
.service-num { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1px; margin-bottom: 0.5rem; }
.service-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.service-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── FIT CHECKS ── */
.fit-checks { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.fit-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--text); line-height: 1.6; }
.fit-checks li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 2px; }

/* ── INSIGHTS ── */
.insights-band { background: var(--cream); padding: 3.5rem 0; }
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.insight-card { background: var(--white); border-radius: 8px; padding: 1.5rem; border: 0.5px solid var(--border); text-decoration: none; display: block; transition: box-shadow 0.2s; }
.insight-card:hover { box-shadow: 0 4px 12px rgba(26,39,68,0.08); }
.insight-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.insight-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.insight-meta { font-size: 12px; color: var(--muted); }

/* ── ABOUT ── */
.bio-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; padding: 3.5rem 0; }
.bio-card { background: var(--navy-dark); border-radius: 8px; padding: 2rem; text-align: center; border: 1px solid rgba(201,168,76,0.2); }
.bio-photo { 
  width: 160px; 
  height: 200px; 
  border-radius: 12px; 
  margin: 0 auto 1rem; 
  object-fit: cover; 
  object-position: center 5%; 
  border: 3px solid var(--gold);
  display: block;
}
.avatar-fallback { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--navy-dark); border: 3px solid var(--gold-light); }
.bio-name { font-family: 'Playfair Display', serif; color: var(--white); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.bio-title-label { font-size: 11px; color: var(--gold-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem; }
.bio-creds { list-style: none; text-align: left; }
.bio-creds li { font-size: 13px; color: #c8d4e8; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); line-height: 1.4; }
.bio-creds li:last-child { border-bottom: none; }
.bio-text p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 1.25rem; }
.bio-text p:last-child { margin-bottom: 0; }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 1.5rem; }
.cap-item { background: var(--cream); padding: 1rem 1.25rem; border-radius: 6px; border-left: 3px solid var(--gold); }
.cap-item strong { font-size: 14px; color: var(--navy); display: block; margin-bottom: 4px; font-weight: 600; }
.cap-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── SERVICES (full page) ── */
.offering { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.offering:last-of-type { border-bottom: none; }
.offering-header { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1rem; }
.offering-num { width: 48px; height: 48px; border-radius: 50%; background: var(--navy-dark); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.offering-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.offering-sub { font-size: 13px; color: var(--gold); font-weight: 500; letter-spacing: 0.5px; }
.offering-body { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 660px; margin-bottom: 1rem; }
.offering-bullets { list-style: none; }
.offering-bullets li { font-size: 15px; color: var(--text); padding: 5px 0 5px 20px; position: relative; line-height: 1.5; }
.offering-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3.5rem 0; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-links { list-style: none; margin-bottom: 1.5rem; }
.contact-links li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.contact-links li:last-child { border-bottom: none; }
.contact-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 3px; }
.contact-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.25rem 1.5rem; border-radius: 0 6px 6px 0; }
.contact-note p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.contact-form-wrap { background: var(--cream); border-radius: 8px; padding: 2rem; }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { font-size: 11px; color: var(--muted); display: block; margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 4px; font-size: 14px; font-family: 'Source Sans 3', sans-serif;
  background: var(--white); color: var(--text); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { height: 100px; resize: vertical; }
.form-submit { width: 100%; padding: 12px; background: var(--gold); color: var(--navy-dark); border: none; border-radius: 4px; font-size: 14px; font-weight: 600; font-family: 'Source Sans 3', sans-serif; cursor: pointer; transition: background 0.2s; letter-spacing: 0.3px; }
.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 0.75rem; text-align: center; }

/* ── BLOG / ARTICLE ── */
.blog-list { padding: 3rem 0; }
.blog-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 8px; padding: 2rem; margin-bottom: 1.5rem; text-decoration: none; display: block; transition: box-shadow 0.2s; border-left: 4px solid var(--gold); }
.blog-card:hover { box-shadow: 0 4px 16px rgba(26,39,68,0.08); }
.blog-card-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card-excerpt { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }
.blog-card-meta { font-size: 12px; color: #a0a8b8; }
.article-wrap { max-width: 720px; margin: 0 auto; padding: 3rem 2rem; }
.article-back { font-size: 13px; color: var(--gold); margin-bottom: 2rem; display: inline-block; }
.article-back:hover { color: var(--navy); }
.article-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.article-title { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 1rem; }
.article-meta { font-size: 13px; color: var(--muted); margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin: 2rem 0 0.75rem; font-weight: 600; }
.article-body p { font-size: 17px; color: var(--text); line-height: 1.85; margin-bottom: 1.25rem; }
.article-body ul { list-style: none; margin: 0 0 1.25rem; }
.article-body ul li { padding: 5px 0 5px 20px; position: relative; font-size: 15px; color: var(--text); line-height: 1.6; }
.article-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.article-pullquote { background: var(--navy-dark); border-left: 4px solid var(--gold); padding: 1.5rem 2rem; border-radius: 0 6px 6px 0; margin: 2rem 0; }
.article-pullquote p { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); line-height: 1.6; font-style: italic; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); border-top: 2px solid var(--gold); padding: 2rem 0; }
.footer-inner { max-width: 960px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-brand { font-family: 'Playfair Display', serif; color: var(--white); font-size: 16px; font-weight: 700; }
.footer-brand span { display: block; font-size: 10px; font-family: 'Source Sans 3', sans-serif; font-weight: 300; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.footer-tagline { font-size: 12px; color: #7a8ca8; letter-spacing: 1px; text-transform: uppercase; }
.footer-link { font-size: 13px; color: var(--gold); }
.footer-link:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .hero-headline { font-size: 30px; }
  .hero-tagline { font-size: 15px; }
  .bio-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 0 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 88px; left: 0; right: 0; background: var(--navy-dark); padding: 1rem 0; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 2rem; border-radius: 0; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav { position: relative; }
  .article-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .cap-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { flex-wrap: wrap; gap: 1rem; }
  .stat-item { border-right: none; padding: 0 1rem; }
}
