:root {
  --bg: #f4f1eb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(17, 24, 39, 0.1);
  --text: #111827;
  --muted: rgba(17, 24, 39, 0.68);
  --accent: #7c5c2e;
  --accent-soft: rgba(124, 92, 46, 0.08);
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 92, 46, 0.08), transparent 25%),
    radial-gradient(circle at right 20%, rgba(17, 24, 39, 0.05), transparent 24%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 100%);
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 4rem);
}

.hero {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.74));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

.eyebrow {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  max-width: 8ch;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero__subtitle {
  margin: 0;
  max-width: 18ch;
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.hero__lead {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.stat-card strong {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.stat-card span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.stat-card em {
  font-style: normal;
  color: var(--text);
}

.hero__chips {
  display: none;
}

.hero__visual {
  position: relative;
  min-height: 100%;
}

.profile-card {
  display: grid;
  gap: 1.25rem;
  width: min(100%, 460px);
  margin-inline: auto;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.profile-card__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.profile-card__mark {
  display: block;
  width: 136px;
  aspect-ratio: 1;
  border: 1px solid rgba(124, 92, 46, 0.18);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: var(--surface);
  padding: 0;
}

.profile-card__facts {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.profile-card__facts > div {
  display: grid;
  gap: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.profile-card__facts dt {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.profile-card__facts dd {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}

@media (min-width: 920px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 3.5rem;
  }

  .hero__content {
    padding-top: 0.5rem;
  }

  .hero__visual {
    padding-top: 0.25rem;
  }
}

@media (max-width: 919px) {
  .hero {
    padding: 1.25rem;
  }

  .profile-card {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 0.5rem;
  }

  .hero {
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 24px;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero__subtitle {
    max-width: 14ch;
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }

  .profile-card__mark {
    width: 112px;
  }
}

@media (max-width: 480px) {
  h1 {
    max-width: 11ch;
  }
}