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

:root {
  --amber:  #c4621a;
  --text:   #2d2d2d;
  --muted:  #888;
  --bg:     #ffffff;
  --border: #ddd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
}

.nav-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: calc(100vh - 80px);
  padding: 0 4rem 4rem;
  gap: 4rem;
  align-items: start;
}

.hero-text {
  padding-top: 1rem;
}

.role {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
}

.separator {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.8rem;
}

.bio p {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 1.3rem;
  color: #444;
}

.bio p:last-child {
  margin-bottom: 0;
}

.bio a {
  color: var(--amber);
  text-decoration: none;
}

.bio a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bio strong {
  font-weight: 500;
  color: var(--text);
}

/* Photo */
.hero-photo {
  position: sticky;
  top: 2rem;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 900px) {
  nav {
    padding: 1.5rem 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 0 2rem 3rem;
    gap: 2.5rem;
    min-height: auto;
  }

  .hero-photo {
    position: static;
    order: -1;
  }

  h1 {
    font-size: 1.8rem;
  }

  footer {
    padding: 1.2rem 2rem;
  }
}
