@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:     #1e3a5f;
  --ocean:    #1565c0;
  --sky:      #40a9d4;
  --seafoam:  #e3f2fd;
  --white:    #ffffff;
  --sand:     #f8fafc;
  --text:     #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border:   #e2e8f0;
  --radius:   8px;
  --shadow:   0 4px 24px rgba(30,58,95,0.10);
  --shadow-sm: 0 2px 8px rgba(30,58,95,0.07);
  --transition: 0.2s ease;
  --max-width: 1100px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sky); }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}
.btn-primary:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
}

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ocean);
  border-bottom-color: var(--sky);
}
.nav-cta { margin-left: 1rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1565c0 55%, #1e88e5 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-item img { height: 44px; width: auto; }
.trust-item-text { font-size: 0.82rem; color: var(--text-mid); line-height: 1.35; max-width: 160px; }
.trust-item-text strong { display: block; color: var(--navy); font-weight: 600; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Services Preview ──────────────────────────────────────── */
.services-preview {
  padding: 5rem 0;
  background: var(--white);
}
.services-preview-header { margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--sky);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.92rem; color: var(--text-mid); }
.services-cta { margin-top: 2.5rem; }

/* ── About Snippet ─────────────────────────────────────────── */
.about-snippet {
  background: linear-gradient(135deg, var(--seafoam) 0%, var(--white) 100%);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-snippet ul {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-snippet li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.about-snippet li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}
.about-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-band p { opacity: 0.8; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  color: var(--white);
  padding: 3.5rem 0;
}
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.85; font-size: 1.05rem; }

/* ── About Page ────────────────────────────────────────────── */
.principals { padding: 5rem 0; }
.principals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.principal-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}
.principal-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.principal-title { font-size: 0.88rem; color: var(--sky); font-weight: 600; margin-bottom: 0.25rem; }
.principal-creds { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }
.principal-card p { font-size: 0.95rem; color: var(--text-mid); }
.credentials-section { padding: 3rem 0 5rem; background: var(--seafoam); }
.credentials-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 2rem;
}
.credential-item { display: flex; align-items: center; gap: 1rem; }
.credential-item img { height: 56px; width: auto; }
.credential-text { font-size: 0.88rem; color: var(--text-mid); max-width: 200px; }
.credential-text strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.2rem; }

/* ── Services Page ─────────────────────────────────────────── */
.services-full { padding: 5rem 0; }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-full-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all var(--transition);
}
.service-full-card:hover { border-color: var(--sky); box-shadow: var(--shadow); }
.service-full-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.service-full-card p { font-size: 0.92rem; color: var(--text-mid); }
.service-highlight {
  border-left: 4px solid var(--sky);
  background: linear-gradient(135deg, var(--seafoam), var(--white));
}
.service-more {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--seafoam);
  border-radius: 12px;
  text-align: center;
}
.service-more p { color: var(--text-mid); margin-bottom: 1rem; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-section { padding: 5rem 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--text-mid); }
.contact-detail-icon { font-size: 1.1rem; }
.contact-cta-wrap {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}
.contact-cta-wrap h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.contact-cta-wrap p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.email-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ocean);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.email-cta:hover { background: var(--navy); color: var(--white); }

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow);
  }
  .nav-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .trust-bar-inner { gap: 1.5rem; }
  .trust-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-snippet-inner { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .principals-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 0; }
  .services-preview, .about-snippet, .principals, .services-full, .contact-section { padding: 3rem 0; }
}
