/* GovOps — Professional consulting firm aesthetic
   McKinsey/Bain: white, Times New Roman, black text, minimal accents */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Times New Roman', Times, 'Nimbus Roman No9 L', Georgia, serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
}

p { color: #333333; }

a { color: #1a1a1a; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #d4d4d4;
  height: 60px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111111;
  text-decoration: none;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #555555;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: 'Times New Roman', Times, Georgia, serif;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-links a:hover { color: #111111; }

.nav-cta-link {
  color: #111111;
  text-decoration: none;
  font-size: 0.875rem;
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-weight: 700;
  border-bottom: 2px solid #111111;
  padding-bottom: 2px;
  letter-spacing: 0.02em;
  transition: color 0.15s, border-color 0.15s;
}

.nav-cta-link:hover { color: #555555; border-color: #555555; }

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #555555;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- HERO ---------- */
.hero {
  padding: 120px 0 80px;
  background: #ffffff;
  border-bottom: 1px solid #d4d4d4;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 20px;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 780px;
  color: #111111;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.0625rem;
  color: #333333;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  background: #111111;
  padding: 12px 28px;
  border: 2px solid #111111;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}

.btn-primary:hover {
  background: #333333;
  border-color: #333333;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #333333;
  background: transparent;
  padding: 12px 0;
  border: none;
  text-decoration: none;
  letter-spacing: 0;
  border-bottom: 1px solid #999999;
  transition: color 0.15s, border-color 0.15s;
}

.btn-secondary:hover {
  color: #111111;
  border-color: #111111;
}

/* ---------- DIVIDER ---------- */
.divider {
  border: none;
  border-top: 1px solid #d4d4d4;
}

/* ---------- SERVICES ---------- */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #d4d4d4;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 10px;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 16px;
  max-width: 680px;
}

.section-desc {
  font-size: 1rem;
  color: #444444;
  max-width: 600px;
  line-height: 1.7;
}

/* Service cards — two-column, clean lines, no icons */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #d4d4d4;
}

.service-item {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
}

.service-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-right: none;
}

.service-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.service-item p {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.65;
}

/* ---------- APPROACH ---------- */
.section-alt {
  background: #fafafa;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #d4d4d4;
}

.approach-step {
  padding: 40px 40px 40px 0;
  border-right: 1px solid #d4d4d4;
}

.approach-step:last-child {
  border-right: none;
  padding-left: 40px;
  padding-right: 0;
}

.approach-step:nth-child(2) {
  padding-left: 40px;
}

.step-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 16px;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.approach-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.approach-step p {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.65;
}

/* ---------- WHO WE SERVE ---------- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #d4d4d4;
}

.serve-item {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
}

.serve-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-right: none;
}

.serve-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.serve-item p {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.65;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #d4d4d4;
}

.pricing-item {
  padding: 40px 40px 40px 0;
  border-right: 1px solid #d4d4d4;
}

.pricing-item:last-child {
  border-right: none;
  padding-left: 40px;
}

.pricing-item:nth-child(2) {
  padding-left: 40px;
}

.pricing-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.pricing-item .price-meta {
  font-size: 0.8125rem;
  color: #888888;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.pricing-item ul {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-item li {
  font-size: 0.9375rem;
  color: #444444;
  padding: 6px 0;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.5;
}

.pricing-item li:last-child { border-bottom: none; }

.pricing-link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #999999;
  padding-bottom: 1px;
  font-family: 'Times New Roman', Times, Georgia, serif;
  transition: border-color 0.15s;
}

.pricing-link:hover { border-color: #111111; }

/* ---------- CONTACT ---------- */
#contact { border-top: 1px solid #d4d4d4; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
  border-bottom: 1px solid #d4d4d4;
}

.contact-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-header .contact-detail {
  font-size: 0.9375rem;
  color: #333333;
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cccccc;
  padding: 10px 14px;
  color: #111111;
  font-size: 0.9375rem;
  font-family: 'Times New Roman', Times, Georgia, serif;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaaaaa;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #111111;
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.submit-btn {
  background: #111111;
  color: #ffffff;
  padding: 12px 28px;
  border: 2px solid #111111;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: 'Times New Roman', Times, Georgia, serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}

.submit-btn:hover { background: #333333; border-color: #333333; }

.form-note {
  font-size: 0.8125rem;
  color: #888888;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.form-note.success { color: #2d6a2d; font-weight: 700; }
.form-note.error { color: #8b2222; font-weight: 700; }

/* ---------- FOOTER ---------- */
.footer {
  padding: 32px 0;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8125rem;
  color: #888888;
  font-family: 'Times New Roman', Times, Georgia, serif;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 0.8125rem;
  color: #888888;
  text-decoration: none;
  font-family: 'Times New Roman', Times, Georgia, serif;
  transition: color 0.15s;
}

.footer-links a:hover { color: #333333; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; padding: 32px 0; }
  .service-item:nth-child(even) { padding-left: 0; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-step { border-right: none; padding: 32px 0; border-bottom: 1px solid #d4d4d4; }
  .approach-step:last-child { border-bottom: none; padding-left: 0; }
  .approach-step:nth-child(2) { padding-left: 0; }
  .serve-grid { grid-template-columns: 1fr; }
  .serve-item { border-right: none; padding: 32px 0; }
  .serve-item:nth-child(even) { padding-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-item { border-right: none; padding: 32px 0; border-bottom: 1px solid #d4d4d4; }
  .pricing-item:last-child { border-bottom: none; padding-left: 0; }
  .pricing-item:nth-child(2) { padding-left: 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: #ffffff;
    border-bottom: 1px solid #d4d4d4;
    padding: 20px 24px;
    gap: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    z-index: 99;
  }
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 1.875rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .section { padding: 60px 0; }
  .contact-inner { padding: 60px 0; }
  .service-item, .serve-item { padding: 28px 0; }
}