:root {
  --bg: oklch(0.16 0.025 260);
  --panel: oklch(0.21 0.028 260);
  --text: oklch(0.97 0.005 240);
  --muted: oklch(0.72 0.02 250);
  --line: oklch(0.3 0.03 260);
  --primary: oklch(0.85 0.12 230);
  --primary-dark: oklch(0.78 0.12 230);
  --primary-soft: oklch(0.22 0.04 260);
  --secondary: oklch(0.78 0.17 60);
  --shadow: 0 20px 50px -20px oklch(0 0 0 / 0.5);
  --shadow-glow: 0 0 38px -18px oklch(0.85 0.12 230 / 0.24);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at top, oklch(0.22 0.04 260) 0%, oklch(0.16 0.025 260) 60%),
    oklch(0.16 0.025 260);
}

a { color: inherit; text-decoration: none; }

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: #334155;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.hero {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.intro {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  align-items: stretch;
}

.team-card {
  flex: 0 1 340px;
  max-width: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: color-mix(in oklch, var(--panel) 92%, transparent);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  border-color: color-mix(in oklch, var(--primary) 45%, var(--line));
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e5e7eb;
}

.card-body { padding: 22px; }

h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.role {
  color: var(--secondary);
  margin: 0 0 18px;
  font-weight: 600;
}

ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--primary);
}

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 16px;
  background: var(--primary);
  color: oklch(0.18 0.03 260);
  font-weight: 600;
  box-shadow: 0 0 40px -18px oklch(0.85 0.12 230 / 0.65);
  transition: background 160ms ease, transform 160ms ease;
}

.book-button:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  margin-top: 54px;
  text-align: center;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 980px) {
  .team-card {
    flex: 1 1 calc(50% - 22px);
    max-width: none;
  }

  .site-header {
    margin-bottom: 52px;
  }
}

@media (max-width: 580px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 18px;
  }

  .site-header {
    margin-bottom: 42px;
  }

  .team-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .card-body {
    padding: 20px;
  }
}
