:root {
  color-scheme: dark;
  font-family: "Manrope", system-ui, sans-serif;
  color: #f5f1e8;
  background: #0e1012;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 43% at 50% -14%, rgba(157, 121, 64, .2), transparent 72%),
    linear-gradient(135deg, #0a0b0d 0%, #151719 52%, #0b0c0e 100%);
}

.page-shell {
  width: min(100%, 530px);
  padding: 3.75rem 1.5rem 2rem;
  text-align: center;
}

.profile { margin-bottom: 2.8rem; }

.portrait-wrap {
  width: 122px;
  height: 122px;
  margin: 0 auto 1.45rem;
  padding: 4px;
  border: 1px solid rgba(194, 157, 93, .75);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(194, 157, 93, .08), 0 18px 45px rgba(0, 0, 0, .42);
}

.portrait {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  object-position: 50% 28%;
}

.eyebrow {
  display: block;
  margin-bottom: .5rem;
  color: #c8a76d;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .26em;
}

h1 {
  margin: 0;
  color: #faf7f0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 12vw, 4.35rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .86;
}

.links { display: grid; gap: .8rem; }

.link-card {
  min-height: 93px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  color: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: 0 13px 28px rgba(0, 0, 0, .16);
  text-align: left;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(200, 167, 109, .7);
  background: linear-gradient(115deg, rgba(200, 167, 109, .15), rgba(255, 255, 255, .06));
  box-shadow: 0 18px 35px rgba(0, 0, 0, .3);
  outline: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 5px;
  background: rgba(255, 255, 255, .035);
}

.card-icon svg { width: 25px; height: 25px; }
.therapy .card-icon { color: #d1af72; }
.youtube .card-icon { color: #cf8c82; }
.mentoring .card-icon { color: #e0bf7e; }

.card-copy { display: grid; gap: .22rem; }
.card-copy strong { color: #fbf9f4; font-size: .97rem; font-weight: 700; line-height: 1.2; }
.card-copy small { color: #b9b8b2; font-size: .76rem; }

.arrow {
  margin-left: auto;
  color: #c8a76d;
  font-size: 1.2rem;
  transition: transform .2s ease;
}

.link-card:hover .arrow,
.link-card:focus-visible .arrow { transform: translate(3px, -3px); }

.footer {
  margin: 3rem 0 0;
  color: #777872;
  font-size: .7rem;
  letter-spacing: .08em;
}

@media (max-width: 420px) {
  .page-shell { padding-top: 3rem; }
  .portrait-wrap { width: 108px; height: 108px; }
  .link-card { min-height: 86px; padding: .9rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
