

:root {
  --navy: #1B3A6B;
  --navy-deep: #0F2347;
  --teal: #0F7173;
  --teal-light: #E1F5EE;
  --teal-mid: #1D9E75;
  --cream: #F7F5F0;
  --cream-dark: #EDE9E1;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-muted: #595959;
  --white: #FFFFFF;
  --border: rgba(27,58,107,0.12);
  --border-teal: rgba(15,113,115,0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1160px;
  --radius: 3px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; line-height: 1.2; }

.display-xl {
  font-size: clamp(3rem, 7vw, 6rem);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
}
.display-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
}
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.body-lg { font-size: 1.05rem; line-height: 1.75; font-weight: 300; }
.body-sm { font-size: 0.875rem; line-height: 1.65; }

/* ── Layout ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal) !important; color: var(--white) !important; }
.nav-mobile-toggle { display: none; cursor: pointer; }
.nav-mobile-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); margin: 5px 0;
  transition: all 0.3s;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--cream);
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg-line {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-bg-accent {
  position: absolute;
  bottom: -60px; left: 8%;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid var(--border-teal);
  opacity: 0.4;
}
.hero-bg-accent2 {
  position: absolute;
  top: 15%; left: 18%;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid var(--border-teal);
  opacity: 0.3;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-left { padding: 4rem 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--teal); }
.hero-title { color: var(--navy-deep); margin-bottom: 1.5rem; }
.hero-title em {
  font-style: italic;
  color: var(--teal);
}
.hero-subtitle {
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal); transform: translateY(-1px); }
.btn-ghost {
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--navy);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--teal); border-color: var(--teal); }
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
  max-width: 380px;
  width: 100%;
}
.hero-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-card-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.hero-card-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.hero-card-divider { height: 1px; background: var(--border); margin-bottom: 1.75rem; }
.hero-card-row {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero-card-row:last-child { margin-bottom: 0; }
.hero-card-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  margin-top: 0.55rem; flex-shrink: 0;
}
.hero-card-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }
.hero-card-text strong { color: var(--navy); font-weight: 500; }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--navy-deep);
  padding: 1.5rem 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
}
.trust-item {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.trust-sep { color: rgba(255,255,255,0.2); font-size: 0.8rem; }

/* ── Differentiators ── */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--cream); }
.service-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--teal-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-body { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }

/* ── About / Process ── */
#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--teal);
}
.about-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }
.creds-list { list-style: none; }
.creds-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.creds-list li:first-child { border-top: 1px solid var(--border); }
.cred-icon { color: var(--teal); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; flex-shrink: 0; padding-top: 0.1rem; min-width: 44px; }

/* ── Process ── */
#process { background: var(--navy-deep); }
#process .label { color: rgba(255,255,255,0.45); }
#process .display-lg { color: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-body { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── Compliance ── */
#compliance { background: var(--white); }
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
.compliance-card {
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  border-top: 3px solid var(--teal);
}
.compliance-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.compliance-card p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1rem; }
.compliance-list { list-style: none; }
.compliance-list li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}
.compliance-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── Contact ── */
#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-intro { font-size: 0.95rem; color: var(--text-mid); margin: 1.5rem 0 2.5rem; line-height: 1.8; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 14px; height: 14px; stroke: var(--teal); }
.contact-detail-text { font-size: 0.875rem; color: var(--text-mid); padding-top: 0.5rem; }
.contact-detail-text a { color: var(--teal); }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: 4px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal);
}

/* ── Footer ── */
footer {
  background: var(--navy-deep);
  padding: 3rem 0;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Section headers ── */
.section-header { margin-bottom: 1rem; }
.section-header .display-lg { margin-top: 0.5rem; color: var(--navy); }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bg-line { display: none; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: none; }
  .compliance-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  nav.menu-open .nav-links {
    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 2rem;
    gap: 1.25rem;
  }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-inner { gap: 1.5rem; }
  .trust-sep { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .display-xl { font-size: 2.8rem; }
}
