/* =========================
   GLOBAL COLOR + FEEL
   ========================= */

body {
  background-color: #fafaf9; /* stone-50 */
}

/* =========================
   SECTION POLISH
   ========================= */

section {
  position: relative;
}

section.bg-white {
  background-color: #ffffff;
}

section.bg-slate-50 {
  background: linear-gradient(to bottom, #ffffff, #fafaf9);
}

/* =========================
   TYPOGRAPHY RHYTHM
   ========================= */

h1, h2, h3 {
  letter-spacing: -0.01em;
}

p {
  line-height: 1.7;
}

/* =========================
   VISUAL ACCENTS (SUBTLE)
   ========================= */

/* Accent rule under major headings */


/* =========================
   CARD POLISH
   ========================= */

.bg-white.border {
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border-radius: 0.75rem;
}

/* Case-study differentiation */
.case-service {
  border-top: 4px solid #059669; /* emerald-600 */
}

.case-legal {
  border-top: 4px solid #4f46e5; /* indigo-600 */
}

/* =========================
   BUTTON POLISH
   ========================= */

a.bg-blue-600 {
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

a.bg-blue-600:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Secondary buttons */
a.border {
  transition: background-color 0.15s ease;
}

a.border:hover {
  background-color: #eff6ff; /* blue-50 */
}

/* =========================
   LISTS (NON-BUSY)
   ========================= */

ul li::marker {
  color: #2563eb;
}

/* =========================
   NAV POLISH (NO LAYOUT CHANGES)
   ========================= */

header {
  background-color: #ffffff;
}

header a {
  transition: color 0.15s ease;
}

header a:hover {
  color: #2563eb;
}
/* About page spacing */
.about-section {
  margin-top: 4rem;
}footer a {
  transition: color 0.15s ease;
}
:root {
  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;

  --color-primary: #0F172A;     /* Navy */
  --color-accent: #2563EB;      /* Blue */
  --color-warm: #D97706;        /* Copper */
  --color-success: #059669;     /* Emerald */

  --color-border: #E5E7EB;
  --color-muted: #64748B;
}

body {
  background-color: var(--color-bg);
  color: var(--color-primary);
}

