/* First Move Advisory — shared styles */

:root {
  --navy: #1C2B3A;
  --navy-dark: #14212F;
  --steel: #2662A8;
  --steel-light: #E8F0F9;
  --slate: #5B6B7A;
  --bg: #FFFFFF;
  --bg-slate: #F5F7F9;
  --border: #DCE3EA;
  --text: #1C2B3A;
  --text-muted: #5B6B7A;
  --radius: 6px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans Pro', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Georgia', 'Merriweather', serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.6rem; font-weight: 700; }
h2 { font-size: 1.9rem; font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text); }

a { color: var(--steel); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--steel); outline-offset: 2px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / Nav */
header.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-block;
}

.logo span { color: var(--steel); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

nav.main-nav a:hover { color: var(--steel); text-decoration: none; }

.nav-cta {
  background: var(--steel);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
}

.nav-cta:hover { background: #1e4f87; text-decoration: none; }

/* Hero */
.hero {
  background: var(--bg-slate);
  padding: 64px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { margin-bottom: 0.4em; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 46ch;
}

.hero-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(28, 43, 58, 0.15);
  justify-self: center;
}

.btn {
  display: inline-block;
  background: var(--steel);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 20px;
}

.btn:hover { background: #1e4f87; text-decoration: none; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--steel);
  color: var(--steel);
}

.btn-outline:hover { background: var(--steel); color: #fff; }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--bg-slate); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head p { color: var(--text-muted); }

.eyebrow {
  color: var(--steel);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.about-grid p { font-size: 1.05rem; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.credential-pill {
  background: var(--steel-light);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 760px) {
  .about-top .credentials { flex-wrap: nowrap; }
}

/* About: credential pills placement + photo grid */
.about-top {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.about-layout .about-grid { max-width: none; margin: 0; text-align: left; }

.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-photo-grid .photo-main {
  grid-column: 1 / -1;
}

.about-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

.about-photo-grid .photo-main img { aspect-ratio: 16 / 10; }
.about-photo-grid .photo-small img { aspect-ratio: 4 / 3; }

.photo-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
}

/* Featured quote callout */
.quote-callout {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.quote-callout .quote-mark {
  font-family: 'Georgia', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--steel-light);
  opacity: 0.5;
  margin-bottom: 8px;
}

.quote-callout p.quote {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: #fff;
  max-width: 52ch;
  margin: 0 auto 16px;
}

.quote-callout .quote-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #B8C4CE;
  font-weight: 600;
}

.quote-callout .company-tag {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Person icon placeholder — diverse student avatar */
.person-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-icon svg { width: 100%; height: 100%; display: block; }

/* Company wordmarks (text-based, brand-styled, not trademarked logo marks) */
.company-logo-tag {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.company-logo-tag.apple { font-family: 'Georgia', serif; color: #1d1d1f; font-size: 1rem; }
.company-logo-tag.microsoft { font-family: 'Segoe UI', system-ui, sans-serif; color: #5E5E5E; }
.company-logo-tag.northrop { font-family: 'Georgia', serif; color: #003087; font-size: 0.82rem; letter-spacing: 0.01em; }
.company-logo-tag.cigna { font-family: 'Segoe UI', system-ui, sans-serif; color: #00A650; font-style: italic; }

/* Results page collage */
.results-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.results-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

.results-collage .collage-main { grid-row: 1 / 3; grid-column: 1; }
.results-collage .collage-main img { height: 100%; }
.results-collage .collage-small img { aspect-ratio: 16 / 10; }

/* Testimonial header (person icon + company logo) */
.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.company-logo-tag {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.service-card.featured {
  border-color: var(--steel);
  box-shadow: 0 4px 20px rgba(38, 98, 168, 0.12);
  position: relative;
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--steel);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 4px;
}

.service-card ul {
  margin: 16px 0;
  padding-left: 20px;
  color: var(--text-muted);
  flex-grow: 1;
}

.service-card li { margin-bottom: 8px; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.process-step { text-align: center; }

.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 12px;
}

/* Results teaser */
.results-teaser {
  text-align: center;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px 24px;
}

.results-teaser h2, .results-teaser p { color: #fff; }
.results-teaser .btn { background: #fff; color: var(--navy); }
.results-teaser .btn:hover { background: var(--steel-light); }

/* Testimonials (results page) */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--steel);
  border-radius: var(--radius);
  padding: 24px;
}

.testimonial-card p.quote {
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 12px;
}

.testimonial-outcome {
  display: inline-block;
  background: var(--steel-light);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.testimonial-attr {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.media-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-slate);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}

.media-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--steel);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.media-card .linkedin-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.media-card .linkedin-row svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Disclaimer banner */
.disclaimer {
  background: var(--steel-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
}

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 { margin-top: 2em; }
.legal-content h3 { margin-top: 1.5em; }
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 8px; }

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: #B8C4CE;
  padding: 48px 0 24px;
  margin-top: 40px;
}

footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

footer.site-footer h4 { color: #fff; font-size: 1rem; }

footer.site-footer a { color: #B8C4CE; }
footer.site-footer a:hover { color: #fff; }

footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer li { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #8496A4;
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: #8496A4;
  max-width: 700px;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 860px) {
  h1 { font-size: 2rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto; }
  .hero-photo { order: -1; max-width: 200px; }
  nav.main-nav ul { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  footer.site-footer .footer-grid { grid-template-columns: 1fr; }
  .media-card { flex-direction: column; text-align: center; }
  .about-layout { grid-template-columns: 1fr; }
  .results-collage { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .results-collage .collage-main { grid-row: auto; grid-column: 1 / -1; }
  .results-collage .collage-main img { aspect-ratio: 16 / 9; }
  .quote-callout { padding: 36px 24px; }
  .quote-callout p.quote { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
