:root {
  --bg: #090909;
  --panel: #101010;
  --text: #f4f2ed;
  --muted: #aaa7a0;
  --line: rgba(255,255,255,.14);
  --card: rgba(255,255,255,.045);
  --card-hover: rgba(255,255,255,.09);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body { min-height: 100vh; }

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 46vw) 1fr;
}

.portrait {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #d8d8d8;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  filter: grayscale(100%) contrast(1.03);
  display: block;
}

.portrait-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, rgba(9,9,9,.5) 100%),
    linear-gradient(0deg, rgba(0,0,0,.15), transparent 36%);
  pointer-events: none;
}

.content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.04), transparent 32%),
    var(--panel);
  padding: 56px clamp(28px, 6vw, 96px);
}

.content-inner {
  width: min(640px, 100%);
  margin: 0 auto;
}

.intro { margin-bottom: 38px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.tagline {
  max-width: 510px;
  margin: 20px 0 0;
  color: #c8c5bf;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
}

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

.link-card {
  min-height: 78px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  background: var(--card-hover);
  border-color: rgba(255,255,255,.3);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}

.icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.link-title {
  font-size: 15px;
}

.link-subtitle {
  color: var(--muted);
  font-size: 13px;
}

.arrow {
  color: #8e8b85;
  font-size: 18px;
}

footer {
  margin-top: 32px;
  color: #77746f;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .shell { display: block; }

  .portrait {
    position: relative;
    height: min(72vh, 620px);
  }

  .portrait-shade {
    background: linear-gradient(0deg, #101010 0%, transparent 35%);
  }

  .content {
    min-height: auto;
    padding: 14px 20px 44px;
  }

  .content-inner {
    transform: translateY(-28px);
  }

  h1 {
    font-size: clamp(40px, 13vw, 64px);
  }
}
