:root {
  --ink: #171615;
  --wine: #78383d;
  --muted: #6e6b68;
  --paper: #f7f3ee;
  --line: #dfd2c6;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--paper); }

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at 13% 10%, rgba(255, 255, 255, .95), transparent 26rem),
    radial-gradient(circle at 90% 80%, rgba(227, 210, 195, .23), transparent 26rem),
    var(--paper);
}

.page-shell {
  width: min(100% - 40px, 840px);
  margin: 0 auto;
  padding: clamp(72px, 12vw, 150px) 0 72px;
}

.intro {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4.5vw, 40px);
  margin: 0 0 54px;
}

.portrait {
  flex: 0 0 clamp(126px, 23vw, 220px);
  width: clamp(126px, 23vw, 220px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.intro-copy { min-width: 0; }

.eyebrow, .category {
  margin: 0;
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 800;
  letter-spacing: .11em;
  color: var(--wine);
}

h1, .link-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

h1 {
  margin: 12px 0 8px;
  font-size: clamp(48px, 8vw, 76px);
  line-height: .98;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2.5vw, 27px);
  line-height: 1.35;
}

.links { display: grid; gap: 16px; }

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 166px;
  padding: 31px 39px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, .18);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.link-card:hover, .link-card:focus-visible {
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 30px rgba(80, 54, 39, .09);
  transform: translateY(-3px);
}

.link-copy { display: grid; gap: 12px; }

.link-title { font-size: clamp(30px, 4.8vw, 40px); line-height: 1.02; }

.arrow {
  flex: 0 0 auto;
  margin-left: 20px;
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}

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

.featured {
  border-color: #151515;
  color: #fffdf9;
  background: linear-gradient(110deg, #111 0%, #1a1918 57%, #0e0e0e 100%);
}

.featured .category, .featured .arrow { color: #d1928f; }
.featured:hover, .featured:focus-visible { background: #20201f; }

.site-pill {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 16px 45px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 18px 30px rgba(75, 53, 41, .09);
  transition: transform .2s ease;
}

.site-pill:hover, .site-pill:focus-visible { transform: translateY(-2px); }

@media (max-width: 580px) {
  .page-shell { width: min(100% - 32px, 840px); padding-top: 58px; }
  .intro { align-items: flex-start; gap: 19px; margin-bottom: 42px; }
  h1 { margin-top: 8px; }
  .link-card { min-height: 138px; padding: 25px 24px; border-radius: 22px; }
  .link-copy { gap: 10px; }
  .arrow { font-size: 43px; }
  .site-pill { margin-top: 25px; padding: 14px 29px; }
}

@media (max-width: 390px) {
  .intro { gap: 15px; }
  .portrait { flex-basis: 105px; width: 105px; }
  .link-title { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
