:root {
  --text-l0: #050505;
  --text-l1: #0D0D0D;
  --text-l2: #1A1A1A;
  --text-muted: #404040;
  --primary: #356AC3;
  --cv-color: #203F74;
  --border: #e6e6e6;
  --bg: #ffffff;

  --container-padding: 6rem;
  --radius-card: 15px;
  --radius-anchor: 10px;
  --radius-button: 5px;

  --header-offset: 5.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text-l1);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

ul {
  list-style: none;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--text-l0);
  letter-spacing: 0.01em;
}

.btn {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(53, 106, 195, 0.25);
}

.btn-secondary {
  background: #fff;
  color: var(--text-l0);
  border-color: var(--text-l0);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}
