:root {
  --bg: #04060a;
  --card: #0d111a;
  --accent: #f04d62;
  --accent-soft: rgba(240, 77, 98, 0.15);
  --text: #f5f6f7;
  --muted: #a1a9b6;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 70px rgba(4, 6, 10, 0.65);

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top, rgba(240, 77, 98, 0.12), transparent 45%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

main {
  flex: 1;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(4, 6, 10, 0.75);
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand-mark {
  width: 0.5rem;
  height: 2rem;
  background: linear-gradient(180deg, #ff8f70, var(--accent));
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(240, 77, 98, 0.45);
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.primary-nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) 0 6rem;
}

.hero .container {
  max-width: 720px;
}

.hero .eyebrow {
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero .lede {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #0b0d12;
  box-shadow: 0 10px 40px rgba(240, 77, 98, 0.35);
}

.btn.primary:hover,
.btn.ghost:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 65% 20%, rgba(240, 77, 98, 0.35), transparent 50%);
  filter: blur(40px);
  opacity: 0.7;
}

.bio {
  padding: 0 0 5rem;
}

.bio-card {
  display: grid;
  grid-template-columns: min(320px, 35vw) 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}

.bio-photo {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(4, 6, 10, 0.45);
}

.bio-copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.bio-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.services {
  padding: 0 0 6rem;
}

.services h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 20px 35px rgba(4, 6, 10, 0.4);
  min-height: 220px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: auto;
  background: rgba(8, 12, 20, 0.9);
  box-shadow: 0 -10px 40px rgba(4, 6, 10, 0.6);
}

@media (max-width: 640px) {
  .site-header .container,
  .hero .container,
  .site-footer .container {
    width: 90vw;
  }

  .primary-nav {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .bio-card {
    grid-template-columns: 1fr;
  }

  .btn {
    text-align: center;
  }
}
