:root {
  color-scheme: light;
  --bg: #f8f6f3;
  --text: #191919;
  --muted: #6b6b6b;
  --accent: #c98654;
  --accent-dark: #a36231;
  --card: #fff;
  --gradient: linear-gradient(135deg, #f5dbc9 0%, #fef3e8 45%, #f6f0ff 100%);
  --shadow: 0 25px 60px rgba(24, 20, 15, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 3rem clamp(1.5rem, 6vw, 6rem) 4rem;
  overflow: hidden;
  background: var(--gradient);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.65), transparent 55%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.5), transparent 45%);
  pointer-events: none;
}

.hero__content,
.hero__profile {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 1.75rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 18px 35px rgba(25, 25, 25, 0.25);
}

.cta.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(25, 25, 25, 0.15);
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 40px rgba(25, 25, 25, 0.3);
}

.profile-card {
  background: var(--card);
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 420px;
}

.profile-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2b694, #d4804f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
}

.name {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.role {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.profile-card__bio {
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.profile-card__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 0.75rem;
}

.profile-card__stats li {
  padding: 0.75rem 0.5rem;
  border-radius: 1rem;
  background: #faf7f5;
}

.stat__label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stat__value {
  margin: 0.3rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 3rem clamp(1.5rem, 6vw, 6rem) 4rem;
}

.section + .section {
  margin-top: 2.5rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

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

.highlights article {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 15px 30px rgba(18, 15, 12, 0.08);
}

.highlights h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.highlights p {
  margin: 0;
}

.footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}

.footer p {
  margin: 0 0 1rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .profile-card__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
