:root {
  --navy: #0e1b2c;
  --navy-2: #16273f;
  --accent: #2f7cf6;
  --accent-dark: #1f5fd0;
  --ink: #1c2733;
  --muted: #5b6b7d;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --line: #e3eaf3;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 27, 44, 0.10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.main-nav a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--accent-dark); }

.linkedin-link { color: var(--navy); display: inline-flex; }
.linkedin-link:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  display: block;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 1rem;
  transition: transform 0.12s ease, background 0.12s ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:disabled { opacity: 0.6; cursor: wait; }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--bg-soft); }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 4.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
  max-width: 34rem;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

/* ---------- services ---------- */
.services { padding: 4.5rem 0; }

.services h2 {
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-body { padding: 1.4rem 1.4rem 1.6rem; }

.card-body h3 {
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}

.card-body p { color: var(--muted); font-size: 0.97rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 60%, #1d3a63 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  max-width: 44rem;
  margin: 0 auto 0.7rem;
  letter-spacing: -0.01em;
}

.cta-band p {
  opacity: 0.85;
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
}

/* ---------- contact ---------- */
.contact { padding: 4.5rem 0; background: var(--bg-soft); }

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.contact-copy p { color: var(--muted); }
.contact-copy a { color: var(--accent); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.field label span { color: var(--accent); }

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
  background: #fff;
}

.field textarea { resize: vertical; }

.form-status {
  font-size: 0.95rem;
  min-height: 1.4em;
}

.form-status.success { color: #177245; }
.form-status.error { color: #b3261e; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
}

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

.copyright { color: var(--muted); font-size: 0.92rem; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .cards { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 1.8rem; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 4%;
    display: none;
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    padding: 0.8rem 0;
    border-top: 1px solid var(--line);
  }

  .main-nav a:first-child { border-top: 0; }

  .nav-cta { text-align: center; margin: 0.4rem 0; }
}

/* ---------- refresh additions ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }

.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.proof-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.6rem 0;
}
.proof-item { display: flex; flex-direction: column; }
.proof-item strong { color: var(--navy); font-size: 1.25rem; }
.proof-item span { color: var(--muted); font-size: 0.93rem; }

.feature-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1.6rem;
}
.feature-art {
  background: linear-gradient(135deg, var(--navy) 0%, #1d3a63 100%);
  color: #8fb6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 220px;
}
.feature-art svg { max-width: 220px; }
.feature-body { padding: 1.8rem 2rem 2rem; }
.feature-body h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 0.6rem; }
.feature-body > p { color: var(--muted); margin-bottom: 1rem; }
.tag {
  display: inline-block;
  background: #e8f0fe;
  color: var(--accent-dark) !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.6rem !important;
}
.feature-list { list-style: none; display: grid; gap: 0.5rem; }
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
  font-size: 0.97rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}
.feature-list strong { color: var(--navy); }

.approach { padding: 0 0 4.5rem; }
.approach h2 {
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.step {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.step h3 { color: var(--navy); margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.97rem; }

.location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--navy) !important;
  font-weight: 600;
}
.location svg { color: var(--accent); flex-shrink: 0; }

@media (max-width: 860px) {
  .proof-inner { grid-template-columns: 1fr; gap: 0.9rem; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-art { min-height: 150px; padding: 1.2rem; }
  .feature-body { padding: 1.4rem; }
  .steps { grid-template-columns: 1fr; }
}

.proof-logos {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 1.2rem 0 0;
}
.proof-logos strong { color: var(--navy); font-weight: 700; letter-spacing: 0.01em; }
.proof-inner { padding-top: 1.2rem; }

/* headshot + photo feature art */
.headshot { margin: 0; justify-self: center; width: min(420px, 100%); }
.headshot img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.headshot figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.8rem;
  line-height: 1.3;
}
.headshot figcaption strong { color: var(--navy); }
.headshot figcaption span { color: var(--muted); font-size: 0.92rem; }
.feature-art:has(img) { padding: 0; }
.feature-art img { width: 100%; height: 100%; object-fit: cover; }
