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

:root {
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --bg: #f8f7f5;
  --surface: #fefdfb;
  --text: #1a1a1a;
  --heading: #0f0f0f;
  --muted: #888888;
  --border: #e5e3e0;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.12);
}

/* Studio-bold theme tweaks */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Accent refinement for bold studio aesthetic */
button, a.button, .cta {
  font-weight: 600;
  transition: all 0.2s ease-out;
}

button:hover, a.button:hover, .cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Subtle depth for cards and containers */
.card, .service-card, .testimonial-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Bold accent on focus states */
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  outline: none;
}

/* Display font emphasis for studio credibility */
.tagline, .mission, .stats-label {
  font-family: var(--font-display);
}
