@font-face {
  font-family: "Helvetica Neue";
}

:root {
  --bg: #e0e0da;
  --ink: #1a1a1a;
  --line: #1a1a1a;
  --accent: #7a6a4f;
  --accent-orange: #ff4800;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 32px clamp(24px, 6vw, 80px);
}

/* ---------- Nav ---------- */
.nav {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2.4vw, 34px);
}

.nav-link {
  position: relative;
  display: inline-block;
  font-size: clamp(12px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  font-weight: 900;
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-chips {
  display: flex;
  gap: 10px;
}

.nav-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: rgba(26, 26, 26, 0.08);
  font-weight: 700;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 2px;
  transition: color 0.2s ease, transform 0.25s ease;
}

.nav-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.nav-chip-label,
.nav-chip-arrow {
  position: relative;
  z-index: 1;
}

.nav-chip-arrow {
  display: inline-block;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.nav-chip:hover {
  color: #fff;
  transform: translateY(-2px);
}

.nav-chip:hover::before {
  transform: scaleX(1);
}

.nav-chip:hover .nav-chip-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---------- Hero ---------- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 110px 0 48px;
  text-align: center;
}

.hero-name {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  gap: clamp(16px, 4vw, 48px);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 128px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 44px;
}

.name-part {
  font-weight: 900;
}

.name-part:first-child {
  text-align: right;
}

.name-part:last-child {
  text-align: left;
}

.hero-photo {
  justify-self: center;
}

.hero-photo {
  display: inline-flex;
  width: clamp(156px, 19.5vw, 273px);
  height: clamp(221px, 27.3vw, 377px);
  overflow: hidden;
  background: #cfcfc7;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(12px, 1.6vw, 18px);
  max-width: 46ch;
  margin-bottom: 16px;
}

.hero-bio {
  font-weight: 400;
  font-size: clamp(12px, 1.3vw, 15px);
  line-height: 1.4;
  max-width: 50ch;
}

/* ---------- Contact / Footer ---------- */
.contact {
  position: relative;
  padding-top: 20px;
  text-align: center;
}

.contact-label {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.contact-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
}

.contact-links li {
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 18px);
  text-transform: uppercase;
}

.contact-links a {
  position: relative;
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.25s ease;
}

.contact-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
}

.contact-links a:hover {
  font-weight: 900;
  color: var(--accent);
}

.contact-links a:hover::after {
  width: 100%;
}

.contact-loc {
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .page {
    margin: 8px;
    padding: 20px;
  }
  .hero-name {
    grid-template-columns: 1fr;
    justify-items: center;
    font-size: 15vw;
  }
  .name-part:first-child,
  .name-part:last-child {
    text-align: center;
  }
  .nav-links {
    gap: 16px;
  }
}
