/* --- THEME & RESET --- */
:root {
  --color-background: #f6f8fb;
  --color-surface: #ffffff;
  --color-muted: #6b7280;
  --color-text: #1f2933;
  --color-accent: #0c5ea5;
  --color-accent-soft: #e6f0fa;
  --color-border: #e5e7eb;
  --shadow-soft: 0 20px 45px rgba(12, 94, 165, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --header-height: 82px;
  --font-heading: 'Space Grotesk', 'Work Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Work Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: inherit; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: radial-gradient(circle at 10% 20%, #f0f6ff 0, #f6f8fb 35%), #f6f8fb;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover, a:focus { color: #0b4f8a; }
p { margin: 0 0 1.4rem; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0 0 1rem; color: #0b2942; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 3vw + 1rem, 3.1rem); }
h2 { font-size: clamp(1.8rem, 2vw + 0.8rem, 2.4rem); }
h3 { font-size: 1.25rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 4.5rem 0; }

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}
.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}
.brand .name { font-size: 1.35rem; letter-spacing: 0.01em; color: #0b2942; font-weight: 600; }
.brand .tagline { font-size: 0.95rem; color: var(--color-muted); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav ul { list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; }
.nav a { font-weight: 600; color: #0f2f48; }
.nav .cta-mini { padding: 0.55rem 0.95rem; border-radius: var(--radius-sm); background: var(--color-accent); color: #fff; box-shadow: 0 10px 25px rgba(12,94,165,0.25); }
.nav .cta-mini:hover { color: #fff; opacity: 0.92; }

/* --- HERO --- */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}
.hero-copy { display: grid; gap: 1.25rem; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: #0c5ea5; font-size: 0.9rem; }
.hero .lede { font-size: 1.15rem; color: #304152; max-width: 32rem; }
.hero-visual { justify-self: center; position: relative; }
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a9d1ff 0, rgba(12,94,165,0.15) 55%, rgba(12,94,165,0.05) 100%);
  filter: blur(18px);
  z-index: 0;
}
.hero-headshot {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  border: 6px solid #ffffff;
  z-index: 1;
}

/* --- BUTTONS --- */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(12,94,165,0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 35px rgba(12,94,165,0.18); }
.button-primary { background: var(--color-accent); color: #fff; }
.button-secondary { background: #fff; color: #0c5ea5; border-color: var(--color-border); box-shadow: 0 4px 12px rgba(12,94,165,0.1); }
.button-ghost { background: transparent; color: #0c5ea5; border-color: var(--color-accent); box-shadow: none; }

.tagline-block { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--color-accent-soft); color: #0c3d6a; padding: 0.55rem 0.8rem; border-radius: var(--radius-sm); font-weight: 600; }

/* --- CARDS & LAYOUT --- */
.card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: 0 18px 45px rgba(12,94,165,0.08); }
.grid-two { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; }
.grid-three { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }

.service-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.8rem; }
.service-list li { padding: 0.85rem 1rem; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--color-border); box-shadow: 0 8px 20px rgba(12,94,165,0.06); font-weight: 600; color: #0f2f48; }
.service-list li span { color: var(--color-muted); font-weight: 500; display: block; font-size: 0.95rem; margin-top: 0.2rem; }

.process-step { display: grid; gap: 0.5rem; padding: 1rem; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; }
.process-step .step-number { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 12px; background: var(--color-accent-soft); color: #0c5ea5; font-weight: 700; }

.area-chip { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.6rem 0.85rem; border-radius: 999px; background: #0c5ea51a; color: #0c3d6a; font-weight: 600; }

.callout { background: #0c5ea5; color: #fff; padding: 1.1rem 1.25rem; border-radius: var(--radius-md); box-shadow: 0 16px 40px rgba(12,94,165,0.24); }

/* --- FAQ --- */
.faq { display: grid; gap: 1rem; }
.faq details { border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; padding: 1rem 1.1rem; box-shadow: 0 12px 28px rgba(12,94,165,0.06); }
.faq summary { cursor: pointer; font-weight: 700; color: #0f2f48; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin: 0.75rem 0 0; color: var(--color-muted); }

/* --- CONTACT --- */
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; }
.contact-card { border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1.25rem; background: #fff; box-shadow: 0 16px 35px rgba(12,94,165,0.08); }

form { display: grid; gap: 1rem; }
label { font-weight: 600; color: #0f2f48; }
input, textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.honeypot { display: none; }
.form-success {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: #e6f6ed;
  color: #0f5132;
  border: 1px solid #b7e4c7;
  font-weight: 600;
}

/* --- FOOTER --- */
.site-footer { padding: 2.5rem 0; text-align: center; color: var(--color-muted); font-size: 0.95rem; border-top: 1px solid var(--color-border); }
.site-footer .disclaimer { margin-top: 0.6rem; }

/* --- RESPONSIVE --- */
@media (max-width: 720px) {
  .nav ul { display: none; }
  .site-header .container { justify-content: space-between; }
  .hero-visual::after { inset: 5%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .button { justify-content: center; width: 100%; }
}
