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

:root {
  --photo-width: 60%;
  --bg: #faf9f7;
  --text: #1e1e1e;
  --muted: #999;
  --accent: #3daac2;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ── Split layout ── */

.split {
  display: flex;
  min-height: 100vh;
}

/* Left: fixed photo panel */
.split__photo {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--photo-width);
  height: 100vh;
  overflow: hidden;
  background: #1e1e1e;
}

.split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  opacity: 0.92;
}

/* Right: scrollable content panel */
.split__content {
  margin-left: var(--photo-width);
  width: calc(100% - var(--photo-width));
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 4rem 8% 4rem 7%;
  padding-top: 15vh;
}

.content-inner {
  max-width: 440px;
}

/* ── Typography ── */

.eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

h1 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: clamp(3.25rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}

.subtitle {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 3rem;
  line-height: 1.4;
}

.amp {
  font-style: italic;
}

.bio {
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2.75rem;
}

.bio a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.bio a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Nav links ── */

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
}

.links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.links a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* ── Mobile ── */

@media (max-width: 1024px) {
  .split {
    flex-direction: column;
  }

  .split__photo {
    position: relative;
    width: 100%;
    height: 65vw;
    max-height: 420px;
  }

  .split__content {
    margin-left: 0;
    width: 100%;
    min-height: unset;
    padding: 3rem 1.75rem 4rem;
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(2.75rem, 11vw, 3.75rem);
  }
}
